@cat-factory/contracts 0.318.0 → 0.320.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/binary-generators.d.ts +10 -127
- package/dist/binary-generators.d.ts.map +1 -1
- package/dist/binary-generators.js +10 -92
- package/dist/binary-generators.js.map +1 -1
- package/dist/binary-outputs.d.ts +44 -0
- package/dist/binary-outputs.d.ts.map +1 -1
- package/dist/binary-outputs.js +22 -0
- package/dist/binary-outputs.js.map +1 -1
- package/dist/capability-credentials.d.ts +142 -2
- package/dist/capability-credentials.d.ts.map +1 -1
- package/dist/capability-credentials.js +167 -1
- package/dist/capability-credentials.js.map +1 -1
- package/dist/execution.d.ts +2 -0
- package/dist/execution.d.ts.map +1 -1
- package/dist/foundational-services.d.ts +88 -2
- package/dist/foundational-services.d.ts.map +1 -1
- package/dist/foundational-services.js +62 -2
- package/dist/foundational-services.js.map +1 -1
- package/dist/platform-assets.d.ts +22 -0
- package/dist/platform-assets.d.ts.map +1 -1
- package/dist/platform-assets.js +24 -0
- package/dist/platform-assets.js.map +1 -1
- package/dist/public-api.d.ts +31 -0
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +26 -3
- package/dist/public-api.js.map +1 -1
- package/dist/public-provisioning.d.ts +193 -0
- package/dist/public-provisioning.d.ts.map +1 -1
- package/dist/public-provisioning.js +161 -0
- package/dist/public-provisioning.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +2 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +2 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/capability-credentials.d.ts +3 -3
- package/dist/routes/execution.d.ts +9 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/foundational-services.d.ts +38 -2
- package/dist/routes/foundational-services.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +1 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +5 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/public-api.d.ts +4 -0
- package/dist/routes/public-api.d.ts.map +1 -1
- package/dist/routes/public-board.d.ts +4 -0
- package/dist/routes/public-board.d.ts.map +1 -1
- package/dist/routes/public-provisioning.d.ts +147 -0
- package/dist/routes/public-provisioning.d.ts.map +1 -1
- package/dist/routes/public-provisioning.js +60 -2
- package/dist/routes/public-provisioning.js.map +1 -1
- package/dist/routes/runners.d.ts +30 -0
- package/dist/routes/runners.d.ts.map +1 -1
- package/dist/routes/sandbox.d.ts +20 -10
- package/dist/routes/sandbox.d.ts.map +1 -1
- package/dist/routes/sandbox.js +12 -2
- package/dist/routes/sandbox.js.map +1 -1
- package/dist/routes/visual-confirm.d.ts +3 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +2 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/runners.d.ts +208 -0
- package/dist/runners.d.ts.map +1 -1
- package/dist/runners.js +45 -0
- package/dist/runners.js.map +1 -1
- package/dist/sandbox.d.ts +70 -13
- package/dist/sandbox.d.ts.map +1 -1
- package/dist/sandbox.js +41 -2
- package/dist/sandbox.js.map +1 -1
- package/dist/snapshot.d.ts +1 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/routes/sandbox.d.ts
CHANGED
|
@@ -30,9 +30,19 @@ export declare const sandboxOverviewContract: {
|
|
|
30
30
|
readonly agentKinds: v.ArraySchema<v.ObjectSchema<{
|
|
31
31
|
readonly agentKind: v.StringSchema<undefined>;
|
|
32
32
|
readonly label: v.StringSchema<undefined>;
|
|
33
|
-
|
|
33
|
+
/** How PRODUCTION dispatches the kind. */
|
|
34
|
+
readonly bucket: v.PicklistSchema<["inline", "container"], undefined>;
|
|
35
|
+
/** How the SANDBOX runs a cell for it. `unsupported` ⇒ `unsupportedReason` says why. */
|
|
36
|
+
readonly sandboxRun: v.PicklistSchema<["inline", "unsupported"], undefined>;
|
|
37
|
+
/**
|
|
38
|
+
* Why the Sandbox cannot run this kind, as a bounded CODE, or null when it can. The SPA maps it
|
|
39
|
+
* to translated copy and shows it beside the field, so the reason a create would be refused is
|
|
40
|
+
* stated before anyone builds a matrix; the catalog stays the one place that DECIDES, without
|
|
41
|
+
* the backend composing prose no locale can reach.
|
|
42
|
+
*/
|
|
43
|
+
readonly unsupportedReason: v.NullableSchema<v.PicklistSchema<["container-run-required"], undefined>, undefined>;
|
|
34
44
|
readonly rubric: v.StringSchema<undefined>;
|
|
35
|
-
readonly fixtureKinds: v.ArraySchema<v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "repo-feature", "repo-bug"], undefined>, undefined>;
|
|
45
|
+
readonly fixtureKinds: v.ArraySchema<v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "estimation", "answer-recommendation", "repo-feature", "repo-bug"], undefined>, undefined>;
|
|
36
46
|
readonly basePromptId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
37
47
|
}, undefined>, undefined>;
|
|
38
48
|
readonly prompts: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -53,7 +63,7 @@ export declare const sandboxOverviewContract: {
|
|
|
53
63
|
}, undefined>, undefined>;
|
|
54
64
|
readonly fixtures: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
55
65
|
readonly id: v.StringSchema<undefined>;
|
|
56
|
-
readonly kind: v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "repo-feature", "repo-bug"], undefined>;
|
|
66
|
+
readonly kind: v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "estimation", "answer-recommendation", "repo-feature", "repo-bug"], undefined>;
|
|
57
67
|
readonly name: v.StringSchema<undefined>;
|
|
58
68
|
readonly payload: v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
59
69
|
readonly repoRef: v.NullableSchema<v.ObjectSchema<{
|
|
@@ -79,7 +89,7 @@ export declare const sandboxOverviewContract: {
|
|
|
79
89
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
80
90
|
}, undefined>, v.CheckAction<{
|
|
81
91
|
id: string;
|
|
82
|
-
kind: "architecture" | "clarity" | "code-review" | "repo-bug" | "repo-feature" | "requirements";
|
|
92
|
+
kind: "answer-recommendation" | "architecture" | "clarity" | "code-review" | "estimation" | "repo-bug" | "repo-feature" | "requirements";
|
|
83
93
|
name: string;
|
|
84
94
|
payload: {
|
|
85
95
|
[x: string]: unknown;
|
|
@@ -386,7 +396,7 @@ export declare const listSandboxFixturesContract: {
|
|
|
386
396
|
}, undefined>;
|
|
387
397
|
readonly 200: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
388
398
|
readonly id: v.StringSchema<undefined>;
|
|
389
|
-
readonly kind: v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "repo-feature", "repo-bug"], undefined>;
|
|
399
|
+
readonly kind: v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "estimation", "answer-recommendation", "repo-feature", "repo-bug"], undefined>;
|
|
390
400
|
readonly name: v.StringSchema<undefined>;
|
|
391
401
|
readonly payload: v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
392
402
|
readonly repoRef: v.NullableSchema<v.ObjectSchema<{
|
|
@@ -412,7 +422,7 @@ export declare const listSandboxFixturesContract: {
|
|
|
412
422
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
413
423
|
}, undefined>, v.CheckAction<{
|
|
414
424
|
id: string;
|
|
415
|
-
kind: "architecture" | "clarity" | "code-review" | "repo-bug" | "repo-feature" | "requirements";
|
|
425
|
+
kind: "answer-recommendation" | "architecture" | "clarity" | "code-review" | "estimation" | "repo-bug" | "repo-feature" | "requirements";
|
|
416
426
|
name: string;
|
|
417
427
|
payload: {
|
|
418
428
|
[x: string]: unknown;
|
|
@@ -445,7 +455,7 @@ export declare const createSandboxFixtureContract: {
|
|
|
445
455
|
readonly method: "post";
|
|
446
456
|
readonly pathResolver: () => string;
|
|
447
457
|
readonly requestBodySchema: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
448
|
-
readonly kind: v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "repo-feature", "repo-bug"], undefined>;
|
|
458
|
+
readonly kind: v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "estimation", "answer-recommendation", "repo-feature", "repo-bug"], undefined>;
|
|
449
459
|
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
450
460
|
readonly payload: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>, null>;
|
|
451
461
|
readonly repoRef: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
@@ -468,7 +478,7 @@ export declare const createSandboxFixtureContract: {
|
|
|
468
478
|
}, undefined>, undefined>;
|
|
469
479
|
}, undefined>], undefined>, undefined>, null>;
|
|
470
480
|
}, undefined>, v.CheckAction<{
|
|
471
|
-
kind: "architecture" | "clarity" | "code-review" | "repo-bug" | "repo-feature" | "requirements";
|
|
481
|
+
kind: "answer-recommendation" | "architecture" | "clarity" | "code-review" | "estimation" | "repo-bug" | "repo-feature" | "requirements";
|
|
472
482
|
name: string;
|
|
473
483
|
payload: {
|
|
474
484
|
[x: string]: unknown;
|
|
@@ -518,7 +528,7 @@ export declare const createSandboxFixtureContract: {
|
|
|
518
528
|
}, undefined>;
|
|
519
529
|
readonly 201: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
520
530
|
readonly id: v.StringSchema<undefined>;
|
|
521
|
-
readonly kind: v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "repo-feature", "repo-bug"], undefined>;
|
|
531
|
+
readonly kind: v.PicklistSchema<["requirements", "clarity", "architecture", "code-review", "estimation", "answer-recommendation", "repo-feature", "repo-bug"], undefined>;
|
|
522
532
|
readonly name: v.StringSchema<undefined>;
|
|
523
533
|
readonly payload: v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
524
534
|
readonly repoRef: v.NullableSchema<v.ObjectSchema<{
|
|
@@ -544,7 +554,7 @@ export declare const createSandboxFixtureContract: {
|
|
|
544
554
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
545
555
|
}, undefined>, v.CheckAction<{
|
|
546
556
|
id: string;
|
|
547
|
-
kind: "architecture" | "clarity" | "code-review" | "repo-bug" | "repo-feature" | "requirements";
|
|
557
|
+
kind: "answer-recommendation" | "architecture" | "clarity" | "code-review" | "estimation" | "repo-bug" | "repo-feature" | "requirements";
|
|
548
558
|
name: string;
|
|
549
559
|
payload: {
|
|
550
560
|
[x: string]: unknown;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sandbox.d.ts","sourceRoot":"","sources":["../../src/routes/sandbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"sandbox.d.ts","sourceRoot":"","sources":["../../src/routes/sandbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsE5B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAxClC,0CAA0C;;gBAE1C,wFAAwF;;gBAExF;;;;;mBAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmCH,CAAA;AAIF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKpC,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMzC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAIF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAItC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAIF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIzC,CAAA;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK1C,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1C,CAAA"}
|
package/dist/routes/sandbox.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ContractNoBody, defineApiContract } from '@toad-contracts/valibot';
|
|
2
2
|
import * as v from 'valibot';
|
|
3
|
-
import { cloneSandboxPromptSchema, createSandboxExperimentSchema, createSandboxFixtureSchema, sandboxExperimentSchema, sandboxFixtureKindSchema, sandboxFixtureSchema, sandboxGradeSchema, sandboxPromptVersionSchema, sandboxRunSchema, saveSandboxVersionSchema, setSandboxLabelsSchema, } from '../sandbox.js';
|
|
3
|
+
import { cloneSandboxPromptSchema, createSandboxExperimentSchema, createSandboxFixtureSchema, sandboxAgentBucketSchema, sandboxExperimentSchema, sandboxFixtureKindSchema, sandboxFixtureSchema, sandboxGradeSchema, sandboxPromptVersionSchema, sandboxRunModeSchema, sandboxRunSchema, sandboxUnsupportedReasonSchema, saveSandboxVersionSchema, setSandboxLabelsSchema, } from '../sandbox.js';
|
|
4
4
|
import { errorResponses, singleStringParam } from './_shared.js';
|
|
5
5
|
// ---------------------------------------------------------------------------
|
|
6
6
|
// Sandbox route contracts (the parallel prompt/model testing surface). Mounted
|
|
@@ -12,7 +12,17 @@ import { errorResponses, singleStringParam } from './_shared.js';
|
|
|
12
12
|
const sandboxAgentKindMetaSchema = v.object({
|
|
13
13
|
agentKind: v.string(),
|
|
14
14
|
label: v.string(),
|
|
15
|
-
|
|
15
|
+
/** How PRODUCTION dispatches the kind. */
|
|
16
|
+
bucket: sandboxAgentBucketSchema,
|
|
17
|
+
/** How the SANDBOX runs a cell for it. `unsupported` ⇒ `unsupportedReason` says why. */
|
|
18
|
+
sandboxRun: sandboxRunModeSchema,
|
|
19
|
+
/**
|
|
20
|
+
* Why the Sandbox cannot run this kind, as a bounded CODE, or null when it can. The SPA maps it
|
|
21
|
+
* to translated copy and shows it beside the field, so the reason a create would be refused is
|
|
22
|
+
* stated before anyone builds a matrix; the catalog stays the one place that DECIDES, without
|
|
23
|
+
* the backend composing prose no locale can reach.
|
|
24
|
+
*/
|
|
25
|
+
unsupportedReason: v.nullable(sandboxUnsupportedReasonSchema),
|
|
16
26
|
rubric: v.string(),
|
|
17
27
|
fixtureKinds: v.array(sandboxFixtureKindSchema),
|
|
18
28
|
basePromptId: v.nullable(v.string()),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sandbox.js","sourceRoot":"","sources":["../../src/routes/sandbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAC5B,OAAO,EACL,wBAAwB,EACxB,6BAA6B,EAC7B,0BAA0B,EAC1B,uBAAuB,EACvB,wBAAwB,EACxB,oBAAoB,EACpB,kBAAkB,EAClB,0BAA0B,EAC1B,gBAAgB,EAChB,wBAAwB,EACxB,sBAAsB,GACvB,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAA;AAEhE,8EAA8E;AAC9E,+EAA+E;AAC/E,mFAAmF;AACnF,gDAAgD;AAChD,8EAA8E;AAE9E,kFAAkF;AAClF,gFAAgF;AAChF,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"sandbox.js","sourceRoot":"","sources":["../../src/routes/sandbox.ts"],"names":[],"mappings":"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"}
|
|
@@ -804,6 +804,7 @@ export declare const approveVisualConfirmContract: {
|
|
|
804
804
|
readonly height: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 16384, undefined>]>;
|
|
805
805
|
}, undefined>, undefined>;
|
|
806
806
|
readonly generator: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
807
|
+
readonly processedBy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
807
808
|
readonly modality: v.OptionalSchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>;
|
|
808
809
|
}, undefined>, undefined>;
|
|
809
810
|
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -2024,6 +2025,7 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
2024
2025
|
readonly height: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 16384, undefined>]>;
|
|
2025
2026
|
}, undefined>, undefined>;
|
|
2026
2027
|
readonly generator: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2028
|
+
readonly processedBy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2027
2029
|
readonly modality: v.OptionalSchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>;
|
|
2028
2030
|
}, undefined>, undefined>;
|
|
2029
2031
|
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -3242,6 +3244,7 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
3242
3244
|
readonly height: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 16384, undefined>]>;
|
|
3243
3245
|
}, undefined>, undefined>;
|
|
3244
3246
|
readonly generator: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3247
|
+
readonly processedBy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3245
3248
|
readonly modality: v.OptionalSchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>;
|
|
3246
3249
|
}, undefined>, undefined>;
|
|
3247
3250
|
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"visual-confirm.d.ts","sourceRoot":"","sources":["../../src/routes/visual-confirm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"visual-confirm.d.ts","sourceRoot":"","sources":["../../src/routes/visual-confirm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1C,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMzC,CAAA"}
|
|
@@ -1332,6 +1332,7 @@ export declare const createWorkspaceContract: {
|
|
|
1332
1332
|
readonly height: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 16384, undefined>]>;
|
|
1333
1333
|
}, undefined>, undefined>;
|
|
1334
1334
|
readonly generator: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1335
|
+
readonly processedBy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1335
1336
|
readonly modality: v.OptionalSchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>;
|
|
1336
1337
|
}, undefined>, undefined>;
|
|
1337
1338
|
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4909,6 +4910,7 @@ export declare const getWorkspaceContract: {
|
|
|
4909
4910
|
readonly height: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 16384, undefined>]>;
|
|
4910
4911
|
}, undefined>, undefined>;
|
|
4911
4912
|
readonly generator: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4913
|
+
readonly processedBy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4912
4914
|
readonly modality: v.OptionalSchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>;
|
|
4913
4915
|
}, undefined>, undefined>;
|
|
4914
4916
|
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/routes/workspaces.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAe5B;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;aAGlC,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAI7E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/routes/workspaces.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAe5B;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;aAGlC,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAI7E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK/B,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMlC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA"}
|
package/dist/runners.d.ts
CHANGED
|
@@ -217,6 +217,44 @@ export declare const kubernetesResourceQuantitiesSchema: v.ObjectSchema<{
|
|
|
217
217
|
export type KubernetesResourceQuantities = v.InferOutput<typeof kubernetesResourceQuantitiesSchema>;
|
|
218
218
|
/** The secret-bundle key the Kubernetes backend reads the ServiceAccount token from. */
|
|
219
219
|
export declare const KUBERNETES_RUNNER_TOKEN_SECRET_KEY = "apiToken";
|
|
220
|
+
/**
|
|
221
|
+
* The container image variants the PLATFORM itself publishes, and therefore the names a
|
|
222
|
+
* deployment may not claim for an image of its own: each has its own named setting on every
|
|
223
|
+
* runner backend, and re-pointing one would silently change what a built-in kind runs.
|
|
224
|
+
*
|
|
225
|
+
* On the WIRE rather than in the backend alone, for the reason the capability tags are: the
|
|
226
|
+
* people who must not collide with these names are outside it. A deployment registers an agent
|
|
227
|
+
* kind naming its own variant, and an operator fills in a backend's variant map in the SPA.
|
|
228
|
+
* Kernel re-exports it, so a backend and a registration are held to one list.
|
|
229
|
+
*/
|
|
230
|
+
export declare const PLATFORM_IMAGE_VARIANTS: readonly ['default', 'ui', 'deploy'];
|
|
231
|
+
/**
|
|
232
|
+
* One of the variants the platform publishes, as a CLOSED union derived from the picklist above.
|
|
233
|
+
*
|
|
234
|
+
* A literal tuple rather than `readonly string[]` so the members are a type and not just data.
|
|
235
|
+
* That is what lets a backend switch over them exhaustively: each platform image needs its own
|
|
236
|
+
* arm (its own image setting, its own refusal naming what an operator loses by leaving it
|
|
237
|
+
* unwired), so a fourth published image is a decision every backend has to make, and the only
|
|
238
|
+
* thing that can make it make it is a build failure. Read through
|
|
239
|
+
* {@link isPlatformImageVariant}, never by respelling the names: a branch that restated them
|
|
240
|
+
* routes a newly published image into the deployment-owned half and refuses it as unwired on the
|
|
241
|
+
* one runtime that ships it, with nothing failing at compile time.
|
|
242
|
+
*/
|
|
243
|
+
export type PlatformImageVariant = (typeof PLATFORM_IMAGE_VARIANTS)[number];
|
|
244
|
+
/** Whether `variant` is one the platform publishes, rather than a deployment's own. */
|
|
245
|
+
export declare function isPlatformImageVariant(variant: string): variant is PlatformImageVariant;
|
|
246
|
+
/** The shape every image-variant name is held to: a bounded lower-kebab slug. */
|
|
247
|
+
export declare const IMAGE_VARIANT_NAME_PATTERN: RegExp;
|
|
248
|
+
/**
|
|
249
|
+
* Whether `value` is SHAPED like an image-variant name, membership aside.
|
|
250
|
+
*
|
|
251
|
+
* The names are open, so this is the only question askable about one without a backend's
|
|
252
|
+
* variant map in hand: a reader recovering a variant out of a container key holds no config,
|
|
253
|
+
* and a registration is checked at boot before any pool is resolved. Stated once here because
|
|
254
|
+
* both boundaries that ACCEPT a name (an agent kind's declaration, a backend's variant map)
|
|
255
|
+
* must agree with the reader that recovers it.
|
|
256
|
+
*/
|
|
257
|
+
export declare function isImageVariantName(value: string): boolean;
|
|
220
258
|
export declare const kubernetesRunnerConfigSchema: v.ObjectSchema<{
|
|
221
259
|
/** Human label for the connection (shown in the UI). */
|
|
222
260
|
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
@@ -239,6 +277,23 @@ export declare const kubernetesRunnerConfigSchema: v.ObjectSchema<{
|
|
|
239
277
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
240
278
|
*/
|
|
241
279
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
280
|
+
/**
|
|
281
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
282
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
283
|
+
*
|
|
284
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
285
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
286
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
287
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
288
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
289
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
290
|
+
*
|
|
291
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
292
|
+
* second place to set them would be a second answer to one question.
|
|
293
|
+
*/
|
|
294
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
295
|
+
[x: string]: string;
|
|
296
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
242
297
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
243
298
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
244
299
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
|
@@ -519,6 +574,23 @@ export declare const eksRunnerConfigSchema: v.ObjectSchema<{
|
|
|
519
574
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
520
575
|
*/
|
|
521
576
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
577
|
+
/**
|
|
578
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
579
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
580
|
+
*
|
|
581
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
582
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
583
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
584
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
585
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
586
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
587
|
+
*
|
|
588
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
589
|
+
* second place to set them would be a second answer to one question.
|
|
590
|
+
*/
|
|
591
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
592
|
+
[x: string]: string;
|
|
593
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
522
594
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
523
595
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
524
596
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
|
@@ -818,6 +890,23 @@ export declare const runnerBackendConfigSchema: v.VariantSchema<"kind", [v.Objec
|
|
|
818
890
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
819
891
|
*/
|
|
820
892
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
893
|
+
/**
|
|
894
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
895
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
896
|
+
*
|
|
897
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
898
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
899
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
900
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
901
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
902
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
903
|
+
*
|
|
904
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
905
|
+
* second place to set them would be a second answer to one question.
|
|
906
|
+
*/
|
|
907
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
908
|
+
[x: string]: string;
|
|
909
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
821
910
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
822
911
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
823
912
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
|
@@ -876,6 +965,23 @@ export declare const runnerBackendConfigSchema: v.VariantSchema<"kind", [v.Objec
|
|
|
876
965
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
877
966
|
*/
|
|
878
967
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
968
|
+
/**
|
|
969
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
970
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
971
|
+
*
|
|
972
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
973
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
974
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
975
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
976
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
977
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
978
|
+
*
|
|
979
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
980
|
+
* second place to set them would be a second answer to one question.
|
|
981
|
+
*/
|
|
982
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
983
|
+
[x: string]: string;
|
|
984
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
879
985
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
880
986
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
881
987
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
|
@@ -1395,6 +1501,23 @@ export declare const runnerPoolConnectionSchema: v.ObjectSchema<{
|
|
|
1395
1501
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
1396
1502
|
*/
|
|
1397
1503
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1504
|
+
/**
|
|
1505
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
1506
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
1507
|
+
*
|
|
1508
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
1509
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
1510
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
1511
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
1512
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
1513
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
1514
|
+
*
|
|
1515
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
1516
|
+
* second place to set them would be a second answer to one question.
|
|
1517
|
+
*/
|
|
1518
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
1519
|
+
[x: string]: string;
|
|
1520
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
1398
1521
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
1399
1522
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
1400
1523
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
|
@@ -1453,6 +1576,23 @@ export declare const runnerPoolConnectionSchema: v.ObjectSchema<{
|
|
|
1453
1576
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
1454
1577
|
*/
|
|
1455
1578
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1579
|
+
/**
|
|
1580
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
1581
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
1582
|
+
*
|
|
1583
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
1584
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
1585
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
1586
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
1587
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
1588
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
1589
|
+
*
|
|
1590
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
1591
|
+
* second place to set them would be a second answer to one question.
|
|
1592
|
+
*/
|
|
1593
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
1594
|
+
[x: string]: string;
|
|
1595
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
1456
1596
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
1457
1597
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
1458
1598
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
|
@@ -1966,6 +2106,23 @@ export declare const registerRunnerPoolSchema: v.ObjectSchema<{
|
|
|
1966
2106
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
1967
2107
|
*/
|
|
1968
2108
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2109
|
+
/**
|
|
2110
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
2111
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
2112
|
+
*
|
|
2113
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
2114
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
2115
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
2116
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
2117
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
2118
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
2119
|
+
*
|
|
2120
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
2121
|
+
* second place to set them would be a second answer to one question.
|
|
2122
|
+
*/
|
|
2123
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
2124
|
+
[x: string]: string;
|
|
2125
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
1969
2126
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
1970
2127
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
1971
2128
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
|
@@ -2024,6 +2181,23 @@ export declare const registerRunnerPoolSchema: v.ObjectSchema<{
|
|
|
2024
2181
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
2025
2182
|
*/
|
|
2026
2183
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2184
|
+
/**
|
|
2185
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
2186
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
2187
|
+
*
|
|
2188
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
2189
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
2190
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
2191
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
2192
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
2193
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
2194
|
+
*
|
|
2195
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
2196
|
+
* second place to set them would be a second answer to one question.
|
|
2197
|
+
*/
|
|
2198
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
2199
|
+
[x: string]: string;
|
|
2200
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
2027
2201
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
2028
2202
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
2029
2203
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
|
@@ -2539,6 +2713,23 @@ export declare const testRunnerPoolConnectionSchema: v.ObjectSchema<{
|
|
|
2539
2713
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
2540
2714
|
*/
|
|
2541
2715
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2716
|
+
/**
|
|
2717
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
2718
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
2719
|
+
*
|
|
2720
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
2721
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
2722
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
2723
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
2724
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
2725
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
2726
|
+
*
|
|
2727
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
2728
|
+
* second place to set them would be a second answer to one question.
|
|
2729
|
+
*/
|
|
2730
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
2731
|
+
[x: string]: string;
|
|
2732
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
2542
2733
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
2543
2734
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
2544
2735
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
|
@@ -2597,6 +2788,23 @@ export declare const testRunnerPoolConnectionSchema: v.ObjectSchema<{
|
|
|
2597
2788
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
2598
2789
|
*/
|
|
2599
2790
|
readonly imageDeploy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2791
|
+
/**
|
|
2792
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
2793
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
2794
|
+
*
|
|
2795
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
2796
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
2797
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
2798
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
2799
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
2800
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
2801
|
+
*
|
|
2802
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
2803
|
+
* second place to set them would be a second answer to one question.
|
|
2804
|
+
*/
|
|
2805
|
+
readonly imageVariants: v.OptionalSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.CheckAction<{
|
|
2806
|
+
[x: string]: string;
|
|
2807
|
+
}, "must not redefine a platform image variant (default, ui, deploy): each has its own field">]>, undefined>;
|
|
2600
2808
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
2601
2809
|
readonly harnessPort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
2602
2810
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
package/dist/runners.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runners.d.ts","sourceRoot":"","sources":["../src/runners.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAoC5B,kFAAkF;AAClF,eAAO,MAAM,yBAAyB;;aAA6B,CAAA;AACnE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAEjF,oEAAoE;AACpE,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAA8B,CAAA;AACrE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,0BAA0B,CAAC,CAAA;AAEnF;;;;;;;GAOG;AACH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;aAAmC,CAAA;AAC/E,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,+BAA+B,CAAC,CAAA;AAE7F,wEAAwE;AACxE,eAAO,MAAM,oBAAoB,4DAA4C,CAAA;AAC7E,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEvE;;;;;GAKG;AACH,eAAO,MAAM,+BAA+B;IAC1C,8EAA8E;;IAE9E,2DAA2D;;;;;IAE3D,yEAAyE;;;;IAIzE;;;;;;OAMG;;IAEH,8CAA8C;;;;IAI9C;;;;;;;;;OASG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;;;;OAUG;;IAEH;;;;;;;;;;OAUG;;IAEH;;;;;;;;;;;;;OAaG;;IAEH,mFAAmF;;IAEnF;;;;;;;OAOG;;IAEH;;;;OAIG;;aAEH,CAAA;AACF,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,+BAA+B,CAAC,CAAA;AAe7F,kFAAkF;AAClF,eAAO,MAAM,kCAAkC;;;aAG7C,CAAA;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAEnG,wFAAwF;AACxF,eAAO,MAAM,kCAAkC,aAAa,CAAA;AAE5D,eAAO,MAAM,4BAA4B;IACvC,wDAAwD;;IAExD,uEAAuE;;IAEvE,iDAAiD;;IAMjD,4FAA4F;;IAE5F,sFAAsF;;IAEtF,6EAA6E;;IAE7E,kFAAkF;;IAElF;;;;;OAKG;;IAEH,wEAAwE;;IAExE,kEAAkE;;IAElE,iFAAiF;;IAEjF,qEAAqE;;;;;;;;;;;IAOrE,6EAA6E;;;;;IAE7E,0BAA0B;;IAE1B,iEAAiE;;IAEjE,iCAAiC;;IAEjC,sCAAsC;;aAEtC,CAAA;AACF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,4BAA4B,CAAC,CAAA;AAEvF,8EAA8E;AAC9E,eAAO,MAAM,wBAAwB;;;IAGnC,0EAA0E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAG1E,uEAAuE;;;;;;;;;;;;;;;IAEvE,wEAAwE;;;;;;;;;;;;;;;IAExE,sEAAsE;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"runners.d.ts","sourceRoot":"","sources":["../src/runners.ts"],"names":[],"mappings":"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"}
|