From 16a5f732944634288182128c0221695ce1a2c1d1 Mon Sep 17 00:00:00 2001 From: aslakihle Date: Fri, 9 Aug 2024 09:25:41 +0200 Subject: [PATCH 1/3] :label: Exported amplifyApp types --- src/api/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/api/index.ts b/src/api/index.ts index 57bdd2c..24f60e6 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -9,6 +9,9 @@ export { request } from './core/request'; export type { OpenAPIConfig } from './core/OpenAPI'; export type { AmplifyApplication } from './models/AmplifyApplication'; +export type { ApplicationCategory} from './models/ApplicationCategory' +export type { ContentTab} from './models/ContentTab' +export type { AccessRoles} from './models/AccessRoles' export type { FeatureAPIType } from 'src/api/models/FeatureAPIType'; export type { FeatureToggleDto } from './models/FeatureToggleDto'; export type { GraphUser } from './models/GraphUser'; From dd8cb69c199cdafe2fc3100fb065e62fc8f385fc Mon Sep 17 00:00:00 2001 From: aslakihle Date: Fri, 9 Aug 2024 09:27:23 +0200 Subject: [PATCH 2/3] :bookmark: 1.1.3 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7aaf716..cc64a05 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@equinor/subsurface-app-management", - "version": "1.1.2", + "version": "1.1.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@equinor/subsurface-app-management", - "version": "1.1.2", + "version": "1.1.3", "license": "ISC", "dependencies": { "@azure/msal-browser": "3.10.0", diff --git a/package.json b/package.json index d993022..3a0b9ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@equinor/subsurface-app-management", - "version": "1.1.2", + "version": "1.1.3", "description": "React Typescript components/hooks to communicate with equinor/sam", "types": "dist/index.d.ts", "type": "module", From 80f2c0dfd2df32b86a2f2f61a2b6b78e71a44b2d Mon Sep 17 00:00:00 2001 From: aslakihle Date: Fri, 9 Aug 2024 09:33:57 +0200 Subject: [PATCH 3/3] :pencil2: Fixed enum being exported regularly --- src/api/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api/index.ts b/src/api/index.ts index 24f60e6..7b15623 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -9,9 +9,9 @@ export { request } from './core/request'; export type { OpenAPIConfig } from './core/OpenAPI'; export type { AmplifyApplication } from './models/AmplifyApplication'; -export type { ApplicationCategory} from './models/ApplicationCategory' -export type { ContentTab} from './models/ContentTab' -export type { AccessRoles} from './models/AccessRoles' +export { ApplicationCategory} from './models/ApplicationCategory'; +export type { ContentTab} from './models/ContentTab'; +export type { AccessRoles} from './models/AccessRoles'; export type { FeatureAPIType } from 'src/api/models/FeatureAPIType'; export type { FeatureToggleDto } from './models/FeatureToggleDto'; export type { GraphUser } from './models/GraphUser';