Skip to content

Commit

Permalink
📦 Export API
Browse files Browse the repository at this point in the history
  • Loading branch information
mariush2 committed Jul 15, 2024
1 parent a6a0667 commit 6918b77
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
20 changes: 14 additions & 6 deletions src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export * from './types';

export * from './utils';

export { PortalService } from 'src/api/services/PortalService';
export * from './api';

0 comments on commit 6918b77

Please sign in to comment.