@cat-factory/contracts 0.94.0 → 0.96.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 +158 -3
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +64 -1
- package/dist/entities.js.map +1 -1
- package/dist/environments.d.ts +17 -3
- package/dist/environments.d.ts.map +1 -1
- package/dist/environments.js +9 -2
- package/dist/environments.js.map +1 -1
- package/dist/initiative.d.ts +67 -0
- package/dist/initiative.d.ts.map +1 -1
- package/dist/initiative.js +43 -0
- package/dist/initiative.js.map +1 -1
- package/dist/merge.d.ts +4 -1
- package/dist/merge.d.ts.map +1 -1
- package/dist/merge.js +4 -0
- package/dist/merge.js.map +1 -1
- package/dist/notifications.d.ts +16 -0
- package/dist/notifications.d.ts.map +1 -1
- package/dist/notifications.js +8 -0
- package/dist/notifications.js.map +1 -1
- package/dist/recurring.d.ts +119 -0
- package/dist/recurring.d.ts.map +1 -1
- package/dist/recurring.js +42 -0
- package/dist/recurring.js.map +1 -1
- package/dist/requests.d.ts +7 -0
- package/dist/requests.d.ts.map +1 -1
- package/dist/routes/agent-runs.d.ts +18 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/board.d.ts +107 -0
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +1 -0
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +92 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +9 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +45 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/initiative.d.ts +554 -0
- package/dist/routes/initiative.d.ts.map +1 -1
- package/dist/routes/initiative.js +40 -2
- package/dist/routes/initiative.js.map +1 -1
- package/dist/routes/notifications.d.ts +6 -0
- package/dist/routes/notifications.d.ts.map +1 -1
- package/dist/routes/recurring.d.ts +84 -0
- package/dist/routes/recurring.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +30 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +27 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +70 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +35 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -59,12 +59,19 @@ export declare const confirmHumanTestContract: {
|
|
|
59
59
|
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
60
60
|
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
61
61
|
readonly headSha: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
62
|
+
readonly headShas: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
63
|
+
readonly conflictTarget: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
64
|
+
readonly repo: import("valibot").StringSchema<undefined>;
|
|
65
|
+
readonly frameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
66
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
67
|
+
}, undefined>, undefined>, undefined>;
|
|
62
68
|
readonly lastVerdict: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
|
|
63
69
|
readonly lastFailureSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
64
70
|
readonly failingChecks: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
65
71
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
66
72
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
67
73
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
74
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
68
75
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
69
76
|
readonly lastDispatchedInstructions: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
70
77
|
readonly watchSince: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -86,6 +93,7 @@ export declare const confirmHumanTestContract: {
|
|
|
86
93
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
87
94
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
88
95
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
96
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
89
97
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
90
98
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
91
99
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
@@ -419,6 +427,7 @@ export declare const confirmHumanTestContract: {
|
|
|
419
427
|
}, undefined>], undefined>, undefined>;
|
|
420
428
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
421
429
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
430
|
+
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
422
431
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
423
432
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
424
433
|
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
@@ -606,12 +615,19 @@ export declare const requestHumanTestFixContract: {
|
|
|
606
615
|
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
607
616
|
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
608
617
|
readonly headSha: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
618
|
+
readonly headShas: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
619
|
+
readonly conflictTarget: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
620
|
+
readonly repo: import("valibot").StringSchema<undefined>;
|
|
621
|
+
readonly frameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
622
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
623
|
+
}, undefined>, undefined>, undefined>;
|
|
609
624
|
readonly lastVerdict: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
|
|
610
625
|
readonly lastFailureSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
611
626
|
readonly failingChecks: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
612
627
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
613
628
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
614
629
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
630
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
615
631
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
616
632
|
readonly lastDispatchedInstructions: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
617
633
|
readonly watchSince: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -633,6 +649,7 @@ export declare const requestHumanTestFixContract: {
|
|
|
633
649
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
634
650
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
635
651
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
652
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
636
653
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
637
654
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
638
655
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
@@ -966,6 +983,7 @@ export declare const requestHumanTestFixContract: {
|
|
|
966
983
|
}, undefined>], undefined>, undefined>;
|
|
967
984
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
968
985
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
986
|
+
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
969
987
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
970
988
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
971
989
|
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
@@ -1151,12 +1169,19 @@ export declare const pullMainHumanTestContract: {
|
|
|
1151
1169
|
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
1152
1170
|
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
1153
1171
|
readonly headSha: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1172
|
+
readonly headShas: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
1173
|
+
readonly conflictTarget: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1174
|
+
readonly repo: import("valibot").StringSchema<undefined>;
|
|
1175
|
+
readonly frameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1176
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1177
|
+
}, undefined>, undefined>, undefined>;
|
|
1154
1178
|
readonly lastVerdict: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
|
|
1155
1179
|
readonly lastFailureSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1156
1180
|
readonly failingChecks: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1157
1181
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
1158
1182
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1159
1183
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1184
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1160
1185
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
1161
1186
|
readonly lastDispatchedInstructions: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1162
1187
|
readonly watchSince: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1178,6 +1203,7 @@ export declare const pullMainHumanTestContract: {
|
|
|
1178
1203
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
1179
1204
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1180
1205
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1206
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1181
1207
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
1182
1208
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1183
1209
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
@@ -1511,6 +1537,7 @@ export declare const pullMainHumanTestContract: {
|
|
|
1511
1537
|
}, undefined>], undefined>, undefined>;
|
|
1512
1538
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1513
1539
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1540
|
+
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1514
1541
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
1515
1542
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
1516
1543
|
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
@@ -1696,12 +1723,19 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
1696
1723
|
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
1697
1724
|
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
1698
1725
|
readonly headSha: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1726
|
+
readonly headShas: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
1727
|
+
readonly conflictTarget: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1728
|
+
readonly repo: import("valibot").StringSchema<undefined>;
|
|
1729
|
+
readonly frameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1730
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1731
|
+
}, undefined>, undefined>, undefined>;
|
|
1699
1732
|
readonly lastVerdict: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
|
|
1700
1733
|
readonly lastFailureSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1701
1734
|
readonly failingChecks: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1702
1735
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
1703
1736
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1704
1737
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1738
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1705
1739
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
1706
1740
|
readonly lastDispatchedInstructions: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1707
1741
|
readonly watchSince: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1723,6 +1757,7 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
1723
1757
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
1724
1758
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1725
1759
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1760
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1726
1761
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
1727
1762
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1728
1763
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
@@ -2056,6 +2091,7 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
2056
2091
|
}, undefined>], undefined>, undefined>;
|
|
2057
2092
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2058
2093
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2094
|
+
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2059
2095
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
2060
2096
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2061
2097
|
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
@@ -2241,12 +2277,19 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
2241
2277
|
readonly attempts: import("valibot").NumberSchema<undefined>;
|
|
2242
2278
|
readonly maxAttempts: import("valibot").NumberSchema<undefined>;
|
|
2243
2279
|
readonly headSha: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2280
|
+
readonly headShas: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
2281
|
+
readonly conflictTarget: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2282
|
+
readonly repo: import("valibot").StringSchema<undefined>;
|
|
2283
|
+
readonly frameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2284
|
+
readonly branch: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2285
|
+
}, undefined>, undefined>, undefined>;
|
|
2244
2286
|
readonly lastVerdict: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
|
|
2245
2287
|
readonly lastFailureSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2246
2288
|
readonly failingChecks: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2247
2289
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
2248
2290
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2249
2291
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2292
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2250
2293
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
2251
2294
|
readonly lastDispatchedInstructions: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2252
2295
|
readonly watchSince: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -2268,6 +2311,7 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
2268
2311
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
2269
2312
|
readonly conclusion: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2270
2313
|
readonly url: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2314
|
+
readonly repo: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2271
2315
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
2272
2316
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2273
2317
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
@@ -2601,6 +2645,7 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
2601
2645
|
}, undefined>], undefined>, undefined>;
|
|
2602
2646
|
readonly composePath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2603
2647
|
readonly localDevOnly: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2648
|
+
readonly composeBuild: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2604
2649
|
readonly manifestId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RegexAction<string, undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
2605
2650
|
readonly manifestPath: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2606
2651
|
readonly images: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
@@ -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":"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"}
|