@cat-factory/contracts 0.81.3 → 0.83.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 +23 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +17 -0
- package/dist/entities.js.map +1 -1
- package/dist/frontend.d.ts +125 -1
- package/dist/frontend.d.ts.map +1 -1
- package/dist/frontend.js +59 -1
- package/dist/frontend.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/requests.d.ts +56 -2
- package/dist/requests.d.ts.map +1 -1
- package/dist/requests.js +8 -0
- package/dist/requests.js.map +1 -1
- package/dist/routes/board.d.ts +146 -2
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +71 -0
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/environments.js +9 -0
- package/dist/routes/environments.js.map +1 -1
- package/dist/routes/execution.d.ts +18 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +27 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +18 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/service-connections.d.ts +50 -0
- package/dist/service-connections.d.ts.map +1 -0
- package/dist/service-connections.js +47 -0
- package/dist/service-connections.js.map +1 -0
- package/dist/snapshot.d.ts +9 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/routes/board.d.ts
CHANGED
|
@@ -172,6 +172,7 @@ export declare const addFrameContract: {
|
|
|
172
172
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
173
173
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
174
174
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
175
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
175
176
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
176
177
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
177
178
|
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>;
|
|
@@ -194,6 +195,14 @@ export declare const addFrameContract: {
|
|
|
194
195
|
}, undefined>], undefined>;
|
|
195
196
|
}, undefined>, undefined>;
|
|
196
197
|
}, undefined>, undefined>;
|
|
198
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
199
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
200
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
201
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
202
|
+
serviceBlockId: string;
|
|
203
|
+
description?: string | undefined;
|
|
204
|
+
}[], 50, undefined>]>, undefined>;
|
|
205
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
197
206
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
198
207
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
199
208
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -385,6 +394,7 @@ export declare const addServiceFromRepoContract: {
|
|
|
385
394
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
386
395
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
387
396
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
397
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
388
398
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
389
399
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
390
400
|
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>;
|
|
@@ -407,6 +417,14 @@ export declare const addServiceFromRepoContract: {
|
|
|
407
417
|
}, undefined>], undefined>;
|
|
408
418
|
}, undefined>, undefined>;
|
|
409
419
|
}, undefined>, undefined>;
|
|
420
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
421
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
422
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
423
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
424
|
+
serviceBlockId: string;
|
|
425
|
+
description?: string | undefined;
|
|
426
|
+
}[], 50, undefined>]>, undefined>;
|
|
427
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
410
428
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
411
429
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
412
430
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -613,6 +631,7 @@ export declare const addTaskContract: {
|
|
|
613
631
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
614
632
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
615
633
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
634
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
616
635
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
617
636
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
618
637
|
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>;
|
|
@@ -635,6 +654,14 @@ export declare const addTaskContract: {
|
|
|
635
654
|
}, undefined>], undefined>;
|
|
636
655
|
}, undefined>, undefined>;
|
|
637
656
|
}, undefined>, undefined>;
|
|
657
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
658
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
659
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
660
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
661
|
+
serviceBlockId: string;
|
|
662
|
+
description?: string | undefined;
|
|
663
|
+
}[], 50, undefined>]>, undefined>;
|
|
664
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
638
665
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
639
666
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
640
667
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -828,6 +855,7 @@ export declare const addModuleContract: {
|
|
|
828
855
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
829
856
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
830
857
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
858
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
831
859
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
832
860
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
833
861
|
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>;
|
|
@@ -850,6 +878,14 @@ export declare const addModuleContract: {
|
|
|
850
878
|
}, undefined>], undefined>;
|
|
851
879
|
}, undefined>, undefined>;
|
|
852
880
|
}, undefined>, undefined>;
|
|
881
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
882
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
883
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
884
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
885
|
+
serviceBlockId: string;
|
|
886
|
+
description?: string | undefined;
|
|
887
|
+
}[], 50, undefined>]>, undefined>;
|
|
888
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
853
889
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
854
890
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
855
891
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -1040,6 +1076,7 @@ export declare const addEpicContract: {
|
|
|
1040
1076
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1041
1077
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1042
1078
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1079
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1043
1080
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
1044
1081
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1045
1082
|
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>;
|
|
@@ -1062,6 +1099,14 @@ export declare const addEpicContract: {
|
|
|
1062
1099
|
}, undefined>], undefined>;
|
|
1063
1100
|
}, undefined>, undefined>;
|
|
1064
1101
|
}, undefined>, undefined>;
|
|
1102
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1103
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
1104
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
1105
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
1106
|
+
serviceBlockId: string;
|
|
1107
|
+
description?: string | undefined;
|
|
1108
|
+
}[], 50, undefined>]>, undefined>;
|
|
1109
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1065
1110
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1066
1111
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
1067
1112
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -1251,6 +1296,7 @@ export declare const assignEpicContract: {
|
|
|
1251
1296
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1252
1297
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1253
1298
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1299
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1254
1300
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
1255
1301
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1256
1302
|
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>;
|
|
@@ -1273,6 +1319,14 @@ export declare const assignEpicContract: {
|
|
|
1273
1319
|
}, undefined>], undefined>;
|
|
1274
1320
|
}, undefined>, undefined>;
|
|
1275
1321
|
}, undefined>, undefined>;
|
|
1322
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1323
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
1324
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
1325
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
1326
|
+
serviceBlockId: string;
|
|
1327
|
+
description?: string | undefined;
|
|
1328
|
+
}[], 50, undefined>]>, undefined>;
|
|
1329
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1276
1330
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1277
1331
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
1278
1332
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -1409,6 +1463,7 @@ export declare const updateBlockContract: {
|
|
|
1409
1463
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1410
1464
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1411
1465
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1466
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1412
1467
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
1413
1468
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1414
1469
|
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>;
|
|
@@ -1431,6 +1486,14 @@ export declare const updateBlockContract: {
|
|
|
1431
1486
|
}, undefined>], undefined>;
|
|
1432
1487
|
}, undefined>, undefined>;
|
|
1433
1488
|
}, undefined>;
|
|
1489
|
+
readonly serviceConnections: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1490
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
1491
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
1492
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
1493
|
+
serviceBlockId: string;
|
|
1494
|
+
description?: string | undefined;
|
|
1495
|
+
}[], 50, undefined>]>;
|
|
1496
|
+
readonly involvedServiceIds: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>;
|
|
1434
1497
|
readonly trackerCommentOnPrOpen: import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>;
|
|
1435
1498
|
readonly trackerResolveOnMerge: import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>;
|
|
1436
1499
|
readonly technical: import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -1551,6 +1614,7 @@ export declare const updateBlockContract: {
|
|
|
1551
1614
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1552
1615
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1553
1616
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1617
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1554
1618
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
1555
1619
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1556
1620
|
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>;
|
|
@@ -1573,6 +1637,14 @@ export declare const updateBlockContract: {
|
|
|
1573
1637
|
}, undefined>], undefined>;
|
|
1574
1638
|
}, undefined>, undefined>;
|
|
1575
1639
|
}, undefined>, undefined>;
|
|
1640
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1641
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
1642
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
1643
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
1644
|
+
serviceBlockId: string;
|
|
1645
|
+
description?: string | undefined;
|
|
1646
|
+
}[], 50, undefined>]>, undefined>;
|
|
1647
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, undefined>;
|
|
1576
1648
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1577
1649
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1578
1650
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -1675,6 +1747,7 @@ export declare const updateBlockContract: {
|
|
|
1675
1747
|
installCommand?: string | undefined;
|
|
1676
1748
|
buildScript?: string | undefined;
|
|
1677
1749
|
outputDir?: string | undefined;
|
|
1750
|
+
directory?: string | undefined;
|
|
1678
1751
|
serveMode?: "command" | "static" | undefined;
|
|
1679
1752
|
serveScript?: string | undefined;
|
|
1680
1753
|
servePort?: number | undefined;
|
|
@@ -1697,6 +1770,11 @@ export declare const updateBlockContract: {
|
|
|
1697
1770
|
};
|
|
1698
1771
|
}[];
|
|
1699
1772
|
} | undefined;
|
|
1773
|
+
serviceConnections?: {
|
|
1774
|
+
serviceBlockId: string;
|
|
1775
|
+
description?: string | undefined;
|
|
1776
|
+
}[] | undefined;
|
|
1777
|
+
involvedServiceIds?: string[] | undefined;
|
|
1700
1778
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
1701
1779
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
1702
1780
|
technical?: boolean | null | undefined;
|
|
@@ -1798,6 +1876,7 @@ export declare const updateBlockContract: {
|
|
|
1798
1876
|
installCommand?: string | undefined;
|
|
1799
1877
|
buildScript?: string | undefined;
|
|
1800
1878
|
outputDir?: string | undefined;
|
|
1879
|
+
directory?: string | undefined;
|
|
1801
1880
|
serveMode?: "command" | "static" | undefined;
|
|
1802
1881
|
serveScript?: string | undefined;
|
|
1803
1882
|
servePort?: number | undefined;
|
|
@@ -1820,6 +1899,11 @@ export declare const updateBlockContract: {
|
|
|
1820
1899
|
};
|
|
1821
1900
|
}[];
|
|
1822
1901
|
} | undefined;
|
|
1902
|
+
serviceConnections?: {
|
|
1903
|
+
serviceBlockId: string;
|
|
1904
|
+
description?: string | undefined;
|
|
1905
|
+
}[] | undefined;
|
|
1906
|
+
involvedServiceIds?: string[] | undefined;
|
|
1823
1907
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
1824
1908
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
1825
1909
|
technical?: boolean | null | undefined;
|
|
@@ -1922,6 +2006,7 @@ export declare const updateBlockContract: {
|
|
|
1922
2006
|
installCommand?: string | undefined;
|
|
1923
2007
|
buildScript?: string | undefined;
|
|
1924
2008
|
outputDir?: string | undefined;
|
|
2009
|
+
directory?: string | undefined;
|
|
1925
2010
|
serveMode?: "command" | "static" | undefined;
|
|
1926
2011
|
serveScript?: string | undefined;
|
|
1927
2012
|
servePort?: number | undefined;
|
|
@@ -1944,6 +2029,11 @@ export declare const updateBlockContract: {
|
|
|
1944
2029
|
};
|
|
1945
2030
|
}[];
|
|
1946
2031
|
} | undefined;
|
|
2032
|
+
serviceConnections?: {
|
|
2033
|
+
serviceBlockId: string;
|
|
2034
|
+
description?: string | undefined;
|
|
2035
|
+
}[] | undefined;
|
|
2036
|
+
involvedServiceIds?: string[] | undefined;
|
|
1947
2037
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
1948
2038
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
1949
2039
|
technical?: boolean | null | undefined;
|
|
@@ -1961,7 +2051,10 @@ export declare const updateBlockContract: {
|
|
|
1961
2051
|
key: string;
|
|
1962
2052
|
} | undefined;
|
|
1963
2053
|
valueTemplate?: string | undefined;
|
|
1964
|
-
}> | import("valibot").IntegerIssue<number> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string,
|
|
2054
|
+
}> | import("valibot").IntegerIssue<number> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
|
|
2055
|
+
serviceBlockId: string;
|
|
2056
|
+
description?: string | undefined;
|
|
2057
|
+
}[], 50> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue>;
|
|
1965
2058
|
readonly "~types"?: {
|
|
1966
2059
|
readonly input: {
|
|
1967
2060
|
title?: string | undefined;
|
|
@@ -2058,6 +2151,7 @@ export declare const updateBlockContract: {
|
|
|
2058
2151
|
installCommand?: string | undefined;
|
|
2059
2152
|
buildScript?: string | undefined;
|
|
2060
2153
|
outputDir?: string | undefined;
|
|
2154
|
+
directory?: string | undefined;
|
|
2061
2155
|
serveMode?: "command" | "static" | undefined;
|
|
2062
2156
|
serveScript?: string | undefined;
|
|
2063
2157
|
servePort?: number | undefined;
|
|
@@ -2080,6 +2174,11 @@ export declare const updateBlockContract: {
|
|
|
2080
2174
|
};
|
|
2081
2175
|
}[];
|
|
2082
2176
|
} | undefined;
|
|
2177
|
+
serviceConnections?: {
|
|
2178
|
+
serviceBlockId: string;
|
|
2179
|
+
description?: string | undefined;
|
|
2180
|
+
}[] | undefined;
|
|
2181
|
+
involvedServiceIds?: string[] | undefined;
|
|
2083
2182
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
2084
2183
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
2085
2184
|
technical?: boolean | null | undefined;
|
|
@@ -2182,6 +2281,7 @@ export declare const updateBlockContract: {
|
|
|
2182
2281
|
installCommand?: string | undefined;
|
|
2183
2282
|
buildScript?: string | undefined;
|
|
2184
2283
|
outputDir?: string | undefined;
|
|
2284
|
+
directory?: string | undefined;
|
|
2185
2285
|
serveMode?: "command" | "static" | undefined;
|
|
2186
2286
|
serveScript?: string | undefined;
|
|
2187
2287
|
servePort?: number | undefined;
|
|
@@ -2204,6 +2304,11 @@ export declare const updateBlockContract: {
|
|
|
2204
2304
|
};
|
|
2205
2305
|
}[];
|
|
2206
2306
|
} | undefined;
|
|
2307
|
+
serviceConnections?: {
|
|
2308
|
+
serviceBlockId: string;
|
|
2309
|
+
description?: string | undefined;
|
|
2310
|
+
}[] | undefined;
|
|
2311
|
+
involvedServiceIds?: string[] | undefined;
|
|
2207
2312
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
2208
2313
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
2209
2314
|
technical?: boolean | null | undefined;
|
|
@@ -2222,7 +2327,10 @@ export declare const updateBlockContract: {
|
|
|
2222
2327
|
key: string;
|
|
2223
2328
|
} | undefined;
|
|
2224
2329
|
valueTemplate?: string | undefined;
|
|
2225
|
-
}> | import("valibot").IntegerIssue<number> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string,
|
|
2330
|
+
}> | import("valibot").IntegerIssue<number> | import("valibot").LiteralIssue | import("valibot").MaxLengthIssue<string, 64> | import("valibot").MaxLengthIssue<string, 120> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 256> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 400> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string[], 50> | import("valibot").MaxLengthIssue<{
|
|
2331
|
+
serviceBlockId: string;
|
|
2332
|
+
description?: string | undefined;
|
|
2333
|
+
}[], 50> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").RecordIssue | import("valibot").RegexIssue<string> | import("valibot").StringIssue | import("valibot").VariantIssue;
|
|
2226
2334
|
} | undefined;
|
|
2227
2335
|
};
|
|
2228
2336
|
readonly responsesByStatusCode: {
|
|
@@ -2388,6 +2496,7 @@ export declare const updateBlockContract: {
|
|
|
2388
2496
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2389
2497
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2390
2498
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2499
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2391
2500
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
2392
2501
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2393
2502
|
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>;
|
|
@@ -2410,6 +2519,14 @@ export declare const updateBlockContract: {
|
|
|
2410
2519
|
}, undefined>], undefined>;
|
|
2411
2520
|
}, undefined>, undefined>;
|
|
2412
2521
|
}, undefined>, undefined>;
|
|
2522
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2523
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
2524
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
2525
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
2526
|
+
serviceBlockId: string;
|
|
2527
|
+
description?: string | undefined;
|
|
2528
|
+
}[], 50, undefined>]>, undefined>;
|
|
2529
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2413
2530
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2414
2531
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
2415
2532
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -2602,6 +2719,7 @@ export declare const moveBlockContract: {
|
|
|
2602
2719
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2603
2720
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2604
2721
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2722
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2605
2723
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
2606
2724
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2607
2725
|
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>;
|
|
@@ -2624,6 +2742,14 @@ export declare const moveBlockContract: {
|
|
|
2624
2742
|
}, undefined>], undefined>;
|
|
2625
2743
|
}, undefined>, undefined>;
|
|
2626
2744
|
}, undefined>, undefined>;
|
|
2745
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2746
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
2747
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
2748
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
2749
|
+
serviceBlockId: string;
|
|
2750
|
+
description?: string | undefined;
|
|
2751
|
+
}[], 50, undefined>]>, undefined>;
|
|
2752
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2627
2753
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2628
2754
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
2629
2755
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -2817,6 +2943,7 @@ export declare const reparentBlockContract: {
|
|
|
2817
2943
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2818
2944
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2819
2945
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2946
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2820
2947
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
2821
2948
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2822
2949
|
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>;
|
|
@@ -2839,6 +2966,14 @@ export declare const reparentBlockContract: {
|
|
|
2839
2966
|
}, undefined>], undefined>;
|
|
2840
2967
|
}, undefined>, undefined>;
|
|
2841
2968
|
}, undefined>, undefined>;
|
|
2969
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2970
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
2971
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
2972
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
2973
|
+
serviceBlockId: string;
|
|
2974
|
+
description?: string | undefined;
|
|
2975
|
+
}[], 50, undefined>]>, undefined>;
|
|
2976
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2842
2977
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2843
2978
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
2844
2979
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -3062,6 +3197,7 @@ export declare const toggleDependencyContract: {
|
|
|
3062
3197
|
readonly installCommand: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
3063
3198
|
readonly buildScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3064
3199
|
readonly outputDir: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
3200
|
+
readonly directory: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
3065
3201
|
readonly serveMode: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
3066
3202
|
readonly serveScript: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3067
3203
|
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>;
|
|
@@ -3084,6 +3220,14 @@ export declare const toggleDependencyContract: {
|
|
|
3084
3220
|
}, undefined>], undefined>;
|
|
3085
3221
|
}, undefined>, undefined>;
|
|
3086
3222
|
}, undefined>, undefined>;
|
|
3223
|
+
readonly serviceConnections: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
3224
|
+
readonly serviceBlockId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
3225
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
3226
|
+
}, undefined>, undefined>, import("valibot").MaxLengthAction<{
|
|
3227
|
+
serviceBlockId: string;
|
|
3228
|
+
description?: string | undefined;
|
|
3229
|
+
}[], 50, undefined>]>, undefined>;
|
|
3230
|
+
readonly involvedServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3087
3231
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
3088
3232
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
3089
3233
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"board.d.ts","sourceRoot":"","sources":["../../src/routes/board.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAwB3E,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"board.d.ts","sourceRoot":"","sources":["../../src/routes/board.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAwB3E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK1B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM9B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9B,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA"}
|
|
@@ -2214,6 +2214,77 @@ export declare const detectServiceProvisioningContract: {
|
|
|
2214
2214
|
}, undefined>;
|
|
2215
2215
|
};
|
|
2216
2216
|
};
|
|
2217
|
+
export declare const detectFrontendConfigContract: {
|
|
2218
|
+
readonly method: "post";
|
|
2219
|
+
readonly pathResolver: () => string;
|
|
2220
|
+
readonly requestBodySchema: v.ObjectSchema<{
|
|
2221
|
+
readonly owner: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2222
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2223
|
+
readonly gitRef: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2224
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2225
|
+
readonly provider: v.OptionalSchema<v.PicklistSchema<["github", "gitlab"], undefined>, undefined>;
|
|
2226
|
+
}, undefined>;
|
|
2227
|
+
readonly responsesByStatusCode: {
|
|
2228
|
+
readonly '4xx': v.ObjectSchema<{
|
|
2229
|
+
readonly error: v.ObjectSchema<{
|
|
2230
|
+
readonly code: v.StringSchema<undefined>;
|
|
2231
|
+
readonly message: v.StringSchema<undefined>;
|
|
2232
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2233
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2234
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2235
|
+
readonly message: v.StringSchema<undefined>;
|
|
2236
|
+
}, undefined>, undefined>, undefined>;
|
|
2237
|
+
}, undefined>;
|
|
2238
|
+
}, undefined>;
|
|
2239
|
+
readonly '5xx': v.ObjectSchema<{
|
|
2240
|
+
readonly error: v.ObjectSchema<{
|
|
2241
|
+
readonly code: v.StringSchema<undefined>;
|
|
2242
|
+
readonly message: v.StringSchema<undefined>;
|
|
2243
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2244
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2245
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2246
|
+
readonly message: v.StringSchema<undefined>;
|
|
2247
|
+
}, undefined>, undefined>, undefined>;
|
|
2248
|
+
}, undefined>;
|
|
2249
|
+
}, undefined>;
|
|
2250
|
+
readonly 200: v.ObjectSchema<{
|
|
2251
|
+
readonly detected: v.BooleanSchema<undefined>;
|
|
2252
|
+
readonly config: v.ObjectSchema<{
|
|
2253
|
+
readonly packageManager: v.OptionalSchema<v.PicklistSchema<["pnpm", "npm", "yarn"], undefined>, undefined>;
|
|
2254
|
+
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2255
|
+
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2256
|
+
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2257
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2258
|
+
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
2259
|
+
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2260
|
+
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
2261
|
+
readonly envInjection: v.OptionalSchema<v.PicklistSchema<["build", "runtime"], undefined>, undefined>;
|
|
2262
|
+
readonly branch: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2263
|
+
readonly kind: v.LiteralSchema<"default", undefined>;
|
|
2264
|
+
}, undefined>, v.ObjectSchema<{
|
|
2265
|
+
readonly kind: v.LiteralSchema<"task", undefined>;
|
|
2266
|
+
readonly fromTaskBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2267
|
+
}, undefined>], undefined>, undefined>;
|
|
2268
|
+
readonly mockMappingsPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2269
|
+
readonly previewEnabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2270
|
+
readonly backendBindings: v.ArraySchema<v.ObjectSchema<{
|
|
2271
|
+
readonly envVar: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2272
|
+
readonly source: v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2273
|
+
readonly kind: v.LiteralSchema<"service", undefined>;
|
|
2274
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2275
|
+
}, undefined>, v.ObjectSchema<{
|
|
2276
|
+
readonly kind: v.LiteralSchema<"mock", undefined>;
|
|
2277
|
+
}, undefined>], undefined>;
|
|
2278
|
+
}, undefined>, undefined>;
|
|
2279
|
+
}, undefined>;
|
|
2280
|
+
readonly notes: v.ArraySchema<v.ObjectSchema<{
|
|
2281
|
+
readonly field: v.StringSchema<undefined>;
|
|
2282
|
+
readonly confidence: v.PicklistSchema<["high", "low"], undefined>;
|
|
2283
|
+
readonly message: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2284
|
+
}, undefined>, undefined>;
|
|
2285
|
+
}, undefined>;
|
|
2286
|
+
};
|
|
2287
|
+
};
|
|
2217
2288
|
export declare const repairCustomManifestContract: {
|
|
2218
2289
|
readonly method: "post";
|
|
2219
2290
|
readonly pathResolver: () => string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../src/routes/environments.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"environments.d.ts","sourceRoot":"","sources":["../../src/routes/environments.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,6 +2,7 @@ import { ContractNoBody, defineApiContract } from '@toad-contracts/valibot';
|
|
|
2
2
|
import * as v from 'valibot';
|
|
3
3
|
import { bootstrapEnvironmentRepoSchema, customManifestTypeSchema, detectServiceProvisioningSchema, environmentConnectionSchema, environmentHandleSchema, environmentHandlerViewSchema, environmentHandlersBundleSchema, provisionEnvironmentSchema, provisioningRecommendationSchema, registerEnvironmentHandlerSchema, registerEnvironmentProviderSchema, repairCustomManifestSchema, testEnvironmentConnectionSchema, testEnvironmentHandlerSchema, updateEnvironmentSecretsSchema, upsertCustomManifestTypeSchema, validateEnvironmentRepoSchema, } from '../environments.js';
|
|
4
4
|
import { bootstrapRepoResultSchema, connectionTestResultSchema, providerDescriptorSchema, repoValidationResultSchema, } from '../provider-config.js';
|
|
5
|
+
import { detectFrontendConfigSchema, frontendConfigRecommendationSchema } from '../frontend.js';
|
|
5
6
|
import { errorResponses, singleStringParam } from './_shared.js';
|
|
6
7
|
// ---------------------------------------------------------------------------
|
|
7
8
|
// Ephemeral-environment route contracts: provider registration (manifest +
|
|
@@ -77,6 +78,14 @@ export const detectServiceProvisioningContract = defineApiContract({
|
|
|
77
78
|
requestBodySchema: detectServiceProvisioningSchema,
|
|
78
79
|
responsesByStatusCode: { 200: provisioningRecommendationSchema, ...errorResponses },
|
|
79
80
|
});
|
|
81
|
+
// Auto-detect a NON-BINDING recommended FRONTEND config from a frontend repo (read checkout-free
|
|
82
|
+
// over RepoFiles). Nothing persisted — the SPA prefills a preview the user applies.
|
|
83
|
+
export const detectFrontendConfigContract = defineApiContract({
|
|
84
|
+
method: 'post',
|
|
85
|
+
pathResolver: () => '/environments/detect-frontend-config',
|
|
86
|
+
requestBodySchema: detectFrontendConfigSchema,
|
|
87
|
+
responsesByStatusCode: { 200: frontendConfigRecommendationSchema, ...errorResponses },
|
|
88
|
+
});
|
|
80
89
|
// Generate (or fix) a service's custom manifest file via the fixer coding agent. Returns a
|
|
81
90
|
// BootstrapRepoResult-shaped body: an async `env-config-repair` run is dispatched (usedAgent +
|
|
82
91
|
// repairJobId) and tracked exactly like the provider-config repair fallback.
|