@xemahq/app-platform-api-client 0.1.2
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/LICENSE +174 -0
- package/README.md +62 -0
- package/dist/custom-fetch.d.ts +48 -0
- package/dist/custom-fetch.js +146 -0
- package/dist/endpoints/delegated-sessions/delegated-sessions.d.ts +23 -0
- package/dist/endpoints/delegated-sessions/delegated-sessions.js +48 -0
- package/dist/endpoints/project-apps/project-apps.d.ts +83 -0
- package/dist/endpoints/project-apps/project-apps.js +245 -0
- package/dist/endpoints/public-ingress/public-ingress.d.ts +43 -0
- package/dist/endpoints/public-ingress/public-ingress.js +112 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +27 -0
- package/dist/models/anonAuthDto.d.ts +13 -0
- package/dist/models/anonAuthDto.js +9 -0
- package/dist/models/anonAuthResultDto.d.ts +17 -0
- package/dist/models/anonAuthResultDto.js +9 -0
- package/dist/models/appClientDto.d.ts +19 -0
- package/dist/models/appClientDto.js +2 -0
- package/dist/models/appClientDtoRevokedAt.d.ts +13 -0
- package/dist/models/appClientDtoRevokedAt.js +9 -0
- package/dist/models/appDto.d.ts +36 -0
- package/dist/models/appDto.js +2 -0
- package/dist/models/appLockfileDto.d.ts +25 -0
- package/dist/models/appLockfileDto.js +2 -0
- package/dist/models/appLockfileDtoAgents.d.ts +10 -0
- package/dist/models/appLockfileDtoAgents.js +9 -0
- package/dist/models/appLockfileDtoBiomes.d.ts +13 -0
- package/dist/models/appLockfileDtoBiomes.js +9 -0
- package/dist/models/appLockfileDtoCapabilities.d.ts +13 -0
- package/dist/models/appLockfileDtoCapabilities.js +9 -0
- package/dist/models/appLockfileDtoDeliverableSpecs.d.ts +10 -0
- package/dist/models/appLockfileDtoDeliverableSpecs.js +9 -0
- package/dist/models/appLockfileDtoSkills.d.ts +10 -0
- package/dist/models/appLockfileDtoSkills.js +9 -0
- package/dist/models/appLockfileDtoWorkflows.d.ts +10 -0
- package/dist/models/appLockfileDtoWorkflows.js +9 -0
- package/dist/models/audienceKind.d.ts +13 -0
- package/dist/models/audienceKind.js +15 -0
- package/dist/models/audiencePolicyDto.d.ts +21 -0
- package/dist/models/audiencePolicyDto.js +2 -0
- package/dist/models/audiencePolicyDtoRateLimitPerHourPerSubject.d.ts +13 -0
- package/dist/models/audiencePolicyDtoRateLimitPerHourPerSubject.js +9 -0
- package/dist/models/audienceUpstreamDto.d.ts +13 -0
- package/dist/models/audienceUpstreamDto.js +2 -0
- package/dist/models/audienceUpstreamDtoMetadata.d.ts +10 -0
- package/dist/models/audienceUpstreamDtoMetadata.js +9 -0
- package/dist/models/audienceUpstreamType.d.ts +13 -0
- package/dist/models/audienceUpstreamType.js +15 -0
- package/dist/models/biomeInstallDto.d.ts +16 -0
- package/dist/models/biomeInstallDto.js +2 -0
- package/dist/models/biomeInstallDtoConfiguration.d.ts +13 -0
- package/dist/models/biomeInstallDtoConfiguration.js +9 -0
- package/dist/models/brandingConfigDto.d.ts +18 -0
- package/dist/models/brandingConfigDto.js +2 -0
- package/dist/models/brandingConfigDtoCssTokens.d.ts +13 -0
- package/dist/models/brandingConfigDtoCssTokens.js +9 -0
- package/dist/models/capabilityPolicyOverrideDto.d.ts +16 -0
- package/dist/models/capabilityPolicyOverrideDto.js +9 -0
- package/dist/models/createAppClientDto.d.ts +12 -0
- package/dist/models/createAppClientDto.js +9 -0
- package/dist/models/createAudiencePolicyDto.d.ts +17 -0
- package/dist/models/createAudiencePolicyDto.js +2 -0
- package/dist/models/createPortalDto.d.ts +29 -0
- package/dist/models/createPortalDto.js +2 -0
- package/dist/models/createProjectAppDto.d.ts +33 -0
- package/dist/models/createProjectAppDto.js +2 -0
- package/dist/models/createProjectAppDtoProjectId.d.ts +14 -0
- package/dist/models/createProjectAppDtoProjectId.js +9 -0
- package/dist/models/createPublicSessionDto.d.ts +19 -0
- package/dist/models/createPublicSessionDto.js +9 -0
- package/dist/models/createdAppClientDto.d.ts +21 -0
- package/dist/models/createdAppClientDto.js +2 -0
- package/dist/models/createdAppClientDtoRevokedAt.d.ts +13 -0
- package/dist/models/createdAppClientDtoRevokedAt.js +9 -0
- package/dist/models/createdPublicSessionDto.d.ts +23 -0
- package/dist/models/createdPublicSessionDto.js +9 -0
- package/dist/models/delegatedSessionDto.d.ts +27 -0
- package/dist/models/delegatedSessionDto.js +2 -0
- package/dist/models/delegatedSessionDtoExternalSubjectId.d.ts +13 -0
- package/dist/models/delegatedSessionDtoExternalSubjectId.js +9 -0
- package/dist/models/delegatedSessionDtoRevokedAt.d.ts +13 -0
- package/dist/models/delegatedSessionDtoRevokedAt.js +9 -0
- package/dist/models/delegatedSessionStatus.d.ts +13 -0
- package/dist/models/delegatedSessionStatus.js +15 -0
- package/dist/models/delegatedSessionStatusDto.d.ts +29 -0
- package/dist/models/delegatedSessionStatusDto.js +2 -0
- package/dist/models/delegatedSessionStatusDtoExternalSubjectId.d.ts +13 -0
- package/dist/models/delegatedSessionStatusDtoExternalSubjectId.js +9 -0
- package/dist/models/delegatedSessionStatusDtoRevokedAt.d.ts +13 -0
- package/dist/models/delegatedSessionStatusDtoRevokedAt.js +9 -0
- package/dist/models/index.d.ts +58 -0
- package/dist/models/index.js +75 -0
- package/dist/models/oidcAuthDto.d.ts +13 -0
- package/dist/models/oidcAuthDto.js +9 -0
- package/dist/models/oidcAuthResultDto.d.ts +17 -0
- package/dist/models/oidcAuthResultDto.js +9 -0
- package/dist/models/portalAccessDto.d.ts +14 -0
- package/dist/models/portalAccessDto.js +2 -0
- package/dist/models/portalDetailDto.d.ts +13 -0
- package/dist/models/portalDetailDto.js +2 -0
- package/dist/models/portalShareDto.d.ts +14 -0
- package/dist/models/portalShareDto.js +2 -0
- package/dist/models/projectAppsControllerListParams.d.ts +14 -0
- package/dist/models/projectAppsControllerListParams.js +9 -0
- package/dist/models/requestMagicLinkDto.d.ts +13 -0
- package/dist/models/requestMagicLinkDto.js +9 -0
- package/dist/models/requestMagicLinkResultDto.d.ts +11 -0
- package/dist/models/requestMagicLinkResultDto.js +9 -0
- package/dist/models/resourceManagedBy.d.ts +19 -0
- package/dist/models/resourceManagedBy.js +18 -0
- package/dist/models/resourceVisibilityPattern.d.ts +18 -0
- package/dist/models/resourceVisibilityPattern.js +17 -0
- package/dist/models/subjectKind.d.ts +23 -0
- package/dist/models/subjectKind.js +22 -0
- package/dist/models/tokenClass.d.ts +19 -0
- package/dist/models/tokenClass.js +18 -0
- package/dist/models/updateAudiencePolicyDto.d.ts +15 -0
- package/dist/models/updateAudiencePolicyDto.js +2 -0
- package/dist/models/updateAudiencePolicyDtoRateLimitPerHourPerSubject.d.ts +13 -0
- package/dist/models/updateAudiencePolicyDtoRateLimitPerHourPerSubject.js +9 -0
- package/dist/models/updatePortalDto.d.ts +25 -0
- package/dist/models/updatePortalDto.js +2 -0
- package/dist/models/verifyDelegatedSessionRequestDto.d.ts +11 -0
- package/dist/models/verifyDelegatedSessionRequestDto.js +9 -0
- package/dist/models/verifyDelegatedSessionResponseDto.d.ts +23 -0
- package/dist/models/verifyDelegatedSessionResponseDto.js +2 -0
- package/dist/models/verifyMagicLinkDto.d.ts +11 -0
- package/dist/models/verifyMagicLinkDto.js +9 -0
- package/dist/models/verifyMagicLinkResultDto.d.ts +17 -0
- package/dist/models/verifyMagicLinkResultDto.js +9 -0
- package/package.json +41 -0
|
@@ -0,0 +1,27 @@
|
|
|
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 { DelegatedSessionDtoExternalSubjectId } from './delegatedSessionDtoExternalSubjectId.js';
|
|
9
|
+
import type { DelegatedSessionDtoRevokedAt } from './delegatedSessionDtoRevokedAt.js';
|
|
10
|
+
export interface DelegatedSessionDto {
|
|
11
|
+
id: string;
|
|
12
|
+
appId: string;
|
|
13
|
+
appClientId: string;
|
|
14
|
+
/** @nullable */
|
|
15
|
+
externalSubjectId?: DelegatedSessionDtoExternalSubjectId;
|
|
16
|
+
subjectRef: string;
|
|
17
|
+
actorRef: string;
|
|
18
|
+
orgId: string;
|
|
19
|
+
projectId: string;
|
|
20
|
+
environment: string;
|
|
21
|
+
capabilities: string[];
|
|
22
|
+
tokenJti: string;
|
|
23
|
+
expiresAt: string;
|
|
24
|
+
/** @nullable */
|
|
25
|
+
revokedAt?: DelegatedSessionDtoRevokedAt;
|
|
26
|
+
createdAt: string;
|
|
27
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* @nullable
|
|
10
|
+
*/
|
|
11
|
+
export type DelegatedSessionDtoExternalSubjectId = {
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
} | null;
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* @nullable
|
|
10
|
+
*/
|
|
11
|
+
export type DelegatedSessionDtoRevokedAt = {
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
} | null;
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
export type DelegatedSessionStatus = typeof DelegatedSessionStatus[keyof typeof DelegatedSessionStatus];
|
|
9
|
+
export declare const DelegatedSessionStatus: {
|
|
10
|
+
readonly active: "active";
|
|
11
|
+
readonly expired: "expired";
|
|
12
|
+
readonly revoked: "revoked";
|
|
13
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.16.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* App Runtime API
|
|
6
|
+
* App Runtime API extract (generated for client codegen).
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.DelegatedSessionStatus = void 0;
|
|
11
|
+
exports.DelegatedSessionStatus = {
|
|
12
|
+
active: 'active',
|
|
13
|
+
expired: 'expired',
|
|
14
|
+
revoked: 'revoked',
|
|
15
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
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 { DelegatedSessionStatus } from './delegatedSessionStatus.js';
|
|
9
|
+
import type { DelegatedSessionStatusDtoExternalSubjectId } from './delegatedSessionStatusDtoExternalSubjectId.js';
|
|
10
|
+
import type { DelegatedSessionStatusDtoRevokedAt } from './delegatedSessionStatusDtoRevokedAt.js';
|
|
11
|
+
export interface DelegatedSessionStatusDto {
|
|
12
|
+
id: string;
|
|
13
|
+
appId: string;
|
|
14
|
+
appClientId: string;
|
|
15
|
+
/** @nullable */
|
|
16
|
+
externalSubjectId?: DelegatedSessionStatusDtoExternalSubjectId;
|
|
17
|
+
subjectRef: string;
|
|
18
|
+
actorRef: string;
|
|
19
|
+
orgId: string;
|
|
20
|
+
projectId: string;
|
|
21
|
+
environment: string;
|
|
22
|
+
capabilities: string[];
|
|
23
|
+
tokenJti: string;
|
|
24
|
+
expiresAt: string;
|
|
25
|
+
/** @nullable */
|
|
26
|
+
revokedAt?: DelegatedSessionStatusDtoRevokedAt;
|
|
27
|
+
createdAt: string;
|
|
28
|
+
status: DelegatedSessionStatus;
|
|
29
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* @nullable
|
|
10
|
+
*/
|
|
11
|
+
export type DelegatedSessionStatusDtoExternalSubjectId = {
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
} | null;
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* @nullable
|
|
10
|
+
*/
|
|
11
|
+
export type DelegatedSessionStatusDtoRevokedAt = {
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
} | null;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export * from './anonAuthDto';
|
|
2
|
+
export * from './anonAuthResultDto';
|
|
3
|
+
export * from './appClientDto';
|
|
4
|
+
export * from './appClientDtoRevokedAt';
|
|
5
|
+
export * from './appDto';
|
|
6
|
+
export * from './appLockfileDto';
|
|
7
|
+
export * from './appLockfileDtoAgents';
|
|
8
|
+
export * from './appLockfileDtoBiomes';
|
|
9
|
+
export * from './appLockfileDtoCapabilities';
|
|
10
|
+
export * from './appLockfileDtoDeliverableSpecs';
|
|
11
|
+
export * from './appLockfileDtoSkills';
|
|
12
|
+
export * from './appLockfileDtoWorkflows';
|
|
13
|
+
export * from './audienceKind';
|
|
14
|
+
export * from './audiencePolicyDto';
|
|
15
|
+
export * from './audiencePolicyDtoRateLimitPerHourPerSubject';
|
|
16
|
+
export * from './audienceUpstreamDto';
|
|
17
|
+
export * from './audienceUpstreamDtoMetadata';
|
|
18
|
+
export * from './audienceUpstreamType';
|
|
19
|
+
export * from './biomeInstallDto';
|
|
20
|
+
export * from './biomeInstallDtoConfiguration';
|
|
21
|
+
export * from './brandingConfigDto';
|
|
22
|
+
export * from './brandingConfigDtoCssTokens';
|
|
23
|
+
export * from './capabilityPolicyOverrideDto';
|
|
24
|
+
export * from './createAppClientDto';
|
|
25
|
+
export * from './createAudiencePolicyDto';
|
|
26
|
+
export * from './createPortalDto';
|
|
27
|
+
export * from './createProjectAppDto';
|
|
28
|
+
export * from './createProjectAppDtoProjectId';
|
|
29
|
+
export * from './createPublicSessionDto';
|
|
30
|
+
export * from './createdAppClientDto';
|
|
31
|
+
export * from './createdAppClientDtoRevokedAt';
|
|
32
|
+
export * from './createdPublicSessionDto';
|
|
33
|
+
export * from './delegatedSessionDto';
|
|
34
|
+
export * from './delegatedSessionDtoExternalSubjectId';
|
|
35
|
+
export * from './delegatedSessionDtoRevokedAt';
|
|
36
|
+
export * from './delegatedSessionStatus';
|
|
37
|
+
export * from './delegatedSessionStatusDto';
|
|
38
|
+
export * from './delegatedSessionStatusDtoExternalSubjectId';
|
|
39
|
+
export * from './delegatedSessionStatusDtoRevokedAt';
|
|
40
|
+
export * from './oidcAuthDto';
|
|
41
|
+
export * from './oidcAuthResultDto';
|
|
42
|
+
export * from './portalAccessDto';
|
|
43
|
+
export * from './portalDetailDto';
|
|
44
|
+
export * from './portalShareDto';
|
|
45
|
+
export * from './projectAppsControllerListParams';
|
|
46
|
+
export * from './requestMagicLinkDto';
|
|
47
|
+
export * from './requestMagicLinkResultDto';
|
|
48
|
+
export * from './resourceManagedBy';
|
|
49
|
+
export * from './resourceVisibilityPattern';
|
|
50
|
+
export * from './subjectKind';
|
|
51
|
+
export * from './tokenClass';
|
|
52
|
+
export * from './updateAudiencePolicyDto';
|
|
53
|
+
export * from './updateAudiencePolicyDtoRateLimitPerHourPerSubject';
|
|
54
|
+
export * from './updatePortalDto';
|
|
55
|
+
export * from './verifyDelegatedSessionRequestDto';
|
|
56
|
+
export * from './verifyDelegatedSessionResponseDto';
|
|
57
|
+
export * from './verifyMagicLinkDto';
|
|
58
|
+
export * from './verifyMagicLinkResultDto';
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
// Auto-generated by tooling/codegen/regenerate-models-barrel.js — do not edit manually.
|
|
18
|
+
__exportStar(require("./anonAuthDto"), exports);
|
|
19
|
+
__exportStar(require("./anonAuthResultDto"), exports);
|
|
20
|
+
__exportStar(require("./appClientDto"), exports);
|
|
21
|
+
__exportStar(require("./appClientDtoRevokedAt"), exports);
|
|
22
|
+
__exportStar(require("./appDto"), exports);
|
|
23
|
+
__exportStar(require("./appLockfileDto"), exports);
|
|
24
|
+
__exportStar(require("./appLockfileDtoAgents"), exports);
|
|
25
|
+
__exportStar(require("./appLockfileDtoBiomes"), exports);
|
|
26
|
+
__exportStar(require("./appLockfileDtoCapabilities"), exports);
|
|
27
|
+
__exportStar(require("./appLockfileDtoDeliverableSpecs"), exports);
|
|
28
|
+
__exportStar(require("./appLockfileDtoSkills"), exports);
|
|
29
|
+
__exportStar(require("./appLockfileDtoWorkflows"), exports);
|
|
30
|
+
__exportStar(require("./audienceKind"), exports);
|
|
31
|
+
__exportStar(require("./audiencePolicyDto"), exports);
|
|
32
|
+
__exportStar(require("./audiencePolicyDtoRateLimitPerHourPerSubject"), exports);
|
|
33
|
+
__exportStar(require("./audienceUpstreamDto"), exports);
|
|
34
|
+
__exportStar(require("./audienceUpstreamDtoMetadata"), exports);
|
|
35
|
+
__exportStar(require("./audienceUpstreamType"), exports);
|
|
36
|
+
__exportStar(require("./biomeInstallDto"), exports);
|
|
37
|
+
__exportStar(require("./biomeInstallDtoConfiguration"), exports);
|
|
38
|
+
__exportStar(require("./brandingConfigDto"), exports);
|
|
39
|
+
__exportStar(require("./brandingConfigDtoCssTokens"), exports);
|
|
40
|
+
__exportStar(require("./capabilityPolicyOverrideDto"), exports);
|
|
41
|
+
__exportStar(require("./createAppClientDto"), exports);
|
|
42
|
+
__exportStar(require("./createAudiencePolicyDto"), exports);
|
|
43
|
+
__exportStar(require("./createPortalDto"), exports);
|
|
44
|
+
__exportStar(require("./createProjectAppDto"), exports);
|
|
45
|
+
__exportStar(require("./createProjectAppDtoProjectId"), exports);
|
|
46
|
+
__exportStar(require("./createPublicSessionDto"), exports);
|
|
47
|
+
__exportStar(require("./createdAppClientDto"), exports);
|
|
48
|
+
__exportStar(require("./createdAppClientDtoRevokedAt"), exports);
|
|
49
|
+
__exportStar(require("./createdPublicSessionDto"), exports);
|
|
50
|
+
__exportStar(require("./delegatedSessionDto"), exports);
|
|
51
|
+
__exportStar(require("./delegatedSessionDtoExternalSubjectId"), exports);
|
|
52
|
+
__exportStar(require("./delegatedSessionDtoRevokedAt"), exports);
|
|
53
|
+
__exportStar(require("./delegatedSessionStatus"), exports);
|
|
54
|
+
__exportStar(require("./delegatedSessionStatusDto"), exports);
|
|
55
|
+
__exportStar(require("./delegatedSessionStatusDtoExternalSubjectId"), exports);
|
|
56
|
+
__exportStar(require("./delegatedSessionStatusDtoRevokedAt"), exports);
|
|
57
|
+
__exportStar(require("./oidcAuthDto"), exports);
|
|
58
|
+
__exportStar(require("./oidcAuthResultDto"), exports);
|
|
59
|
+
__exportStar(require("./portalAccessDto"), exports);
|
|
60
|
+
__exportStar(require("./portalDetailDto"), exports);
|
|
61
|
+
__exportStar(require("./portalShareDto"), exports);
|
|
62
|
+
__exportStar(require("./projectAppsControllerListParams"), exports);
|
|
63
|
+
__exportStar(require("./requestMagicLinkDto"), exports);
|
|
64
|
+
__exportStar(require("./requestMagicLinkResultDto"), exports);
|
|
65
|
+
__exportStar(require("./resourceManagedBy"), exports);
|
|
66
|
+
__exportStar(require("./resourceVisibilityPattern"), exports);
|
|
67
|
+
__exportStar(require("./subjectKind"), exports);
|
|
68
|
+
__exportStar(require("./tokenClass"), exports);
|
|
69
|
+
__exportStar(require("./updateAudiencePolicyDto"), exports);
|
|
70
|
+
__exportStar(require("./updateAudiencePolicyDtoRateLimitPerHourPerSubject"), exports);
|
|
71
|
+
__exportStar(require("./updatePortalDto"), exports);
|
|
72
|
+
__exportStar(require("./verifyDelegatedSessionRequestDto"), exports);
|
|
73
|
+
__exportStar(require("./verifyDelegatedSessionResponseDto"), exports);
|
|
74
|
+
__exportStar(require("./verifyMagicLinkDto"), exports);
|
|
75
|
+
__exportStar(require("./verifyMagicLinkResultDto"), exports);
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
export interface OidcAuthDto {
|
|
9
|
+
/** OIDC id_token issued by the upstream identity provider configured for this App. */
|
|
10
|
+
idToken: string;
|
|
11
|
+
/** AppClient id issuing this auth request. */
|
|
12
|
+
appClientId: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
export interface OidcAuthResultDto {
|
|
9
|
+
/** Signed delegated-session JWT. */
|
|
10
|
+
accessToken: string;
|
|
11
|
+
/** Token expiry (ISO-8601). */
|
|
12
|
+
expiresAt: string;
|
|
13
|
+
/** Server-side DelegatedSession row id. */
|
|
14
|
+
sessionId: string;
|
|
15
|
+
/** Subject ref minted into the token. */
|
|
16
|
+
subjectRef: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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 { PortalShareDto } from './portalShareDto.js';
|
|
9
|
+
import type { ResourceVisibilityPattern } from './resourceVisibilityPattern.js';
|
|
10
|
+
export interface PortalAccessDto {
|
|
11
|
+
/** Portal visibility. `org-shared` = all org members; `explicit-share` = only the listed shares. */
|
|
12
|
+
visibility: ResourceVisibilityPattern;
|
|
13
|
+
shares: PortalShareDto[];
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
import type { PortalAccessDto } from './portalAccessDto.js';
|
|
10
|
+
export interface PortalDetailDto {
|
|
11
|
+
portal: AppDto;
|
|
12
|
+
access: PortalAccessDto;
|
|
13
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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 { SubjectKind } from './subjectKind.js';
|
|
9
|
+
export interface PortalShareDto {
|
|
10
|
+
/** Subject kind the share targets (portals use `user` or `group`). */
|
|
11
|
+
kind: SubjectKind;
|
|
12
|
+
/** Subject id (the `<id>` in `<kind>:<id>`). */
|
|
13
|
+
id: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export type ProjectAppsControllerListParams = {
|
|
9
|
+
/**
|
|
10
|
+
* Filter to a single project. Absent = all apps in the org.
|
|
11
|
+
*/
|
|
12
|
+
projectId?: string;
|
|
13
|
+
slug?: string;
|
|
14
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
export interface RequestMagicLinkDto {
|
|
9
|
+
/** Email address to send the magic-link to. Used as the external subject identifier. */
|
|
10
|
+
email: string;
|
|
11
|
+
/** AppClient id issuing this auth request. */
|
|
12
|
+
appClientId: string;
|
|
13
|
+
}
|
|
@@ -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
|
+
export interface RequestMagicLinkResultDto {
|
|
9
|
+
/** Whether the magic-link was successfully queued for delivery. Always true on success — a 2xx response means the token was created and the delivery event was published. */
|
|
10
|
+
queued: boolean;
|
|
11
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* Provisioning ownership marker. `iac` = managed by the declarative control plane (Terraform / xema.yaml); `seeder` = a distribution default; `ui` = hand-managed (or adopted from iac/seeder via a UI edit); `system` = platform-shipped; null = unmanaged/legacy. Lets a console badge an IaC-owned resource and surface an "export as code" affordance.
|
|
10
|
+
*/
|
|
11
|
+
export type ResourceManagedBy = typeof ResourceManagedBy[keyof typeof ResourceManagedBy];
|
|
12
|
+
export declare const ResourceManagedBy: {
|
|
13
|
+
readonly ui: "ui";
|
|
14
|
+
readonly iac: "iac";
|
|
15
|
+
readonly seeder: "seeder";
|
|
16
|
+
readonly biome_contributed: "biome_contributed";
|
|
17
|
+
readonly runtime_registered: "runtime_registered";
|
|
18
|
+
readonly system: "system";
|
|
19
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.16.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* App Runtime API
|
|
6
|
+
* App Runtime API extract (generated for client codegen).
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.ResourceManagedBy = void 0;
|
|
11
|
+
exports.ResourceManagedBy = {
|
|
12
|
+
ui: 'ui',
|
|
13
|
+
iac: 'iac',
|
|
14
|
+
seeder: 'seeder',
|
|
15
|
+
biome_contributed: 'biome_contributed',
|
|
16
|
+
runtime_registered: 'runtime_registered',
|
|
17
|
+
system: 'system',
|
|
18
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* Portal visibility. `org-shared` = all org members; `explicit-share` = only the listed shares.
|
|
10
|
+
*/
|
|
11
|
+
export type ResourceVisibilityPattern = typeof ResourceVisibilityPattern[keyof typeof ResourceVisibilityPattern];
|
|
12
|
+
export declare const ResourceVisibilityPattern: {
|
|
13
|
+
readonly 'owner-only': "owner-only";
|
|
14
|
+
readonly 'org-shared': "org-shared";
|
|
15
|
+
readonly 'project-shared': "project-shared";
|
|
16
|
+
readonly 'space-shared': "space-shared";
|
|
17
|
+
readonly 'explicit-share': "explicit-share";
|
|
18
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.16.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* App Runtime API
|
|
6
|
+
* App Runtime API extract (generated for client codegen).
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.ResourceVisibilityPattern = void 0;
|
|
11
|
+
exports.ResourceVisibilityPattern = {
|
|
12
|
+
'owner-only': 'owner-only',
|
|
13
|
+
'org-shared': 'org-shared',
|
|
14
|
+
'project-shared': 'project-shared',
|
|
15
|
+
'space-shared': 'space-shared',
|
|
16
|
+
'explicit-share': 'explicit-share',
|
|
17
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
/**
|
|
9
|
+
* Subject kind the share targets (portals use `user` or `group`).
|
|
10
|
+
*/
|
|
11
|
+
export type SubjectKind = typeof SubjectKind[keyof typeof SubjectKind];
|
|
12
|
+
export declare const SubjectKind: {
|
|
13
|
+
readonly user: "user";
|
|
14
|
+
readonly agent: "agent";
|
|
15
|
+
readonly app: "app";
|
|
16
|
+
readonly 'app-client': "app-client";
|
|
17
|
+
readonly service: "service";
|
|
18
|
+
readonly group: "group";
|
|
19
|
+
readonly role: "role";
|
|
20
|
+
readonly runner: "runner";
|
|
21
|
+
readonly 'external-subject': "external-subject";
|
|
22
|
+
readonly anon: "anon";
|
|
23
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by orval v8.16.0 🍺
|
|
4
|
+
* Do not edit manually.
|
|
5
|
+
* App Runtime API
|
|
6
|
+
* App Runtime API extract (generated for client codegen).
|
|
7
|
+
* OpenAPI spec version: 0.1.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.SubjectKind = void 0;
|
|
11
|
+
exports.SubjectKind = {
|
|
12
|
+
user: 'user',
|
|
13
|
+
agent: 'agent',
|
|
14
|
+
app: 'app',
|
|
15
|
+
'app-client': 'app-client',
|
|
16
|
+
service: 'service',
|
|
17
|
+
group: 'group',
|
|
18
|
+
role: 'role',
|
|
19
|
+
runner: 'runner',
|
|
20
|
+
'external-subject': 'external-subject',
|
|
21
|
+
anon: 'anon',
|
|
22
|
+
};
|