@cat-factory/contracts 0.317.0 → 0.319.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/api-keys.d.ts +5 -5
- package/dist/api-keys.d.ts.map +1 -1
- package/dist/api-keys.js +6 -3
- package/dist/api-keys.js.map +1 -1
- 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/modelPolicy.d.ts +1 -1
- package/dist/modelPolicy.js +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/reserved-env-keys.d.ts.map +1 -1
- package/dist/reserved-env-keys.js +16 -2
- package/dist/reserved-env-keys.js.map +1 -1
- package/dist/routes/accounts.d.ts +4 -4
- package/dist/routes/agent-runs.d.ts +2 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/api-keys.d.ts +8 -8
- 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/runners.d.ts +30 -0
- package/dist/routes/runners.d.ts.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/snapshot.d.ts +1 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
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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"}
|
package/dist/runners.js
CHANGED
|
@@ -193,6 +193,36 @@ export const kubernetesResourceQuantitiesSchema = v.object({
|
|
|
193
193
|
});
|
|
194
194
|
/** The secret-bundle key the Kubernetes backend reads the ServiceAccount token from. */
|
|
195
195
|
export const KUBERNETES_RUNNER_TOKEN_SECRET_KEY = 'apiToken';
|
|
196
|
+
/**
|
|
197
|
+
* The container image variants the PLATFORM itself publishes, and therefore the names a
|
|
198
|
+
* deployment may not claim for an image of its own: each has its own named setting on every
|
|
199
|
+
* runner backend, and re-pointing one would silently change what a built-in kind runs.
|
|
200
|
+
*
|
|
201
|
+
* On the WIRE rather than in the backend alone, for the reason the capability tags are: the
|
|
202
|
+
* people who must not collide with these names are outside it. A deployment registers an agent
|
|
203
|
+
* kind naming its own variant, and an operator fills in a backend's variant map in the SPA.
|
|
204
|
+
* Kernel re-exports it, so a backend and a registration are held to one list.
|
|
205
|
+
*/
|
|
206
|
+
export const PLATFORM_IMAGE_VARIANTS = ['default', 'ui', 'deploy'];
|
|
207
|
+
/** Whether `variant` is one the platform publishes, rather than a deployment's own. */
|
|
208
|
+
export function isPlatformImageVariant(variant) {
|
|
209
|
+
return PLATFORM_IMAGE_VARIANTS.includes(variant);
|
|
210
|
+
}
|
|
211
|
+
/** The shape every image-variant name is held to: a bounded lower-kebab slug. */
|
|
212
|
+
export const IMAGE_VARIANT_NAME_PATTERN = /^[a-z0-9][a-z0-9-]*$/;
|
|
213
|
+
const IMAGE_VARIANT_NAME_MAX_LENGTH = 64;
|
|
214
|
+
/**
|
|
215
|
+
* Whether `value` is SHAPED like an image-variant name, membership aside.
|
|
216
|
+
*
|
|
217
|
+
* The names are open, so this is the only question askable about one without a backend's
|
|
218
|
+
* variant map in hand: a reader recovering a variant out of a container key holds no config,
|
|
219
|
+
* and a registration is checked at boot before any pool is resolved. Stated once here because
|
|
220
|
+
* both boundaries that ACCEPT a name (an agent kind's declaration, a backend's variant map)
|
|
221
|
+
* must agree with the reader that recovers it.
|
|
222
|
+
*/
|
|
223
|
+
export function isImageVariantName(value) {
|
|
224
|
+
return value.length <= IMAGE_VARIANT_NAME_MAX_LENGTH && IMAGE_VARIANT_NAME_PATTERN.test(value);
|
|
225
|
+
}
|
|
196
226
|
export const kubernetesRunnerConfigSchema = v.object({
|
|
197
227
|
/** Human label for the connection (shown in the UI). */
|
|
198
228
|
label: v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(120)),
|
|
@@ -215,6 +245,21 @@ export const kubernetesRunnerConfigSchema = v.object({
|
|
|
215
245
|
* raw-manifest REST path is unaffected); set it to enable the pool's deploy backend.
|
|
216
246
|
*/
|
|
217
247
|
imageDeploy: v.optional(v.string()),
|
|
248
|
+
/**
|
|
249
|
+
* The DEPLOYMENT's own image variants: the name one of its agent kinds declares
|
|
250
|
+
* (`AgentStepSpec.image`) mapped to the tag a pod for it pulls.
|
|
251
|
+
*
|
|
252
|
+
* A map rather than more named fields, because these are open-ended in a way the three above
|
|
253
|
+
* are not: `image` / `imageUi` / `imageDeploy` are images this repo publishes and every backend
|
|
254
|
+
* knows the meaning of, while what a deployment's own agent kind needs in its container is
|
|
255
|
+
* known only to that deployment. A kind declaring a name this map does not carry is refused at
|
|
256
|
+
* dispatch rather than quietly run on the default image, which would produce a job missing
|
|
257
|
+
* whatever the variant existed for and a step reporting nothing about why.
|
|
258
|
+
*
|
|
259
|
+
* The platform's own names are not accepted here: they have their own fields above, and a
|
|
260
|
+
* second place to set them would be a second answer to one question.
|
|
261
|
+
*/
|
|
262
|
+
imageVariants: v.optional(v.pipe(v.record(v.pipe(v.string(), v.trim(), v.maxLength(IMAGE_VARIANT_NAME_MAX_LENGTH), v.regex(IMAGE_VARIANT_NAME_PATTERN, 'must be a lower-kebab slug')), v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(500))), v.check((variants) => Object.keys(variants).every((name) => !isPlatformImageVariant(name)), 'must not redefine a platform image variant (default, ui, deploy): each has its own field'))),
|
|
218
263
|
/** Container port the harness HTTP server listens on (default 8080). */
|
|
219
264
|
harnessPort: v.optional(v.pipe(v.number(), v.integer(), v.minValue(1), v.maxValue(65535))),
|
|
220
265
|
/** Name of an `imagePullSecrets` entry for a private registry. */
|
package/dist/runners.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runners.js","sourceRoot":"","sources":["../src/runners.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"runners.js","sourceRoot":"","sources":["../src/runners.ts"],"names":[],"mappings":"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"}
|
package/dist/snapshot.d.ts
CHANGED
|
@@ -1270,6 +1270,7 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1270
1270
|
readonly height: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 16384, undefined>]>;
|
|
1271
1271
|
}, undefined>, undefined>;
|
|
1272
1272
|
readonly generator: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1273
|
+
readonly processedBy: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1273
1274
|
readonly modality: v.OptionalSchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>;
|
|
1274
1275
|
}, undefined>, undefined>;
|
|
1275
1276
|
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
package/dist/snapshot.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../src/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAyC5B;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;aAGhC,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE7E,4EAA4E;AAC5E,eAAO,MAAM,uBAAuB;;;IAGlC;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"snapshot.d.ts","sourceRoot":"","sources":["../src/snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAyC5B;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;aAGhC,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE7E,4EAA4E;AAC5E,eAAO,MAAM,uBAAuB;;;IAGlC;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKlC;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;IAEH;;;OAGG;;;;IAEH;;;;;;OAMG;;;;;;IAEH;;;;OAIG;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;;OAQG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;;OAQG;;;;;IAOH;;;OAGG;;;;IAEH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;OAGG;;;;;;;;;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;IAGH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;;;;;;;;;;;;IAEH;;;;;;OAMG;;;;;;;IAEH;;;;;;;;;;OAUG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;;;;;OAWG;;IAEH;;;;;;;;OAQG;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;;;OASG;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;;OAQG;;IAEH;;;;;;;;;OASG;;;;QA5PH;;;;;WAKG;;;;;;QALH;;;;;WAKG;;;IA0PH;;;;;;;;;;;;;OAaG;;IAEH;;;;;;;;;;;;;;;;;;OAkBG;;IAEH;;;;;;;;;;;;;;;OAeG;;;;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;;;;;;;OAaG;;IAEH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;;;;;;OAOG;;;;;;IAEH;;;;;;;OAOG;;;;;;IAEH;;;;;OAKG;;;;;aAEH,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA"}
|