@faable/deploy-sdk 2.5.0 → 2.7.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 +39 -5
- package/dist/FaableDeployApi.d.ts.map +1 -1
- package/dist/FaableDeployApi.js +30 -0
- package/dist/api/api-types.d.ts +2 -0
- package/dist/api/api-types.d.ts.map +1 -1
- package/dist/api/custom-types.d.ts +50 -0
- package/dist/api/custom-types.d.ts.map +1 -1
- package/dist/api/generated-client.d.ts +43 -13
- package/dist/api/generated-client.d.ts.map +1 -1
- package/dist/api/types.d.ts +55 -16
- package/dist/api/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/spec/openapi.json +329 -36
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ApiParams } from "@faable/sdk-base";
|
|
2
2
|
import { GeneratedFaableDeployApi } from "./api/generated-client.js";
|
|
3
|
-
import type { AppTraffic } from "./api/custom-types.js";
|
|
3
|
+
import type { AppTraffic, WafProfile, AppWaf } from "./api/custom-types.js";
|
|
4
4
|
export interface AppTrafficQuery {
|
|
5
5
|
/** Unix seconds; defaults to 24h ago. */
|
|
6
6
|
from?: number;
|
|
@@ -104,6 +104,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
104
104
|
github_actor?: string;
|
|
105
105
|
github_commit_message?: string;
|
|
106
106
|
source?: import("./index.js").components["schemas"]["DeploymentSource"];
|
|
107
|
+
artifact?: import("./index.js").components["schemas"]["DeploymentArtifact"];
|
|
107
108
|
status: import("./index.js").components["schemas"]["DeploymentStatus"];
|
|
108
109
|
metadata: {
|
|
109
110
|
[key: string]: unknown;
|
|
@@ -124,7 +125,9 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
124
125
|
runtime: import("./index.js").components["schemas"]["AppRuntime"];
|
|
125
126
|
runtime_strategy: string | null;
|
|
126
127
|
mode: import("./index.js").components["schemas"]["AppMode"];
|
|
127
|
-
build_mode
|
|
128
|
+
build_mode?: ("local" | "remote") | null;
|
|
129
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
130
|
+
root_dir?: string | null;
|
|
128
131
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
129
132
|
coexistence_keep_versions?: number | null;
|
|
130
133
|
coexistence_drain_hours?: number | null;
|
|
@@ -216,7 +219,9 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
216
219
|
runtime: import("./index.js").components["schemas"]["AppRuntime"];
|
|
217
220
|
runtime_strategy: string | null;
|
|
218
221
|
mode: import("./index.js").components["schemas"]["AppMode"];
|
|
219
|
-
build_mode
|
|
222
|
+
build_mode?: ("local" | "remote") | null;
|
|
223
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
224
|
+
root_dir?: string | null;
|
|
220
225
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
221
226
|
coexistence_keep_versions?: number | null;
|
|
222
227
|
coexistence_drain_hours?: number | null;
|
|
@@ -244,7 +249,9 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
244
249
|
runtime: import("./index.js").components["schemas"]["AppRuntime"];
|
|
245
250
|
runtime_strategy: string | null;
|
|
246
251
|
mode: import("./index.js").components["schemas"]["AppMode"];
|
|
247
|
-
build_mode
|
|
252
|
+
build_mode?: ("local" | "remote") | null;
|
|
253
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
254
|
+
root_dir?: string | null;
|
|
248
255
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
249
256
|
coexistence_keep_versions?: number | null;
|
|
250
257
|
coexistence_drain_hours?: number | null;
|
|
@@ -275,7 +282,9 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
275
282
|
runtime: import("./index.js").components["schemas"]["AppRuntime"];
|
|
276
283
|
runtime_strategy: string | null;
|
|
277
284
|
mode: import("./index.js").components["schemas"]["AppMode"];
|
|
278
|
-
build_mode
|
|
285
|
+
build_mode?: ("local" | "remote") | null;
|
|
286
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
287
|
+
root_dir?: string | null;
|
|
279
288
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
280
289
|
coexistence_keep_versions?: number | null;
|
|
281
290
|
coexistence_drain_hours?: number | null;
|
|
@@ -308,6 +317,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
308
317
|
github_actor?: string;
|
|
309
318
|
github_commit_message?: string;
|
|
310
319
|
source?: import("./index.js").components["schemas"]["DeploymentSource"];
|
|
320
|
+
artifact?: import("./index.js").components["schemas"]["DeploymentArtifact"];
|
|
311
321
|
status: import("./index.js").components["schemas"]["DeploymentStatus"];
|
|
312
322
|
metadata: {
|
|
313
323
|
[key: string]: unknown;
|
|
@@ -325,6 +335,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
325
335
|
github_actor?: string;
|
|
326
336
|
github_commit_message?: string;
|
|
327
337
|
source?: import("./index.js").components["schemas"]["DeploymentSource"];
|
|
338
|
+
artifact?: import("./index.js").components["schemas"]["DeploymentArtifact"];
|
|
328
339
|
status: import("./index.js").components["schemas"]["DeploymentStatus"];
|
|
329
340
|
metadata: {
|
|
330
341
|
[key: string]: unknown;
|
|
@@ -345,6 +356,7 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
345
356
|
github_actor?: string;
|
|
346
357
|
github_commit_message?: string;
|
|
347
358
|
source?: import("./index.js").components["schemas"]["DeploymentSource"];
|
|
359
|
+
artifact?: import("./index.js").components["schemas"]["DeploymentArtifact"];
|
|
348
360
|
status: import("./index.js").components["schemas"]["DeploymentStatus"];
|
|
349
361
|
metadata: {
|
|
350
362
|
[key: string]: unknown;
|
|
@@ -353,5 +365,27 @@ export declare class DeployApi extends GeneratedFaableDeployApi {
|
|
|
353
365
|
updatedAt?: string;
|
|
354
366
|
}>>;
|
|
355
367
|
};
|
|
368
|
+
/** List WAF profiles (globals + per-app autos). Optional FaableQL `query`. */
|
|
369
|
+
listWafProfiles(query?: string): {
|
|
370
|
+
all: () => Promise<WafProfile[]>;
|
|
371
|
+
first: () => Promise<import("@faable/sdk-base/dist/helpers/paginator.js").Page<WafProfile>>;
|
|
372
|
+
pass: (params?: {
|
|
373
|
+
cursor?: string;
|
|
374
|
+
pageSize?: string;
|
|
375
|
+
}) => Promise<import("@faable/sdk-base/dist/helpers/paginator.js").Page<WafProfile>>;
|
|
376
|
+
};
|
|
377
|
+
createWafProfile(data: Partial<WafProfile>): Promise<WafProfile>;
|
|
378
|
+
updateWafProfile(id: string, data: Partial<WafProfile>): Promise<WafProfile>;
|
|
379
|
+
/** List app→profile WAF bindings. Optional FaableQL `query`. */
|
|
380
|
+
listAppWafs(query?: string): {
|
|
381
|
+
all: () => Promise<AppWaf[]>;
|
|
382
|
+
first: () => Promise<import("@faable/sdk-base/dist/helpers/paginator.js").Page<AppWaf>>;
|
|
383
|
+
pass: (params?: {
|
|
384
|
+
cursor?: string;
|
|
385
|
+
pageSize?: string;
|
|
386
|
+
}) => Promise<import("@faable/sdk-base/dist/helpers/paginator.js").Page<AppWaf>>;
|
|
387
|
+
};
|
|
388
|
+
createAppWaf(data: Partial<AppWaf>): Promise<AppWaf>;
|
|
389
|
+
updateAppWaf(id: string, data: Partial<AppWaf>): Promise<AppWaf>;
|
|
356
390
|
}
|
|
357
391
|
//# sourceMappingURL=FaableDeployApi.d.ts.map
|
|
@@ -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,
|
|
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,EAEV,UAAU,EACV,MAAM,EACP,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA5ElB,CAAC;oBACK,CAAC;;;;;;;;;;;;;;;;;IAoFX,qFAAqF;IACrF,aAAa,CACX,GAAG,IAAI,EAAE,UAAU,CAAC,wBAAwB,CAAC,eAAe,CAAC,CAAC;;;;;;;;;iBAiFkw7D,0CAAsB;mBAAwD,0CAAsB;gBAAuD,0CAAsB;;;;;;;IA5En/7D,uEAAuE;IACvE,MAAM,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,wBAAwB,CAAC,QAAQ,CAAC,CAAC;;;;;;;;;iBA2Eq5yC,0CAAsB;;cAAsG,0CAAsB;;;;;;;;;gBAAo6B,0CAAsB;;;;;;;;;;IAvE/h1C,+EAA+E;IAC/E,WAAW,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,wBAAwB,CAAC,YAAY,CAAC,CAAC;;;;;;;;;;oBAsEq7pB,0CAAsB;;;;;;;;;;;;;;;;;;;;;;;;kBAxK9gqB,CAAC;oBACK,CAAC;;;;;;;;;;oBAuKi/pB,0CAAsB;;;;;;;;IAlElhqB;;;;;;OAMG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;qBA2DilZ,0CAAsB;;kBAA8E,0CAAsB;;;;;;;;;oBAAgvB,0CAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAxKhgb,CAAC;oBACK,CAAC;;;;;;;;;;qBAuKynZ,0CAAsB;;kBAA8E,0CAAsB;;;;;;;;;oBAAgvB,0CAAsB;;;;;;;;;;;IAjDpgb;;;;OAIG;IACH,eAAe,CAAC,KAAK,CAAC,EAAE,MAAM;;;;;;;;;;qBA4C88iB,0CAAsB;uBAA4C,0CAAsB;oBAA2C,0CAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;kBAxKjojB,CAAC;oBACK,CAAC;;;;;;;;;;qBAuKi+iB,0CAAsB;uBAA4C,0CAAsB;oBAA2C,0CAAsB;;;;;;;;IAhCrojB,8EAA8E;IAC9E,eAAe,CAAC,KAAK,CAAC,EAAE,MAAM;;;;kBAzI1B,CAAC;oBACK,CAAC;;;IA+IX,gBAAgB,CAAC,IAAI,EAAE,OAAO,CAAC,UAAU,CAAC;IAI1C,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,CAAC,UAAU,CAAC;IAItD,gEAAgE;IAChE,WAAW,CAAC,KAAK,CAAC,EAAE,MAAM;;;;kBAzJtB,CAAC;oBACK,CAAC;;;IA+JX,YAAY,CAAC,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC;IAIlC,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC;CAG/C"}
|
package/dist/FaableDeployApi.js
CHANGED
|
@@ -109,4 +109,34 @@ export class DeployApi extends GeneratedFaableDeployApi {
|
|
|
109
109
|
...(query ? { params: { query } } : {}),
|
|
110
110
|
});
|
|
111
111
|
}
|
|
112
|
+
// --- WAF ---------------------------------------------------------------
|
|
113
|
+
// Hand-written until the OpenAPI types ship `wafprofile`/`appwaf` (same
|
|
114
|
+
// precedent as listApps). The controller/profiler reach these resources
|
|
115
|
+
// through these wrappers. Typed against the curated custom-types.
|
|
116
|
+
/** List WAF profiles (globals + per-app autos). Optional FaableQL `query`. */
|
|
117
|
+
listWafProfiles(query) {
|
|
118
|
+
return this.paginator({
|
|
119
|
+
url: "/wafprofile",
|
|
120
|
+
...(query ? { params: { query } } : {}),
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
createWafProfile(data) {
|
|
124
|
+
return this.fetcher.post("/wafprofile", data);
|
|
125
|
+
}
|
|
126
|
+
updateWafProfile(id, data) {
|
|
127
|
+
return this.fetcher.post(`/wafprofile/${id}`, data);
|
|
128
|
+
}
|
|
129
|
+
/** List app→profile WAF bindings. Optional FaableQL `query`. */
|
|
130
|
+
listAppWafs(query) {
|
|
131
|
+
return this.paginator({
|
|
132
|
+
url: "/appwaf",
|
|
133
|
+
...(query ? { params: { query } } : {}),
|
|
134
|
+
});
|
|
135
|
+
}
|
|
136
|
+
createAppWaf(data) {
|
|
137
|
+
return this.fetcher.post("/appwaf", data);
|
|
138
|
+
}
|
|
139
|
+
updateAppWaf(id, data) {
|
|
140
|
+
return this.fetcher.post(`/appwaf/${id}`, data);
|
|
141
|
+
}
|
|
112
142
|
}
|
package/dist/api/api-types.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export type AppBuildMode = components["schemas"]["AppBuildMode"];
|
|
|
7
7
|
export type AppChecknameResponse = components["schemas"]["AppChecknameResponse"];
|
|
8
8
|
export type AppCoexistenceRouting = components["schemas"]["AppCoexistenceRouting"];
|
|
9
9
|
export type AppCreate = components["schemas"]["AppCreate"];
|
|
10
|
+
export type AppDeployOutput = components["schemas"]["AppDeployOutput"];
|
|
10
11
|
export type AppMode = components["schemas"]["AppMode"];
|
|
11
12
|
export type AppRuntime = components["schemas"]["AppRuntime"];
|
|
12
13
|
export type AppRuntimeStrategy = components["schemas"]["AppRuntimeStrategy"];
|
|
@@ -19,6 +20,7 @@ export type ContactUpdate = components["schemas"]["ContactUpdate"];
|
|
|
19
20
|
export type DeployBranchResult = components["schemas"]["DeployBranchResult"];
|
|
20
21
|
export type DeployWorkflowStatus = components["schemas"]["DeployWorkflowStatus"];
|
|
21
22
|
export type Deployment = components["schemas"]["Deployment"];
|
|
23
|
+
export type DeploymentArtifact = components["schemas"]["DeploymentArtifact"];
|
|
22
24
|
export type DeploymentCreate = components["schemas"]["DeploymentCreate"];
|
|
23
25
|
export type DeploymentSource = components["schemas"]["DeploymentSource"];
|
|
24
26
|
export type DeploymentStatus = components["schemas"]["DeploymentStatus"];
|
|
@@ -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":"AAKA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,MAAM,MAAM,MAAM,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,QAAQ,CAAC,CAAC;AACrD,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,cAAc,CAAC,CAAC;AACjE,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,cAAc,CAAC,CAAC;AACjE,MAAM,MAAM,GAAG,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,CAAC;AAC/C,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,cAAc,CAAC,CAAC;AACjE,MAAM,MAAM,oBAAoB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,sBAAsB,CAAC,CAAC;AACjF,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,uBAAuB,CAAC,CAAC;AACnF,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,WAAW,CAAC,CAAC;AAC3D,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,iBAAiB,CAAC,CAAC;AACvE,MAAM,MAAM,OAAO,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,SAAS,CAAC,CAAC;AACvD,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,YAAY,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC,CAAC;AAC7E,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,WAAW,CAAC,CAAC;AAC3D,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,WAAW,CAAC,CAAC;AAC3D,MAAM,MAAM,OAAO,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,SAAS,CAAC,CAAC;AACvD,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,eAAe,CAAC,CAAC;AACnE,MAAM,MAAM,WAAW,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,aAAa,CAAC,CAAC;AAC/D,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,eAAe,CAAC,CAAC;AACnE,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC,CAAC;AAC7E,MAAM,MAAM,oBAAoB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,sBAAsB,CAAC,CAAC;AACjF,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,YAAY,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC,CAAC;AAC7E,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC,CAAC;AACzE,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC,CAAC;AACzE,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC,CAAC;AACzE,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC,CAAC;AACzE,MAAM,MAAM,MAAM,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,QAAQ,CAAC,CAAC;AACrD,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,cAAc,CAAC,CAAC;AACjE,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,cAAc,CAAC,CAAC;AACjE,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,cAAc,CAAC,CAAC;AACjE,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,mBAAmB,CAAC,CAAC;AAC3E,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,mBAAmB,CAAC,CAAC;AAC3E,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,mBAAmB,CAAC,CAAC;AAC3E,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,gBAAgB,CAAC,CAAC;AACrE,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,gBAAgB,CAAC,CAAC;AACrE,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,gBAAgB,CAAC,CAAC;AACrE,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,gBAAgB,CAAC,CAAC;AACrE,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC,CAAC;AAC7E,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC,CAAC;AAC7E,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC,CAAC;AAC7E,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,uBAAuB,CAAC,CAAC;AACnF,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,uBAAuB,CAAC,CAAC;AACnF,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,uBAAuB,CAAC,CAAC;AACnF,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,uBAAuB,CAAC,CAAC;AACnF,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,mBAAmB,CAAC,CAAC;AAC3E,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,mBAAmB,CAAC,CAAC;AAC3E,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,mBAAmB,CAAC,CAAC;AAC3E,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,mBAAmB,CAAC,CAAC;AAC3E,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC,CAAC;AAC7E,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC,CAAC;AAC7E,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,oBAAoB,CAAC,CAAC;AAC7E,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,yBAAyB,CAAC,CAAC;AACvF,MAAM,MAAM,OAAO,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,SAAS,CAAC,CAAC;AACvD,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,eAAe,CAAC,CAAC;AACnE,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,eAAe,CAAC,CAAC;AACnE,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,eAAe,CAAC,CAAC;AACnE,MAAM,MAAM,MAAM,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,QAAQ,CAAC,CAAC;AACrD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,mBAAmB,CAAC,CAAC;AAC3E,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,YAAY,CAAC,CAAC;AAC7D,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,cAAc,CAAC,CAAC"}
|
|
@@ -63,4 +63,54 @@ export interface AppTraffic {
|
|
|
63
63
|
requests: number;
|
|
64
64
|
}>;
|
|
65
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* WAF profile — a reusable ruleset. Global profiles (scope:'global') are the
|
|
68
|
+
* shared built-ins; app profiles (scope:'app') are the data-driven ones the
|
|
69
|
+
* profiler generates per app.
|
|
70
|
+
*
|
|
71
|
+
* Hand-maintained until the OpenAPI types ship a `WafProfile` schema; keep in
|
|
72
|
+
* sync with `api/src/deploy/wafprofile/schemas/WafProfile.ts`.
|
|
73
|
+
*/
|
|
74
|
+
/** One annotated WAF rule: RE2 pattern + human description. */
|
|
75
|
+
export interface WafRule {
|
|
76
|
+
pattern: string;
|
|
77
|
+
description?: string;
|
|
78
|
+
}
|
|
79
|
+
export interface WafProfile {
|
|
80
|
+
id: string;
|
|
81
|
+
team: string;
|
|
82
|
+
name: string;
|
|
83
|
+
scope: "global" | "app";
|
|
84
|
+
app_id?: string | null;
|
|
85
|
+
source: "builtin" | "manual" | "auto";
|
|
86
|
+
action: "deny" | "ratelimit";
|
|
87
|
+
/** Where the profile auto-applies without an explicit binding. */
|
|
88
|
+
apply: "all" | "node" | "php" | "manual";
|
|
89
|
+
rules: WafRule[];
|
|
90
|
+
enabled: boolean;
|
|
91
|
+
lock: boolean;
|
|
92
|
+
sample_count?: number | null;
|
|
93
|
+
updated_at?: string | null;
|
|
94
|
+
metadata?: Record<string, unknown>;
|
|
95
|
+
}
|
|
96
|
+
/** One applied profile with its per-app toggle. */
|
|
97
|
+
export interface AppWafProfileRef {
|
|
98
|
+
profile: string;
|
|
99
|
+
enabled: boolean;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* AppWaf — binding of which WAF profiles apply to an app.
|
|
103
|
+
*
|
|
104
|
+
* Hand-maintained until the OpenAPI types ship an `AppWaf` schema; keep in sync
|
|
105
|
+
* with `api/src/deploy/appwaf/schemas/AppWaf.ts`.
|
|
106
|
+
*/
|
|
107
|
+
export interface AppWaf {
|
|
108
|
+
id: string;
|
|
109
|
+
team: string;
|
|
110
|
+
app_id: string;
|
|
111
|
+
enabled: boolean;
|
|
112
|
+
profiles: AppWafProfileRef[];
|
|
113
|
+
lock: boolean;
|
|
114
|
+
metadata?: Record<string, unknown>;
|
|
115
|
+
}
|
|
66
116
|
//# sourceMappingURL=custom-types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-types.d.ts","sourceRoot":"","sources":["../../src/api/custom-types.ts"],"names":[],"mappings":"AAKA,cAAc,gBAAgB,CAAC;AAE/B,OAAO,KAAK,EACV,uBAAuB,EACvB,qBAAqB,EACrB,qBAAqB,EACtB,MAAM,gBAAgB,CAAC;AAIxB,MAAM,MAAM,4BAA4B,GAAG,uBAAuB,CAAC;AACnE,MAAM,MAAM,sBAAsB,GAAG,qBAAqB,CAAC;AAC3D,MAAM,MAAM,2BAA2B,GAAG,qBAAqB,CAAC;AAEhE;;;;;GAKG;AACH,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,EAAE,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC;IACtD,aAAa,EAAE,KAAK,CAAC;QACnB,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,MAAM,CAAC;QACjB,SAAS,EAAE,MAAM,CAAC;QAClB,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC,CAAC;IACH,eAAe,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACzE,YAAY,EAAE,KAAK,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC1D,OAAO,EAAE,KAAK,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACrD,QAAQ,EAAE,KAAK,CAAC;QACd,EAAE,EAAE,MAAM,CAAC;QACX,aAAa,EAAE,MAAM,CAAC;QACtB,cAAc,EAAE,MAAM,CAAC;QACvB,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC,CAAC;IACH,8EAA8E;IAC9E,mBAAmB,EAAE,KAAK,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACjE,qEAAqE;IACrE,OAAO,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;IACpE,aAAa,EAAE,KAAK,CAAC;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC5D,eAAe,EAAE,KAAK,CAAC;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CAClE"}
|
|
1
|
+
{"version":3,"file":"custom-types.d.ts","sourceRoot":"","sources":["../../src/api/custom-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -47,7 +47,9 @@ 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
|
|
50
|
+
build_mode?: ("local" | "remote") | null;
|
|
51
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
52
|
+
root_dir?: string | null;
|
|
51
53
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
52
54
|
coexistence_keep_versions?: number | null;
|
|
53
55
|
coexistence_drain_hours?: number | null;
|
|
@@ -80,7 +82,9 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
80
82
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
81
83
|
runtime_strategy: string | null;
|
|
82
84
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
83
|
-
build_mode
|
|
85
|
+
build_mode?: ("local" | "remote") | null;
|
|
86
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
87
|
+
root_dir?: string | null;
|
|
84
88
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
85
89
|
coexistence_keep_versions?: number | null;
|
|
86
90
|
coexistence_drain_hours?: number | null;
|
|
@@ -113,7 +117,9 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
113
117
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
114
118
|
runtime_strategy: string | null;
|
|
115
119
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
116
|
-
build_mode
|
|
120
|
+
build_mode?: ("local" | "remote") | null;
|
|
121
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
122
|
+
root_dir?: string | null;
|
|
117
123
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
118
124
|
coexistence_keep_versions?: number | null;
|
|
119
125
|
coexistence_drain_hours?: number | null;
|
|
@@ -169,7 +175,9 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
169
175
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
170
176
|
runtime_strategy: string | null;
|
|
171
177
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
172
|
-
build_mode
|
|
178
|
+
build_mode?: ("local" | "remote") | null;
|
|
179
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
180
|
+
root_dir?: string | null;
|
|
173
181
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
174
182
|
coexistence_keep_versions?: number | null;
|
|
175
183
|
coexistence_drain_hours?: number | null;
|
|
@@ -203,7 +211,9 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
203
211
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
204
212
|
runtime_strategy: string | null;
|
|
205
213
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
206
|
-
build_mode
|
|
214
|
+
build_mode?: ("local" | "remote") | null;
|
|
215
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
216
|
+
root_dir?: string | null;
|
|
207
217
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
208
218
|
coexistence_keep_versions?: number | null;
|
|
209
219
|
coexistence_drain_hours?: number | null;
|
|
@@ -231,7 +241,9 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
231
241
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
232
242
|
runtime_strategy: string | null;
|
|
233
243
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
234
|
-
build_mode
|
|
244
|
+
build_mode?: ("local" | "remote") | null;
|
|
245
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
246
|
+
root_dir?: string | null;
|
|
235
247
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
236
248
|
coexistence_keep_versions?: number | null;
|
|
237
249
|
coexistence_drain_hours?: number | null;
|
|
@@ -262,7 +274,9 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
262
274
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
263
275
|
runtime_strategy: string | null;
|
|
264
276
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
265
|
-
build_mode
|
|
277
|
+
build_mode?: ("local" | "remote") | null;
|
|
278
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
279
|
+
root_dir?: string | null;
|
|
266
280
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
267
281
|
coexistence_keep_versions?: number | null;
|
|
268
282
|
coexistence_drain_hours?: number | null;
|
|
@@ -322,7 +336,9 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
322
336
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
323
337
|
runtime_strategy: string | null;
|
|
324
338
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
325
|
-
build_mode
|
|
339
|
+
build_mode?: ("local" | "remote") | null;
|
|
340
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
341
|
+
root_dir?: string | null;
|
|
326
342
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
327
343
|
coexistence_keep_versions?: number | null;
|
|
328
344
|
coexistence_drain_hours?: number | null;
|
|
@@ -413,7 +429,9 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
413
429
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
414
430
|
runtime_strategy: string | null;
|
|
415
431
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
416
|
-
build_mode
|
|
432
|
+
build_mode?: ("local" | "remote") | null;
|
|
433
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
434
|
+
root_dir?: string | null;
|
|
417
435
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
418
436
|
coexistence_keep_versions?: number | null;
|
|
419
437
|
coexistence_drain_hours?: number | null;
|
|
@@ -446,7 +464,9 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
446
464
|
runtime: import("./types.js").components["schemas"]["AppRuntime"];
|
|
447
465
|
runtime_strategy: string | null;
|
|
448
466
|
mode: import("./types.js").components["schemas"]["AppMode"];
|
|
449
|
-
build_mode
|
|
467
|
+
build_mode?: ("local" | "remote") | null;
|
|
468
|
+
deploy_output?: ("image" | "artifact") | null;
|
|
469
|
+
root_dir?: string | null;
|
|
450
470
|
coexistence_routing?: ("cookie" | "path") | null;
|
|
451
471
|
coexistence_keep_versions?: number | null;
|
|
452
472
|
coexistence_drain_hours?: number | null;
|
|
@@ -477,6 +497,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
477
497
|
github_actor?: string;
|
|
478
498
|
github_commit_message?: string;
|
|
479
499
|
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
500
|
+
artifact?: import("./types.js").components["schemas"]["DeploymentArtifact"];
|
|
480
501
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
481
502
|
metadata: {
|
|
482
503
|
[key: string]: unknown;
|
|
@@ -499,6 +520,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
499
520
|
github_actor?: string;
|
|
500
521
|
github_commit_message?: string;
|
|
501
522
|
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
523
|
+
artifact?: import("./types.js").components["schemas"]["DeploymentArtifact"];
|
|
502
524
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
503
525
|
metadata: {
|
|
504
526
|
[key: string]: unknown;
|
|
@@ -521,6 +543,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
521
543
|
github_actor?: string;
|
|
522
544
|
github_commit_message?: string;
|
|
523
545
|
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
546
|
+
artifact?: import("./types.js").components["schemas"]["DeploymentArtifact"];
|
|
524
547
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
525
548
|
metadata: {
|
|
526
549
|
[key: string]: unknown;
|
|
@@ -538,9 +561,12 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
538
561
|
deployment_id: string;
|
|
539
562
|
app_id: string;
|
|
540
563
|
team: string;
|
|
541
|
-
content
|
|
542
|
-
truncated
|
|
543
|
-
size
|
|
564
|
+
content?: string;
|
|
565
|
+
truncated?: boolean;
|
|
566
|
+
size?: number;
|
|
567
|
+
runtime_content?: string;
|
|
568
|
+
runtime_truncated?: boolean;
|
|
569
|
+
runtime_size?: number;
|
|
544
570
|
createdAt?: string;
|
|
545
571
|
updatedAt?: string;
|
|
546
572
|
}>;
|
|
@@ -560,6 +586,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
560
586
|
github_actor?: string;
|
|
561
587
|
github_commit_message?: string;
|
|
562
588
|
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
589
|
+
artifact?: import("./types.js").components["schemas"]["DeploymentArtifact"];
|
|
563
590
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
564
591
|
metadata: {
|
|
565
592
|
[key: string]: unknown;
|
|
@@ -577,6 +604,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
577
604
|
github_actor?: string;
|
|
578
605
|
github_commit_message?: string;
|
|
579
606
|
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
607
|
+
artifact?: import("./types.js").components["schemas"]["DeploymentArtifact"];
|
|
580
608
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
581
609
|
metadata: {
|
|
582
610
|
[key: string]: unknown;
|
|
@@ -597,6 +625,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
597
625
|
github_actor?: string;
|
|
598
626
|
github_commit_message?: string;
|
|
599
627
|
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
628
|
+
artifact?: import("./types.js").components["schemas"]["DeploymentArtifact"];
|
|
600
629
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
601
630
|
metadata: {
|
|
602
631
|
[key: string]: unknown;
|
|
@@ -620,6 +649,7 @@ export declare abstract class GeneratedFaableDeployApi extends FaableApi {
|
|
|
620
649
|
github_actor?: string;
|
|
621
650
|
github_commit_message?: string;
|
|
622
651
|
source?: import("./types.js").components["schemas"]["DeploymentSource"];
|
|
652
|
+
artifact?: import("./types.js").components["schemas"]["DeploymentArtifact"];
|
|
623
653
|
status: import("./types.js").components["schemas"]["DeploymentStatus"];
|
|
624
654
|
metadata: {
|
|
625
655
|
[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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"}
|