@xemahq/app-platform-api-client 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/endpoints/delegated-sessions/delegated-sessions.d.ts +4 -4
- package/dist/endpoints/project-apps/project-apps.d.ts +15 -15
- package/dist/endpoints/public-ingress/public-ingress.d.ts +8 -8
- package/dist/models/anonAuthResultDtoDataEnvelope.d.ts +11 -0
- package/dist/models/anonAuthResultDtoDataEnvelope.js +2 -0
- package/dist/models/appClientDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/appClientDtoDataArrayEnvelope.js +2 -0
- package/dist/models/appClientDtoDataEnvelope.d.ts +11 -0
- package/dist/models/appClientDtoDataEnvelope.js +2 -0
- package/dist/models/appDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/appDtoDataArrayEnvelope.js +2 -0
- package/dist/models/appDtoDataEnvelope.d.ts +11 -0
- package/dist/models/appDtoDataEnvelope.js +2 -0
- package/dist/models/audiencePolicyDtoDataArrayEnvelope.d.ts +11 -0
- package/dist/models/audiencePolicyDtoDataArrayEnvelope.js +2 -0
- package/dist/models/audiencePolicyDtoDataEnvelope.d.ts +11 -0
- package/dist/models/audiencePolicyDtoDataEnvelope.js +2 -0
- package/dist/models/createdAppClientDtoDataEnvelope.d.ts +11 -0
- package/dist/models/createdAppClientDtoDataEnvelope.js +2 -0
- package/dist/models/createdPublicSessionDtoDataEnvelope.d.ts +11 -0
- package/dist/models/createdPublicSessionDtoDataEnvelope.js +2 -0
- package/dist/models/delegatedSessionDtoDataEnvelope.d.ts +11 -0
- package/dist/models/delegatedSessionDtoDataEnvelope.js +2 -0
- package/dist/models/delegatedSessionStatusDtoDataEnvelope.d.ts +11 -0
- package/dist/models/delegatedSessionStatusDtoDataEnvelope.js +2 -0
- package/dist/models/index.d.ts +16 -0
- package/dist/models/index.js +16 -0
- package/dist/models/oidcAuthResultDtoDataEnvelope.d.ts +11 -0
- package/dist/models/oidcAuthResultDtoDataEnvelope.js +2 -0
- package/dist/models/portalDetailDtoDataEnvelope.d.ts +11 -0
- package/dist/models/portalDetailDtoDataEnvelope.js +2 -0
- package/dist/models/requestMagicLinkResultDtoDataEnvelope.d.ts +11 -0
- package/dist/models/requestMagicLinkResultDtoDataEnvelope.js +2 -0
- package/dist/models/verifyDelegatedSessionResponseDtoDataEnvelope.d.ts +11 -0
- package/dist/models/verifyDelegatedSessionResponseDtoDataEnvelope.js +2 -0
- package/dist/models/verifyMagicLinkResultDtoDataEnvelope.d.ts +11 -0
- package/dist/models/verifyMagicLinkResultDtoDataEnvelope.js +2 -0
- package/package.json +2 -2
|
@@ -5,19 +5,19 @@
|
|
|
5
5
|
* App Runtime API extract (generated for client codegen).
|
|
6
6
|
* OpenAPI spec version: 0.1.0
|
|
7
7
|
*/
|
|
8
|
-
import type {
|
|
8
|
+
import type { DelegatedSessionDtoDataEnvelope, DelegatedSessionStatusDtoDataEnvelope, VerifyDelegatedSessionRequestDto, VerifyDelegatedSessionResponseDtoDataEnvelope } from '../../models';
|
|
9
9
|
export declare const getDelegatedSessionsControllerVerifyUrl: () => string;
|
|
10
10
|
/**
|
|
11
11
|
* @summary Verify a delegated-session JWT. Returns the parsed claims when the signature, expiry, issuer, and revocation row all pass.
|
|
12
12
|
*/
|
|
13
|
-
export declare const delegatedSessionsControllerVerify: (verifyDelegatedSessionRequestDto: VerifyDelegatedSessionRequestDto, options?: RequestInit) => Promise<
|
|
13
|
+
export declare const delegatedSessionsControllerVerify: (verifyDelegatedSessionRequestDto: VerifyDelegatedSessionRequestDto, options?: RequestInit) => Promise<VerifyDelegatedSessionResponseDtoDataEnvelope>;
|
|
14
14
|
export declare const getDelegatedSessionsControllerGetByIdUrl: (id: string) => string;
|
|
15
15
|
/**
|
|
16
16
|
* @summary Get a delegated session (admin view).
|
|
17
17
|
*/
|
|
18
|
-
export declare const delegatedSessionsControllerGetById: (id: string, options?: RequestInit) => Promise<
|
|
18
|
+
export declare const delegatedSessionsControllerGetById: (id: string, options?: RequestInit) => Promise<DelegatedSessionStatusDtoDataEnvelope>;
|
|
19
19
|
export declare const getDelegatedSessionsControllerRevokeUrl: (id: string) => string;
|
|
20
20
|
/**
|
|
21
21
|
* @summary Revoke a delegated session (admin action).
|
|
22
22
|
*/
|
|
23
|
-
export declare const delegatedSessionsControllerRevoke: (id: string, options?: RequestInit) => Promise<
|
|
23
|
+
export declare const delegatedSessionsControllerRevoke: (id: string, options?: RequestInit) => Promise<DelegatedSessionDtoDataEnvelope>;
|
|
@@ -5,52 +5,52 @@
|
|
|
5
5
|
* App Runtime API extract (generated for client codegen).
|
|
6
6
|
* OpenAPI spec version: 0.1.0
|
|
7
7
|
*/
|
|
8
|
-
import type {
|
|
8
|
+
import type { AppClientDtoDataArrayEnvelope, AppClientDtoDataEnvelope, AppDtoDataArrayEnvelope, AppDtoDataEnvelope, AudiencePolicyDtoDataArrayEnvelope, AudiencePolicyDtoDataEnvelope, CreateAppClientDto, CreateAudiencePolicyDto, CreatePortalDto, CreateProjectAppDto, CreatedAppClientDtoDataEnvelope, PortalDetailDtoDataEnvelope, ProjectAppsControllerListParams, UpdateAudiencePolicyDto, UpdatePortalDto } from '../../models';
|
|
9
9
|
export declare const getProjectAppsControllerCreateUrl: () => string;
|
|
10
10
|
/**
|
|
11
11
|
* @summary Create an App in the caller org + named project.
|
|
12
12
|
*/
|
|
13
|
-
export declare const projectAppsControllerCreate: (createProjectAppDto: CreateProjectAppDto, options?: RequestInit) => Promise<
|
|
13
|
+
export declare const projectAppsControllerCreate: (createProjectAppDto: CreateProjectAppDto, options?: RequestInit) => Promise<AppDtoDataEnvelope>;
|
|
14
14
|
export declare const getProjectAppsControllerListUrl: (params?: ProjectAppsControllerListParams) => string;
|
|
15
15
|
/**
|
|
16
16
|
* @summary List Apps in the caller org (optionally filtered by project/slug).
|
|
17
17
|
*/
|
|
18
|
-
export declare const projectAppsControllerList: (params?: ProjectAppsControllerListParams, options?: RequestInit) => Promise<
|
|
18
|
+
export declare const projectAppsControllerList: (params?: ProjectAppsControllerListParams, options?: RequestInit) => Promise<AppDtoDataArrayEnvelope>;
|
|
19
19
|
export declare const getProjectAppsControllerGetByIdUrl: (id: string) => string;
|
|
20
20
|
/**
|
|
21
21
|
* @summary Get an App owned by the caller org.
|
|
22
22
|
*/
|
|
23
|
-
export declare const projectAppsControllerGetById: (id: string, options?: RequestInit) => Promise<
|
|
23
|
+
export declare const projectAppsControllerGetById: (id: string, options?: RequestInit) => Promise<AppDtoDataEnvelope>;
|
|
24
24
|
export declare const getProjectAppClientsControllerCreateUrl: (appId: string) => string;
|
|
25
25
|
/**
|
|
26
26
|
* @summary Issue a new AppClient credential. The `clientSecret` is returned ONCE; the service stores only the hash.
|
|
27
27
|
*/
|
|
28
|
-
export declare const projectAppClientsControllerCreate: (appId: string, createAppClientDto: CreateAppClientDto, options?: RequestInit) => Promise<
|
|
28
|
+
export declare const projectAppClientsControllerCreate: (appId: string, createAppClientDto: CreateAppClientDto, options?: RequestInit) => Promise<CreatedAppClientDtoDataEnvelope>;
|
|
29
29
|
export declare const getProjectAppClientsControllerListUrl: (appId: string) => string;
|
|
30
30
|
/**
|
|
31
31
|
* @summary List AppClients for an App (metadata only).
|
|
32
32
|
*/
|
|
33
|
-
export declare const projectAppClientsControllerList: (appId: string, options?: RequestInit) => Promise<
|
|
33
|
+
export declare const projectAppClientsControllerList: (appId: string, options?: RequestInit) => Promise<AppClientDtoDataArrayEnvelope>;
|
|
34
34
|
export declare const getProjectAppClientsControllerRevokeUrl: (id: string) => string;
|
|
35
35
|
/**
|
|
36
36
|
* @summary Soft-revoke an AppClient owned by the caller org.
|
|
37
37
|
*/
|
|
38
|
-
export declare const projectAppClientsControllerRevoke: (id: string, options?: RequestInit) => Promise<
|
|
38
|
+
export declare const projectAppClientsControllerRevoke: (id: string, options?: RequestInit) => Promise<AppClientDtoDataEnvelope>;
|
|
39
39
|
export declare const getProjectAudiencePoliciesControllerCreateUrl: (appId: string) => string;
|
|
40
40
|
/**
|
|
41
41
|
* @summary Create an AudiencePolicy on an App.
|
|
42
42
|
*/
|
|
43
|
-
export declare const projectAudiencePoliciesControllerCreate: (appId: string, createAudiencePolicyDto: CreateAudiencePolicyDto, options?: RequestInit) => Promise<
|
|
43
|
+
export declare const projectAudiencePoliciesControllerCreate: (appId: string, createAudiencePolicyDto: CreateAudiencePolicyDto, options?: RequestInit) => Promise<AudiencePolicyDtoDataEnvelope>;
|
|
44
44
|
export declare const getProjectAudiencePoliciesControllerListUrl: (appId: string) => string;
|
|
45
45
|
/**
|
|
46
46
|
* @summary List AudiencePolicies for an App.
|
|
47
47
|
*/
|
|
48
|
-
export declare const projectAudiencePoliciesControllerList: (appId: string, options?: RequestInit) => Promise<
|
|
48
|
+
export declare const projectAudiencePoliciesControllerList: (appId: string, options?: RequestInit) => Promise<AudiencePolicyDtoDataArrayEnvelope>;
|
|
49
49
|
export declare const getProjectAudiencePoliciesControllerUpdateUrl: (id: string) => string;
|
|
50
50
|
/**
|
|
51
51
|
* @summary Update an AudiencePolicy owned by the caller org.
|
|
52
52
|
*/
|
|
53
|
-
export declare const projectAudiencePoliciesControllerUpdate: (id: string, updateAudiencePolicyDto: UpdateAudiencePolicyDto, options?: RequestInit) => Promise<
|
|
53
|
+
export declare const projectAudiencePoliciesControllerUpdate: (id: string, updateAudiencePolicyDto: UpdateAudiencePolicyDto, options?: RequestInit) => Promise<AudiencePolicyDtoDataEnvelope>;
|
|
54
54
|
export declare const getProjectAudiencePoliciesControllerDeleteUrl: (id: string) => string;
|
|
55
55
|
/**
|
|
56
56
|
* @summary Delete an AudiencePolicy owned by the caller org.
|
|
@@ -60,24 +60,24 @@ export declare const getPortalsControllerListUrl: () => string;
|
|
|
60
60
|
/**
|
|
61
61
|
* @summary List the portals the calling user may see in the caller org (visibility-filtered).
|
|
62
62
|
*/
|
|
63
|
-
export declare const portalsControllerList: (options?: RequestInit) => Promise<
|
|
63
|
+
export declare const portalsControllerList: (options?: RequestInit) => Promise<AppDtoDataArrayEnvelope>;
|
|
64
64
|
export declare const getPortalsControllerCreateUrl: () => string;
|
|
65
65
|
/**
|
|
66
66
|
* @summary Create an org-scoped portal (portal-admin only).
|
|
67
67
|
*/
|
|
68
|
-
export declare const portalsControllerCreate: (createPortalDto: CreatePortalDto, options?: RequestInit) => Promise<
|
|
68
|
+
export declare const portalsControllerCreate: (createPortalDto: CreatePortalDto, options?: RequestInit) => Promise<AppDtoDataEnvelope>;
|
|
69
69
|
export declare const getPortalsControllerGetOneUrl: (id: string) => string;
|
|
70
70
|
/**
|
|
71
71
|
* @summary Get a portal owned by the caller org plus its access (portal-admin only).
|
|
72
72
|
*/
|
|
73
|
-
export declare const portalsControllerGetOne: (id: string, options?: RequestInit) => Promise<
|
|
73
|
+
export declare const portalsControllerGetOne: (id: string, options?: RequestInit) => Promise<PortalDetailDtoDataEnvelope>;
|
|
74
74
|
export declare const getPortalsControllerUpdateUrl: (id: string) => string;
|
|
75
75
|
/**
|
|
76
76
|
* @summary Update a portal owned by the caller org (portal-admin only).
|
|
77
77
|
*/
|
|
78
|
-
export declare const portalsControllerUpdate: (id: string, updatePortalDto: UpdatePortalDto, options?: RequestInit) => Promise<
|
|
78
|
+
export declare const portalsControllerUpdate: (id: string, updatePortalDto: UpdatePortalDto, options?: RequestInit) => Promise<AppDtoDataEnvelope>;
|
|
79
79
|
export declare const getPortalsControllerArchiveUrl: (id: string) => string;
|
|
80
80
|
/**
|
|
81
81
|
* @summary Archive a portal owned by the caller org (portal-admin only).
|
|
82
82
|
*/
|
|
83
|
-
export declare const portalsControllerArchive: (id: string, options?: RequestInit) => Promise<
|
|
83
|
+
export declare const portalsControllerArchive: (id: string, options?: RequestInit) => Promise<AppDtoDataEnvelope>;
|
|
@@ -5,39 +5,39 @@
|
|
|
5
5
|
* App Runtime API extract (generated for client codegen).
|
|
6
6
|
* OpenAPI spec version: 0.1.0
|
|
7
7
|
*/
|
|
8
|
-
import type { AnonAuthDto,
|
|
8
|
+
import type { AnonAuthDto, AnonAuthResultDtoDataEnvelope, CreatePublicSessionDto, CreatedPublicSessionDtoDataEnvelope, DelegatedSessionDtoDataEnvelope, DelegatedSessionStatusDtoDataEnvelope, OidcAuthDto, OidcAuthResultDtoDataEnvelope, RequestMagicLinkDto, RequestMagicLinkResultDtoDataEnvelope, VerifyMagicLinkDto, VerifyMagicLinkResultDtoDataEnvelope } from '../../models';
|
|
9
9
|
export declare const getPublicIngressControllerOpenSessionUrl: (appSlug: string) => string;
|
|
10
10
|
/**
|
|
11
11
|
* @summary Open a delegated session for an external-subject or public-anon audience. Returns a short-lived JWT the caller presents to the capability gateway.
|
|
12
12
|
*/
|
|
13
|
-
export declare const publicIngressControllerOpenSession: (appSlug: string, createPublicSessionDto: CreatePublicSessionDto, options?: RequestInit) => Promise<
|
|
13
|
+
export declare const publicIngressControllerOpenSession: (appSlug: string, createPublicSessionDto: CreatePublicSessionDto, options?: RequestInit) => Promise<CreatedPublicSessionDtoDataEnvelope>;
|
|
14
14
|
export declare const getPublicIngressControllerGetSessionUrl: (id: string) => string;
|
|
15
15
|
/**
|
|
16
16
|
* @summary Get a delegated session metadata + status.
|
|
17
17
|
*/
|
|
18
|
-
export declare const publicIngressControllerGetSession: (id: string, options?: RequestInit) => Promise<
|
|
18
|
+
export declare const publicIngressControllerGetSession: (id: string, options?: RequestInit) => Promise<DelegatedSessionStatusDtoDataEnvelope>;
|
|
19
19
|
export declare const getPublicIngressControllerRevokeSessionUrl: (id: string) => string;
|
|
20
20
|
/**
|
|
21
21
|
* @summary Revoke a delegated session (self-sign-out).
|
|
22
22
|
*/
|
|
23
|
-
export declare const publicIngressControllerRevokeSession: (id: string, options?: RequestInit) => Promise<
|
|
23
|
+
export declare const publicIngressControllerRevokeSession: (id: string, options?: RequestInit) => Promise<DelegatedSessionDtoDataEnvelope>;
|
|
24
24
|
export declare const getPublicIngressControllerOidcAuthenticateUrl: (appSlug: string) => string;
|
|
25
25
|
/**
|
|
26
26
|
* @summary Authenticate an external subject via OIDC id_token and mint a delegated session JWT.
|
|
27
27
|
*/
|
|
28
|
-
export declare const publicIngressControllerOidcAuthenticate: (appSlug: string, oidcAuthDto: OidcAuthDto, options?: RequestInit) => Promise<
|
|
28
|
+
export declare const publicIngressControllerOidcAuthenticate: (appSlug: string, oidcAuthDto: OidcAuthDto, options?: RequestInit) => Promise<OidcAuthResultDtoDataEnvelope>;
|
|
29
29
|
export declare const getPublicIngressControllerRequestMagicLinkUrl: (appSlug: string) => string;
|
|
30
30
|
/**
|
|
31
31
|
* @summary Request a magic-link for the given email. Creates a one-time token valid for 15 minutes and queues an email delivery event.
|
|
32
32
|
*/
|
|
33
|
-
export declare const publicIngressControllerRequestMagicLink: (appSlug: string, requestMagicLinkDto: RequestMagicLinkDto, options?: RequestInit) => Promise<
|
|
33
|
+
export declare const publicIngressControllerRequestMagicLink: (appSlug: string, requestMagicLinkDto: RequestMagicLinkDto, options?: RequestInit) => Promise<RequestMagicLinkResultDtoDataEnvelope>;
|
|
34
34
|
export declare const getPublicIngressControllerVerifyMagicLinkUrl: (appSlug: string) => string;
|
|
35
35
|
/**
|
|
36
36
|
* @summary Verify a magic-link token and mint a delegated session JWT. The token is single-use and expires after 15 minutes.
|
|
37
37
|
*/
|
|
38
|
-
export declare const publicIngressControllerVerifyMagicLink: (appSlug: string, verifyMagicLinkDto: VerifyMagicLinkDto, options?: RequestInit) => Promise<
|
|
38
|
+
export declare const publicIngressControllerVerifyMagicLink: (appSlug: string, verifyMagicLinkDto: VerifyMagicLinkDto, options?: RequestInit) => Promise<VerifyMagicLinkResultDtoDataEnvelope>;
|
|
39
39
|
export declare const getPublicIngressControllerAnonAuthenticateUrl: (appSlug: string) => string;
|
|
40
40
|
/**
|
|
41
41
|
* @summary Create an anonymous external-subject session. Returns a delegated session JWT; every call creates a fresh subject identity.
|
|
42
42
|
*/
|
|
43
|
-
export declare const publicIngressControllerAnonAuthenticate: (appSlug: string, anonAuthDto: AnonAuthDto, options?: RequestInit) => Promise<
|
|
43
|
+
export declare const publicIngressControllerAnonAuthenticate: (appSlug: string, anonAuthDto: AnonAuthDto, options?: RequestInit) => Promise<AnonAuthResultDtoDataEnvelope>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { AnonAuthResultDto } from './anonAuthResultDto.js';
|
|
9
|
+
export interface AnonAuthResultDtoDataEnvelope {
|
|
10
|
+
data: AnonAuthResultDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { AppClientDto } from './appClientDto.js';
|
|
9
|
+
export interface AppClientDtoDataArrayEnvelope {
|
|
10
|
+
data: AppClientDto[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { AppClientDto } from './appClientDto.js';
|
|
9
|
+
export interface AppClientDtoDataEnvelope {
|
|
10
|
+
data: AppClientDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { AppDto } from './appDto.js';
|
|
9
|
+
export interface AppDtoDataArrayEnvelope {
|
|
10
|
+
data: AppDto[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { AppDto } from './appDto.js';
|
|
9
|
+
export interface AppDtoDataEnvelope {
|
|
10
|
+
data: AppDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { AudiencePolicyDto } from './audiencePolicyDto.js';
|
|
9
|
+
export interface AudiencePolicyDtoDataArrayEnvelope {
|
|
10
|
+
data: AudiencePolicyDto[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { AudiencePolicyDto } from './audiencePolicyDto.js';
|
|
9
|
+
export interface AudiencePolicyDtoDataEnvelope {
|
|
10
|
+
data: AudiencePolicyDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { CreatedAppClientDto } from './createdAppClientDto.js';
|
|
9
|
+
export interface CreatedAppClientDtoDataEnvelope {
|
|
10
|
+
data: CreatedAppClientDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { CreatedPublicSessionDto } from './createdPublicSessionDto.js';
|
|
9
|
+
export interface CreatedPublicSessionDtoDataEnvelope {
|
|
10
|
+
data: CreatedPublicSessionDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { DelegatedSessionDto } from './delegatedSessionDto.js';
|
|
9
|
+
export interface DelegatedSessionDtoDataEnvelope {
|
|
10
|
+
data: DelegatedSessionDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { DelegatedSessionStatusDto } from './delegatedSessionStatusDto.js';
|
|
9
|
+
export interface DelegatedSessionStatusDtoDataEnvelope {
|
|
10
|
+
data: DelegatedSessionStatusDto;
|
|
11
|
+
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
export * from './anonAuthDto';
|
|
2
2
|
export * from './anonAuthResultDto';
|
|
3
|
+
export * from './anonAuthResultDtoDataEnvelope';
|
|
3
4
|
export * from './appClientDto';
|
|
5
|
+
export * from './appClientDtoDataArrayEnvelope';
|
|
6
|
+
export * from './appClientDtoDataEnvelope';
|
|
4
7
|
export * from './appClientDtoRevokedAt';
|
|
5
8
|
export * from './appDto';
|
|
9
|
+
export * from './appDtoDataArrayEnvelope';
|
|
10
|
+
export * from './appDtoDataEnvelope';
|
|
6
11
|
export * from './appLockfileDto';
|
|
7
12
|
export * from './appLockfileDtoAgents';
|
|
8
13
|
export * from './appLockfileDtoBiomes';
|
|
@@ -12,6 +17,8 @@ export * from './appLockfileDtoSkills';
|
|
|
12
17
|
export * from './appLockfileDtoWorkflows';
|
|
13
18
|
export * from './audienceKind';
|
|
14
19
|
export * from './audiencePolicyDto';
|
|
20
|
+
export * from './audiencePolicyDtoDataArrayEnvelope';
|
|
21
|
+
export * from './audiencePolicyDtoDataEnvelope';
|
|
15
22
|
export * from './audiencePolicyDtoRateLimitPerHourPerSubject';
|
|
16
23
|
export * from './audienceUpstreamDto';
|
|
17
24
|
export * from './audienceUpstreamDtoMetadata';
|
|
@@ -28,23 +35,30 @@ export * from './createProjectAppDto';
|
|
|
28
35
|
export * from './createProjectAppDtoProjectId';
|
|
29
36
|
export * from './createPublicSessionDto';
|
|
30
37
|
export * from './createdAppClientDto';
|
|
38
|
+
export * from './createdAppClientDtoDataEnvelope';
|
|
31
39
|
export * from './createdAppClientDtoRevokedAt';
|
|
32
40
|
export * from './createdPublicSessionDto';
|
|
41
|
+
export * from './createdPublicSessionDtoDataEnvelope';
|
|
33
42
|
export * from './delegatedSessionDto';
|
|
43
|
+
export * from './delegatedSessionDtoDataEnvelope';
|
|
34
44
|
export * from './delegatedSessionDtoExternalSubjectId';
|
|
35
45
|
export * from './delegatedSessionDtoRevokedAt';
|
|
36
46
|
export * from './delegatedSessionStatus';
|
|
37
47
|
export * from './delegatedSessionStatusDto';
|
|
48
|
+
export * from './delegatedSessionStatusDtoDataEnvelope';
|
|
38
49
|
export * from './delegatedSessionStatusDtoExternalSubjectId';
|
|
39
50
|
export * from './delegatedSessionStatusDtoRevokedAt';
|
|
40
51
|
export * from './oidcAuthDto';
|
|
41
52
|
export * from './oidcAuthResultDto';
|
|
53
|
+
export * from './oidcAuthResultDtoDataEnvelope';
|
|
42
54
|
export * from './portalAccessDto';
|
|
43
55
|
export * from './portalDetailDto';
|
|
56
|
+
export * from './portalDetailDtoDataEnvelope';
|
|
44
57
|
export * from './portalShareDto';
|
|
45
58
|
export * from './projectAppsControllerListParams';
|
|
46
59
|
export * from './requestMagicLinkDto';
|
|
47
60
|
export * from './requestMagicLinkResultDto';
|
|
61
|
+
export * from './requestMagicLinkResultDtoDataEnvelope';
|
|
48
62
|
export * from './resourceManagedBy';
|
|
49
63
|
export * from './resourceVisibilityPattern';
|
|
50
64
|
export * from './subjectKind';
|
|
@@ -54,5 +68,7 @@ export * from './updateAudiencePolicyDtoRateLimitPerHourPerSubject';
|
|
|
54
68
|
export * from './updatePortalDto';
|
|
55
69
|
export * from './verifyDelegatedSessionRequestDto';
|
|
56
70
|
export * from './verifyDelegatedSessionResponseDto';
|
|
71
|
+
export * from './verifyDelegatedSessionResponseDtoDataEnvelope';
|
|
57
72
|
export * from './verifyMagicLinkDto';
|
|
58
73
|
export * from './verifyMagicLinkResultDto';
|
|
74
|
+
export * from './verifyMagicLinkResultDtoDataEnvelope';
|
package/dist/models/index.js
CHANGED
|
@@ -17,9 +17,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
// Auto-generated by tooling/codegen/regenerate-models-barrel.js — do not edit manually.
|
|
18
18
|
__exportStar(require("./anonAuthDto"), exports);
|
|
19
19
|
__exportStar(require("./anonAuthResultDto"), exports);
|
|
20
|
+
__exportStar(require("./anonAuthResultDtoDataEnvelope"), exports);
|
|
20
21
|
__exportStar(require("./appClientDto"), exports);
|
|
22
|
+
__exportStar(require("./appClientDtoDataArrayEnvelope"), exports);
|
|
23
|
+
__exportStar(require("./appClientDtoDataEnvelope"), exports);
|
|
21
24
|
__exportStar(require("./appClientDtoRevokedAt"), exports);
|
|
22
25
|
__exportStar(require("./appDto"), exports);
|
|
26
|
+
__exportStar(require("./appDtoDataArrayEnvelope"), exports);
|
|
27
|
+
__exportStar(require("./appDtoDataEnvelope"), exports);
|
|
23
28
|
__exportStar(require("./appLockfileDto"), exports);
|
|
24
29
|
__exportStar(require("./appLockfileDtoAgents"), exports);
|
|
25
30
|
__exportStar(require("./appLockfileDtoBiomes"), exports);
|
|
@@ -29,6 +34,8 @@ __exportStar(require("./appLockfileDtoSkills"), exports);
|
|
|
29
34
|
__exportStar(require("./appLockfileDtoWorkflows"), exports);
|
|
30
35
|
__exportStar(require("./audienceKind"), exports);
|
|
31
36
|
__exportStar(require("./audiencePolicyDto"), exports);
|
|
37
|
+
__exportStar(require("./audiencePolicyDtoDataArrayEnvelope"), exports);
|
|
38
|
+
__exportStar(require("./audiencePolicyDtoDataEnvelope"), exports);
|
|
32
39
|
__exportStar(require("./audiencePolicyDtoRateLimitPerHourPerSubject"), exports);
|
|
33
40
|
__exportStar(require("./audienceUpstreamDto"), exports);
|
|
34
41
|
__exportStar(require("./audienceUpstreamDtoMetadata"), exports);
|
|
@@ -45,23 +52,30 @@ __exportStar(require("./createProjectAppDto"), exports);
|
|
|
45
52
|
__exportStar(require("./createProjectAppDtoProjectId"), exports);
|
|
46
53
|
__exportStar(require("./createPublicSessionDto"), exports);
|
|
47
54
|
__exportStar(require("./createdAppClientDto"), exports);
|
|
55
|
+
__exportStar(require("./createdAppClientDtoDataEnvelope"), exports);
|
|
48
56
|
__exportStar(require("./createdAppClientDtoRevokedAt"), exports);
|
|
49
57
|
__exportStar(require("./createdPublicSessionDto"), exports);
|
|
58
|
+
__exportStar(require("./createdPublicSessionDtoDataEnvelope"), exports);
|
|
50
59
|
__exportStar(require("./delegatedSessionDto"), exports);
|
|
60
|
+
__exportStar(require("./delegatedSessionDtoDataEnvelope"), exports);
|
|
51
61
|
__exportStar(require("./delegatedSessionDtoExternalSubjectId"), exports);
|
|
52
62
|
__exportStar(require("./delegatedSessionDtoRevokedAt"), exports);
|
|
53
63
|
__exportStar(require("./delegatedSessionStatus"), exports);
|
|
54
64
|
__exportStar(require("./delegatedSessionStatusDto"), exports);
|
|
65
|
+
__exportStar(require("./delegatedSessionStatusDtoDataEnvelope"), exports);
|
|
55
66
|
__exportStar(require("./delegatedSessionStatusDtoExternalSubjectId"), exports);
|
|
56
67
|
__exportStar(require("./delegatedSessionStatusDtoRevokedAt"), exports);
|
|
57
68
|
__exportStar(require("./oidcAuthDto"), exports);
|
|
58
69
|
__exportStar(require("./oidcAuthResultDto"), exports);
|
|
70
|
+
__exportStar(require("./oidcAuthResultDtoDataEnvelope"), exports);
|
|
59
71
|
__exportStar(require("./portalAccessDto"), exports);
|
|
60
72
|
__exportStar(require("./portalDetailDto"), exports);
|
|
73
|
+
__exportStar(require("./portalDetailDtoDataEnvelope"), exports);
|
|
61
74
|
__exportStar(require("./portalShareDto"), exports);
|
|
62
75
|
__exportStar(require("./projectAppsControllerListParams"), exports);
|
|
63
76
|
__exportStar(require("./requestMagicLinkDto"), exports);
|
|
64
77
|
__exportStar(require("./requestMagicLinkResultDto"), exports);
|
|
78
|
+
__exportStar(require("./requestMagicLinkResultDtoDataEnvelope"), exports);
|
|
65
79
|
__exportStar(require("./resourceManagedBy"), exports);
|
|
66
80
|
__exportStar(require("./resourceVisibilityPattern"), exports);
|
|
67
81
|
__exportStar(require("./subjectKind"), exports);
|
|
@@ -71,5 +85,7 @@ __exportStar(require("./updateAudiencePolicyDtoRateLimitPerHourPerSubject"), exp
|
|
|
71
85
|
__exportStar(require("./updatePortalDto"), exports);
|
|
72
86
|
__exportStar(require("./verifyDelegatedSessionRequestDto"), exports);
|
|
73
87
|
__exportStar(require("./verifyDelegatedSessionResponseDto"), exports);
|
|
88
|
+
__exportStar(require("./verifyDelegatedSessionResponseDtoDataEnvelope"), exports);
|
|
74
89
|
__exportStar(require("./verifyMagicLinkDto"), exports);
|
|
75
90
|
__exportStar(require("./verifyMagicLinkResultDto"), exports);
|
|
91
|
+
__exportStar(require("./verifyMagicLinkResultDtoDataEnvelope"), exports);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { OidcAuthResultDto } from './oidcAuthResultDto.js';
|
|
9
|
+
export interface OidcAuthResultDtoDataEnvelope {
|
|
10
|
+
data: OidcAuthResultDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { PortalDetailDto } from './portalDetailDto.js';
|
|
9
|
+
export interface PortalDetailDtoDataEnvelope {
|
|
10
|
+
data: PortalDetailDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { RequestMagicLinkResultDto } from './requestMagicLinkResultDto.js';
|
|
9
|
+
export interface RequestMagicLinkResultDtoDataEnvelope {
|
|
10
|
+
data: RequestMagicLinkResultDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { VerifyDelegatedSessionResponseDto } from './verifyDelegatedSessionResponseDto.js';
|
|
9
|
+
export interface VerifyDelegatedSessionResponseDtoDataEnvelope {
|
|
10
|
+
data: VerifyDelegatedSessionResponseDto;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v8.16.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* App Runtime API
|
|
5
|
+
* App Runtime API extract (generated for client codegen).
|
|
6
|
+
* OpenAPI spec version: 0.1.0
|
|
7
|
+
*/
|
|
8
|
+
import type { VerifyMagicLinkResultDto } from './verifyMagicLinkResultDto.js';
|
|
9
|
+
export interface VerifyMagicLinkResultDtoDataEnvelope {
|
|
10
|
+
data: VerifyMagicLinkResultDto;
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xemahq/app-platform-api-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"service": "app-platform-api",
|
|
21
21
|
"biome": "app-platform",
|
|
22
22
|
"target": "server",
|
|
23
|
-
"generator": "@xemahq/api-client-generator@0.
|
|
23
|
+
"generator": "@xemahq/api-client-generator@0.2.0",
|
|
24
24
|
"source": "openapi.public.json"
|
|
25
25
|
},
|
|
26
26
|
"license": "LicenseRef-Xema-BSL-1.1",
|