@cat-factory/contracts 0.82.0 → 0.84.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 +44 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +37 -1
- package/dist/entities.js.map +1 -1
- package/dist/frontend.d.ts +55 -0
- package/dist/frontend.d.ts.map +1 -1
- package/dist/frontend.js +114 -0
- package/dist/frontend.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/package-registries.d.ts +71 -0
- package/dist/package-registries.d.ts.map +1 -0
- package/dist/package-registries.js +96 -0
- package/dist/package-registries.js.map +1 -0
- package/dist/requests.d.ts +49 -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/agent-runs.d.ts +10 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/board.d.ts +129 -2
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +56 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +5 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +25 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/index.d.ts +1 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +1 -0
- package/dist/routes/index.js.map +1 -1
- package/dist/routes/package-registries.d.ts +116 -0
- package/dist/routes/package-registries.d.ts.map +1 -0
- package/dist/routes/package-registries.js +29 -0
- package/dist/routes/package-registries.js.map +1 -0
- package/dist/routes/tasks.d.ts +24 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +15 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +26 -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 +13 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/routes/board.d.ts
CHANGED
|
@@ -195,6 +195,14 @@ export declare const addFrameContract: {
|
|
|
195
195
|
}, undefined>], undefined>;
|
|
196
196
|
}, undefined>, undefined>;
|
|
197
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>;
|
|
198
206
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
199
207
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
200
208
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -409,6 +417,14 @@ export declare const addServiceFromRepoContract: {
|
|
|
409
417
|
}, undefined>], undefined>;
|
|
410
418
|
}, undefined>, undefined>;
|
|
411
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>;
|
|
412
428
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
413
429
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
414
430
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -638,6 +654,14 @@ export declare const addTaskContract: {
|
|
|
638
654
|
}, undefined>], undefined>;
|
|
639
655
|
}, undefined>, undefined>;
|
|
640
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>;
|
|
641
665
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
642
666
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
643
667
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -854,6 +878,14 @@ export declare const addModuleContract: {
|
|
|
854
878
|
}, undefined>], undefined>;
|
|
855
879
|
}, undefined>, undefined>;
|
|
856
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>;
|
|
857
889
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
858
890
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
859
891
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -1067,6 +1099,14 @@ export declare const addEpicContract: {
|
|
|
1067
1099
|
}, undefined>], undefined>;
|
|
1068
1100
|
}, undefined>, undefined>;
|
|
1069
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>;
|
|
1070
1110
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1071
1111
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
1072
1112
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -1279,6 +1319,14 @@ export declare const assignEpicContract: {
|
|
|
1279
1319
|
}, undefined>], undefined>;
|
|
1280
1320
|
}, undefined>, undefined>;
|
|
1281
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>;
|
|
1282
1330
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1283
1331
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
1284
1332
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -1438,6 +1486,14 @@ export declare const updateBlockContract: {
|
|
|
1438
1486
|
}, undefined>], undefined>;
|
|
1439
1487
|
}, undefined>, undefined>;
|
|
1440
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>]>;
|
|
1441
1497
|
readonly trackerCommentOnPrOpen: import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>;
|
|
1442
1498
|
readonly trackerResolveOnMerge: import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>;
|
|
1443
1499
|
readonly technical: import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -1581,6 +1637,14 @@ export declare const updateBlockContract: {
|
|
|
1581
1637
|
}, undefined>], undefined>;
|
|
1582
1638
|
}, undefined>, undefined>;
|
|
1583
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>;
|
|
1584
1648
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1585
1649
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1586
1650
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -1706,6 +1770,11 @@ export declare const updateBlockContract: {
|
|
|
1706
1770
|
};
|
|
1707
1771
|
}[];
|
|
1708
1772
|
} | undefined;
|
|
1773
|
+
serviceConnections?: {
|
|
1774
|
+
serviceBlockId: string;
|
|
1775
|
+
description?: string | undefined;
|
|
1776
|
+
}[] | undefined;
|
|
1777
|
+
involvedServiceIds?: string[] | undefined;
|
|
1709
1778
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
1710
1779
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
1711
1780
|
technical?: boolean | null | undefined;
|
|
@@ -1830,6 +1899,11 @@ export declare const updateBlockContract: {
|
|
|
1830
1899
|
};
|
|
1831
1900
|
}[];
|
|
1832
1901
|
} | undefined;
|
|
1902
|
+
serviceConnections?: {
|
|
1903
|
+
serviceBlockId: string;
|
|
1904
|
+
description?: string | undefined;
|
|
1905
|
+
}[] | undefined;
|
|
1906
|
+
involvedServiceIds?: string[] | undefined;
|
|
1833
1907
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
1834
1908
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
1835
1909
|
technical?: boolean | null | undefined;
|
|
@@ -1955,6 +2029,11 @@ export declare const updateBlockContract: {
|
|
|
1955
2029
|
};
|
|
1956
2030
|
}[];
|
|
1957
2031
|
} | undefined;
|
|
2032
|
+
serviceConnections?: {
|
|
2033
|
+
serviceBlockId: string;
|
|
2034
|
+
description?: string | undefined;
|
|
2035
|
+
}[] | undefined;
|
|
2036
|
+
involvedServiceIds?: string[] | undefined;
|
|
1958
2037
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
1959
2038
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
1960
2039
|
technical?: boolean | null | undefined;
|
|
@@ -1972,7 +2051,10 @@ export declare const updateBlockContract: {
|
|
|
1972
2051
|
key: string;
|
|
1973
2052
|
} | undefined;
|
|
1974
2053
|
valueTemplate?: string | undefined;
|
|
1975
|
-
}> | 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>;
|
|
1976
2058
|
readonly "~types"?: {
|
|
1977
2059
|
readonly input: {
|
|
1978
2060
|
title?: string | undefined;
|
|
@@ -2092,6 +2174,11 @@ export declare const updateBlockContract: {
|
|
|
2092
2174
|
};
|
|
2093
2175
|
}[];
|
|
2094
2176
|
} | undefined;
|
|
2177
|
+
serviceConnections?: {
|
|
2178
|
+
serviceBlockId: string;
|
|
2179
|
+
description?: string | undefined;
|
|
2180
|
+
}[] | undefined;
|
|
2181
|
+
involvedServiceIds?: string[] | undefined;
|
|
2095
2182
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
2096
2183
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
2097
2184
|
technical?: boolean | null | undefined;
|
|
@@ -2217,6 +2304,11 @@ export declare const updateBlockContract: {
|
|
|
2217
2304
|
};
|
|
2218
2305
|
}[];
|
|
2219
2306
|
} | undefined;
|
|
2307
|
+
serviceConnections?: {
|
|
2308
|
+
serviceBlockId: string;
|
|
2309
|
+
description?: string | undefined;
|
|
2310
|
+
}[] | undefined;
|
|
2311
|
+
involvedServiceIds?: string[] | undefined;
|
|
2220
2312
|
trackerCommentOnPrOpen?: "off" | "on" | null | undefined;
|
|
2221
2313
|
trackerResolveOnMerge?: "off" | "on" | null | undefined;
|
|
2222
2314
|
technical?: boolean | null | undefined;
|
|
@@ -2235,7 +2327,10 @@ export declare const updateBlockContract: {
|
|
|
2235
2327
|
key: string;
|
|
2236
2328
|
} | undefined;
|
|
2237
2329
|
valueTemplate?: string | undefined;
|
|
2238
|
-
}> | 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;
|
|
2239
2334
|
} | undefined;
|
|
2240
2335
|
};
|
|
2241
2336
|
readonly responsesByStatusCode: {
|
|
@@ -2424,6 +2519,14 @@ export declare const updateBlockContract: {
|
|
|
2424
2519
|
}, undefined>], undefined>;
|
|
2425
2520
|
}, undefined>, undefined>;
|
|
2426
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>;
|
|
2427
2530
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2428
2531
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
2429
2532
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -2639,6 +2742,14 @@ export declare const moveBlockContract: {
|
|
|
2639
2742
|
}, undefined>], undefined>;
|
|
2640
2743
|
}, undefined>, undefined>;
|
|
2641
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>;
|
|
2642
2753
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2643
2754
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
2644
2755
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -2855,6 +2966,14 @@ export declare const reparentBlockContract: {
|
|
|
2855
2966
|
}, undefined>], undefined>;
|
|
2856
2967
|
}, undefined>, undefined>;
|
|
2857
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>;
|
|
2858
2977
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2859
2978
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
2860
2979
|
readonly number: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -3101,6 +3220,14 @@ export declare const toggleDependencyContract: {
|
|
|
3101
3220
|
}, undefined>], undefined>;
|
|
3102
3221
|
}, undefined>, undefined>;
|
|
3103
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>;
|
|
3104
3231
|
readonly pullRequest: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
3105
3232
|
readonly url: import("valibot").StringSchema<undefined>;
|
|
3106
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"}
|
|
@@ -519,6 +519,11 @@ export declare const startExecutionContract: {
|
|
|
519
519
|
}, undefined>, undefined>, undefined>;
|
|
520
520
|
}, undefined>, undefined>;
|
|
521
521
|
}, undefined>, undefined>, undefined>;
|
|
522
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
523
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
524
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
525
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
526
|
+
}, undefined>, undefined>, undefined>;
|
|
522
527
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
523
528
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
524
529
|
}, undefined>;
|
|
@@ -718,6 +723,14 @@ export declare const cancelExecutionContract: {
|
|
|
718
723
|
}, undefined>], undefined>;
|
|
719
724
|
}, undefined>, undefined>;
|
|
720
725
|
}, undefined>, undefined>;
|
|
726
|
+
readonly serviceConnections: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
727
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
728
|
+
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
729
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
730
|
+
serviceBlockId: string;
|
|
731
|
+
description?: string | undefined;
|
|
732
|
+
}[], 50, undefined>]>, undefined>;
|
|
733
|
+
readonly involvedServiceIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
721
734
|
readonly pullRequest: v.OptionalSchema<v.ObjectSchema<{
|
|
722
735
|
readonly url: v.StringSchema<undefined>;
|
|
723
736
|
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -928,6 +941,14 @@ export declare const mergeBlockContract: {
|
|
|
928
941
|
}, undefined>], undefined>;
|
|
929
942
|
}, undefined>, undefined>;
|
|
930
943
|
}, undefined>, undefined>;
|
|
944
|
+
readonly serviceConnections: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
945
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
946
|
+
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
947
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
948
|
+
serviceBlockId: string;
|
|
949
|
+
description?: string | undefined;
|
|
950
|
+
}[], 50, undefined>]>, undefined>;
|
|
951
|
+
readonly involvedServiceIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
931
952
|
readonly pullRequest: v.OptionalSchema<v.ObjectSchema<{
|
|
932
953
|
readonly url: v.StringSchema<undefined>;
|
|
933
954
|
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -1492,6 +1513,11 @@ export declare const resumeSpendContract: {
|
|
|
1492
1513
|
}, undefined>, undefined>, undefined>;
|
|
1493
1514
|
}, undefined>, undefined>;
|
|
1494
1515
|
}, undefined>, undefined>, undefined>;
|
|
1516
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1517
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1518
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
1519
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1520
|
+
}, undefined>, undefined>, undefined>;
|
|
1495
1521
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1496
1522
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1497
1523
|
}, undefined>, undefined>;
|
|
@@ -2240,6 +2266,11 @@ export declare const resolveDecisionContract: {
|
|
|
2240
2266
|
}, undefined>, undefined>, undefined>;
|
|
2241
2267
|
}, undefined>, undefined>;
|
|
2242
2268
|
}, undefined>, undefined>, undefined>;
|
|
2269
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2270
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2271
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
2272
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2273
|
+
}, undefined>, undefined>, undefined>;
|
|
2243
2274
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2244
2275
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2245
2276
|
}, undefined>;
|
|
@@ -2766,6 +2797,11 @@ export declare const approveStepContract: {
|
|
|
2766
2797
|
}, undefined>, undefined>, undefined>;
|
|
2767
2798
|
}, undefined>, undefined>;
|
|
2768
2799
|
}, undefined>, undefined>, undefined>;
|
|
2800
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2801
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2802
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
2803
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2804
|
+
}, undefined>, undefined>, undefined>;
|
|
2769
2805
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2770
2806
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2771
2807
|
}, undefined>;
|
|
@@ -3306,6 +3342,11 @@ export declare const requestStepChangesContract: {
|
|
|
3306
3342
|
}, undefined>, undefined>, undefined>;
|
|
3307
3343
|
}, undefined>, undefined>;
|
|
3308
3344
|
}, undefined>, undefined>, undefined>;
|
|
3345
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3346
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3347
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
3348
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3349
|
+
}, undefined>, undefined>, undefined>;
|
|
3309
3350
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3310
3351
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3311
3352
|
}, undefined>;
|
|
@@ -3832,6 +3873,11 @@ export declare const resolveStepExceededContract: {
|
|
|
3832
3873
|
}, undefined>, undefined>, undefined>;
|
|
3833
3874
|
}, undefined>, undefined>;
|
|
3834
3875
|
}, undefined>, undefined>, undefined>;
|
|
3876
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3877
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3878
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
3879
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3880
|
+
}, undefined>, undefined>, undefined>;
|
|
3835
3881
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3836
3882
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3837
3883
|
}, undefined>;
|
|
@@ -4356,6 +4402,11 @@ export declare const restartExecutionContract: {
|
|
|
4356
4402
|
}, undefined>, undefined>, undefined>;
|
|
4357
4403
|
}, undefined>, undefined>;
|
|
4358
4404
|
}, undefined>, undefined>, undefined>;
|
|
4405
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4406
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4407
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
4408
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4409
|
+
}, undefined>, undefined>, undefined>;
|
|
4359
4410
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4360
4411
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4361
4412
|
}, undefined>;
|
|
@@ -4882,6 +4933,11 @@ export declare const rejectStepContract: {
|
|
|
4882
4933
|
}, undefined>, undefined>, undefined>;
|
|
4883
4934
|
}, undefined>, undefined>;
|
|
4884
4935
|
}, undefined>, undefined>, undefined>;
|
|
4936
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4937
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4938
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
4939
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4940
|
+
}, undefined>, undefined>, undefined>;
|
|
4885
4941
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4886
4942
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4887
4943
|
}, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwC5B,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwC5B,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAIF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9B,CAAA;AAIF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK5C,CAAA;AAIF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO9B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOrC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOtC,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7B,CAAA"}
|
|
@@ -517,6 +517,11 @@ export declare const requestHumanReviewFixContract: {
|
|
|
517
517
|
}, undefined>, undefined>, undefined>;
|
|
518
518
|
}, undefined>, undefined>;
|
|
519
519
|
}, undefined>, undefined>, undefined>;
|
|
520
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
521
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
522
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
523
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
524
|
+
}, undefined>, undefined>, undefined>;
|
|
520
525
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
521
526
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
522
527
|
}, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
|
|
@@ -516,6 +516,11 @@ export declare const confirmHumanTestContract: {
|
|
|
516
516
|
}, undefined>, undefined>, undefined>;
|
|
517
517
|
}, undefined>, undefined>;
|
|
518
518
|
}, undefined>, undefined>, undefined>;
|
|
519
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
520
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
521
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
522
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
523
|
+
}, undefined>, undefined>, undefined>;
|
|
519
524
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
520
525
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
521
526
|
}, undefined>;
|
|
@@ -1040,6 +1045,11 @@ export declare const requestHumanTestFixContract: {
|
|
|
1040
1045
|
}, undefined>, undefined>, undefined>;
|
|
1041
1046
|
}, undefined>, undefined>;
|
|
1042
1047
|
}, undefined>, undefined>, undefined>;
|
|
1048
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1049
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1050
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
1051
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1052
|
+
}, undefined>, undefined>, undefined>;
|
|
1043
1053
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1044
1054
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1045
1055
|
}, undefined>;
|
|
@@ -1562,6 +1572,11 @@ export declare const pullMainHumanTestContract: {
|
|
|
1562
1572
|
}, undefined>, undefined>, undefined>;
|
|
1563
1573
|
}, undefined>, undefined>;
|
|
1564
1574
|
}, undefined>, undefined>, undefined>;
|
|
1575
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1576
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1577
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
1578
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1579
|
+
}, undefined>, undefined>, undefined>;
|
|
1565
1580
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1566
1581
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1567
1582
|
}, undefined>;
|
|
@@ -2084,6 +2099,11 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
2084
2099
|
}, undefined>, undefined>, undefined>;
|
|
2085
2100
|
}, undefined>, undefined>;
|
|
2086
2101
|
}, undefined>, undefined>, undefined>;
|
|
2102
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2103
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2104
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
2105
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2106
|
+
}, undefined>, undefined>, undefined>;
|
|
2087
2107
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2088
2108
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
2089
2109
|
}, undefined>;
|
|
@@ -2606,6 +2626,11 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
2606
2626
|
}, undefined>, undefined>, undefined>;
|
|
2607
2627
|
}, undefined>, undefined>;
|
|
2608
2628
|
}, undefined>, undefined>, undefined>;
|
|
2629
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2630
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2631
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
2632
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2633
|
+
}, undefined>, undefined>, undefined>;
|
|
2609
2634
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2610
2635
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
2611
2636
|
}, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
|
package/dist/routes/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export * from './model-presets.js';
|
|
|
27
27
|
export * from './models.js';
|
|
28
28
|
export * from './notifications.js';
|
|
29
29
|
export * from './openrouter.js';
|
|
30
|
+
export * from './package-registries.js';
|
|
30
31
|
export * from './personal-subscriptions.js';
|
|
31
32
|
export * from './pipelines.js';
|
|
32
33
|
export * from './preview.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,yBAAyB,CAAA;AACvC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
package/dist/routes/index.js
CHANGED
|
@@ -30,6 +30,7 @@ export * from './model-presets.js';
|
|
|
30
30
|
export * from './models.js';
|
|
31
31
|
export * from './notifications.js';
|
|
32
32
|
export * from './openrouter.js';
|
|
33
|
+
export * from './package-registries.js';
|
|
33
34
|
export * from './personal-subscriptions.js';
|
|
34
35
|
export * from './pipelines.js';
|
|
35
36
|
export * from './preview.js';
|
package/dist/routes/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,yBAAyB,CAAA;AACvC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|