Skip to content

Commit

Permalink
Merge pull request #11 from equinor/feat/export-api
Browse files Browse the repository at this point in the history
feat/export-api
  • Loading branch information
mariush2 authored Jul 15, 2024
2 parents a6a0667 + 33674d9 commit 7297945
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/subsurface-app-management",
"version": "1.0.3",
"version": "1.0.4",
"description": "React Typescript components/hooks to communicate with equinor/sam",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
18 changes: 13 additions & 5 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 type { ServiceNowIncidentResponse } from './models/ServiceNowIncidentResponse';
export { ServiceNowUrgency } from './models/ServiceNowUrgency';
export type { Tutorial } from './models/Tutorial';
export { 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 7297945

Please sign in to comment.