@xemahq/app-platform-api-client 0.3.4 → 0.3.9
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/models/createProjectAppDto.d.ts +4 -2
- package/dist/models/index.d.ts +1 -1
- package/dist/models/index.js +1 -1
- package/dist/models/surfaceKind.d.ts +14 -0
- package/dist/models/{createProjectAppDtoProjectId.js → surfaceKind.js} +6 -0
- package/package.json +2 -2
- package/dist/models/createProjectAppDtoProjectId.d.ts +0 -12
|
@@ -7,7 +7,7 @@ import type { AppLockfileDto } from './appLockfileDto.js';
|
|
|
7
7
|
import type { BiomeInstallDto } from './biomeInstallDto.js';
|
|
8
8
|
import type { BrandingConfigDto } from './brandingConfigDto.js';
|
|
9
9
|
import type { CapabilityPolicyOverrideDto } from './capabilityPolicyOverrideDto.js';
|
|
10
|
-
import type {
|
|
10
|
+
import type { SurfaceKind } from './surfaceKind.js';
|
|
11
11
|
export interface CreateProjectAppDto {
|
|
12
12
|
/** Stable slug unique within (orgId, projectId) for project apps, or (orgId) for portals. */
|
|
13
13
|
slug: string;
|
|
@@ -15,7 +15,7 @@ export interface CreateProjectAppDto {
|
|
|
15
15
|
* Project id. Null or absent for org-scoped portals.
|
|
16
16
|
* @nullable
|
|
17
17
|
*/
|
|
18
|
-
projectId?:
|
|
18
|
+
projectId?: string | null;
|
|
19
19
|
displayName: string;
|
|
20
20
|
/** Default ExecutionEnvironment slug (e.g. `public-session`). */
|
|
21
21
|
defaultZone: string;
|
|
@@ -28,4 +28,6 @@ export interface CreateProjectAppDto {
|
|
|
28
28
|
subdomainEnabled?: boolean;
|
|
29
29
|
defaultAudience?: string;
|
|
30
30
|
archived?: boolean;
|
|
31
|
+
/** Authoring tier. `declared` (the default) and `composed` Apps ARE their JSON definition. A `coded` App is one the platform hosts but does not author — a Webapp Studio session builds a container image from the user's own repo, and every release of it carries that image coordinate. Immutable after creation: the tier decides what a release IS, so changing it would leave existing releases describing the wrong thing. */
|
|
32
|
+
surface?: SurfaceKind;
|
|
31
33
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -42,7 +42,6 @@ export * from './createAppClientDto';
|
|
|
42
42
|
export * from './createAudiencePolicyDto';
|
|
43
43
|
export * from './createPortalDto';
|
|
44
44
|
export * from './createProjectAppDto';
|
|
45
|
-
export * from './createProjectAppDtoProjectId';
|
|
46
45
|
export * from './createPublicSessionDto';
|
|
47
46
|
export * from './createdAppClientDto';
|
|
48
47
|
export * from './createdAppClientDtoDataEnvelope';
|
|
@@ -72,6 +71,7 @@ export * from './requestMagicLinkResultDtoDataEnvelope';
|
|
|
72
71
|
export * from './resourceManagedBy';
|
|
73
72
|
export * from './resourceVisibilityPattern';
|
|
74
73
|
export * from './subjectKind';
|
|
74
|
+
export * from './surfaceKind';
|
|
75
75
|
export * from './tokenClass';
|
|
76
76
|
export * from './updateAudiencePolicyDto';
|
|
77
77
|
export * from './updateAudiencePolicyDtoRateLimitPerHourPerSubject';
|
package/dist/models/index.js
CHANGED
|
@@ -59,7 +59,6 @@ __exportStar(require("./createAppClientDto"), exports);
|
|
|
59
59
|
__exportStar(require("./createAudiencePolicyDto"), exports);
|
|
60
60
|
__exportStar(require("./createPortalDto"), exports);
|
|
61
61
|
__exportStar(require("./createProjectAppDto"), exports);
|
|
62
|
-
__exportStar(require("./createProjectAppDtoProjectId"), exports);
|
|
63
62
|
__exportStar(require("./createPublicSessionDto"), exports);
|
|
64
63
|
__exportStar(require("./createdAppClientDto"), exports);
|
|
65
64
|
__exportStar(require("./createdAppClientDtoDataEnvelope"), exports);
|
|
@@ -89,6 +88,7 @@ __exportStar(require("./requestMagicLinkResultDtoDataEnvelope"), exports);
|
|
|
89
88
|
__exportStar(require("./resourceManagedBy"), exports);
|
|
90
89
|
__exportStar(require("./resourceVisibilityPattern"), exports);
|
|
91
90
|
__exportStar(require("./subjectKind"), exports);
|
|
91
|
+
__exportStar(require("./surfaceKind"), exports);
|
|
92
92
|
__exportStar(require("./tokenClass"), exports);
|
|
93
93
|
__exportStar(require("./updateAudiencePolicyDto"), exports);
|
|
94
94
|
__exportStar(require("./updateAudiencePolicyDtoRateLimitPerHourPerSubject"), exports);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
3
|
+
* App Runtime API
|
|
4
|
+
* OpenAPI spec version: 0.1.2
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* Authoring tier. `declared` (the default) and `composed` Apps ARE their JSON definition. A `coded` App is one the platform hosts but does not author — a Webapp Studio session builds a container image from the user's own repo, and every release of it carries that image coordinate. Immutable after creation: the tier decides what a release IS, so changing it would leave existing releases describing the wrong thing.
|
|
8
|
+
*/
|
|
9
|
+
export type SurfaceKind = typeof SurfaceKind[keyof typeof SurfaceKind];
|
|
10
|
+
export declare const SurfaceKind: {
|
|
11
|
+
readonly declared: "declared";
|
|
12
|
+
readonly composed: "composed";
|
|
13
|
+
readonly coded: "coded";
|
|
14
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xemahq/app-platform-api-client",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
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.12.
|
|
23
|
+
"generator": "@xemahq/api-client-generator@0.12.1",
|
|
24
24
|
"source": "openapi.public.json"
|
|
25
25
|
},
|
|
26
26
|
"license": "LicenseRef-Xema-BSL-1.1",
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated by @xemahq/api-client-generator — do not edit manually.
|
|
3
|
-
* App Runtime API
|
|
4
|
-
* OpenAPI spec version: 0.1.2
|
|
5
|
-
*/
|
|
6
|
-
/**
|
|
7
|
-
* Project id. Null or absent for org-scoped portals.
|
|
8
|
-
* @nullable
|
|
9
|
-
*/
|
|
10
|
-
export type CreateProjectAppDtoProjectId = {
|
|
11
|
-
[key: string]: unknown;
|
|
12
|
-
} | null;
|