@cat-factory/contracts 0.196.0 → 0.197.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/compose-sources.d.ts +85 -0
- package/dist/compose-sources.d.ts.map +1 -0
- package/dist/compose-sources.js +118 -0
- package/dist/compose-sources.js.map +1 -0
- package/dist/entities.d.ts +27 -1
- package/dist/entities.d.ts.map +1 -1
- package/dist/environment-analyst.d.ts +27 -1
- package/dist/environment-analyst.d.ts.map +1 -1
- package/dist/environments.d.ts +54 -2
- package/dist/environments.d.ts.map +1 -1
- package/dist/execution.d.ts +54 -2
- package/dist/execution.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/requests.d.ts +154 -11
- package/dist/requests.d.ts.map +1 -1
- package/dist/routes/agent-runs.d.ts +54 -2
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/board.d.ts +478 -23
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +108 -4
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +27 -1
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +270 -10
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +27 -1
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +135 -5
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/initiative.d.ts +27 -1
- package/dist/routes/initiative.d.ts.map +1 -1
- package/dist/routes/shared-stacks.d.ts +196 -14
- package/dist/routes/shared-stacks.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +81 -3
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +81 -3
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +218 -10
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/shared-stacks.d.ts +97 -8
- package/dist/shared-stacks.d.ts.map +1 -1
- package/dist/shared-stacks.js +20 -8
- package/dist/shared-stacks.js.map +1 -1
- package/dist/snapshot.d.ts +109 -5
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/stack-recipes.d.ts +33 -2
- package/dist/stack-recipes.d.ts.map +1 -1
- package/dist/stack-recipes.js +8 -2
- package/dist/stack-recipes.js.map +1 -1
- package/package.json +1 -1
package/dist/routes/board.d.ts
CHANGED
|
@@ -112,7 +112,33 @@ export declare const addFrameContract: {
|
|
|
112
112
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
113
113
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
114
114
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
115
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
115
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
116
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
117
|
+
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>]>;
|
|
118
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
119
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
120
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
121
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
122
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
123
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
124
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
125
|
+
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>]>;
|
|
126
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
127
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
128
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
129
|
+
kind: "path";
|
|
130
|
+
path: string;
|
|
131
|
+
} | {
|
|
132
|
+
kind: "inline";
|
|
133
|
+
content: string;
|
|
134
|
+
path?: string | undefined;
|
|
135
|
+
} | {
|
|
136
|
+
kind: "repo";
|
|
137
|
+
repo: string;
|
|
138
|
+
path: string;
|
|
139
|
+
ref?: string | undefined;
|
|
140
|
+
provider?: "github" | "gitlab" | undefined;
|
|
141
|
+
})[], 1, undefined>]>, undefined>;
|
|
116
142
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
117
143
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
118
144
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -494,7 +520,33 @@ export declare const addServiceFromRepoContract: {
|
|
|
494
520
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
495
521
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
496
522
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
497
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
523
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
524
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
525
|
+
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>]>;
|
|
526
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
527
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
528
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
529
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
530
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
531
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
532
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
533
|
+
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>]>;
|
|
534
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
535
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
536
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
537
|
+
kind: "path";
|
|
538
|
+
path: string;
|
|
539
|
+
} | {
|
|
540
|
+
kind: "inline";
|
|
541
|
+
content: string;
|
|
542
|
+
path?: string | undefined;
|
|
543
|
+
} | {
|
|
544
|
+
kind: "repo";
|
|
545
|
+
repo: string;
|
|
546
|
+
path: string;
|
|
547
|
+
ref?: string | undefined;
|
|
548
|
+
provider?: "github" | "gitlab" | undefined;
|
|
549
|
+
})[], 1, undefined>]>, undefined>;
|
|
498
550
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
499
551
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
500
552
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -909,7 +961,33 @@ export declare const addTaskContract: {
|
|
|
909
961
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
910
962
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
911
963
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
912
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
964
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
965
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
966
|
+
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>]>;
|
|
967
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
968
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
969
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
970
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
971
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
972
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
973
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
974
|
+
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>]>;
|
|
975
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
976
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
977
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
978
|
+
kind: "path";
|
|
979
|
+
path: string;
|
|
980
|
+
} | {
|
|
981
|
+
kind: "inline";
|
|
982
|
+
content: string;
|
|
983
|
+
path?: string | undefined;
|
|
984
|
+
} | {
|
|
985
|
+
kind: "repo";
|
|
986
|
+
repo: string;
|
|
987
|
+
path: string;
|
|
988
|
+
ref?: string | undefined;
|
|
989
|
+
provider?: "github" | "gitlab" | undefined;
|
|
990
|
+
})[], 1, undefined>]>, undefined>;
|
|
913
991
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
914
992
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
915
993
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -1293,7 +1371,33 @@ export declare const addModuleContract: {
|
|
|
1293
1371
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1294
1372
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1295
1373
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1296
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
1374
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
1375
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
1376
|
+
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>]>;
|
|
1377
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1378
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
1379
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
1380
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1381
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1382
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
1383
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1384
|
+
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>]>;
|
|
1385
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1386
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
1387
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
1388
|
+
kind: "path";
|
|
1389
|
+
path: string;
|
|
1390
|
+
} | {
|
|
1391
|
+
kind: "inline";
|
|
1392
|
+
content: string;
|
|
1393
|
+
path?: string | undefined;
|
|
1394
|
+
} | {
|
|
1395
|
+
kind: "repo";
|
|
1396
|
+
repo: string;
|
|
1397
|
+
path: string;
|
|
1398
|
+
ref?: string | undefined;
|
|
1399
|
+
provider?: "github" | "gitlab" | undefined;
|
|
1400
|
+
})[], 1, undefined>]>, undefined>;
|
|
1297
1401
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
1298
1402
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1299
1403
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -1674,7 +1778,33 @@ export declare const addEpicContract: {
|
|
|
1674
1778
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1675
1779
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1676
1780
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1677
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
1781
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
1782
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
1783
|
+
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>]>;
|
|
1784
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1785
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
1786
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
1787
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1788
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
1789
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
1790
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
1791
|
+
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>]>;
|
|
1792
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1793
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
1794
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
1795
|
+
kind: "path";
|
|
1796
|
+
path: string;
|
|
1797
|
+
} | {
|
|
1798
|
+
kind: "inline";
|
|
1799
|
+
content: string;
|
|
1800
|
+
path?: string | undefined;
|
|
1801
|
+
} | {
|
|
1802
|
+
kind: "repo";
|
|
1803
|
+
repo: string;
|
|
1804
|
+
path: string;
|
|
1805
|
+
ref?: string | undefined;
|
|
1806
|
+
provider?: "github" | "gitlab" | undefined;
|
|
1807
|
+
})[], 1, undefined>]>, undefined>;
|
|
1678
1808
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
1679
1809
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1680
1810
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -2054,7 +2184,33 @@ export declare const assignEpicContract: {
|
|
|
2054
2184
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2055
2185
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2056
2186
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2057
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
2187
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
2188
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
2189
|
+
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>]>;
|
|
2190
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2191
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
2192
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
2193
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2194
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2195
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
2196
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
2197
|
+
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>]>;
|
|
2198
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2199
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
2200
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
2201
|
+
kind: "path";
|
|
2202
|
+
path: string;
|
|
2203
|
+
} | {
|
|
2204
|
+
kind: "inline";
|
|
2205
|
+
content: string;
|
|
2206
|
+
path?: string | undefined;
|
|
2207
|
+
} | {
|
|
2208
|
+
kind: "repo";
|
|
2209
|
+
repo: string;
|
|
2210
|
+
path: string;
|
|
2211
|
+
ref?: string | undefined;
|
|
2212
|
+
provider?: "github" | "gitlab" | undefined;
|
|
2213
|
+
})[], 1, undefined>]>, undefined>;
|
|
2058
2214
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2059
2215
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2060
2216
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -2364,7 +2520,33 @@ export declare const updateBlockContract: {
|
|
|
2364
2520
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2365
2521
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2366
2522
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2367
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
2523
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
2524
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
2525
|
+
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>]>;
|
|
2526
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2527
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
2528
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
2529
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2530
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2531
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
2532
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
2533
|
+
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>]>;
|
|
2534
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2535
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
2536
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
2537
|
+
kind: "path";
|
|
2538
|
+
path: string;
|
|
2539
|
+
} | {
|
|
2540
|
+
kind: "inline";
|
|
2541
|
+
content: string;
|
|
2542
|
+
path?: string | undefined;
|
|
2543
|
+
} | {
|
|
2544
|
+
kind: "repo";
|
|
2545
|
+
repo: string;
|
|
2546
|
+
path: string;
|
|
2547
|
+
ref?: string | undefined;
|
|
2548
|
+
provider?: "github" | "gitlab" | undefined;
|
|
2549
|
+
})[], 1, undefined>]>, undefined>;
|
|
2368
2550
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2369
2551
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2370
2552
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -2655,7 +2837,33 @@ export declare const updateBlockContract: {
|
|
|
2655
2837
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2656
2838
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2657
2839
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2658
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
2840
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
2841
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
2842
|
+
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>]>;
|
|
2843
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2844
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
2845
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
2846
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2847
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
2848
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
2849
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
2850
|
+
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>]>;
|
|
2851
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2852
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
2853
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
2854
|
+
kind: "path";
|
|
2855
|
+
path: string;
|
|
2856
|
+
} | {
|
|
2857
|
+
kind: "inline";
|
|
2858
|
+
content: string;
|
|
2859
|
+
path?: string | undefined;
|
|
2860
|
+
} | {
|
|
2861
|
+
kind: "repo";
|
|
2862
|
+
repo: string;
|
|
2863
|
+
path: string;
|
|
2864
|
+
ref?: string | undefined;
|
|
2865
|
+
provider?: "github" | "gitlab" | undefined;
|
|
2866
|
+
})[], 1, undefined>]>, undefined>;
|
|
2659
2867
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2660
2868
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2661
2869
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -2948,7 +3156,20 @@ export declare const updateBlockContract: {
|
|
|
2948
3156
|
localDevOnly?: boolean | undefined;
|
|
2949
3157
|
composeBuild?: boolean | undefined;
|
|
2950
3158
|
recipe?: {
|
|
2951
|
-
composeFiles?: string
|
|
3159
|
+
composeFiles?: (string | {
|
|
3160
|
+
kind: "path";
|
|
3161
|
+
path: string;
|
|
3162
|
+
} | {
|
|
3163
|
+
kind: "inline";
|
|
3164
|
+
content: string;
|
|
3165
|
+
path?: string | undefined;
|
|
3166
|
+
} | {
|
|
3167
|
+
kind: "repo";
|
|
3168
|
+
repo: string;
|
|
3169
|
+
path: string;
|
|
3170
|
+
ref?: string | undefined;
|
|
3171
|
+
provider?: "github" | "gitlab" | undefined;
|
|
3172
|
+
})[] | undefined;
|
|
2952
3173
|
composeProfiles?: string[] | undefined;
|
|
2953
3174
|
envFiles?: {
|
|
2954
3175
|
template: string;
|
|
@@ -3208,7 +3429,20 @@ export declare const updateBlockContract: {
|
|
|
3208
3429
|
localDevOnly?: boolean | undefined;
|
|
3209
3430
|
composeBuild?: boolean | undefined;
|
|
3210
3431
|
recipe?: {
|
|
3211
|
-
composeFiles?: string
|
|
3432
|
+
composeFiles?: (string | {
|
|
3433
|
+
kind: "path";
|
|
3434
|
+
path: string;
|
|
3435
|
+
} | {
|
|
3436
|
+
kind: "inline";
|
|
3437
|
+
content: string;
|
|
3438
|
+
path?: string | undefined;
|
|
3439
|
+
} | {
|
|
3440
|
+
kind: "repo";
|
|
3441
|
+
repo: string;
|
|
3442
|
+
path: string;
|
|
3443
|
+
ref?: string | undefined;
|
|
3444
|
+
provider?: "github" | "gitlab" | undefined;
|
|
3445
|
+
})[] | undefined;
|
|
3212
3446
|
composeProfiles?: string[] | undefined;
|
|
3213
3447
|
envFiles?: {
|
|
3214
3448
|
template: string;
|
|
@@ -3469,7 +3703,20 @@ export declare const updateBlockContract: {
|
|
|
3469
3703
|
localDevOnly?: boolean | undefined;
|
|
3470
3704
|
composeBuild?: boolean | undefined;
|
|
3471
3705
|
recipe?: {
|
|
3472
|
-
composeFiles?: string
|
|
3706
|
+
composeFiles?: (string | {
|
|
3707
|
+
kind: "path";
|
|
3708
|
+
path: string;
|
|
3709
|
+
} | {
|
|
3710
|
+
kind: "inline";
|
|
3711
|
+
content: string;
|
|
3712
|
+
path?: string | undefined;
|
|
3713
|
+
} | {
|
|
3714
|
+
kind: "repo";
|
|
3715
|
+
repo: string;
|
|
3716
|
+
path: string;
|
|
3717
|
+
ref?: string | undefined;
|
|
3718
|
+
provider?: "github" | "gitlab" | undefined;
|
|
3719
|
+
})[] | undefined;
|
|
3473
3720
|
composeProfiles?: string[] | undefined;
|
|
3474
3721
|
envFiles?: {
|
|
3475
3722
|
template: string;
|
|
@@ -3702,7 +3949,7 @@ export declare const updateBlockContract: {
|
|
|
3702
3949
|
key: string;
|
|
3703
3950
|
} | undefined;
|
|
3704
3951
|
valueTemplate?: string | undefined;
|
|
3705
|
-
}> | import("valibot").IntegerIssue<number> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
|
|
3952
|
+
}> | import("valibot").IntegerIssue<number> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string, 262144> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
|
|
3706
3953
|
serviceBlockId: string;
|
|
3707
3954
|
description?: string | undefined;
|
|
3708
3955
|
}[], 50> | import("valibot").MaxLengthIssue<{
|
|
@@ -3714,7 +3961,20 @@ export declare const updateBlockContract: {
|
|
|
3714
3961
|
}[], 20> | import("valibot").MaxLengthIssue<{
|
|
3715
3962
|
name: string;
|
|
3716
3963
|
mode: "reference" | "working";
|
|
3717
|
-
}[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").
|
|
3964
|
+
}[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinLengthIssue<(string | {
|
|
3965
|
+
kind: "path";
|
|
3966
|
+
path: string;
|
|
3967
|
+
} | {
|
|
3968
|
+
kind: "inline";
|
|
3969
|
+
content: string;
|
|
3970
|
+
path?: string | undefined;
|
|
3971
|
+
} | {
|
|
3972
|
+
kind: "repo";
|
|
3973
|
+
repo: string;
|
|
3974
|
+
path: string;
|
|
3975
|
+
ref?: string | undefined;
|
|
3976
|
+
provider?: "github" | "gitlab" | undefined;
|
|
3977
|
+
})[], 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").MinValueIssue<number, 100> | import("valibot").MinValueIssue<number, 250> | import("valibot").MinValueIssue<number, 1000> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").UnionIssue<import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 262144> | import("valibot").MinLengthIssue<string, 1> | import("valibot").PicklistIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue> | import("valibot").VariantIssue>;
|
|
3718
3978
|
readonly "~types"?: {
|
|
3719
3979
|
readonly input: {
|
|
3720
3980
|
title?: string | undefined;
|
|
@@ -3754,7 +4014,20 @@ export declare const updateBlockContract: {
|
|
|
3754
4014
|
localDevOnly?: boolean | undefined;
|
|
3755
4015
|
composeBuild?: boolean | undefined;
|
|
3756
4016
|
recipe?: {
|
|
3757
|
-
composeFiles?: string
|
|
4017
|
+
composeFiles?: (string | {
|
|
4018
|
+
kind: "path";
|
|
4019
|
+
path: string;
|
|
4020
|
+
} | {
|
|
4021
|
+
kind: "inline";
|
|
4022
|
+
content: string;
|
|
4023
|
+
path?: string | undefined;
|
|
4024
|
+
} | {
|
|
4025
|
+
kind: "repo";
|
|
4026
|
+
repo: string;
|
|
4027
|
+
path: string;
|
|
4028
|
+
ref?: string | undefined;
|
|
4029
|
+
provider?: "github" | "gitlab" | undefined;
|
|
4030
|
+
})[] | undefined;
|
|
3758
4031
|
composeProfiles?: string[] | undefined;
|
|
3759
4032
|
envFiles?: {
|
|
3760
4033
|
template: string;
|
|
@@ -4015,7 +4288,20 @@ export declare const updateBlockContract: {
|
|
|
4015
4288
|
localDevOnly?: boolean | undefined;
|
|
4016
4289
|
composeBuild?: boolean | undefined;
|
|
4017
4290
|
recipe?: {
|
|
4018
|
-
composeFiles?: string
|
|
4291
|
+
composeFiles?: (string | {
|
|
4292
|
+
kind: "path";
|
|
4293
|
+
path: string;
|
|
4294
|
+
} | {
|
|
4295
|
+
kind: "inline";
|
|
4296
|
+
content: string;
|
|
4297
|
+
path?: string | undefined;
|
|
4298
|
+
} | {
|
|
4299
|
+
kind: "repo";
|
|
4300
|
+
repo: string;
|
|
4301
|
+
path: string;
|
|
4302
|
+
ref?: string | undefined;
|
|
4303
|
+
provider?: "github" | "gitlab" | undefined;
|
|
4304
|
+
})[] | undefined;
|
|
4019
4305
|
composeProfiles?: string[] | undefined;
|
|
4020
4306
|
envFiles?: {
|
|
4021
4307
|
template: string;
|
|
@@ -4249,7 +4535,7 @@ export declare const updateBlockContract: {
|
|
|
4249
4535
|
key: string;
|
|
4250
4536
|
} | undefined;
|
|
4251
4537
|
valueTemplate?: string | undefined;
|
|
4252
|
-
}> | import("valibot").IntegerIssue<number> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
|
|
4538
|
+
}> | import("valibot").IntegerIssue<number> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string, 262144> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
|
|
4253
4539
|
serviceBlockId: string;
|
|
4254
4540
|
description?: string | undefined;
|
|
4255
4541
|
}[], 50> | import("valibot").MaxLengthIssue<{
|
|
@@ -4261,7 +4547,20 @@ export declare const updateBlockContract: {
|
|
|
4261
4547
|
}[], 20> | import("valibot").MaxLengthIssue<{
|
|
4262
4548
|
name: string;
|
|
4263
4549
|
mode: "reference" | "working";
|
|
4264
|
-
}[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").
|
|
4550
|
+
}[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinLengthIssue<(string | {
|
|
4551
|
+
kind: "path";
|
|
4552
|
+
path: string;
|
|
4553
|
+
} | {
|
|
4554
|
+
kind: "inline";
|
|
4555
|
+
content: string;
|
|
4556
|
+
path?: string | undefined;
|
|
4557
|
+
} | {
|
|
4558
|
+
kind: "repo";
|
|
4559
|
+
repo: string;
|
|
4560
|
+
path: string;
|
|
4561
|
+
ref?: string | undefined;
|
|
4562
|
+
provider?: "github" | "gitlab" | undefined;
|
|
4563
|
+
})[], 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").MinValueIssue<number, 100> | import("valibot").MinValueIssue<number, 250> | import("valibot").MinValueIssue<number, 1000> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").UnionIssue<import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 262144> | import("valibot").MinLengthIssue<string, 1> | import("valibot").PicklistIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue> | import("valibot").VariantIssue;
|
|
4265
4564
|
} | undefined;
|
|
4266
4565
|
};
|
|
4267
4566
|
readonly responsesByStatusCode: {
|
|
@@ -4367,7 +4666,33 @@ export declare const updateBlockContract: {
|
|
|
4367
4666
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4368
4667
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4369
4668
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
4370
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
4669
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
4670
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
4671
|
+
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>]>;
|
|
4672
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
4673
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
4674
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
4675
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
4676
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
4677
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
4678
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
4679
|
+
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>]>;
|
|
4680
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
4681
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
4682
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
4683
|
+
kind: "path";
|
|
4684
|
+
path: string;
|
|
4685
|
+
} | {
|
|
4686
|
+
kind: "inline";
|
|
4687
|
+
content: string;
|
|
4688
|
+
path?: string | undefined;
|
|
4689
|
+
} | {
|
|
4690
|
+
kind: "repo";
|
|
4691
|
+
repo: string;
|
|
4692
|
+
path: string;
|
|
4693
|
+
ref?: string | undefined;
|
|
4694
|
+
provider?: "github" | "gitlab" | undefined;
|
|
4695
|
+
})[], 1, undefined>]>, undefined>;
|
|
4371
4696
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
4372
4697
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
4373
4698
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -4750,7 +5075,33 @@ export declare const moveBlockContract: {
|
|
|
4750
5075
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4751
5076
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4752
5077
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
4753
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
5078
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
5079
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
5080
|
+
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>]>;
|
|
5081
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5082
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
5083
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
5084
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5085
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5086
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
5087
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
5088
|
+
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>]>;
|
|
5089
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
5090
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
5091
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
5092
|
+
kind: "path";
|
|
5093
|
+
path: string;
|
|
5094
|
+
} | {
|
|
5095
|
+
kind: "inline";
|
|
5096
|
+
content: string;
|
|
5097
|
+
path?: string | undefined;
|
|
5098
|
+
} | {
|
|
5099
|
+
kind: "repo";
|
|
5100
|
+
repo: string;
|
|
5101
|
+
path: string;
|
|
5102
|
+
ref?: string | undefined;
|
|
5103
|
+
provider?: "github" | "gitlab" | undefined;
|
|
5104
|
+
})[], 1, undefined>]>, undefined>;
|
|
4754
5105
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
4755
5106
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
4756
5107
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -5134,7 +5485,33 @@ export declare const reparentBlockContract: {
|
|
|
5134
5485
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5135
5486
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5136
5487
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
5137
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
5488
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
5489
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
5490
|
+
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>]>;
|
|
5491
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5492
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
5493
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
5494
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5495
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5496
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
5497
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
5498
|
+
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>]>;
|
|
5499
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
5500
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
5501
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
5502
|
+
kind: "path";
|
|
5503
|
+
path: string;
|
|
5504
|
+
} | {
|
|
5505
|
+
kind: "inline";
|
|
5506
|
+
content: string;
|
|
5507
|
+
path?: string | undefined;
|
|
5508
|
+
} | {
|
|
5509
|
+
kind: "repo";
|
|
5510
|
+
repo: string;
|
|
5511
|
+
path: string;
|
|
5512
|
+
ref?: string | undefined;
|
|
5513
|
+
provider?: "github" | "gitlab" | undefined;
|
|
5514
|
+
})[], 1, undefined>]>, undefined>;
|
|
5138
5515
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
5139
5516
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5140
5517
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -5546,7 +5923,33 @@ export declare const archiveBlockContract: {
|
|
|
5546
5923
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5547
5924
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5548
5925
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
5549
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
5926
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
5927
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
5928
|
+
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>]>;
|
|
5929
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5930
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
5931
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
5932
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5933
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5934
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
5935
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
5936
|
+
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>]>;
|
|
5937
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
5938
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
5939
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
5940
|
+
kind: "path";
|
|
5941
|
+
path: string;
|
|
5942
|
+
} | {
|
|
5943
|
+
kind: "inline";
|
|
5944
|
+
content: string;
|
|
5945
|
+
path?: string | undefined;
|
|
5946
|
+
} | {
|
|
5947
|
+
kind: "repo";
|
|
5948
|
+
repo: string;
|
|
5949
|
+
path: string;
|
|
5950
|
+
ref?: string | undefined;
|
|
5951
|
+
provider?: "github" | "gitlab" | undefined;
|
|
5952
|
+
})[], 1, undefined>]>, undefined>;
|
|
5550
5953
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
5551
5954
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5552
5955
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -5924,7 +6327,33 @@ export declare const restoreBlockContract: {
|
|
|
5924
6327
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5925
6328
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5926
6329
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
5927
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
6330
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
6331
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
6332
|
+
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>]>;
|
|
6333
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6334
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
6335
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
6336
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
6337
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6338
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
6339
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
6340
|
+
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>]>;
|
|
6341
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
6342
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
6343
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
6344
|
+
kind: "path";
|
|
6345
|
+
path: string;
|
|
6346
|
+
} | {
|
|
6347
|
+
kind: "inline";
|
|
6348
|
+
content: string;
|
|
6349
|
+
path?: string | undefined;
|
|
6350
|
+
} | {
|
|
6351
|
+
kind: "repo";
|
|
6352
|
+
repo: string;
|
|
6353
|
+
path: string;
|
|
6354
|
+
ref?: string | undefined;
|
|
6355
|
+
provider?: "github" | "gitlab" | undefined;
|
|
6356
|
+
})[], 1, undefined>]>, undefined>;
|
|
5928
6357
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
5929
6358
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5930
6359
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
@@ -6304,7 +6733,33 @@ export declare const toggleDependencyContract: {
|
|
|
6304
6733
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6305
6734
|
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6306
6735
|
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6307
|
-
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>,
|
|
6736
|
+
readonly composeFiles: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
6737
|
+
readonly kind: import("valibot").LiteralSchema<"path", undefined>;
|
|
6738
|
+
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>]>;
|
|
6739
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6740
|
+
readonly kind: import("valibot").LiteralSchema<"inline", undefined>;
|
|
6741
|
+
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 262144, undefined>]>;
|
|
6742
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
6743
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6744
|
+
readonly kind: import("valibot").LiteralSchema<"repo", undefined>;
|
|
6745
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
6746
|
+
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>]>;
|
|
6747
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
6748
|
+
readonly provider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
6749
|
+
}, undefined>], undefined>], undefined>, undefined>, import("valibot").MinLengthAction<(string | {
|
|
6750
|
+
kind: "path";
|
|
6751
|
+
path: string;
|
|
6752
|
+
} | {
|
|
6753
|
+
kind: "inline";
|
|
6754
|
+
content: string;
|
|
6755
|
+
path?: string | undefined;
|
|
6756
|
+
} | {
|
|
6757
|
+
kind: "repo";
|
|
6758
|
+
repo: string;
|
|
6759
|
+
path: string;
|
|
6760
|
+
ref?: string | undefined;
|
|
6761
|
+
provider?: "github" | "gitlab" | undefined;
|
|
6762
|
+
})[], 1, undefined>]>, undefined>;
|
|
6308
6763
|
readonly composeProfiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
6309
6764
|
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6310
6765
|
readonly template: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|