@cat-factory/contracts 0.58.0 → 0.59.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/entities.d.ts +25 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +11 -1
- package/dist/entities.js.map +1 -1
- package/dist/environments.d.ts +477 -0
- package/dist/environments.d.ts.map +1 -1
- package/dist/environments.js +139 -0
- package/dist/environments.js.map +1 -1
- package/dist/requests.d.ts +114 -2
- package/dist/requests.d.ts.map +1 -1
- package/dist/requests.js +5 -0
- package/dist/requests.js.map +1 -1
- package/dist/routes/board.d.ts +274 -2
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +10 -0
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +32 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +48 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +32 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +16 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/routes/board.d.ts
CHANGED
|
@@ -81,6 +81,22 @@ export declare const addFrameContract: {
|
|
|
81
81
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
82
82
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
83
83
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
84
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
85
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
86
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
87
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
88
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
89
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
90
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
91
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
92
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
93
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
94
|
+
}, undefined>], undefined>, undefined>;
|
|
95
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
96
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
97
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
98
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
99
|
+
}, undefined>, undefined>;
|
|
84
100
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
85
101
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
86
102
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -182,6 +198,22 @@ export declare const addServiceFromRepoContract: {
|
|
|
182
198
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
183
199
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
184
200
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
201
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
202
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
203
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
204
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
205
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
206
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
207
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
208
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
209
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
210
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
211
|
+
}, undefined>], undefined>, undefined>;
|
|
212
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
213
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
214
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
215
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
216
|
+
}, undefined>, undefined>;
|
|
185
217
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
186
218
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
187
219
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -299,6 +331,22 @@ export declare const addTaskContract: {
|
|
|
299
331
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
300
332
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
301
333
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
334
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
335
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
336
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
337
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
338
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
339
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
340
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
341
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
342
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
343
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
344
|
+
}, undefined>], undefined>, undefined>;
|
|
345
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
346
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
347
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
348
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
349
|
+
}, undefined>, undefined>;
|
|
302
350
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
303
351
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
304
352
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -403,6 +451,22 @@ export declare const addModuleContract: {
|
|
|
403
451
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
404
452
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
405
453
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
454
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
455
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
456
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
457
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
458
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
459
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
460
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
461
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
462
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
463
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
464
|
+
}, undefined>], undefined>, undefined>;
|
|
465
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
466
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
467
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
468
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
469
|
+
}, undefined>, undefined>;
|
|
406
470
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
407
471
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
408
472
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -504,6 +568,22 @@ export declare const addEpicContract: {
|
|
|
504
568
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
505
569
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
506
570
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
571
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
572
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
573
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
574
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
575
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
576
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
577
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
578
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
579
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
580
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
581
|
+
}, undefined>], undefined>, undefined>;
|
|
582
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
583
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
584
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
585
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
586
|
+
}, undefined>, undefined>;
|
|
507
587
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
508
588
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
509
589
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -604,6 +684,22 @@ export declare const assignEpicContract: {
|
|
|
604
684
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
605
685
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
606
686
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
687
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
688
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
689
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
690
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
691
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
692
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
693
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
694
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
695
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
696
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
697
|
+
}, undefined>], undefined>, undefined>;
|
|
698
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
699
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
700
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
701
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
702
|
+
}, undefined>, undefined>;
|
|
607
703
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
608
704
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
609
705
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -651,6 +747,22 @@ export declare const updateBlockContract: {
|
|
|
651
747
|
readonly testComposePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 400, undefined>]>;
|
|
652
748
|
readonly noInfraDependencies: import("valibot").BooleanSchema<undefined>;
|
|
653
749
|
readonly defaultTestEnvironment: import("valibot").PicklistSchema<["local", "ephemeral"], undefined>;
|
|
750
|
+
readonly provisioning: import("valibot").ObjectSchema<{
|
|
751
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
752
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
753
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
754
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
755
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
756
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
757
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
758
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
759
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
760
|
+
}, undefined>], undefined>, undefined>;
|
|
761
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
762
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
763
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
764
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
765
|
+
}, undefined>;
|
|
654
766
|
readonly cloudProvider: import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>;
|
|
655
767
|
readonly instanceSize: import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>;
|
|
656
768
|
readonly trackerCommentOnPrOpen: import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>;
|
|
@@ -682,6 +794,22 @@ export declare const updateBlockContract: {
|
|
|
682
794
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
683
795
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
684
796
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
797
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
798
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
799
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
800
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
801
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
802
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
803
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
804
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
805
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
806
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
807
|
+
}, undefined>], undefined>, undefined>;
|
|
808
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
809
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
810
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
811
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
812
|
+
}, undefined>, undefined>;
|
|
685
813
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
686
814
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
687
815
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
@@ -715,6 +843,22 @@ export declare const updateBlockContract: {
|
|
|
715
843
|
testComposePath?: string | undefined;
|
|
716
844
|
noInfraDependencies?: boolean | undefined;
|
|
717
845
|
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
846
|
+
provisioning?: {
|
|
847
|
+
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
848
|
+
manifestSource?: {
|
|
849
|
+
type: "colocated";
|
|
850
|
+
path: string;
|
|
851
|
+
} | {
|
|
852
|
+
type: "separate";
|
|
853
|
+
repo: string;
|
|
854
|
+
ref?: string | undefined;
|
|
855
|
+
path: string;
|
|
856
|
+
} | undefined;
|
|
857
|
+
composePath?: string | undefined;
|
|
858
|
+
localDevOnly?: boolean | undefined;
|
|
859
|
+
manifestId?: string | undefined;
|
|
860
|
+
manifestPath?: string | undefined;
|
|
861
|
+
} | undefined;
|
|
718
862
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
719
863
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
720
864
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
@@ -747,6 +891,22 @@ export declare const updateBlockContract: {
|
|
|
747
891
|
testComposePath?: string | undefined;
|
|
748
892
|
noInfraDependencies?: boolean | undefined;
|
|
749
893
|
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
894
|
+
provisioning?: {
|
|
895
|
+
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
896
|
+
manifestSource?: {
|
|
897
|
+
type: "colocated";
|
|
898
|
+
path: string;
|
|
899
|
+
} | {
|
|
900
|
+
type: "separate";
|
|
901
|
+
repo: string;
|
|
902
|
+
ref?: string | undefined;
|
|
903
|
+
path: string;
|
|
904
|
+
} | undefined;
|
|
905
|
+
composePath?: string | undefined;
|
|
906
|
+
localDevOnly?: boolean | undefined;
|
|
907
|
+
manifestId?: string | undefined;
|
|
908
|
+
manifestPath?: string | undefined;
|
|
909
|
+
} | undefined;
|
|
750
910
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
751
911
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
752
912
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
@@ -780,6 +940,22 @@ export declare const updateBlockContract: {
|
|
|
780
940
|
testComposePath?: string | undefined;
|
|
781
941
|
noInfraDependencies?: boolean | undefined;
|
|
782
942
|
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
943
|
+
provisioning?: {
|
|
944
|
+
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
945
|
+
manifestSource?: {
|
|
946
|
+
type: "colocated";
|
|
947
|
+
path: string;
|
|
948
|
+
} | {
|
|
949
|
+
type: "separate";
|
|
950
|
+
repo: string;
|
|
951
|
+
ref?: string | undefined;
|
|
952
|
+
path: string;
|
|
953
|
+
} | undefined;
|
|
954
|
+
composePath?: string | undefined;
|
|
955
|
+
localDevOnly?: boolean | undefined;
|
|
956
|
+
manifestId?: string | undefined;
|
|
957
|
+
manifestPath?: string | undefined;
|
|
958
|
+
} | undefined;
|
|
783
959
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
784
960
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
785
961
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
@@ -788,7 +964,7 @@ export declare const updateBlockContract: {
|
|
|
788
964
|
responsibleProductUserId?: string | null | undefined;
|
|
789
965
|
epicId?: string | undefined;
|
|
790
966
|
autoStartDependents?: boolean | undefined;
|
|
791
|
-
}, import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").StringIssue>;
|
|
967
|
+
}, import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue>;
|
|
792
968
|
readonly "~types"?: {
|
|
793
969
|
readonly input: {
|
|
794
970
|
title?: string | undefined;
|
|
@@ -814,6 +990,22 @@ export declare const updateBlockContract: {
|
|
|
814
990
|
testComposePath?: string | undefined;
|
|
815
991
|
noInfraDependencies?: boolean | undefined;
|
|
816
992
|
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
993
|
+
provisioning?: {
|
|
994
|
+
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
995
|
+
manifestSource?: {
|
|
996
|
+
type: "colocated";
|
|
997
|
+
path: string;
|
|
998
|
+
} | {
|
|
999
|
+
type: "separate";
|
|
1000
|
+
repo: string;
|
|
1001
|
+
ref?: string | undefined;
|
|
1002
|
+
path: string;
|
|
1003
|
+
} | undefined;
|
|
1004
|
+
composePath?: string | undefined;
|
|
1005
|
+
localDevOnly?: boolean | undefined;
|
|
1006
|
+
manifestId?: string | undefined;
|
|
1007
|
+
manifestPath?: string | undefined;
|
|
1008
|
+
} | undefined;
|
|
817
1009
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
818
1010
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
819
1011
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
@@ -847,6 +1039,22 @@ export declare const updateBlockContract: {
|
|
|
847
1039
|
testComposePath?: string | undefined;
|
|
848
1040
|
noInfraDependencies?: boolean | undefined;
|
|
849
1041
|
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
1042
|
+
provisioning?: {
|
|
1043
|
+
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
1044
|
+
manifestSource?: {
|
|
1045
|
+
type: "colocated";
|
|
1046
|
+
path: string;
|
|
1047
|
+
} | {
|
|
1048
|
+
type: "separate";
|
|
1049
|
+
repo: string;
|
|
1050
|
+
ref?: string | undefined;
|
|
1051
|
+
path: string;
|
|
1052
|
+
} | undefined;
|
|
1053
|
+
composePath?: string | undefined;
|
|
1054
|
+
localDevOnly?: boolean | undefined;
|
|
1055
|
+
manifestId?: string | undefined;
|
|
1056
|
+
manifestPath?: string | undefined;
|
|
1057
|
+
} | undefined;
|
|
850
1058
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
851
1059
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
852
1060
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
@@ -856,7 +1064,7 @@ export declare const updateBlockContract: {
|
|
|
856
1064
|
epicId?: string | undefined;
|
|
857
1065
|
autoStartDependents?: boolean | undefined;
|
|
858
1066
|
};
|
|
859
|
-
readonly issue: import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").StringIssue;
|
|
1067
|
+
readonly issue: import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue;
|
|
860
1068
|
} | undefined;
|
|
861
1069
|
};
|
|
862
1070
|
readonly responsesByStatusCode: {
|
|
@@ -931,6 +1139,22 @@ export declare const updateBlockContract: {
|
|
|
931
1139
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
932
1140
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
933
1141
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
1142
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1143
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
1144
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
1145
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
1146
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1147
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1148
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
1149
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1150
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1151
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1152
|
+
}, undefined>], undefined>, undefined>;
|
|
1153
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1154
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1155
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
1156
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1157
|
+
}, undefined>, undefined>;
|
|
934
1158
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
935
1159
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
936
1160
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -1034,6 +1258,22 @@ export declare const moveBlockContract: {
|
|
|
1034
1258
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1035
1259
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1036
1260
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
1261
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1262
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
1263
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
1264
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
1265
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1266
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1267
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
1268
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1269
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1270
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1271
|
+
}, undefined>], undefined>, undefined>;
|
|
1272
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1273
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1274
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
1275
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1276
|
+
}, undefined>, undefined>;
|
|
1037
1277
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
1038
1278
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
1039
1279
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -1138,6 +1378,22 @@ export declare const reparentBlockContract: {
|
|
|
1138
1378
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1139
1379
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1140
1380
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
1381
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1382
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
1383
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
1384
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
1385
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1386
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1387
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
1388
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1389
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1390
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1391
|
+
}, undefined>], undefined>, undefined>;
|
|
1392
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1393
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1394
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
1395
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1396
|
+
}, undefined>, undefined>;
|
|
1141
1397
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
1142
1398
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
1143
1399
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -1272,6 +1528,22 @@ export declare const toggleDependencyContract: {
|
|
|
1272
1528
|
readonly testComposePath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1273
1529
|
readonly noInfraDependencies: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1274
1530
|
readonly defaultTestEnvironment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
1531
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1532
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
1533
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
1534
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
1535
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1536
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1537
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
1538
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1539
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
1540
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
1541
|
+
}, undefined>], undefined>, undefined>;
|
|
1542
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1543
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1544
|
+
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
1545
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1546
|
+
}, undefined>, undefined>;
|
|
1275
1547
|
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
1276
1548
|
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
1277
1549
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"board.d.ts","sourceRoot":"","sources":["../../src/routes/board.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAwB3E,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"board.d.ts","sourceRoot":"","sources":["../../src/routes/board.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAwB3E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK1B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM9B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9B,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA"}
|
|
@@ -1683,6 +1683,8 @@ export declare const listEnvironmentsContract: {
|
|
|
1683
1683
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
1684
1684
|
readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1685
1685
|
readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1686
|
+
readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>, undefined>, undefined>;
|
|
1687
|
+
readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
1686
1688
|
}, undefined>, undefined>;
|
|
1687
1689
|
};
|
|
1688
1690
|
};
|
|
@@ -1737,6 +1739,8 @@ export declare const getEnvironmentContract: {
|
|
|
1737
1739
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
1738
1740
|
readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1739
1741
|
readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1742
|
+
readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>, undefined>, undefined>;
|
|
1743
|
+
readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
1740
1744
|
}, undefined>;
|
|
1741
1745
|
};
|
|
1742
1746
|
};
|
|
@@ -1791,6 +1795,8 @@ export declare const getEnvironmentAccessContract: {
|
|
|
1791
1795
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
1792
1796
|
readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1793
1797
|
readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1798
|
+
readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>, undefined>, undefined>;
|
|
1799
|
+
readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
1794
1800
|
}, undefined>;
|
|
1795
1801
|
};
|
|
1796
1802
|
};
|
|
@@ -1844,6 +1850,8 @@ export declare const provisionEnvironmentContract: {
|
|
|
1844
1850
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
1845
1851
|
readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1846
1852
|
readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1853
|
+
readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>, undefined>, undefined>;
|
|
1854
|
+
readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
1847
1855
|
}, undefined>;
|
|
1848
1856
|
};
|
|
1849
1857
|
};
|
|
@@ -1899,6 +1907,8 @@ export declare const teardownEnvironmentContract: {
|
|
|
1899
1907
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
1900
1908
|
readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1901
1909
|
readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1910
|
+
readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>, undefined>, undefined>;
|
|
1911
|
+
readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
1902
1912
|
}, undefined>;
|
|
1903
1913
|
};
|
|
1904
1914
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../src/routes/environments.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmC5B,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI3C,CAAA;AAEF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9C,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIhD,CAAA;AAEF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ9C,CAAA;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK5C,CAAA;AAIF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK1C,CAAA;AAIF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../src/routes/environments.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmC5B,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI3C,CAAA;AAEF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9C,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIhD,CAAA;AAEF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ9C,CAAA;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK5C,CAAA;AAIF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK1C,CAAA;AAIF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAInC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKjC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
|
|
@@ -479,6 +479,22 @@ export declare const cancelExecutionContract: {
|
|
|
479
479
|
readonly testComposePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
480
480
|
readonly noInfraDependencies: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
481
481
|
readonly defaultTestEnvironment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
482
|
+
readonly provisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
483
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
484
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
485
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
486
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
487
|
+
}, undefined>, v.ObjectSchema<{
|
|
488
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
489
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
490
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
491
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
492
|
+
}, undefined>], undefined>, undefined>;
|
|
493
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
494
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
495
|
+
readonly manifestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
496
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
497
|
+
}, undefined>, undefined>;
|
|
482
498
|
readonly cloudProvider: v.OptionalSchema<v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
483
499
|
readonly instanceSize: v.OptionalSchema<v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
484
500
|
readonly pullRequest: v.OptionalSchema<v.ObjectSchema<{
|
|
@@ -577,6 +593,22 @@ export declare const mergeBlockContract: {
|
|
|
577
593
|
readonly testComposePath: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
578
594
|
readonly noInfraDependencies: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
579
595
|
readonly defaultTestEnvironment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
596
|
+
readonly provisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
597
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
598
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
599
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
600
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
601
|
+
}, undefined>, v.ObjectSchema<{
|
|
602
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
603
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
604
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
605
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
606
|
+
}, undefined>], undefined>, undefined>;
|
|
607
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
608
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
609
|
+
readonly manifestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
610
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
611
|
+
}, undefined>, undefined>;
|
|
580
612
|
readonly cloudProvider: v.OptionalSchema<v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
581
613
|
readonly instanceSize: v.OptionalSchema<v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
582
614
|
readonly pullRequest: v.OptionalSchema<v.ObjectSchema<{
|