From 6918b7741ebcecfd3b0add36b87c2572dc12c488 Mon Sep 17 00:00:00 2001 From: Marius Tobiassen Bungum Date: Mon, 15 Jul 2024 09:38:24 +0200 Subject: [PATCH] :package: Export API --- src/api/index.ts | 20 ++++++++++++++------ src/index.ts | 2 +- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/api/index.ts b/src/api/index.ts index f98c4c7..56881fa 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -7,13 +7,21 @@ export { OpenAPI } from './core/OpenAPI'; export { request } from './core/request'; export type { OpenAPIConfig } from './core/OpenAPI'; -export type { FeatureAPIType } from './models/FeatureAPIType'; export type { CustomTutorialStep } from './models/CustomTutorialStep'; -export type { GenericTutorialStep } from './models/GenericTutorialStep'; -export type { Tutorial } from './models/Tutorial'; +export type { AccessRoles } from './models/AccessRole'; +export type { AmplifyApplication } from './models/Applications'; +export type { FeatureAPIType } from './models/FeatureAPIType'; export type { FeatureToggleDto } from './models/FeatureToggleDto'; +export type { GenericTutorialStep } from './models/GenericTutorialStep'; export type { GraphUser } from './models/GraphUser'; -export type { ServiceNowIncidentResponse } from './models/ServiceNowIncidentResponse'; +export type { ReleaseNote } from './models/ReleaseNote'; +export type { ReleaseNotePatch } from './models/ReleaseNotePatch'; export type { ServiceNowIncidentAttachmentResponse } from './models/ServiceNowIncidentAttachmentResponse'; -export { TutorialPosition } from './models/TutorialPosition'; -export { ServiceNowUrgency } from './models/ServiceNowUrgency'; +export type { ServiceNowIncidentResponse } from './models/ServiceNowIncidentResponse'; +export type { ServiceNowUrgency } from './models/ServiceNowUrgency'; +export type { Tutorial } from './models/Tutorial'; +export type { TutorialPosition } from './models/TutorialPosition'; +export type { TutorialStepBase } from './models/TutorialStepBase'; +export { PortalService } from './services/PortalService'; +export { ReleaseNotesService } from './services/ReleaseNotesService'; +export { TutorialService } from './services/TutorialService'; diff --git a/src/index.ts b/src/index.ts index 6742705..293dba9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,4 +8,4 @@ export * from './types'; export * from './utils'; -export { PortalService } from 'src/api/services/PortalService'; +export * from './api';