@cat-factory/contracts 0.123.0 → 0.124.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 +57 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +76 -0
- package/dist/entities.js.map +1 -1
- package/dist/requests.d.ts +42 -2
- package/dist/requests.d.ts.map +1 -1
- package/dist/requests.js +6 -1
- package/dist/requests.js.map +1 -1
- package/dist/routes/board.d.ts +840 -6
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/board.js +14 -0
- package/dist/routes/board.js.map +1 -1
- package/dist/routes/execution.d.ts +10 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/initiative.d.ts +5 -0
- package/dist/routes/initiative.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +15 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +2087 -1401
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +349 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/snapshot.js +7 -0
- package/dist/snapshot.js.map +1 -1
- package/package.json +1 -1
package/dist/routes/board.d.ts
CHANGED
|
@@ -355,6 +355,10 @@ export declare const addFrameContract: {
|
|
|
355
355
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
356
356
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
357
357
|
}, undefined>, undefined>, undefined>;
|
|
358
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
359
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
360
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
361
|
+
}, undefined>, undefined>, undefined>;
|
|
358
362
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
359
363
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
360
364
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -363,6 +367,7 @@ export declare const addFrameContract: {
|
|
|
363
367
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
364
368
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
365
369
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
370
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
366
371
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
367
372
|
}, undefined>;
|
|
368
373
|
};
|
|
@@ -726,6 +731,10 @@ export declare const addServiceFromRepoContract: {
|
|
|
726
731
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
727
732
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
728
733
|
}, undefined>, undefined>, undefined>;
|
|
734
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
735
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
736
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
737
|
+
}, undefined>, undefined>, undefined>;
|
|
729
738
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
730
739
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
731
740
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -734,6 +743,7 @@ export declare const addServiceFromRepoContract: {
|
|
|
734
743
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
735
744
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
736
745
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
746
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
737
747
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
738
748
|
}, undefined>;
|
|
739
749
|
};
|
|
@@ -1123,6 +1133,10 @@ export declare const addTaskContract: {
|
|
|
1123
1133
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
1124
1134
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1125
1135
|
}, undefined>, undefined>, undefined>;
|
|
1136
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1137
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
1138
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
1139
|
+
}, undefined>, undefined>, undefined>;
|
|
1126
1140
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1127
1141
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1128
1142
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -1131,6 +1145,7 @@ export declare const addTaskContract: {
|
|
|
1131
1145
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1132
1146
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1133
1147
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1148
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1134
1149
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1135
1150
|
}, undefined>;
|
|
1136
1151
|
};
|
|
@@ -1496,6 +1511,10 @@ export declare const addModuleContract: {
|
|
|
1496
1511
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
1497
1512
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1498
1513
|
}, undefined>, undefined>, undefined>;
|
|
1514
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1515
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
1516
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
1517
|
+
}, undefined>, undefined>, undefined>;
|
|
1499
1518
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1500
1519
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1501
1520
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -1504,6 +1523,7 @@ export declare const addModuleContract: {
|
|
|
1504
1523
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1505
1524
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1506
1525
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1526
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1507
1527
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1508
1528
|
}, undefined>;
|
|
1509
1529
|
};
|
|
@@ -1866,6 +1886,10 @@ export declare const addEpicContract: {
|
|
|
1866
1886
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
1867
1887
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1868
1888
|
}, undefined>, undefined>, undefined>;
|
|
1889
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1890
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
1891
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
1892
|
+
}, undefined>, undefined>, undefined>;
|
|
1869
1893
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1870
1894
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1871
1895
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -1874,6 +1898,7 @@ export declare const addEpicContract: {
|
|
|
1874
1898
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1875
1899
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1876
1900
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1901
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1877
1902
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1878
1903
|
}, undefined>;
|
|
1879
1904
|
};
|
|
@@ -2235,6 +2260,10 @@ export declare const assignEpicContract: {
|
|
|
2235
2260
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
2236
2261
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
2237
2262
|
}, undefined>, undefined>, undefined>;
|
|
2263
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2264
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
2265
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
2266
|
+
}, undefined>, undefined>, undefined>;
|
|
2238
2267
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2239
2268
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2240
2269
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -2243,6 +2272,7 @@ export declare const assignEpicContract: {
|
|
|
2243
2272
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2244
2273
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2245
2274
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2275
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2246
2276
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2247
2277
|
}, undefined>;
|
|
2248
2278
|
};
|
|
@@ -2531,6 +2561,13 @@ export declare const updateBlockContract: {
|
|
|
2531
2561
|
defaultBranch: string;
|
|
2532
2562
|
connectionId?: number | undefined;
|
|
2533
2563
|
}[], 20, undefined>]>;
|
|
2564
|
+
readonly aprioriBranches: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2565
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
2566
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
2567
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
2568
|
+
name: string;
|
|
2569
|
+
mode: "reference" | "working";
|
|
2570
|
+
}[], 20, undefined>]>;
|
|
2534
2571
|
readonly trackerCommentOnPrOpen: import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>;
|
|
2535
2572
|
readonly trackerResolveOnMerge: import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>;
|
|
2536
2573
|
readonly technical: import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -2814,6 +2851,13 @@ export declare const updateBlockContract: {
|
|
|
2814
2851
|
defaultBranch: string;
|
|
2815
2852
|
connectionId?: number | undefined;
|
|
2816
2853
|
}[], 20, undefined>]>, undefined>;
|
|
2854
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2855
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
2856
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
2857
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
2858
|
+
name: string;
|
|
2859
|
+
mode: "reference" | "working";
|
|
2860
|
+
}[], 20, undefined>]>, undefined>;
|
|
2817
2861
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2818
2862
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2819
2863
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -3070,6 +3114,10 @@ export declare const updateBlockContract: {
|
|
|
3070
3114
|
defaultBranch: string;
|
|
3071
3115
|
connectionId?: number | undefined;
|
|
3072
3116
|
}[] | undefined;
|
|
3117
|
+
aprioriBranches?: {
|
|
3118
|
+
name: string;
|
|
3119
|
+
mode: "reference" | "working";
|
|
3120
|
+
}[] | undefined;
|
|
3073
3121
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
3074
3122
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
3075
3123
|
technical?: boolean | null | undefined;
|
|
@@ -3325,6 +3373,10 @@ export declare const updateBlockContract: {
|
|
|
3325
3373
|
defaultBranch: string;
|
|
3326
3374
|
connectionId?: number | undefined;
|
|
3327
3375
|
}[] | undefined;
|
|
3376
|
+
aprioriBranches?: {
|
|
3377
|
+
name: string;
|
|
3378
|
+
mode: "reference" | "working";
|
|
3379
|
+
}[] | undefined;
|
|
3328
3380
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
3329
3381
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
3330
3382
|
technical?: boolean | null | undefined;
|
|
@@ -3581,13 +3633,17 @@ export declare const updateBlockContract: {
|
|
|
3581
3633
|
defaultBranch: string;
|
|
3582
3634
|
connectionId?: number | undefined;
|
|
3583
3635
|
}[] | undefined;
|
|
3636
|
+
aprioriBranches?: {
|
|
3637
|
+
name: string;
|
|
3638
|
+
mode: "reference" | "working";
|
|
3639
|
+
}[] | undefined;
|
|
3584
3640
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
3585
3641
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
3586
3642
|
technical?: boolean | null | undefined;
|
|
3587
3643
|
responsibleProductUserId?: string | null | undefined;
|
|
3588
3644
|
epicId?: string | undefined;
|
|
3589
3645
|
autoStartDependents?: boolean | undefined;
|
|
3590
|
-
}, import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").CheckIssue<{
|
|
3646
|
+
}, import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").CheckIssue<string> | import("valibot").CheckIssue<{
|
|
3591
3647
|
name: string;
|
|
3592
3648
|
newNameTemplate?: string | undefined;
|
|
3593
3649
|
newTagTemplate?: string | undefined;
|
|
@@ -3607,6 +3663,9 @@ export declare const updateBlockContract: {
|
|
|
3607
3663
|
name: string;
|
|
3608
3664
|
defaultBranch: string;
|
|
3609
3665
|
connectionId?: number | undefined;
|
|
3666
|
+
}[], 20> | import("valibot").MaxLengthIssue<{
|
|
3667
|
+
name: string;
|
|
3668
|
+
mode: "reference" | "working";
|
|
3610
3669
|
}[], 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").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").VariantIssue>;
|
|
3611
3670
|
readonly "~types"?: {
|
|
3612
3671
|
readonly input: {
|
|
@@ -3858,6 +3917,10 @@ export declare const updateBlockContract: {
|
|
|
3858
3917
|
defaultBranch: string;
|
|
3859
3918
|
connectionId?: number | undefined;
|
|
3860
3919
|
}[] | undefined;
|
|
3920
|
+
aprioriBranches?: {
|
|
3921
|
+
name: string;
|
|
3922
|
+
mode: "reference" | "working";
|
|
3923
|
+
}[] | undefined;
|
|
3861
3924
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
3862
3925
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
3863
3926
|
technical?: boolean | null | undefined;
|
|
@@ -4114,6 +4177,10 @@ export declare const updateBlockContract: {
|
|
|
4114
4177
|
defaultBranch: string;
|
|
4115
4178
|
connectionId?: number | undefined;
|
|
4116
4179
|
}[] | undefined;
|
|
4180
|
+
aprioriBranches?: {
|
|
4181
|
+
name: string;
|
|
4182
|
+
mode: "reference" | "working";
|
|
4183
|
+
}[] | undefined;
|
|
4117
4184
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
4118
4185
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
4119
4186
|
technical?: boolean | null | undefined;
|
|
@@ -4121,7 +4188,7 @@ export declare const updateBlockContract: {
|
|
|
4121
4188
|
epicId?: string | undefined;
|
|
4122
4189
|
autoStartDependents?: boolean | undefined;
|
|
4123
4190
|
};
|
|
4124
|
-
readonly issue: import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").CheckIssue<{
|
|
4191
|
+
readonly issue: import("valibot").ArrayIssue | import("valibot").BooleanIssue | import("valibot").CheckIssue<string> | import("valibot").CheckIssue<{
|
|
4125
4192
|
name: string;
|
|
4126
4193
|
newNameTemplate?: string | undefined;
|
|
4127
4194
|
newTagTemplate?: string | undefined;
|
|
@@ -4141,6 +4208,9 @@ export declare const updateBlockContract: {
|
|
|
4141
4208
|
name: string;
|
|
4142
4209
|
defaultBranch: string;
|
|
4143
4210
|
connectionId?: number | undefined;
|
|
4211
|
+
}[], 20> | import("valibot").MaxLengthIssue<{
|
|
4212
|
+
name: string;
|
|
4213
|
+
mode: "reference" | "working";
|
|
4144
4214
|
}[], 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").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").VariantIssue;
|
|
4145
4215
|
} | undefined;
|
|
4146
4216
|
};
|
|
@@ -4490,6 +4560,10 @@ export declare const updateBlockContract: {
|
|
|
4490
4560
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
4491
4561
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
4492
4562
|
}, undefined>, undefined>, undefined>;
|
|
4563
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
4564
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
4565
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
4566
|
+
}, undefined>, undefined>, undefined>;
|
|
4493
4567
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4494
4568
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4495
4569
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -4498,6 +4572,7 @@ export declare const updateBlockContract: {
|
|
|
4498
4572
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
4499
4573
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
4500
4574
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4575
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4501
4576
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4502
4577
|
}, undefined>;
|
|
4503
4578
|
};
|
|
@@ -4862,6 +4937,10 @@ export declare const moveBlockContract: {
|
|
|
4862
4937
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
4863
4938
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
4864
4939
|
}, undefined>, undefined>, undefined>;
|
|
4940
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
4941
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
4942
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
4943
|
+
}, undefined>, undefined>, undefined>;
|
|
4865
4944
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4866
4945
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4867
4946
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -4870,6 +4949,7 @@ export declare const moveBlockContract: {
|
|
|
4870
4949
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
4871
4950
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
4872
4951
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4952
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4873
4953
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4874
4954
|
}, undefined>;
|
|
4875
4955
|
};
|
|
@@ -5235,6 +5315,10 @@ export declare const reparentBlockContract: {
|
|
|
5235
5315
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
5236
5316
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
5237
5317
|
}, undefined>, undefined>, undefined>;
|
|
5318
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5319
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
5320
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
5321
|
+
}, undefined>, undefined>, undefined>;
|
|
5238
5322
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5239
5323
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5240
5324
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -5243,6 +5327,7 @@ export declare const reparentBlockContract: {
|
|
|
5243
5327
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
5244
5328
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
5245
5329
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5330
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5246
5331
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5247
5332
|
}, undefined>;
|
|
5248
5333
|
};
|
|
@@ -5281,7 +5366,7 @@ export declare const removeBlockContract: {
|
|
|
5281
5366
|
readonly 204: typeof ContractNoBody;
|
|
5282
5367
|
};
|
|
5283
5368
|
};
|
|
5284
|
-
export declare const
|
|
5369
|
+
export declare const archiveBlockContract: {
|
|
5285
5370
|
readonly method: "post";
|
|
5286
5371
|
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
5287
5372
|
blockId: import("valibot").StringSchema<undefined>;
|
|
@@ -5289,9 +5374,7 @@ export declare const toggleDependencyContract: {
|
|
|
5289
5374
|
readonly pathResolver: ({ blockId }: {
|
|
5290
5375
|
blockId: string;
|
|
5291
5376
|
}) => string;
|
|
5292
|
-
readonly requestBodySchema:
|
|
5293
|
-
readonly sourceId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
5294
|
-
}, undefined>;
|
|
5377
|
+
readonly requestBodySchema: typeof ContractNoBody;
|
|
5295
5378
|
readonly responsesByStatusCode: {
|
|
5296
5379
|
readonly '4xx': import("valibot").ObjectSchema<{
|
|
5297
5380
|
readonly error: import("valibot").ObjectSchema<{
|
|
@@ -5638,6 +5721,756 @@ export declare const toggleDependencyContract: {
|
|
|
5638
5721
|
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
5639
5722
|
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
5640
5723
|
}, undefined>, undefined>, undefined>;
|
|
5724
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5725
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
5726
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
5727
|
+
}, undefined>, undefined>, undefined>;
|
|
5728
|
+
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5729
|
+
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5730
|
+
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5731
|
+
readonly createdBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
5732
|
+
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
5733
|
+
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
5734
|
+
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
5735
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5736
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5737
|
+
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5738
|
+
}, undefined>;
|
|
5739
|
+
};
|
|
5740
|
+
};
|
|
5741
|
+
export declare const restoreBlockContract: {
|
|
5742
|
+
readonly method: "post";
|
|
5743
|
+
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
5744
|
+
blockId: import("valibot").StringSchema<undefined>;
|
|
5745
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
5746
|
+
readonly pathResolver: ({ blockId }: {
|
|
5747
|
+
blockId: string;
|
|
5748
|
+
}) => string;
|
|
5749
|
+
readonly requestBodySchema: typeof ContractNoBody;
|
|
5750
|
+
readonly responsesByStatusCode: {
|
|
5751
|
+
readonly '4xx': import("valibot").ObjectSchema<{
|
|
5752
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
5753
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
5754
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
5755
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
5756
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5757
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5758
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
5759
|
+
}, undefined>, undefined>, undefined>;
|
|
5760
|
+
}, undefined>;
|
|
5761
|
+
}, undefined>;
|
|
5762
|
+
readonly '5xx': import("valibot").ObjectSchema<{
|
|
5763
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
5764
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
5765
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
5766
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
5767
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5768
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5769
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
5770
|
+
}, undefined>, undefined>, undefined>;
|
|
5771
|
+
}, undefined>;
|
|
5772
|
+
}, undefined>;
|
|
5773
|
+
readonly 200: import("valibot").ObjectSchema<{
|
|
5774
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
5775
|
+
readonly title: import("valibot").StringSchema<undefined>;
|
|
5776
|
+
readonly type: import("valibot").PicklistSchema<["frontend", "service", "library", "document", "api", "database", "queue", "integration", "external", "environment"], undefined>;
|
|
5777
|
+
readonly description: import("valibot").StringSchema<undefined>;
|
|
5778
|
+
readonly position: import("valibot").ObjectSchema<{
|
|
5779
|
+
readonly x: import("valibot").NumberSchema<undefined>;
|
|
5780
|
+
readonly y: import("valibot").NumberSchema<undefined>;
|
|
5781
|
+
}, undefined>;
|
|
5782
|
+
readonly size: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
5783
|
+
readonly w: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 1, undefined>]>;
|
|
5784
|
+
readonly h: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 1, undefined>]>;
|
|
5785
|
+
}, undefined>, undefined>;
|
|
5786
|
+
readonly status: import("valibot").PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
5787
|
+
readonly progress: import("valibot").NumberSchema<undefined>;
|
|
5788
|
+
readonly dependsOn: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5789
|
+
readonly executionId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5790
|
+
readonly level: import("valibot").PicklistSchema<["frame", "module", "task", "epic", "initiative"], undefined>;
|
|
5791
|
+
readonly parentId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5792
|
+
readonly epicId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
5793
|
+
readonly initiativeId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
5794
|
+
readonly autoStartDependents: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5795
|
+
readonly confidence: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
5796
|
+
readonly estimate: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
5797
|
+
readonly complexity: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1, undefined>]>;
|
|
5798
|
+
readonly risk: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1, undefined>]>;
|
|
5799
|
+
readonly impact: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1, undefined>]>;
|
|
5800
|
+
readonly rationale: import("valibot").StringSchema<undefined>;
|
|
5801
|
+
readonly model: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
5802
|
+
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
5803
|
+
}, undefined>, undefined>, undefined>;
|
|
5804
|
+
readonly moduleName: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5805
|
+
readonly taskType: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["feature", "bug", "document", "spike", "recurring"], undefined>, undefined>;
|
|
5806
|
+
readonly taskTypeFields: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
5807
|
+
readonly severity: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>, undefined>;
|
|
5808
|
+
readonly stepsToReproduce: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
5809
|
+
readonly timeboxHours: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
5810
|
+
readonly docKind: import("valibot").OptionalSchema<import("valibot").PicklistSchema<readonly ["prd", "rfc", "adr", "design", "technical", "api", "runbook", "research", "reference", "other"], undefined>, undefined>;
|
|
5811
|
+
readonly audience: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
5812
|
+
readonly targetPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 300, undefined>, import("valibot").CheckAction<string, "targetPath must be a relative path inside the repo, ending in .md, with no \"..\", absolute, or backslash segments.">]>, undefined>;
|
|
5813
|
+
readonly outlineHints: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
5814
|
+
readonly targetUsers: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5815
|
+
readonly successMetrics: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5816
|
+
readonly alternativesConsidered: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5817
|
+
readonly rolloutConcerns: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5818
|
+
readonly decisionDrivers: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5819
|
+
readonly consideredOptions: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5820
|
+
readonly whenToUse: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5821
|
+
readonly escalationPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5822
|
+
readonly researchQuestion: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5823
|
+
readonly optionsToCompare: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5824
|
+
readonly apiSurface: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5825
|
+
}, undefined>, undefined>, undefined>;
|
|
5826
|
+
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
5827
|
+
readonly fragmentIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
5828
|
+
readonly serviceFragmentIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
5829
|
+
readonly modelId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5830
|
+
readonly agentConfig: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
|
|
5831
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
5832
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
5833
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
5834
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
5835
|
+
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>]>;
|
|
5836
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
5837
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5838
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
5839
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
5840
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
5841
|
+
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>]>;
|
|
5842
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
5843
|
+
}, undefined>], undefined>, undefined>;
|
|
5844
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5845
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5846
|
+
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5847
|
+
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
5848
|
+
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>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
5849
|
+
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>;
|
|
5850
|
+
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5851
|
+
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>]>;
|
|
5852
|
+
readonly target: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
5853
|
+
}, undefined>, undefined>, undefined>;
|
|
5854
|
+
readonly externalNetworks: 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>;
|
|
5855
|
+
readonly sharedStackRefs: 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>;
|
|
5856
|
+
readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5857
|
+
readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
5858
|
+
readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
5859
|
+
readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
5860
|
+
readonly registry: 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>;
|
|
5861
|
+
readonly host: 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>;
|
|
5862
|
+
readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
5863
|
+
readonly url: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5864
|
+
readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
5865
|
+
readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5866
|
+
readonly hostnames: 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, 500, undefined>]>, undefined>, undefined>;
|
|
5867
|
+
readonly file: 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>;
|
|
5868
|
+
readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5869
|
+
}, undefined>, undefined>;
|
|
5870
|
+
readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5871
|
+
readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
5872
|
+
readonly label: 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>;
|
|
5873
|
+
}, undefined>, undefined>, undefined>;
|
|
5874
|
+
readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
5875
|
+
readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
|
|
5876
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5877
|
+
readonly service: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
5878
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
5879
|
+
readonly stdinFile: 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>;
|
|
5880
|
+
readonly user: 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>;
|
|
5881
|
+
readonly workdir: 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>;
|
|
5882
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5883
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5884
|
+
readonly kind: import("valibot").LiteralSchema<"copy-file", undefined>;
|
|
5885
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5886
|
+
readonly from: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
5887
|
+
readonly to: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
5888
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5889
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5890
|
+
readonly kind: import("valibot").LiteralSchema<"wait-http", undefined>;
|
|
5891
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5892
|
+
readonly url: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
5893
|
+
readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
5894
|
+
readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5895
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
5896
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5897
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5898
|
+
readonly kind: import("valibot").LiteralSchema<"wait-file", undefined>;
|
|
5899
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5900
|
+
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>]>;
|
|
5901
|
+
readonly service: 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>;
|
|
5902
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
5903
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5904
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5905
|
+
readonly kind: import("valibot").LiteralSchema<"host-command", undefined>;
|
|
5906
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5907
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
5908
|
+
readonly workdir: 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>;
|
|
5909
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5910
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
5911
|
+
readonly healthGate: import("valibot").OptionalSchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
5912
|
+
readonly kind: import("valibot").LiteralSchema<"compose-healthy", undefined>;
|
|
5913
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5914
|
+
readonly kind: import("valibot").LiteralSchema<"http", undefined>;
|
|
5915
|
+
readonly url: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
5916
|
+
readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
5917
|
+
readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5918
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
5919
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5920
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5921
|
+
readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
|
|
5922
|
+
readonly service: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
5923
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
5924
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
5925
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5926
|
+
}, undefined>], undefined>, undefined>;
|
|
5927
|
+
readonly teardownSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
5928
|
+
readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
|
|
5929
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5930
|
+
readonly service: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
5931
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
5932
|
+
readonly stdinFile: 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
|
+
readonly user: 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>;
|
|
5934
|
+
readonly workdir: 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>;
|
|
5935
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5936
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5937
|
+
readonly kind: import("valibot").LiteralSchema<"copy-file", undefined>;
|
|
5938
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5939
|
+
readonly from: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
5940
|
+
readonly to: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
5941
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5942
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5943
|
+
readonly kind: import("valibot").LiteralSchema<"wait-http", undefined>;
|
|
5944
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5945
|
+
readonly url: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
5946
|
+
readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
5947
|
+
readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5948
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
5949
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5950
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5951
|
+
readonly kind: import("valibot").LiteralSchema<"wait-file", undefined>;
|
|
5952
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5953
|
+
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>]>;
|
|
5954
|
+
readonly service: 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>;
|
|
5955
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
5956
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5957
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
5958
|
+
readonly kind: import("valibot").LiteralSchema<"host-command", undefined>;
|
|
5959
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
5960
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
5961
|
+
readonly workdir: 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>;
|
|
5962
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
5963
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
5964
|
+
}, undefined>, undefined>;
|
|
5965
|
+
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>;
|
|
5966
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
5967
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
5968
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
5969
|
+
readonly newNameTemplate: 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>;
|
|
5970
|
+
readonly newTagTemplate: 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>;
|
|
5971
|
+
readonly digestTemplate: 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>;
|
|
5972
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
5973
|
+
name: string;
|
|
5974
|
+
newNameTemplate?: string | undefined;
|
|
5975
|
+
newTagTemplate?: string | undefined;
|
|
5976
|
+
digestTemplate?: string | undefined;
|
|
5977
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
5978
|
+
name: string;
|
|
5979
|
+
newNameTemplate?: string | undefined;
|
|
5980
|
+
newTagTemplate?: string | undefined;
|
|
5981
|
+
digestTemplate?: string | undefined;
|
|
5982
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
5983
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5984
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
5985
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
5986
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
5987
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
5988
|
+
readonly namespaceTemplate: 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>;
|
|
5989
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
5990
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5991
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
5992
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
5993
|
+
}, undefined>, undefined>, undefined>;
|
|
5994
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5995
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
5996
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
5997
|
+
readonly key: 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>]>;
|
|
5998
|
+
}, undefined>;
|
|
5999
|
+
}, undefined>, undefined>, undefined>;
|
|
6000
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
6001
|
+
}, undefined>, undefined>, undefined>;
|
|
6002
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
6003
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
6004
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6005
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
6006
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
6007
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
6008
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6009
|
+
readonly key: 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>]>;
|
|
6010
|
+
}, undefined>, undefined>;
|
|
6011
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6012
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
6013
|
+
key: string;
|
|
6014
|
+
secretRef?: {
|
|
6015
|
+
key: string;
|
|
6016
|
+
} | undefined;
|
|
6017
|
+
valueTemplate?: string | undefined;
|
|
6018
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
6019
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6020
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
6021
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
6022
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
6023
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
6024
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6025
|
+
readonly key: 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>]>;
|
|
6026
|
+
}, undefined>, undefined>;
|
|
6027
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6028
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
6029
|
+
key: string;
|
|
6030
|
+
secretRef?: {
|
|
6031
|
+
key: string;
|
|
6032
|
+
} | undefined;
|
|
6033
|
+
valueTemplate?: string | undefined;
|
|
6034
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
6035
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
6036
|
+
}, undefined>, undefined>;
|
|
6037
|
+
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
6038
|
+
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
6039
|
+
readonly frontendConfig: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6040
|
+
readonly packageManager: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["pnpm", "npm", "yarn"], undefined>, undefined>;
|
|
6041
|
+
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
6042
|
+
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
6043
|
+
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
6044
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
6045
|
+
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
6046
|
+
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
6047
|
+
readonly servePort: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
6048
|
+
readonly envInjection: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["build", "runtime"], undefined>, undefined>;
|
|
6049
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
6050
|
+
readonly kind: import("valibot").LiteralSchema<"default", undefined>;
|
|
6051
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6052
|
+
readonly kind: import("valibot").LiteralSchema<"task", undefined>;
|
|
6053
|
+
readonly fromTaskBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6054
|
+
}, undefined>], undefined>, undefined>;
|
|
6055
|
+
readonly mockMappingsPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
6056
|
+
readonly previewEnabled: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6057
|
+
readonly backendBindings: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6058
|
+
readonly envVar: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
6059
|
+
readonly source: import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
6060
|
+
readonly kind: import("valibot").LiteralSchema<"service", undefined>;
|
|
6061
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6062
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6063
|
+
readonly kind: import("valibot").LiteralSchema<"mock", undefined>;
|
|
6064
|
+
}, undefined>], undefined>;
|
|
6065
|
+
}, undefined>, undefined>;
|
|
6066
|
+
}, undefined>, undefined>;
|
|
6067
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6068
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6069
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
6070
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
6071
|
+
serviceBlockId: string;
|
|
6072
|
+
description?: string | undefined;
|
|
6073
|
+
}[], 50, undefined>]>, undefined>;
|
|
6074
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
6075
|
+
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6076
|
+
readonly url: import("valibot").StringSchema<undefined>;
|
|
6077
|
+
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
6078
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6079
|
+
}, undefined>, undefined>;
|
|
6080
|
+
readonly peerPullRequests: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6081
|
+
readonly repo: import("valibot").StringSchema<undefined>;
|
|
6082
|
+
readonly frameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6083
|
+
readonly ref: import("valibot").ObjectSchema<{
|
|
6084
|
+
readonly url: import("valibot").StringSchema<undefined>;
|
|
6085
|
+
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
6086
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6087
|
+
}, undefined>;
|
|
6088
|
+
}, undefined>, undefined>, undefined>;
|
|
6089
|
+
readonly referenceRepos: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6090
|
+
readonly repoId: import("valibot").NumberSchema<undefined>;
|
|
6091
|
+
readonly owner: import("valibot").StringSchema<undefined>;
|
|
6092
|
+
readonly name: import("valibot").StringSchema<undefined>;
|
|
6093
|
+
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
6094
|
+
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
6095
|
+
}, undefined>, undefined>, undefined>;
|
|
6096
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6097
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
6098
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
6099
|
+
}, undefined>, undefined>, undefined>;
|
|
6100
|
+
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6101
|
+
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6102
|
+
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6103
|
+
readonly createdBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
6104
|
+
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
6105
|
+
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
6106
|
+
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
6107
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6108
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6109
|
+
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6110
|
+
}, undefined>;
|
|
6111
|
+
};
|
|
6112
|
+
};
|
|
6113
|
+
export declare const toggleDependencyContract: {
|
|
6114
|
+
readonly method: "post";
|
|
6115
|
+
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
6116
|
+
blockId: import("valibot").StringSchema<undefined>;
|
|
6117
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
6118
|
+
readonly pathResolver: ({ blockId }: {
|
|
6119
|
+
blockId: string;
|
|
6120
|
+
}) => string;
|
|
6121
|
+
readonly requestBodySchema: import("valibot").ObjectSchema<{
|
|
6122
|
+
readonly sourceId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6123
|
+
}, undefined>;
|
|
6124
|
+
readonly responsesByStatusCode: {
|
|
6125
|
+
readonly '4xx': import("valibot").ObjectSchema<{
|
|
6126
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
6127
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
6128
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
6129
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
6130
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6131
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6132
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
6133
|
+
}, undefined>, undefined>, undefined>;
|
|
6134
|
+
}, undefined>;
|
|
6135
|
+
}, undefined>;
|
|
6136
|
+
readonly '5xx': import("valibot").ObjectSchema<{
|
|
6137
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
6138
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
6139
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
6140
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
6141
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6142
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6143
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
6144
|
+
}, undefined>, undefined>, undefined>;
|
|
6145
|
+
}, undefined>;
|
|
6146
|
+
}, undefined>;
|
|
6147
|
+
readonly 200: import("valibot").ObjectSchema<{
|
|
6148
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
6149
|
+
readonly title: import("valibot").StringSchema<undefined>;
|
|
6150
|
+
readonly type: import("valibot").PicklistSchema<["frontend", "service", "library", "document", "api", "database", "queue", "integration", "external", "environment"], undefined>;
|
|
6151
|
+
readonly description: import("valibot").StringSchema<undefined>;
|
|
6152
|
+
readonly position: import("valibot").ObjectSchema<{
|
|
6153
|
+
readonly x: import("valibot").NumberSchema<undefined>;
|
|
6154
|
+
readonly y: import("valibot").NumberSchema<undefined>;
|
|
6155
|
+
}, undefined>;
|
|
6156
|
+
readonly size: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6157
|
+
readonly w: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 1, undefined>]>;
|
|
6158
|
+
readonly h: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 1, undefined>]>;
|
|
6159
|
+
}, undefined>, undefined>;
|
|
6160
|
+
readonly status: import("valibot").PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
6161
|
+
readonly progress: import("valibot").NumberSchema<undefined>;
|
|
6162
|
+
readonly dependsOn: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6163
|
+
readonly executionId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6164
|
+
readonly level: import("valibot").PicklistSchema<["frame", "module", "task", "epic", "initiative"], undefined>;
|
|
6165
|
+
readonly parentId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6166
|
+
readonly epicId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
6167
|
+
readonly initiativeId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
6168
|
+
readonly autoStartDependents: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6169
|
+
readonly confidence: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
6170
|
+
readonly estimate: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
6171
|
+
readonly complexity: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1, undefined>]>;
|
|
6172
|
+
readonly risk: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1, undefined>]>;
|
|
6173
|
+
readonly impact: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1, undefined>]>;
|
|
6174
|
+
readonly rationale: import("valibot").StringSchema<undefined>;
|
|
6175
|
+
readonly model: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
6176
|
+
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
6177
|
+
}, undefined>, undefined>, undefined>;
|
|
6178
|
+
readonly moduleName: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6179
|
+
readonly taskType: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["feature", "bug", "document", "spike", "recurring"], undefined>, undefined>;
|
|
6180
|
+
readonly taskTypeFields: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
6181
|
+
readonly severity: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>, undefined>;
|
|
6182
|
+
readonly stepsToReproduce: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
6183
|
+
readonly timeboxHours: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
6184
|
+
readonly docKind: import("valibot").OptionalSchema<import("valibot").PicklistSchema<readonly ["prd", "rfc", "adr", "design", "technical", "api", "runbook", "research", "reference", "other"], undefined>, undefined>;
|
|
6185
|
+
readonly audience: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
6186
|
+
readonly targetPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 300, undefined>, import("valibot").CheckAction<string, "targetPath must be a relative path inside the repo, ending in .md, with no \"..\", absolute, or backslash segments.">]>, undefined>;
|
|
6187
|
+
readonly outlineHints: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
6188
|
+
readonly targetUsers: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6189
|
+
readonly successMetrics: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6190
|
+
readonly alternativesConsidered: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6191
|
+
readonly rolloutConcerns: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6192
|
+
readonly decisionDrivers: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6193
|
+
readonly consideredOptions: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6194
|
+
readonly whenToUse: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6195
|
+
readonly escalationPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6196
|
+
readonly researchQuestion: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6197
|
+
readonly optionsToCompare: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6198
|
+
readonly apiSurface: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6199
|
+
}, undefined>, undefined>, undefined>;
|
|
6200
|
+
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
6201
|
+
readonly fragmentIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
6202
|
+
readonly serviceFragmentIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
6203
|
+
readonly modelId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6204
|
+
readonly agentConfig: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
|
|
6205
|
+
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6206
|
+
readonly type: import("valibot").PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
6207
|
+
readonly manifestSource: import("valibot").OptionalSchema<import("valibot").VariantSchema<"type", [import("valibot").ObjectSchema<{
|
|
6208
|
+
readonly type: import("valibot").LiteralSchema<"colocated", undefined>;
|
|
6209
|
+
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>]>;
|
|
6210
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
6211
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6212
|
+
readonly type: import("valibot").LiteralSchema<"separate", undefined>;
|
|
6213
|
+
readonly repo: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "must be \"owner/repo\"">]>;
|
|
6214
|
+
readonly ref: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
6215
|
+
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>]>;
|
|
6216
|
+
readonly renderer: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
6217
|
+
}, undefined>], undefined>, undefined>;
|
|
6218
|
+
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
6219
|
+
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6220
|
+
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6221
|
+
readonly recipe: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6222
|
+
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>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
6223
|
+
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>;
|
|
6224
|
+
readonly envFiles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6225
|
+
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>]>;
|
|
6226
|
+
readonly target: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
6227
|
+
}, undefined>, undefined>, undefined>;
|
|
6228
|
+
readonly externalNetworks: 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>;
|
|
6229
|
+
readonly sharedStackRefs: 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>;
|
|
6230
|
+
readonly prerequisites: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6231
|
+
readonly check: import("valibot").PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
6232
|
+
readonly params: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6233
|
+
readonly minGib: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
6234
|
+
readonly registry: 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>;
|
|
6235
|
+
readonly host: 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>;
|
|
6236
|
+
readonly port: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
6237
|
+
readonly url: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6238
|
+
readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
6239
|
+
readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
6240
|
+
readonly hostnames: 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, 500, undefined>]>, undefined>, undefined>;
|
|
6241
|
+
readonly file: 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>;
|
|
6242
|
+
readonly marker: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
6243
|
+
}, undefined>, undefined>;
|
|
6244
|
+
readonly required: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6245
|
+
readonly remediation: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
6246
|
+
readonly label: 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>;
|
|
6247
|
+
}, undefined>, undefined>, undefined>;
|
|
6248
|
+
readonly setupSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
6249
|
+
readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
|
|
6250
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6251
|
+
readonly service: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
6252
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
6253
|
+
readonly stdinFile: 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>;
|
|
6254
|
+
readonly user: 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>;
|
|
6255
|
+
readonly workdir: 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>;
|
|
6256
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6257
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6258
|
+
readonly kind: import("valibot").LiteralSchema<"copy-file", undefined>;
|
|
6259
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6260
|
+
readonly from: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
6261
|
+
readonly to: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
6262
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6263
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6264
|
+
readonly kind: import("valibot").LiteralSchema<"wait-http", undefined>;
|
|
6265
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6266
|
+
readonly url: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
6267
|
+
readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
6268
|
+
readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
6269
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
6270
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6271
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6272
|
+
readonly kind: import("valibot").LiteralSchema<"wait-file", undefined>;
|
|
6273
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6274
|
+
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>]>;
|
|
6275
|
+
readonly service: 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>;
|
|
6276
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
6277
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6278
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6279
|
+
readonly kind: import("valibot").LiteralSchema<"host-command", undefined>;
|
|
6280
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6281
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
6282
|
+
readonly workdir: 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>;
|
|
6283
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6284
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
6285
|
+
readonly healthGate: import("valibot").OptionalSchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
6286
|
+
readonly kind: import("valibot").LiteralSchema<"compose-healthy", undefined>;
|
|
6287
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6288
|
+
readonly kind: import("valibot").LiteralSchema<"http", undefined>;
|
|
6289
|
+
readonly url: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
6290
|
+
readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
6291
|
+
readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
6292
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
6293
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6294
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6295
|
+
readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
|
|
6296
|
+
readonly service: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
6297
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
6298
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
6299
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6300
|
+
}, undefined>], undefined>, undefined>;
|
|
6301
|
+
readonly teardownSteps: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
6302
|
+
readonly kind: import("valibot").LiteralSchema<"compose-exec", undefined>;
|
|
6303
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6304
|
+
readonly service: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
6305
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
6306
|
+
readonly stdinFile: 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>;
|
|
6307
|
+
readonly user: 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>;
|
|
6308
|
+
readonly workdir: 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>;
|
|
6309
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6310
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6311
|
+
readonly kind: import("valibot").LiteralSchema<"copy-file", undefined>;
|
|
6312
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6313
|
+
readonly from: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
6314
|
+
readonly to: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
6315
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6316
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6317
|
+
readonly kind: import("valibot").LiteralSchema<"wait-http", undefined>;
|
|
6318
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6319
|
+
readonly url: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
6320
|
+
readonly expectStatus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 100, undefined>, import("valibot").MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
6321
|
+
readonly expectBodyContains: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
6322
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
6323
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6324
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6325
|
+
readonly kind: import("valibot").LiteralSchema<"wait-file", undefined>;
|
|
6326
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6327
|
+
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>]>;
|
|
6328
|
+
readonly service: 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>;
|
|
6329
|
+
readonly intervalMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 250, undefined>, import("valibot").MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
6330
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6331
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6332
|
+
readonly kind: import("valibot").LiteralSchema<"host-command", undefined>;
|
|
6333
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6334
|
+
readonly command: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>]>;
|
|
6335
|
+
readonly workdir: 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>;
|
|
6336
|
+
readonly timeoutMs: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1000, undefined>, import("valibot").MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
6337
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
6338
|
+
}, undefined>, undefined>;
|
|
6339
|
+
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>;
|
|
6340
|
+
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
6341
|
+
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
6342
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6343
|
+
readonly newNameTemplate: 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>;
|
|
6344
|
+
readonly newTagTemplate: 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>;
|
|
6345
|
+
readonly digestTemplate: 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>;
|
|
6346
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
6347
|
+
name: string;
|
|
6348
|
+
newNameTemplate?: string | undefined;
|
|
6349
|
+
newTagTemplate?: string | undefined;
|
|
6350
|
+
digestTemplate?: string | undefined;
|
|
6351
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, import("valibot").CheckAction<{
|
|
6352
|
+
name: string;
|
|
6353
|
+
newNameTemplate?: string | undefined;
|
|
6354
|
+
newTagTemplate?: string | undefined;
|
|
6355
|
+
digestTemplate?: string | undefined;
|
|
6356
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
6357
|
+
readonly helmReleases: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6358
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6359
|
+
readonly chart: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6360
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6361
|
+
readonly version: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
6362
|
+
readonly namespaceTemplate: 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>;
|
|
6363
|
+
readonly values: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").UnknownSchema, undefined>, undefined>;
|
|
6364
|
+
readonly set: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6365
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6366
|
+
readonly valueTemplate: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 2000, undefined>]>;
|
|
6367
|
+
}, undefined>, undefined>, undefined>;
|
|
6368
|
+
readonly valuesSecretRefs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6369
|
+
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6370
|
+
readonly secretRef: import("valibot").ObjectSchema<{
|
|
6371
|
+
readonly key: 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>]>;
|
|
6372
|
+
}, undefined>;
|
|
6373
|
+
}, undefined>, undefined>, undefined>;
|
|
6374
|
+
readonly scope: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
6375
|
+
}, undefined>, undefined>, undefined>;
|
|
6376
|
+
readonly secretInjections: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").VariantSchema<"mode", [import("valibot").ObjectSchema<{
|
|
6377
|
+
readonly mode: import("valibot").LiteralSchema<"secret", undefined>;
|
|
6378
|
+
readonly secretName: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6379
|
+
readonly secretType: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
6380
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
6381
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
6382
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6383
|
+
readonly key: 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>]>;
|
|
6384
|
+
}, undefined>, undefined>;
|
|
6385
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6386
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
6387
|
+
key: string;
|
|
6388
|
+
secretRef?: {
|
|
6389
|
+
key: string;
|
|
6390
|
+
} | undefined;
|
|
6391
|
+
valueTemplate?: string | undefined;
|
|
6392
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
6393
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6394
|
+
readonly mode: import("valibot").LiteralSchema<"generatorEnvFile", undefined>;
|
|
6395
|
+
readonly envFilePath: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 500, undefined>]>;
|
|
6396
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
6397
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 256, undefined>]>;
|
|
6398
|
+
readonly secretRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6399
|
+
readonly key: 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>]>;
|
|
6400
|
+
}, undefined>, undefined>;
|
|
6401
|
+
readonly valueTemplate: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
6402
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
6403
|
+
key: string;
|
|
6404
|
+
secretRef?: {
|
|
6405
|
+
key: string;
|
|
6406
|
+
} | undefined;
|
|
6407
|
+
valueTemplate?: string | undefined;
|
|
6408
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
6409
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
6410
|
+
}, undefined>, undefined>;
|
|
6411
|
+
readonly cloudProvider: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
6412
|
+
readonly instanceSize: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
6413
|
+
readonly frontendConfig: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6414
|
+
readonly packageManager: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["pnpm", "npm", "yarn"], undefined>, undefined>;
|
|
6415
|
+
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
6416
|
+
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
6417
|
+
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
6418
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
6419
|
+
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
6420
|
+
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
6421
|
+
readonly servePort: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
6422
|
+
readonly envInjection: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["build", "runtime"], undefined>, undefined>;
|
|
6423
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
6424
|
+
readonly kind: import("valibot").LiteralSchema<"default", undefined>;
|
|
6425
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6426
|
+
readonly kind: import("valibot").LiteralSchema<"task", undefined>;
|
|
6427
|
+
readonly fromTaskBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6428
|
+
}, undefined>], undefined>, undefined>;
|
|
6429
|
+
readonly mockMappingsPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
6430
|
+
readonly previewEnabled: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6431
|
+
readonly backendBindings: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6432
|
+
readonly envVar: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
6433
|
+
readonly source: import("valibot").VariantSchema<"kind", [import("valibot").ObjectSchema<{
|
|
6434
|
+
readonly kind: import("valibot").LiteralSchema<"service", undefined>;
|
|
6435
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
6436
|
+
}, undefined>, import("valibot").ObjectSchema<{
|
|
6437
|
+
readonly kind: import("valibot").LiteralSchema<"mock", undefined>;
|
|
6438
|
+
}, undefined>], undefined>;
|
|
6439
|
+
}, undefined>, undefined>;
|
|
6440
|
+
}, undefined>, undefined>;
|
|
6441
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6442
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
6443
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
6444
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
6445
|
+
serviceBlockId: string;
|
|
6446
|
+
description?: string | undefined;
|
|
6447
|
+
}[], 50, undefined>]>, undefined>;
|
|
6448
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
6449
|
+
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
6450
|
+
readonly url: import("valibot").StringSchema<undefined>;
|
|
6451
|
+
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
6452
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6453
|
+
}, undefined>, undefined>;
|
|
6454
|
+
readonly peerPullRequests: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6455
|
+
readonly repo: import("valibot").StringSchema<undefined>;
|
|
6456
|
+
readonly frameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6457
|
+
readonly ref: import("valibot").ObjectSchema<{
|
|
6458
|
+
readonly url: import("valibot").StringSchema<undefined>;
|
|
6459
|
+
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
6460
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
6461
|
+
}, undefined>;
|
|
6462
|
+
}, undefined>, undefined>, undefined>;
|
|
6463
|
+
readonly referenceRepos: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6464
|
+
readonly repoId: import("valibot").NumberSchema<undefined>;
|
|
6465
|
+
readonly owner: import("valibot").StringSchema<undefined>;
|
|
6466
|
+
readonly name: import("valibot").StringSchema<undefined>;
|
|
6467
|
+
readonly defaultBranch: import("valibot").StringSchema<undefined>;
|
|
6468
|
+
readonly connectionId: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
6469
|
+
}, undefined>, undefined>, undefined>;
|
|
6470
|
+
readonly aprioriBranches: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6471
|
+
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>, import("valibot").CheckAction<string, "Not a valid git branch name">]>;
|
|
6472
|
+
readonly mode: import("valibot").PicklistSchema<["reference", "working"], undefined>;
|
|
6473
|
+
}, undefined>, undefined>, undefined>;
|
|
5641
6474
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5642
6475
|
readonly modelPresetId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5643
6476
|
readonly pipelineId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -5646,6 +6479,7 @@ export declare const toggleDependencyContract: {
|
|
|
5646
6479
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
5647
6480
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
5648
6481
|
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
6482
|
+
readonly archived: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5649
6483
|
readonly accessDenied: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
5650
6484
|
}, undefined>;
|
|
5651
6485
|
};
|