@faable/deploy-sdk 2.3.0 → 2.5.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/FaableDeployApi.d.ts +19 -0
- package/dist/FaableDeployApi.d.ts.map +1 -1
- package/dist/FaableDeployApi.js +10 -0
- package/dist/api/api-types.d.ts +2 -4
- package/dist/api/api-types.d.ts.map +1 -1
- package/dist/api/generated-client.d.ts +17 -0
- package/dist/api/generated-client.d.ts.map +1 -1
- package/dist/api/types.d.ts +33 -874
- package/dist/api/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/spec/openapi.json +100 -1482
|
@@ -20,6 +20,17 @@ export interface AppTrafficQuery {
|
|
|
20
20
|
export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
21
21
|
constructor(params?: ApiParams);
|
|
22
22
|
updateStatus<T>(id: string, data: T): Promise<any>;
|
|
23
|
+
/**
|
|
24
|
+
* Mint the deployment-scoped builder credential for a remote build
|
|
25
|
+
* (arch/deploy/deploy-v2-remote-build.md). x-internal + service accounts
|
|
26
|
+
* only, so hand-written like updateStatus. Used by the build orchestrator
|
|
27
|
+
* (controller-deploy) when it admits a faable-builder Job; re-minting
|
|
28
|
+
* atomically invalidates the previous token.
|
|
29
|
+
*/
|
|
30
|
+
mintBuildToken(deployment_id: string): Promise<{
|
|
31
|
+
token: string;
|
|
32
|
+
expires_in: number;
|
|
33
|
+
}>;
|
|
23
34
|
/**
|
|
24
35
|
* Per-app HTTP traffic metrics. Kept hand-written: the rich `AppTrafficQuery`
|
|
25
36
|
* coercion (numbers → query strings) and the curated `AppTraffic` return type
|
|
@@ -92,6 +103,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
92
103
|
github_ref?: string;
|
|
93
104
|
github_actor?: string;
|
|
94
105
|
github_commit_message?: string;
|
|
106
|
+
source?: import("./index.js").components["schemas"]["DeploymentSource"];
|
|
95
107
|
status: import("./index.js").components["schemas"]["DeploymentStatus"];
|
|
96
108
|
metadata: {
|
|
97
109
|
[key: string]: unknown;
|
|
@@ -112,6 +124,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
112
124
|
runtime: import("./index.js").components["schemas"]["AppRuntime"];
|
|
113
125
|
runtime_strategy: string | null;
|
|
114
126
|
mode: import("./index.js").components["schemas"]["AppMode"];
|
|
127
|
+
build_mode: import("./index.js").components["schemas"]["AppBuildMode"];
|
|
115
128
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
116
129
|
coexistence_keep_versions?: number | null;
|
|
117
130
|
coexistence_drain_hours?: number | null;
|
|
@@ -203,6 +216,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
203
216
|
runtime: import("./index.js").components["schemas"]["AppRuntime"];
|
|
204
217
|
runtime_strategy: string | null;
|
|
205
218
|
mode: import("./index.js").components["schemas"]["AppMode"];
|
|
219
|
+
build_mode: import("./index.js").components["schemas"]["AppBuildMode"];
|
|
206
220
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
207
221
|
coexistence_keep_versions?: number | null;
|
|
208
222
|
coexistence_drain_hours?: number | null;
|
|
@@ -230,6 +244,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
230
244
|
runtime: import("./index.js").components["schemas"]["AppRuntime"];
|
|
231
245
|
runtime_strategy: string | null;
|
|
232
246
|
mode: import("./index.js").components["schemas"]["AppMode"];
|
|
247
|
+
build_mode: import("./index.js").components["schemas"]["AppBuildMode"];
|
|
233
248
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
234
249
|
coexistence_keep_versions?: number | null;
|
|
235
250
|
coexistence_drain_hours?: number | null;
|
|
@@ -260,6 +275,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
260
275
|
runtime: import("./index.js").components["schemas"]["AppRuntime"];
|
|
261
276
|
runtime_strategy: string | null;
|
|
262
277
|
mode: import("./index.js").components["schemas"]["AppMode"];
|
|
278
|
+
build_mode: import("./index.js").components["schemas"]["AppBuildMode"];
|
|
263
279
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
264
280
|
coexistence_keep_versions?: number | null;
|
|
265
281
|
coexistence_drain_hours?: number | null;
|
|
@@ -291,6 +307,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
291
307
|
github_ref?: string;
|
|
292
308
|
github_actor?: string;
|
|
293
309
|
github_commit_message?: string;
|
|
310
|
+
source?: import("./index.js").components["schemas"]["DeploymentSource"];
|
|
294
311
|
status: import("./index.js").components["schemas"]["DeploymentStatus"];
|
|
295
312
|
metadata: {
|
|
296
313
|
[key: string]: unknown;
|
|
@@ -307,6 +324,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
307
324
|
github_ref?: string;
|
|
308
325
|
github_actor?: string;
|
|
309
326
|
github_commit_message?: string;
|
|
327
|
+
source?: import("./index.js").components["schemas"]["DeploymentSource"];
|
|
310
328
|
status: import("./index.js").components["schemas"]["DeploymentStatus"];
|
|
311
329
|
metadata: {
|
|
312
330
|
[key: string]: unknown;
|
|
@@ -326,6 +344,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
326
344
|
github_ref?: string;
|
|
327
345
|
github_actor?: string;
|
|
328
346
|
github_commit_message?: string;
|
|
347
|
+
source?: import("./index.js").components["schemas"]["DeploymentSource"];
|
|
329
348
|
status: import("./index.js").components["schemas"]["DeploymentStatus"];
|
|
330
349
|
metadata: {
|
|
331
350
|
[key: string]: unknown;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FaableDeployApi.d.ts","sourceRoot":"","sources":["../src/FaableDeployApi.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AACrE,OAAO,KAAK,EAGV,UAAU,EAEX,MAAM,uBAAuB,CAAC;AAG/B,MAAM,WAAW,eAAe;IAC9B,yCAAyC;IACzC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,qCAAqC;IACrC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,+DAA+D;IAC/D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0EAA0E;IAC1E,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,2EAA2E;IAC3E,cAAc,CAAC,EAAE,UAAU,GAAG,WAAW,GAAG,YAAY,CAAC;IACzD,yDAAyD;IACzD,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,iEAAiE;IACjE,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,qBAAa,SAAU,SAAQ,wBAAwB;gBACzC,MAAM,CAAC,EAAE,SAAS;IAoB9B,YAAY,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IAInC;;;;OAIG;IACH,aAAa,CAAC,EAAE,EAAE,MAAM,EAAE,KAAK,GAAE,eAAoB;IAerD;;;;;OAKG;IACH,WAAW,CAAC,EAAE,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"FaableDeployApi.d.ts","sourceRoot":"","sources":["../src/FaableDeployApi.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AACrE,OAAO,KAAK,EAGV,UAAU,EAEX,MAAM,uBAAuB,CAAC;AAG/B,MAAM,WAAW,eAAe;IAC9B,yCAAyC;IACzC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,qCAAqC;IACrC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,+DAA+D;IAC/D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0EAA0E;IAC1E,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,2EAA2E;IAC3E,cAAc,CAAC,EAAE,UAAU,GAAG,WAAW,GAAG,YAAY,CAAC;IACzD,yDAAyD;IACzD,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,iEAAiE;IACjE,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,qBAAa,SAAU,SAAQ,wBAAwB;gBACzC,MAAM,CAAC,EAAE,SAAS;IAoB9B,YAAY,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IAInC;;;;;;OAMG;IACH,cAAc,CAAC,aAAa,EAAE,MAAM;eACA,MAAM;oBAAc,MAAM;;IAM9D;;;;OAIG;IACH,aAAa,CAAC,EAAE,EAAE,MAAM,EAAE,KAAK,GAAE,eAAoB;IAerD;;;;;OAKG;IACH,WAAW,CAAC,EAAE,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA3Ef,CAAC;oBAA0B,CAAC;;;;;;;;;;;;;;;;;IAoFnC,qFAAqF;IACrF,aAAa,CACX,GAAG,IAAI,EAAE,UAAU,CAAC,wBAAwB,CAAC,eAAe,CAAC,CAAC;;;;;;;;;iBA4C0h7D,0CAAsB;gBAAqD,0CAAsB;;;;;;;IAvC3r7D,uEAAuE;IACvE,MAAM,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,wBAAwB,CAAC,QAAQ,CAAC,CAAC;;;;;;;;;iBAsC6kzC,0CAAsB;;cAAsG,0CAAsB;oBAAgD,0CAAsB;;;;;;gBAA8uB,0CAAsB;;;;;;;;;;IAlCvm1C,+EAA+E;IAC/E,WAAW,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,wBAAwB,CAAC,YAAY,CAAC,CAAC;;;;;;;;;;oBAiC0rqB,0CAAsB;;;;;;;;;;;;;;;;;;;;;;;;kBAlIhxqB,CAAC;oBAA0B,CAAC;;;;;;;;;;oBAkI8tqB,0CAAsB;;;;;;;;IA7BvxqB;;;;;;OAMG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;qBAsB6yb,0CAAsB;;kBAA8E,0CAAsB;wBAAoC,0CAAsB;;;;;;oBAA8lB,0CAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAlIjod,CAAC;oBAA0B,CAAC;;;;;;;;;;qBAkI6zb,0CAAsB;;kBAA8E,0CAAsB;wBAAoC,0CAAsB;;;;;;oBAA8lB,0CAAsB;;;;;;;;;;;IAZxod;;;;OAIG;IACH,eAAe,CAAC,KAAK,CAAC,EAAE,MAAM;;;;;;;;;;qBAOu3jB,0CAAsB;oBAAyC,0CAAsB;;;;;;;;;;;;;;;;;;;;;;;;;kBAlIn+jB,CAAC;oBAA0B,CAAC;;;;;;;;;;qBAkIk3jB,0CAAsB;oBAAyC,0CAAsB;;;;;;;;CAD3+jB"}
|
package/dist/FaableDeployApi.js
CHANGED
|
@@ -22,6 +22,16 @@ export class DeployApi extends GeneratedFaableDeployApi {
|
|
|
22
22
|
updateStatus(id, data) {
|
|
23
23
|
return this.fetcher.post(`/status/${id}`, data);
|
|
24
24
|
}
|
|
25
|
+
/**
|
|
26
|
+
* Mint the deployment-scoped builder credential for a remote build
|
|
27
|
+
* (arch/deploy/deploy-v2-remote-build.md). x-internal + service accounts
|
|
28
|
+
* only, so hand-written like updateStatus. Used by the build orchestrator
|
|
29
|
+
* (controller-deploy) when it admits a faable-builder Job; re-minting
|
|
30
|
+
* atomically invalidates the previous token.
|
|
31
|
+
*/
|
|
32
|
+
mintBuildToken(deployment_id) {
|
|
33
|
+
return this.fetcher.post(`/deployment/${deployment_id}/build-token`, {});
|
|
34
|
+
}
|
|
25
35
|
/**
|
|
26
36
|
* Per-app HTTP traffic metrics. Kept hand-written: the rich `AppTrafficQuery`
|
|
27
37
|
* coercion (numbers → query strings) and the curated `AppTraffic` return type
|
package/dist/api/api-types.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export type ApiKey = components["schemas"]["ApiKey"];
|
|
|
3
3
|
export type ApiKeyCreate = components["schemas"]["ApiKeyCreate"];
|
|
4
4
|
export type ApiKeyUpdate = components["schemas"]["ApiKeyUpdate"];
|
|
5
5
|
export type App = components["schemas"]["App"];
|
|
6
|
+
export type AppBuildMode = components["schemas"]["AppBuildMode"];
|
|
6
7
|
export type AppChecknameResponse = components["schemas"]["AppChecknameResponse"];
|
|
7
8
|
export type AppCoexistenceRouting = components["schemas"]["AppCoexistenceRouting"];
|
|
8
9
|
export type AppCreate = components["schemas"]["AppCreate"];
|
|
@@ -19,6 +20,7 @@ export type DeployBranchResult = components["schemas"]["DeployBranchResult"];
|
|
|
19
20
|
export type DeployWorkflowStatus = components["schemas"]["DeployWorkflowStatus"];
|
|
20
21
|
export type Deployment = components["schemas"]["Deployment"];
|
|
21
22
|
export type DeploymentCreate = components["schemas"]["DeploymentCreate"];
|
|
23
|
+
export type DeploymentSource = components["schemas"]["DeploymentSource"];
|
|
22
24
|
export type DeploymentStatus = components["schemas"]["DeploymentStatus"];
|
|
23
25
|
export type DeploymentUpdate = components["schemas"]["DeploymentUpdate"];
|
|
24
26
|
export type Domain = components["schemas"]["Domain"];
|
|
@@ -47,16 +49,12 @@ export type EventProjectCreate = components["schemas"]["EventProjectCreate"];
|
|
|
47
49
|
export type EventProjectDelete = components["schemas"]["EventProjectDelete"];
|
|
48
50
|
export type EventProjectUpdate = components["schemas"]["EventProjectUpdate"];
|
|
49
51
|
export type EventSecretCreate_batch = components["schemas"]["EventSecretCreate_batch"];
|
|
50
|
-
export type GithubInstallation = components["schemas"]["GithubInstallation"];
|
|
51
|
-
export type GithubRepo = components["schemas"]["GithubRepo"];
|
|
52
52
|
export type Project = components["schemas"]["Project"];
|
|
53
53
|
export type ProjectCreate = components["schemas"]["ProjectCreate"];
|
|
54
|
-
export type ProjectFavorites = components["schemas"]["ProjectFavorites"];
|
|
55
54
|
export type ProjectInvite = components["schemas"]["ProjectInvite"];
|
|
56
55
|
export type ProjectUpdate = components["schemas"]["ProjectUpdate"];
|
|
57
56
|
export type Secret = components["schemas"]["Secret"];
|
|
58
57
|
export type SecretCreateBatch = components["schemas"]["SecretCreateBatch"];
|
|
59
58
|
export type SecretPage = components["schemas"]["SecretPage"];
|
|
60
59
|
export type SecretUpsert = components["schemas"]["SecretUpsert"];
|
|
61
|
-
export type StatusUpdate = components["schemas"]["StatusUpdate"];
|
|
62
60
|
//# sourceMappingURL=api-types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api-types.d.ts","sourceRoot":"","sources":["../../src/api/api-types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"api-types.d.ts","sourceRoot":"","sources":["../../src/api/api-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -47,6 +47,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
47
47
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
48
48
|
runtime_strategy: string | null;
|
|
49
49
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
50
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
50
51
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
51
52
|
coexistence_keep_versions?: number | null;
|
|
52
53
|
coexistence_drain_hours?: number | null;
|
|
@@ -79,6 +80,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
79
80
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
80
81
|
runtime_strategy: string | null;
|
|
81
82
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
83
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
82
84
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
83
85
|
coexistence_keep_versions?: number | null;
|
|
84
86
|
coexistence_drain_hours?: number | null;
|
|
@@ -111,6 +113,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
111
113
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
112
114
|
runtime_strategy: string | null;
|
|
113
115
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
116
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
114
117
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
115
118
|
coexistence_keep_versions?: number | null;
|
|
116
119
|
coexistence_drain_hours?: number | null;
|
|
@@ -166,6 +169,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
166
169
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
167
170
|
runtime_strategy: string | null;
|
|
168
171
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
172
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
169
173
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
170
174
|
coexistence_keep_versions?: number | null;
|
|
171
175
|
coexistence_drain_hours?: number | null;
|
|
@@ -199,6 +203,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
199
203
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
200
204
|
runtime_strategy: string | null;
|
|
201
205
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
206
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
202
207
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
203
208
|
coexistence_keep_versions?: number | null;
|
|
204
209
|
coexistence_drain_hours?: number | null;
|
|
@@ -226,6 +231,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
226
231
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
227
232
|
runtime_strategy: string | null;
|
|
228
233
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
234
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
229
235
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
230
236
|
coexistence_keep_versions?: number | null;
|
|
231
237
|
coexistence_drain_hours?: number | null;
|
|
@@ -256,6 +262,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
256
262
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
257
263
|
runtime_strategy: string | null;
|
|
258
264
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
265
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
259
266
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
260
267
|
coexistence_keep_versions?: number | null;
|
|
261
268
|
coexistence_drain_hours?: number | null;
|
|
@@ -315,6 +322,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
315
322
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
316
323
|
runtime_strategy: string | null;
|
|
317
324
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
325
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
318
326
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
319
327
|
coexistence_keep_versions?: number | null;
|
|
320
328
|
coexistence_drain_hours?: number | null;
|
|
@@ -405,6 +413,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
405
413
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
406
414
|
runtime_strategy: string | null;
|
|
407
415
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
416
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
408
417
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
409
418
|
coexistence_keep_versions?: number | null;
|
|
410
419
|
coexistence_drain_hours?: number | null;
|
|
@@ -437,6 +446,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
437
446
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
438
447
|
runtime_strategy: string | null;
|
|
439
448
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
449
|
+
build_mode: import("./types.js").components["schemas"]["AppBuildMode"];
|
|
440
450
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
441
451
|
coexistence_keep_versions?: number | null;
|
|
442
452
|
coexistence_drain_hours?: number | null;
|
|
@@ -466,6 +476,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
466
476
|
github_ref?: string;
|
|
467
477
|
github_actor?: string;
|
|
468
478
|
github_commit_message?: string;
|
|
479
|
+
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
469
480
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
470
481
|
metadata: {
|
|
471
482
|
[key: string]: unknown;
|
|
@@ -487,6 +498,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
487
498
|
github_ref?: string;
|
|
488
499
|
github_actor?: string;
|
|
489
500
|
github_commit_message?: string;
|
|
501
|
+
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
490
502
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
491
503
|
metadata: {
|
|
492
504
|
[key: string]: unknown;
|
|
@@ -508,6 +520,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
508
520
|
github_ref?: string;
|
|
509
521
|
github_actor?: string;
|
|
510
522
|
github_commit_message?: string;
|
|
523
|
+
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
511
524
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
512
525
|
metadata: {
|
|
513
526
|
[key: string]: unknown;
|
|
@@ -546,6 +559,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
546
559
|
github_ref?: string;
|
|
547
560
|
github_actor?: string;
|
|
548
561
|
github_commit_message?: string;
|
|
562
|
+
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
549
563
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
550
564
|
metadata: {
|
|
551
565
|
[key: string]: unknown;
|
|
@@ -562,6 +576,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
562
576
|
github_ref?: string;
|
|
563
577
|
github_actor?: string;
|
|
564
578
|
github_commit_message?: string;
|
|
579
|
+
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
565
580
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
566
581
|
metadata: {
|
|
567
582
|
[key: string]: unknown;
|
|
@@ -581,6 +596,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
581
596
|
github_ref?: string;
|
|
582
597
|
github_actor?: string;
|
|
583
598
|
github_commit_message?: string;
|
|
599
|
+
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
584
600
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
585
601
|
metadata: {
|
|
586
602
|
[key: string]: unknown;
|
|
@@ -603,6 +619,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
603
619
|
github_ref?: string;
|
|
604
620
|
github_actor?: string;
|
|
605
621
|
github_commit_message?: string;
|
|
622
|
+
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
606
623
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
607
624
|
metadata: {
|
|
608
625
|
[key: string]: unknown;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generated-client.d.ts","sourceRoot":"","sources":["../../src/api/generated-client.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAI7C,KAAK,MAAM,CAAC,CAAC,SAAS,MAAM,UAAU,IAAI,UAAU,CAAC,CAAC,CAAC,SAAS;IAC9D,WAAW,EAAE;QAAE,OAAO,EAAE;YAAE,kBAAkB,EAAE,MAAM,CAAC,CAAA;SAAE,CAAA;KAAE,CAAC;CAC3D,GACG,CAAC,GACD,KAAK,CAAC;AAsBV,KAAK,OAAO,CAAC,CAAC,SAAS,MAAM,UAAU,IAAI,UAAU,CAAC,CAAC,CAAC,SAAS;IAC/D,UAAU,EAAE;QAAE,KAAK,CAAC,EAAE,MAAM,CAAC,CAAA;KAAE,CAAC;CACjC,GACG,WAAW,CAAC,CAAC,CAAC,GACd,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AAE1B;;;;GAIG;AACH,8BAAsB,wBAAyB,SAAQ,SAAS;IAC9D;;;;OAIG;IACH,YAAY,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC;;;;;;;IAI9C;;;;OAIG;IACH,SAAS,CAAC,IAAI,EAAE,MAAM,CAAC,YAAY,CAAC;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"generated-client.d.ts","sourceRoot":"","sources":["../../src/api/generated-client.ts"],"names":[],"mappings":"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"}
|