@cat-factory/contracts 0.352.0 → 0.354.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/execution.d.ts +4 -0
- package/dist/execution.d.ts.map +1 -1
- package/dist/fragment-library.d.ts +12 -0
- package/dist/fragment-library.d.ts.map +1 -1
- package/dist/fragment-library.js +14 -2
- package/dist/fragment-library.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/prReview.d.ts +38 -2
- package/dist/prReview.d.ts.map +1 -1
- package/dist/prReview.js +22 -1
- package/dist/prReview.js.map +1 -1
- package/dist/public-api.d.ts +65 -0
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +62 -0
- package/dist/public-api.js.map +1 -1
- package/dist/public-decisions.d.ts +432 -3
- package/dist/public-decisions.d.ts.map +1 -1
- package/dist/public-decisions.js +151 -0
- package/dist/public-decisions.js.map +1 -1
- package/dist/public-fragments.d.ts +110 -0
- package/dist/public-fragments.d.ts.map +1 -0
- package/dist/public-fragments.js +113 -0
- package/dist/public-fragments.js.map +1 -0
- package/dist/routes/agent-runs.d.ts +4 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +4 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +20 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +2 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +10 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/prReview.d.ts +10 -0
- package/dist/routes/prReview.d.ts.map +1 -1
- package/dist/routes/public-api.d.ts +76 -0
- package/dist/routes/public-api.d.ts.map +1 -1
- package/dist/routes/public-api.js +25 -0
- package/dist/routes/public-api.js.map +1 -1
- package/dist/routes/public-board.d.ts +2 -0
- package/dist/routes/public-board.d.ts.map +1 -1
- package/dist/routes/public-decisions.d.ts +1188 -41
- package/dist/routes/public-decisions.d.ts.map +1 -1
- package/dist/routes/public-decisions.js +22 -0
- package/dist/routes/public-decisions.js.map +1 -1
- package/dist/routes/visual-confirm.d.ts +6 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +4 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +2 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -184,6 +184,27 @@ export declare const listPublicRunDecisionsContract: {
|
|
|
184
184
|
}, undefined>, undefined>;
|
|
185
185
|
}, undefined>, undefined>;
|
|
186
186
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
187
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
188
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
189
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
190
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
191
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
192
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
193
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
194
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
195
|
+
readonly path: v.StringSchema<undefined>;
|
|
196
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
197
|
+
readonly reason: v.StringSchema<undefined>;
|
|
198
|
+
}, undefined>, undefined>;
|
|
199
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
200
|
+
}, undefined>, undefined>;
|
|
201
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
202
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
203
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
204
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
205
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
206
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
207
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
187
208
|
}, undefined>, v.ObjectSchema<{
|
|
188
209
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
189
210
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -238,7 +259,7 @@ export declare const listPublicRunDecisionsContract: {
|
|
|
238
259
|
}, undefined>, undefined>;
|
|
239
260
|
}, undefined>], undefined>, undefined>;
|
|
240
261
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
241
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
262
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
242
263
|
readonly stepKind: v.StringSchema<undefined>;
|
|
243
264
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
244
265
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -437,6 +458,27 @@ export declare const replyPublicRunFindingContract: {
|
|
|
437
458
|
}, undefined>, undefined>;
|
|
438
459
|
}, undefined>, undefined>;
|
|
439
460
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
461
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
462
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
463
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
464
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
465
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
466
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
467
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
468
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
469
|
+
readonly path: v.StringSchema<undefined>;
|
|
470
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
471
|
+
readonly reason: v.StringSchema<undefined>;
|
|
472
|
+
}, undefined>, undefined>;
|
|
473
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
474
|
+
}, undefined>, undefined>;
|
|
475
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
476
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
477
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
478
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
479
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
480
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
481
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
440
482
|
}, undefined>, v.ObjectSchema<{
|
|
441
483
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
442
484
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -491,7 +533,7 @@ export declare const replyPublicRunFindingContract: {
|
|
|
491
533
|
}, undefined>, undefined>;
|
|
492
534
|
}, undefined>], undefined>, undefined>;
|
|
493
535
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
494
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
536
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
495
537
|
readonly stepKind: v.StringSchema<undefined>;
|
|
496
538
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
497
539
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -692,6 +734,27 @@ export declare const setPublicRunFindingStatusContract: {
|
|
|
692
734
|
}, undefined>, undefined>;
|
|
693
735
|
}, undefined>, undefined>;
|
|
694
736
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
737
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
738
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
739
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
740
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
741
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
742
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
743
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
744
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
745
|
+
readonly path: v.StringSchema<undefined>;
|
|
746
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
747
|
+
readonly reason: v.StringSchema<undefined>;
|
|
748
|
+
}, undefined>, undefined>;
|
|
749
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
750
|
+
}, undefined>, undefined>;
|
|
751
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
752
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
753
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
754
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
755
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
756
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
757
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
695
758
|
}, undefined>, v.ObjectSchema<{
|
|
696
759
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
697
760
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -746,7 +809,7 @@ export declare const setPublicRunFindingStatusContract: {
|
|
|
746
809
|
}, undefined>, undefined>;
|
|
747
810
|
}, undefined>], undefined>, undefined>;
|
|
748
811
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
749
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
812
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
750
813
|
readonly stepKind: v.StringSchema<undefined>;
|
|
751
814
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
752
815
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -949,6 +1012,27 @@ export declare const incorporatePublicRunRequirementsContract: {
|
|
|
949
1012
|
}, undefined>, undefined>;
|
|
950
1013
|
}, undefined>, undefined>;
|
|
951
1014
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1015
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
1016
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
1017
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
1018
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
1019
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1020
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1021
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
1022
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
1023
|
+
readonly path: v.StringSchema<undefined>;
|
|
1024
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1025
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1026
|
+
}, undefined>, undefined>;
|
|
1027
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1028
|
+
}, undefined>, undefined>;
|
|
1029
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1030
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
1031
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
1032
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
1033
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
1034
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
1035
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
952
1036
|
}, undefined>, v.ObjectSchema<{
|
|
953
1037
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
954
1038
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -1003,7 +1087,7 @@ export declare const incorporatePublicRunRequirementsContract: {
|
|
|
1003
1087
|
}, undefined>, undefined>;
|
|
1004
1088
|
}, undefined>], undefined>, undefined>;
|
|
1005
1089
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
1006
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
1090
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
1007
1091
|
readonly stepKind: v.StringSchema<undefined>;
|
|
1008
1092
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
1009
1093
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -1200,6 +1284,27 @@ export declare const reReviewPublicRunRequirementsContract: {
|
|
|
1200
1284
|
}, undefined>, undefined>;
|
|
1201
1285
|
}, undefined>, undefined>;
|
|
1202
1286
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1287
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
1288
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
1289
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
1290
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
1291
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1292
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1293
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
1294
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
1295
|
+
readonly path: v.StringSchema<undefined>;
|
|
1296
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1297
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1298
|
+
}, undefined>, undefined>;
|
|
1299
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1300
|
+
}, undefined>, undefined>;
|
|
1301
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1302
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
1303
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
1304
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
1305
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
1306
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
1307
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1203
1308
|
}, undefined>, v.ObjectSchema<{
|
|
1204
1309
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
1205
1310
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -1254,7 +1359,7 @@ export declare const reReviewPublicRunRequirementsContract: {
|
|
|
1254
1359
|
}, undefined>, undefined>;
|
|
1255
1360
|
}, undefined>], undefined>, undefined>;
|
|
1256
1361
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
1257
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
1362
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
1258
1363
|
readonly stepKind: v.StringSchema<undefined>;
|
|
1259
1364
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
1260
1365
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -1451,6 +1556,27 @@ export declare const proceedPublicRunRequirementsContract: {
|
|
|
1451
1556
|
}, undefined>, undefined>;
|
|
1452
1557
|
}, undefined>, undefined>;
|
|
1453
1558
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1559
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
1560
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
1561
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
1562
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
1563
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1564
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1565
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
1566
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
1567
|
+
readonly path: v.StringSchema<undefined>;
|
|
1568
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1569
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1570
|
+
}, undefined>, undefined>;
|
|
1571
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1572
|
+
}, undefined>, undefined>;
|
|
1573
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1574
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
1575
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
1576
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
1577
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
1578
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
1579
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1454
1580
|
}, undefined>, v.ObjectSchema<{
|
|
1455
1581
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
1456
1582
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -1505,7 +1631,7 @@ export declare const proceedPublicRunRequirementsContract: {
|
|
|
1505
1631
|
}, undefined>, undefined>;
|
|
1506
1632
|
}, undefined>], undefined>, undefined>;
|
|
1507
1633
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
1508
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
1634
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
1509
1635
|
readonly stepKind: v.StringSchema<undefined>;
|
|
1510
1636
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
1511
1637
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -1704,6 +1830,27 @@ export declare const resolvePublicRunRequirementsExceededContract: {
|
|
|
1704
1830
|
}, undefined>, undefined>;
|
|
1705
1831
|
}, undefined>, undefined>;
|
|
1706
1832
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1833
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
1834
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
1835
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
1836
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
1837
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1838
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1839
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
1840
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
1841
|
+
readonly path: v.StringSchema<undefined>;
|
|
1842
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1843
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1844
|
+
}, undefined>, undefined>;
|
|
1845
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1846
|
+
}, undefined>, undefined>;
|
|
1847
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1848
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
1849
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
1850
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
1851
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
1852
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
1853
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1707
1854
|
}, undefined>, v.ObjectSchema<{
|
|
1708
1855
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
1709
1856
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -1758,7 +1905,7 @@ export declare const resolvePublicRunRequirementsExceededContract: {
|
|
|
1758
1905
|
}, undefined>, undefined>;
|
|
1759
1906
|
}, undefined>], undefined>, undefined>;
|
|
1760
1907
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
1761
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
1908
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
1762
1909
|
readonly stepKind: v.StringSchema<undefined>;
|
|
1763
1910
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
1764
1911
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -1963,6 +2110,27 @@ export declare const choosePublicRunForkContract: {
|
|
|
1963
2110
|
}, undefined>, undefined>;
|
|
1964
2111
|
}, undefined>, undefined>;
|
|
1965
2112
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2113
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
2114
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
2115
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
2116
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
2117
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2118
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2119
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
2120
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
2121
|
+
readonly path: v.StringSchema<undefined>;
|
|
2122
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2123
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2124
|
+
}, undefined>, undefined>;
|
|
2125
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2126
|
+
}, undefined>, undefined>;
|
|
2127
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2128
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
2129
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
2130
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
2131
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
2132
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
2133
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
1966
2134
|
}, undefined>, v.ObjectSchema<{
|
|
1967
2135
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
1968
2136
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -2017,7 +2185,7 @@ export declare const choosePublicRunForkContract: {
|
|
|
2017
2185
|
}, undefined>, undefined>;
|
|
2018
2186
|
}, undefined>], undefined>, undefined>;
|
|
2019
2187
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
2020
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
2188
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
2021
2189
|
readonly stepKind: v.StringSchema<undefined>;
|
|
2022
2190
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2023
2191
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -2217,6 +2385,27 @@ export declare const resolvePublicRunJudgeContract: {
|
|
|
2217
2385
|
}, undefined>, undefined>;
|
|
2218
2386
|
}, undefined>, undefined>;
|
|
2219
2387
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2388
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
2389
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
2390
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
2391
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
2392
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2393
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2394
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
2395
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
2396
|
+
readonly path: v.StringSchema<undefined>;
|
|
2397
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2398
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2399
|
+
}, undefined>, undefined>;
|
|
2400
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2401
|
+
}, undefined>, undefined>;
|
|
2402
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2403
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
2404
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
2405
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
2406
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
2407
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
2408
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2220
2409
|
}, undefined>, v.ObjectSchema<{
|
|
2221
2410
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
2222
2411
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -2271,7 +2460,7 @@ export declare const resolvePublicRunJudgeContract: {
|
|
|
2271
2460
|
}, undefined>, undefined>;
|
|
2272
2461
|
}, undefined>], undefined>, undefined>;
|
|
2273
2462
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
2274
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
2463
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
2275
2464
|
readonly stepKind: v.StringSchema<undefined>;
|
|
2276
2465
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2277
2466
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -2480,6 +2669,27 @@ export declare const resolvePublicRunInputGateContract: {
|
|
|
2480
2669
|
}, undefined>, undefined>;
|
|
2481
2670
|
}, undefined>, undefined>;
|
|
2482
2671
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2672
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
2673
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
2674
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
2675
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
2676
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2677
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2678
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
2679
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
2680
|
+
readonly path: v.StringSchema<undefined>;
|
|
2681
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2682
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2683
|
+
}, undefined>, undefined>;
|
|
2684
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2685
|
+
}, undefined>, undefined>;
|
|
2686
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2687
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
2688
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
2689
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
2690
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
2691
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
2692
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2483
2693
|
}, undefined>, v.ObjectSchema<{
|
|
2484
2694
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
2485
2695
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -2534,7 +2744,7 @@ export declare const resolvePublicRunInputGateContract: {
|
|
|
2534
2744
|
}, undefined>, undefined>;
|
|
2535
2745
|
}, undefined>], undefined>, undefined>;
|
|
2536
2746
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
2537
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
2747
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
2538
2748
|
readonly stepKind: v.StringSchema<undefined>;
|
|
2539
2749
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2540
2750
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -2735,6 +2945,27 @@ export declare const approvePublicRunStepContract: {
|
|
|
2735
2945
|
}, undefined>, undefined>;
|
|
2736
2946
|
}, undefined>, undefined>;
|
|
2737
2947
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2948
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
2949
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
2950
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
2951
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
2952
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2953
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2954
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
2955
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
2956
|
+
readonly path: v.StringSchema<undefined>;
|
|
2957
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2958
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2959
|
+
}, undefined>, undefined>;
|
|
2960
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2961
|
+
}, undefined>, undefined>;
|
|
2962
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2963
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
2964
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
2965
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
2966
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
2967
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
2968
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2738
2969
|
}, undefined>, v.ObjectSchema<{
|
|
2739
2970
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
2740
2971
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -2789,7 +3020,7 @@ export declare const approvePublicRunStepContract: {
|
|
|
2789
3020
|
}, undefined>, undefined>;
|
|
2790
3021
|
}, undefined>], undefined>, undefined>;
|
|
2791
3022
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
2792
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
3023
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
2793
3024
|
readonly stepKind: v.StringSchema<undefined>;
|
|
2794
3025
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2795
3026
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -2990,6 +3221,27 @@ export declare const requestPublicRunStepChangesContract: {
|
|
|
2990
3221
|
}, undefined>, undefined>;
|
|
2991
3222
|
}, undefined>, undefined>;
|
|
2992
3223
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3224
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
3225
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
3226
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
3227
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
3228
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3229
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3230
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
3231
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
3232
|
+
readonly path: v.StringSchema<undefined>;
|
|
3233
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3234
|
+
readonly reason: v.StringSchema<undefined>;
|
|
3235
|
+
}, undefined>, undefined>;
|
|
3236
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3237
|
+
}, undefined>, undefined>;
|
|
3238
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3239
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
3240
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
3241
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
3242
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
3243
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
3244
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2993
3245
|
}, undefined>, v.ObjectSchema<{
|
|
2994
3246
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
2995
3247
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -3044,7 +3296,7 @@ export declare const requestPublicRunStepChangesContract: {
|
|
|
3044
3296
|
}, undefined>, undefined>;
|
|
3045
3297
|
}, undefined>], undefined>, undefined>;
|
|
3046
3298
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
3047
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
3299
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
3048
3300
|
readonly stepKind: v.StringSchema<undefined>;
|
|
3049
3301
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
3050
3302
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -3245,6 +3497,27 @@ export declare const rejectPublicRunStepContract: {
|
|
|
3245
3497
|
}, undefined>, undefined>;
|
|
3246
3498
|
}, undefined>, undefined>;
|
|
3247
3499
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3500
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
3501
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
3502
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
3503
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
3504
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3505
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3506
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
3507
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
3508
|
+
readonly path: v.StringSchema<undefined>;
|
|
3509
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3510
|
+
readonly reason: v.StringSchema<undefined>;
|
|
3511
|
+
}, undefined>, undefined>;
|
|
3512
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3513
|
+
}, undefined>, undefined>;
|
|
3514
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3515
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
3516
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
3517
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
3518
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
3519
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
3520
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3248
3521
|
}, undefined>, v.ObjectSchema<{
|
|
3249
3522
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
3250
3523
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -3299,7 +3572,7 @@ export declare const rejectPublicRunStepContract: {
|
|
|
3299
3572
|
}, undefined>, undefined>;
|
|
3300
3573
|
}, undefined>], undefined>, undefined>;
|
|
3301
3574
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
3302
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
3575
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
3303
3576
|
readonly stepKind: v.StringSchema<undefined>;
|
|
3304
3577
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
3305
3578
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -3505,6 +3778,27 @@ export declare const resolvePublicRunStepExceededContract: {
|
|
|
3505
3778
|
}, undefined>, undefined>;
|
|
3506
3779
|
}, undefined>, undefined>;
|
|
3507
3780
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3781
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
3782
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
3783
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
3784
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
3785
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3786
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3787
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
3788
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
3789
|
+
readonly path: v.StringSchema<undefined>;
|
|
3790
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3791
|
+
readonly reason: v.StringSchema<undefined>;
|
|
3792
|
+
}, undefined>, undefined>;
|
|
3793
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3794
|
+
}, undefined>, undefined>;
|
|
3795
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3796
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
3797
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
3798
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
3799
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
3800
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
3801
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3508
3802
|
}, undefined>, v.ObjectSchema<{
|
|
3509
3803
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
3510
3804
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -3559,7 +3853,7 @@ export declare const resolvePublicRunStepExceededContract: {
|
|
|
3559
3853
|
}, undefined>, undefined>;
|
|
3560
3854
|
}, undefined>], undefined>, undefined>;
|
|
3561
3855
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
3562
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
3856
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
3563
3857
|
readonly stepKind: v.StringSchema<undefined>;
|
|
3564
3858
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
3565
3859
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -3763,6 +4057,27 @@ export declare const resolvePublicRunAgentDecisionContract: {
|
|
|
3763
4057
|
}, undefined>, undefined>;
|
|
3764
4058
|
}, undefined>, undefined>;
|
|
3765
4059
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4060
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
4061
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
4062
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
4063
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
4064
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4065
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4066
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
4067
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
4068
|
+
readonly path: v.StringSchema<undefined>;
|
|
4069
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4070
|
+
readonly reason: v.StringSchema<undefined>;
|
|
4071
|
+
}, undefined>, undefined>;
|
|
4072
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4073
|
+
}, undefined>, undefined>;
|
|
4074
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4075
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
4076
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
4077
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
4078
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
4079
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
4080
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3766
4081
|
}, undefined>, v.ObjectSchema<{
|
|
3767
4082
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
3768
4083
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -3817,7 +4132,7 @@ export declare const resolvePublicRunAgentDecisionContract: {
|
|
|
3817
4132
|
}, undefined>, undefined>;
|
|
3818
4133
|
}, undefined>], undefined>, undefined>;
|
|
3819
4134
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
3820
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
4135
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
3821
4136
|
readonly stepKind: v.StringSchema<undefined>;
|
|
3822
4137
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
3823
4138
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -4018,6 +4333,27 @@ export declare const replyPublicRunClarityFindingContract: {
|
|
|
4018
4333
|
}, undefined>, undefined>;
|
|
4019
4334
|
}, undefined>, undefined>;
|
|
4020
4335
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4336
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
4337
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
4338
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
4339
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
4340
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4341
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4342
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
4343
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
4344
|
+
readonly path: v.StringSchema<undefined>;
|
|
4345
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4346
|
+
readonly reason: v.StringSchema<undefined>;
|
|
4347
|
+
}, undefined>, undefined>;
|
|
4348
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4349
|
+
}, undefined>, undefined>;
|
|
4350
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4351
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
4352
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
4353
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
4354
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
4355
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
4356
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4021
4357
|
}, undefined>, v.ObjectSchema<{
|
|
4022
4358
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
4023
4359
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -4072,7 +4408,7 @@ export declare const replyPublicRunClarityFindingContract: {
|
|
|
4072
4408
|
}, undefined>, undefined>;
|
|
4073
4409
|
}, undefined>], undefined>, undefined>;
|
|
4074
4410
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
4075
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
4411
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
4076
4412
|
readonly stepKind: v.StringSchema<undefined>;
|
|
4077
4413
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
4078
4414
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -4273,6 +4609,27 @@ export declare const setPublicRunClarityFindingStatusContract: {
|
|
|
4273
4609
|
}, undefined>, undefined>;
|
|
4274
4610
|
}, undefined>, undefined>;
|
|
4275
4611
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4612
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
4613
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
4614
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
4615
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
4616
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4617
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4618
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
4619
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
4620
|
+
readonly path: v.StringSchema<undefined>;
|
|
4621
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4622
|
+
readonly reason: v.StringSchema<undefined>;
|
|
4623
|
+
}, undefined>, undefined>;
|
|
4624
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4625
|
+
}, undefined>, undefined>;
|
|
4626
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4627
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
4628
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
4629
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
4630
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
4631
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
4632
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4276
4633
|
}, undefined>, v.ObjectSchema<{
|
|
4277
4634
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
4278
4635
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -4327,7 +4684,7 @@ export declare const setPublicRunClarityFindingStatusContract: {
|
|
|
4327
4684
|
}, undefined>, undefined>;
|
|
4328
4685
|
}, undefined>], undefined>, undefined>;
|
|
4329
4686
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
4330
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
4687
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
4331
4688
|
readonly stepKind: v.StringSchema<undefined>;
|
|
4332
4689
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
4333
4690
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -4526,6 +4883,27 @@ export declare const incorporatePublicRunClarityContract: {
|
|
|
4526
4883
|
}, undefined>, undefined>;
|
|
4527
4884
|
}, undefined>, undefined>;
|
|
4528
4885
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4886
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
4887
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
4888
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
4889
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
4890
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4891
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4892
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
4893
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
4894
|
+
readonly path: v.StringSchema<undefined>;
|
|
4895
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4896
|
+
readonly reason: v.StringSchema<undefined>;
|
|
4897
|
+
}, undefined>, undefined>;
|
|
4898
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4899
|
+
}, undefined>, undefined>;
|
|
4900
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4901
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
4902
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
4903
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
4904
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
4905
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
4906
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4529
4907
|
}, undefined>, v.ObjectSchema<{
|
|
4530
4908
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
4531
4909
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -4580,7 +4958,7 @@ export declare const incorporatePublicRunClarityContract: {
|
|
|
4580
4958
|
}, undefined>, undefined>;
|
|
4581
4959
|
}, undefined>], undefined>, undefined>;
|
|
4582
4960
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
4583
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
4961
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
4584
4962
|
readonly stepKind: v.StringSchema<undefined>;
|
|
4585
4963
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
4586
4964
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -4777,6 +5155,27 @@ export declare const reReviewPublicRunClarityContract: {
|
|
|
4777
5155
|
}, undefined>, undefined>;
|
|
4778
5156
|
}, undefined>, undefined>;
|
|
4779
5157
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
5158
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
5159
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
5160
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
5161
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
5162
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5163
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5164
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
5165
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
5166
|
+
readonly path: v.StringSchema<undefined>;
|
|
5167
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5168
|
+
readonly reason: v.StringSchema<undefined>;
|
|
5169
|
+
}, undefined>, undefined>;
|
|
5170
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5171
|
+
}, undefined>, undefined>;
|
|
5172
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
5173
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
5174
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
5175
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
5176
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
5177
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
5178
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
4780
5179
|
}, undefined>, v.ObjectSchema<{
|
|
4781
5180
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
4782
5181
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -4831,7 +5230,7 @@ export declare const reReviewPublicRunClarityContract: {
|
|
|
4831
5230
|
}, undefined>, undefined>;
|
|
4832
5231
|
}, undefined>], undefined>, undefined>;
|
|
4833
5232
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
4834
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
5233
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
4835
5234
|
readonly stepKind: v.StringSchema<undefined>;
|
|
4836
5235
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
4837
5236
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -5028,6 +5427,27 @@ export declare const proceedPublicRunClarityContract: {
|
|
|
5028
5427
|
}, undefined>, undefined>;
|
|
5029
5428
|
}, undefined>, undefined>;
|
|
5030
5429
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
5430
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
5431
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
5432
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
5433
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
5434
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5435
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5436
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
5437
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
5438
|
+
readonly path: v.StringSchema<undefined>;
|
|
5439
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5440
|
+
readonly reason: v.StringSchema<undefined>;
|
|
5441
|
+
}, undefined>, undefined>;
|
|
5442
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5443
|
+
}, undefined>, undefined>;
|
|
5444
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
5445
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
5446
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
5447
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
5448
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
5449
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
5450
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5031
5451
|
}, undefined>, v.ObjectSchema<{
|
|
5032
5452
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
5033
5453
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -5082,7 +5502,7 @@ export declare const proceedPublicRunClarityContract: {
|
|
|
5082
5502
|
}, undefined>, undefined>;
|
|
5083
5503
|
}, undefined>], undefined>, undefined>;
|
|
5084
5504
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
5085
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
5505
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
5086
5506
|
readonly stepKind: v.StringSchema<undefined>;
|
|
5087
5507
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
5088
5508
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -5281,6 +5701,27 @@ export declare const resolvePublicRunClarityExceededContract: {
|
|
|
5281
5701
|
}, undefined>, undefined>;
|
|
5282
5702
|
}, undefined>, undefined>;
|
|
5283
5703
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
5704
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
5705
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
5706
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
5707
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
5708
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5709
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5710
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
5711
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
5712
|
+
readonly path: v.StringSchema<undefined>;
|
|
5713
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5714
|
+
readonly reason: v.StringSchema<undefined>;
|
|
5715
|
+
}, undefined>, undefined>;
|
|
5716
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5717
|
+
}, undefined>, undefined>;
|
|
5718
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
5719
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
5720
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
5721
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
5722
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
5723
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
5724
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5284
5725
|
}, undefined>, v.ObjectSchema<{
|
|
5285
5726
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
5286
5727
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -5335,7 +5776,7 @@ export declare const resolvePublicRunClarityExceededContract: {
|
|
|
5335
5776
|
}, undefined>, undefined>;
|
|
5336
5777
|
}, undefined>], undefined>, undefined>;
|
|
5337
5778
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
5338
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
5779
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
5339
5780
|
readonly stepKind: v.StringSchema<undefined>;
|
|
5340
5781
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
5341
5782
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -5538,6 +5979,27 @@ export declare const replyPublicRunBrainstormOptionContract: {
|
|
|
5538
5979
|
}, undefined>, undefined>;
|
|
5539
5980
|
}, undefined>, undefined>;
|
|
5540
5981
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
5982
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
5983
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
5984
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
5985
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
5986
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5987
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5988
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
5989
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
5990
|
+
readonly path: v.StringSchema<undefined>;
|
|
5991
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5992
|
+
readonly reason: v.StringSchema<undefined>;
|
|
5993
|
+
}, undefined>, undefined>;
|
|
5994
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5995
|
+
}, undefined>, undefined>;
|
|
5996
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
5997
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
5998
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
5999
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
6000
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
6001
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
6002
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5541
6003
|
}, undefined>, v.ObjectSchema<{
|
|
5542
6004
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
5543
6005
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -5592,7 +6054,7 @@ export declare const replyPublicRunBrainstormOptionContract: {
|
|
|
5592
6054
|
}, undefined>, undefined>;
|
|
5593
6055
|
}, undefined>], undefined>, undefined>;
|
|
5594
6056
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
5595
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
6057
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
5596
6058
|
readonly stepKind: v.StringSchema<undefined>;
|
|
5597
6059
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
5598
6060
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -5795,6 +6257,27 @@ export declare const setPublicRunBrainstormOptionStatusContract: {
|
|
|
5795
6257
|
}, undefined>, undefined>;
|
|
5796
6258
|
}, undefined>, undefined>;
|
|
5797
6259
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
6260
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
6261
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
6262
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
6263
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
6264
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6265
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6266
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
6267
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
6268
|
+
readonly path: v.StringSchema<undefined>;
|
|
6269
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6270
|
+
readonly reason: v.StringSchema<undefined>;
|
|
6271
|
+
}, undefined>, undefined>;
|
|
6272
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6273
|
+
}, undefined>, undefined>;
|
|
6274
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
6275
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
6276
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
6277
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
6278
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
6279
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
6280
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5798
6281
|
}, undefined>, v.ObjectSchema<{
|
|
5799
6282
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
5800
6283
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -5849,7 +6332,7 @@ export declare const setPublicRunBrainstormOptionStatusContract: {
|
|
|
5849
6332
|
}, undefined>, undefined>;
|
|
5850
6333
|
}, undefined>], undefined>, undefined>;
|
|
5851
6334
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
5852
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
6335
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
5853
6336
|
readonly stepKind: v.StringSchema<undefined>;
|
|
5854
6337
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
5855
6338
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -6050,6 +6533,27 @@ export declare const incorporatePublicRunBrainstormContract: {
|
|
|
6050
6533
|
}, undefined>, undefined>;
|
|
6051
6534
|
}, undefined>, undefined>;
|
|
6052
6535
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
6536
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
6537
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
6538
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
6539
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
6540
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6541
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6542
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
6543
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
6544
|
+
readonly path: v.StringSchema<undefined>;
|
|
6545
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6546
|
+
readonly reason: v.StringSchema<undefined>;
|
|
6547
|
+
}, undefined>, undefined>;
|
|
6548
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6549
|
+
}, undefined>, undefined>;
|
|
6550
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
6551
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
6552
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
6553
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
6554
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
6555
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
6556
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6053
6557
|
}, undefined>, v.ObjectSchema<{
|
|
6054
6558
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
6055
6559
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -6104,7 +6608,7 @@ export declare const incorporatePublicRunBrainstormContract: {
|
|
|
6104
6608
|
}, undefined>, undefined>;
|
|
6105
6609
|
}, undefined>], undefined>, undefined>;
|
|
6106
6610
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
6107
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
6611
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
6108
6612
|
readonly stepKind: v.StringSchema<undefined>;
|
|
6109
6613
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
6110
6614
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -6303,6 +6807,27 @@ export declare const reReviewPublicRunBrainstormContract: {
|
|
|
6303
6807
|
}, undefined>, undefined>;
|
|
6304
6808
|
}, undefined>, undefined>;
|
|
6305
6809
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
6810
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
6811
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
6812
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
6813
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
6814
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6815
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6816
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
6817
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
6818
|
+
readonly path: v.StringSchema<undefined>;
|
|
6819
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6820
|
+
readonly reason: v.StringSchema<undefined>;
|
|
6821
|
+
}, undefined>, undefined>;
|
|
6822
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6823
|
+
}, undefined>, undefined>;
|
|
6824
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
6825
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
6826
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
6827
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
6828
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
6829
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
6830
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6306
6831
|
}, undefined>, v.ObjectSchema<{
|
|
6307
6832
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
6308
6833
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -6357,7 +6882,7 @@ export declare const reReviewPublicRunBrainstormContract: {
|
|
|
6357
6882
|
}, undefined>, undefined>;
|
|
6358
6883
|
}, undefined>], undefined>, undefined>;
|
|
6359
6884
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
6360
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
6885
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
6361
6886
|
readonly stepKind: v.StringSchema<undefined>;
|
|
6362
6887
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
6363
6888
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -6556,6 +7081,27 @@ export declare const proceedPublicRunBrainstormContract: {
|
|
|
6556
7081
|
}, undefined>, undefined>;
|
|
6557
7082
|
}, undefined>, undefined>;
|
|
6558
7083
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7084
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
7085
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
7086
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
7087
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
7088
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
7089
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7090
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
7091
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
7092
|
+
readonly path: v.StringSchema<undefined>;
|
|
7093
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7094
|
+
readonly reason: v.StringSchema<undefined>;
|
|
7095
|
+
}, undefined>, undefined>;
|
|
7096
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7097
|
+
}, undefined>, undefined>;
|
|
7098
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7099
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
7100
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
7101
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
7102
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
7103
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
7104
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6559
7105
|
}, undefined>, v.ObjectSchema<{
|
|
6560
7106
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
6561
7107
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -6610,7 +7156,7 @@ export declare const proceedPublicRunBrainstormContract: {
|
|
|
6610
7156
|
}, undefined>, undefined>;
|
|
6611
7157
|
}, undefined>], undefined>, undefined>;
|
|
6612
7158
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
6613
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
7159
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
6614
7160
|
readonly stepKind: v.StringSchema<undefined>;
|
|
6615
7161
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
6616
7162
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -6811,6 +7357,27 @@ export declare const resolvePublicRunBrainstormExceededContract: {
|
|
|
6811
7357
|
}, undefined>, undefined>;
|
|
6812
7358
|
}, undefined>, undefined>;
|
|
6813
7359
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7360
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
7361
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
7362
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
7363
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
7364
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
7365
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7366
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
7367
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
7368
|
+
readonly path: v.StringSchema<undefined>;
|
|
7369
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7370
|
+
readonly reason: v.StringSchema<undefined>;
|
|
7371
|
+
}, undefined>, undefined>;
|
|
7372
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7373
|
+
}, undefined>, undefined>;
|
|
7374
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7375
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
7376
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
7377
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
7378
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
7379
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
7380
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
6814
7381
|
}, undefined>, v.ObjectSchema<{
|
|
6815
7382
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
6816
7383
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -6865,7 +7432,7 @@ export declare const resolvePublicRunBrainstormExceededContract: {
|
|
|
6865
7432
|
}, undefined>, undefined>;
|
|
6866
7433
|
}, undefined>], undefined>, undefined>;
|
|
6867
7434
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
6868
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
7435
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
6869
7436
|
readonly stepKind: v.StringSchema<undefined>;
|
|
6870
7437
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
6871
7438
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -7070,6 +7637,313 @@ export declare const resolvePublicRunPrReviewContract: {
|
|
|
7070
7637
|
}, undefined>, undefined>;
|
|
7071
7638
|
}, undefined>, undefined>;
|
|
7072
7639
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7640
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
7641
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
7642
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
7643
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
7644
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
7645
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7646
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
7647
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
7648
|
+
readonly path: v.StringSchema<undefined>;
|
|
7649
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7650
|
+
readonly reason: v.StringSchema<undefined>;
|
|
7651
|
+
}, undefined>, undefined>;
|
|
7652
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7653
|
+
}, undefined>, undefined>;
|
|
7654
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7655
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
7656
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
7657
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
7658
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
7659
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
7660
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7661
|
+
}, undefined>, v.ObjectSchema<{
|
|
7662
|
+
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
7663
|
+
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
7664
|
+
readonly environment: v.NullableSchema<v.ObjectSchema<{
|
|
7665
|
+
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7666
|
+
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
7667
|
+
readonly expiresAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7668
|
+
}, undefined>, undefined>;
|
|
7669
|
+
readonly degradedReason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7670
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
7671
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
7672
|
+
}, undefined>, v.ObjectSchema<{
|
|
7673
|
+
readonly kind: v.LiteralSchema<"visual-confirmation", undefined>;
|
|
7674
|
+
readonly phase: v.PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
7675
|
+
readonly pairs: v.ArraySchema<v.ObjectSchema<{
|
|
7676
|
+
readonly view: v.StringSchema<undefined>;
|
|
7677
|
+
readonly actualArtifactId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7678
|
+
readonly referenceArtifactId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7679
|
+
}, undefined>, undefined>;
|
|
7680
|
+
readonly degradedReason: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7681
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
7682
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
7683
|
+
}, undefined>, v.ObjectSchema<{
|
|
7684
|
+
readonly kind: v.LiteralSchema<"follow-ups", undefined>;
|
|
7685
|
+
readonly stepKind: v.StringSchema<undefined>;
|
|
7686
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
7687
|
+
readonly items: v.ArraySchema<v.ObjectSchema<{
|
|
7688
|
+
readonly itemId: v.StringSchema<undefined>;
|
|
7689
|
+
readonly kind: v.PicklistSchema<["follow_up", "question"], undefined>;
|
|
7690
|
+
readonly title: v.StringSchema<undefined>;
|
|
7691
|
+
readonly detail: v.StringSchema<undefined>;
|
|
7692
|
+
readonly suggestedAction: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7693
|
+
readonly status: v.PicklistSchema<["pending", "filed", "queued", "answered", "closed", "dismissed"], undefined>;
|
|
7694
|
+
readonly answer: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7695
|
+
readonly sendBackDropped: v.BooleanSchema<undefined>;
|
|
7696
|
+
readonly ticketExternalId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7697
|
+
readonly ticketUrl: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7698
|
+
}, undefined>, undefined>;
|
|
7699
|
+
readonly loops: v.NumberSchema<undefined>;
|
|
7700
|
+
readonly maxLoops: v.NumberSchema<undefined>;
|
|
7701
|
+
}, undefined>, v.ObjectSchema<{
|
|
7702
|
+
readonly kind: v.LiteralSchema<"interview", undefined>;
|
|
7703
|
+
readonly stepKind: v.StringSchema<undefined>;
|
|
7704
|
+
readonly taskId: v.StringSchema<undefined>;
|
|
7705
|
+
readonly round: v.NumberSchema<undefined>;
|
|
7706
|
+
readonly maxRounds: v.NumberSchema<undefined>;
|
|
7707
|
+
readonly questions: v.ArraySchema<v.ObjectSchema<{
|
|
7708
|
+
readonly questionId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7709
|
+
readonly question: v.StringSchema<undefined>;
|
|
7710
|
+
readonly answer: v.StringSchema<undefined>;
|
|
7711
|
+
readonly status: v.PicklistSchema<["open", "answered", "dismissed"], undefined>;
|
|
7712
|
+
}, undefined>, undefined>;
|
|
7713
|
+
}, undefined>], undefined>, undefined>;
|
|
7714
|
+
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
7715
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
7716
|
+
readonly stepKind: v.StringSchema<undefined>;
|
|
7717
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
7718
|
+
readonly detail: v.StringSchema<undefined>;
|
|
7719
|
+
}, undefined>, undefined>;
|
|
7720
|
+
}, undefined>;
|
|
7721
|
+
};
|
|
7722
|
+
} & {
|
|
7723
|
+
readonly minScope: "decide";
|
|
7724
|
+
} & {
|
|
7725
|
+
readonly personalUnlock: true;
|
|
7726
|
+
};
|
|
7727
|
+
/**
|
|
7728
|
+
* Re-trigger a review stuck mid-`reviewing`, re-reviewing ONLY the slices that never reported and
|
|
7729
|
+
* re-aggregating from the ones that did.
|
|
7730
|
+
*
|
|
7731
|
+
* The reviewer fans its slices out across parallel subagents and only emits findings in a final
|
|
7732
|
+
* aggregation turn, so a review can sit with every slice finished and that turn wedged: the
|
|
7733
|
+
* progress guard is event-driven, the inactivity watchdog is fed by any transcript byte, and the
|
|
7734
|
+
* only backstop is a 60-minute kill that DISCARDS the finished slices. Without this a headless
|
|
7735
|
+
* caller's only exit is stopping the task, which throws the same work away.
|
|
7736
|
+
*
|
|
7737
|
+
* No body: which slices to redo is derived from the run's own captured per-slice reports, never
|
|
7738
|
+
* supplied by the caller, so the request cannot ask for work that contradicts what was observed.
|
|
7739
|
+
* 409 unless the review is still `reviewing`: a parked review has its own verbs, and
|
|
7740
|
+
* re-dispatching one would destroy findings a caller may be mid-curation on.
|
|
7741
|
+
*/
|
|
7742
|
+
export declare const resumePublicRunPrReviewContract: {
|
|
7743
|
+
readonly method: "post";
|
|
7744
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
7745
|
+
runId: v.StringSchema<undefined>;
|
|
7746
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
7747
|
+
readonly pathResolver: ({ runId }: {
|
|
7748
|
+
runId: string;
|
|
7749
|
+
}) => string;
|
|
7750
|
+
readonly requestBodySchema: typeof ContractNoBody;
|
|
7751
|
+
readonly responsesByStatusCode: {
|
|
7752
|
+
readonly '4xx': v.ObjectSchema<{
|
|
7753
|
+
readonly error: v.ObjectSchema<{
|
|
7754
|
+
readonly code: v.StringSchema<undefined>;
|
|
7755
|
+
readonly message: v.StringSchema<undefined>;
|
|
7756
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
7757
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
7758
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7759
|
+
readonly message: v.StringSchema<undefined>;
|
|
7760
|
+
}, undefined>, undefined>, undefined>;
|
|
7761
|
+
}, undefined>;
|
|
7762
|
+
}, undefined>;
|
|
7763
|
+
readonly '5xx': v.ObjectSchema<{
|
|
7764
|
+
readonly error: v.ObjectSchema<{
|
|
7765
|
+
readonly code: v.StringSchema<undefined>;
|
|
7766
|
+
readonly message: v.StringSchema<undefined>;
|
|
7767
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
7768
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
7769
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7770
|
+
readonly message: v.StringSchema<undefined>;
|
|
7771
|
+
}, undefined>, undefined>, undefined>;
|
|
7772
|
+
}, undefined>;
|
|
7773
|
+
}, undefined>;
|
|
7774
|
+
readonly 200: v.ObjectSchema<{
|
|
7775
|
+
readonly runId: v.StringSchema<undefined>;
|
|
7776
|
+
readonly taskId: v.StringSchema<undefined>;
|
|
7777
|
+
readonly status: v.PicklistSchema<["running", "blocked", "paused", "done", "failed"], undefined>;
|
|
7778
|
+
readonly parked: v.BooleanSchema<undefined>;
|
|
7779
|
+
readonly decisions: v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
7780
|
+
readonly kind: v.LiteralSchema<"requirements-review", undefined>;
|
|
7781
|
+
readonly reviewId: v.StringSchema<undefined>;
|
|
7782
|
+
readonly taskId: v.StringSchema<undefined>;
|
|
7783
|
+
readonly status: v.PicklistSchema<["ready", "incorporating", "reviewing", "merged", "exceeded", "incorporated"], undefined>;
|
|
7784
|
+
readonly iteration: v.NumberSchema<undefined>;
|
|
7785
|
+
readonly maxIterations: v.NumberSchema<undefined>;
|
|
7786
|
+
readonly findings: v.ArraySchema<v.ObjectSchema<{
|
|
7787
|
+
readonly itemId: v.StringSchema<undefined>;
|
|
7788
|
+
readonly category: v.PicklistSchema<["gap", "clarification", "assumption", "risk", "question"], undefined>;
|
|
7789
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high"], undefined>;
|
|
7790
|
+
readonly title: v.StringSchema<undefined>;
|
|
7791
|
+
readonly detail: v.StringSchema<undefined>;
|
|
7792
|
+
readonly status: v.PicklistSchema<["open", "answered", "resolved", "dismissed", "recommend_requested"], undefined>;
|
|
7793
|
+
readonly reply: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7794
|
+
}, undefined>, undefined>;
|
|
7795
|
+
readonly incorporatedRequirements: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7796
|
+
}, undefined>, v.ObjectSchema<{
|
|
7797
|
+
readonly kind: v.LiteralSchema<"fork", undefined>;
|
|
7798
|
+
readonly status: v.PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
7799
|
+
readonly seamSummary: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7800
|
+
readonly forks: v.ArraySchema<v.ObjectSchema<{
|
|
7801
|
+
readonly id: v.StringSchema<undefined>;
|
|
7802
|
+
readonly title: v.StringSchema<undefined>;
|
|
7803
|
+
readonly summary: v.StringSchema<undefined>;
|
|
7804
|
+
readonly approach: v.StringSchema<undefined>;
|
|
7805
|
+
readonly tradeoffs: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7806
|
+
readonly riskNotes: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7807
|
+
readonly recommended: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
7808
|
+
}, undefined>, undefined>;
|
|
7809
|
+
}, undefined>, v.ObjectSchema<{
|
|
7810
|
+
readonly kind: v.LiteralSchema<"judge", undefined>;
|
|
7811
|
+
readonly stepKind: v.StringSchema<undefined>;
|
|
7812
|
+
readonly status: v.PicklistSchema<["evaluating", "awaiting_decision", "bouncing", "passed", "failed", "skipped"], undefined>;
|
|
7813
|
+
readonly rubricId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7814
|
+
readonly rubricName: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7815
|
+
readonly threshold: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7816
|
+
readonly verdict: v.NullableSchema<v.ObjectSchema<{
|
|
7817
|
+
readonly score: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0>;
|
|
7818
|
+
readonly summary: v.SchemaWithFallback<v.StringSchema<undefined>, "">;
|
|
7819
|
+
readonly findings: v.OptionalSchema<v.SchemaWithFallback<v.ArraySchema<v.ObjectSchema<{
|
|
7820
|
+
readonly title: v.SchemaWithFallback<v.StringSchema<undefined>, "Untitled finding">;
|
|
7821
|
+
readonly detail: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7822
|
+
readonly severity: v.SchemaWithFallback<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, "medium">;
|
|
7823
|
+
readonly where: v.SchemaWithFallback<v.OptionalSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7824
|
+
}, undefined>, undefined>, readonly []>, readonly []>;
|
|
7825
|
+
}, undefined>, undefined>;
|
|
7826
|
+
readonly bounces: v.NumberSchema<undefined>;
|
|
7827
|
+
readonly maxBounces: v.NumberSchema<undefined>;
|
|
7828
|
+
}, undefined>, v.ObjectSchema<{
|
|
7829
|
+
readonly kind: v.LiteralSchema<"input-gate", undefined>;
|
|
7830
|
+
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
7831
|
+
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
7832
|
+
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
7833
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
7834
|
+
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
7835
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
7836
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
7837
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
7838
|
+
}, undefined>, undefined>;
|
|
7839
|
+
}, undefined>, undefined>;
|
|
7840
|
+
readonly checkedAt: v.NumberSchema<undefined>;
|
|
7841
|
+
}, undefined>, v.ObjectSchema<{
|
|
7842
|
+
readonly kind: v.LiteralSchema<"approval-gate", undefined>;
|
|
7843
|
+
readonly approvalId: v.StringSchema<undefined>;
|
|
7844
|
+
readonly stepKind: v.StringSchema<undefined>;
|
|
7845
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
7846
|
+
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
7847
|
+
readonly proposal: v.StringSchema<undefined>;
|
|
7848
|
+
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7849
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
7850
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
7851
|
+
readonly exceeded: v.BooleanSchema<undefined>;
|
|
7852
|
+
readonly blockingFindings: v.ArraySchema<v.ObjectSchema<{
|
|
7853
|
+
readonly body: v.StringSchema<undefined>;
|
|
7854
|
+
readonly anchorId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7855
|
+
}, undefined>, undefined>;
|
|
7856
|
+
}, undefined>, v.ObjectSchema<{
|
|
7857
|
+
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
7858
|
+
readonly decisionId: v.StringSchema<undefined>;
|
|
7859
|
+
readonly stepKind: v.StringSchema<undefined>;
|
|
7860
|
+
readonly question: v.StringSchema<undefined>;
|
|
7861
|
+
readonly options: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7862
|
+
}, undefined>, v.ObjectSchema<{
|
|
7863
|
+
readonly kind: v.LiteralSchema<"clarity-review", undefined>;
|
|
7864
|
+
readonly reviewId: v.StringSchema<undefined>;
|
|
7865
|
+
readonly taskId: v.StringSchema<undefined>;
|
|
7866
|
+
readonly status: v.PicklistSchema<["ready", "incorporating", "reviewing", "merged", "exceeded", "incorporated"], undefined>;
|
|
7867
|
+
readonly iteration: v.NumberSchema<undefined>;
|
|
7868
|
+
readonly maxIterations: v.NumberSchema<undefined>;
|
|
7869
|
+
readonly findings: v.ArraySchema<v.ObjectSchema<{
|
|
7870
|
+
readonly itemId: v.StringSchema<undefined>;
|
|
7871
|
+
readonly category: v.PicklistSchema<["gap", "clarification", "assumption", "risk", "question"], undefined>;
|
|
7872
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high"], undefined>;
|
|
7873
|
+
readonly title: v.StringSchema<undefined>;
|
|
7874
|
+
readonly detail: v.StringSchema<undefined>;
|
|
7875
|
+
readonly status: v.PicklistSchema<["open", "answered", "resolved", "dismissed", "recommend_requested"], undefined>;
|
|
7876
|
+
readonly reply: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7877
|
+
}, undefined>, undefined>;
|
|
7878
|
+
readonly clarifiedReport: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7879
|
+
}, undefined>, v.ObjectSchema<{
|
|
7880
|
+
readonly kind: v.LiteralSchema<"brainstorm", undefined>;
|
|
7881
|
+
readonly sessionId: v.StringSchema<undefined>;
|
|
7882
|
+
readonly stage: v.PicklistSchema<["requirements", "architecture"], undefined>;
|
|
7883
|
+
readonly taskId: v.StringSchema<undefined>;
|
|
7884
|
+
readonly status: v.PicklistSchema<["ready", "incorporating", "reviewing", "merged", "exceeded", "incorporated"], undefined>;
|
|
7885
|
+
readonly iteration: v.NumberSchema<undefined>;
|
|
7886
|
+
readonly maxIterations: v.NumberSchema<undefined>;
|
|
7887
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
7888
|
+
readonly itemId: v.StringSchema<undefined>;
|
|
7889
|
+
readonly category: v.PicklistSchema<["gap", "clarification", "assumption", "risk", "question"], undefined>;
|
|
7890
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high"], undefined>;
|
|
7891
|
+
readonly title: v.StringSchema<undefined>;
|
|
7892
|
+
readonly detail: v.StringSchema<undefined>;
|
|
7893
|
+
readonly status: v.PicklistSchema<["open", "answered", "resolved", "dismissed", "recommend_requested"], undefined>;
|
|
7894
|
+
readonly reply: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7895
|
+
}, undefined>, undefined>;
|
|
7896
|
+
readonly convergedDirection: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7897
|
+
}, undefined>, v.ObjectSchema<{
|
|
7898
|
+
readonly kind: v.LiteralSchema<"pr-review", undefined>;
|
|
7899
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
7900
|
+
readonly summary: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7901
|
+
readonly prUrl: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7902
|
+
readonly slices: v.ArraySchema<v.ObjectSchema<{
|
|
7903
|
+
readonly sliceId: v.StringSchema<undefined>;
|
|
7904
|
+
readonly title: v.StringSchema<undefined>;
|
|
7905
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
7906
|
+
readonly paths: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7907
|
+
}, undefined>, undefined>;
|
|
7908
|
+
readonly findings: v.ArraySchema<v.ObjectSchema<{
|
|
7909
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
7910
|
+
readonly sliceId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7911
|
+
readonly path: v.StringSchema<undefined>;
|
|
7912
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7913
|
+
readonly side: v.NullableSchema<v.PicklistSchema<["LEFT", "RIGHT"], undefined>, undefined>;
|
|
7914
|
+
readonly severity: v.PicklistSchema<["blocker", "high", "medium", "low", "nit"], undefined>;
|
|
7915
|
+
readonly category: v.PicklistSchema<["correctness", "security", "performance", "maintainability", "style", "test", "other"], undefined>;
|
|
7916
|
+
readonly title: v.StringSchema<undefined>;
|
|
7917
|
+
readonly detail: v.StringSchema<undefined>;
|
|
7918
|
+
readonly suggestedFix: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7919
|
+
readonly challenge: v.NullableSchema<v.ObjectSchema<{
|
|
7920
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
7921
|
+
readonly question: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7922
|
+
readonly justification: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7923
|
+
}, undefined>, undefined>;
|
|
7924
|
+
}, undefined>, undefined>;
|
|
7925
|
+
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7926
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
7927
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
7928
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
7929
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
7930
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
7931
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7932
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
7933
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
7934
|
+
readonly path: v.StringSchema<undefined>;
|
|
7935
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7936
|
+
readonly reason: v.StringSchema<undefined>;
|
|
7937
|
+
}, undefined>, undefined>;
|
|
7938
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7939
|
+
}, undefined>, undefined>;
|
|
7940
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
7941
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
7942
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
7943
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
7944
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
7945
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
7946
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7073
7947
|
}, undefined>, v.ObjectSchema<{
|
|
7074
7948
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
7075
7949
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -7124,7 +7998,7 @@ export declare const resolvePublicRunPrReviewContract: {
|
|
|
7124
7998
|
}, undefined>, undefined>;
|
|
7125
7999
|
}, undefined>], undefined>, undefined>;
|
|
7126
8000
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
7127
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
8001
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
7128
8002
|
readonly stepKind: v.StringSchema<undefined>;
|
|
7129
8003
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
7130
8004
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -7323,6 +8197,27 @@ export declare const dismissPublicRunPrReviewFindingContract: {
|
|
|
7323
8197
|
}, undefined>, undefined>;
|
|
7324
8198
|
}, undefined>, undefined>;
|
|
7325
8199
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
8200
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
8201
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
8202
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
8203
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
8204
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8205
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
8206
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
8207
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
8208
|
+
readonly path: v.StringSchema<undefined>;
|
|
8209
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8210
|
+
readonly reason: v.StringSchema<undefined>;
|
|
8211
|
+
}, undefined>, undefined>;
|
|
8212
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8213
|
+
}, undefined>, undefined>;
|
|
8214
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
8215
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
8216
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
8217
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
8218
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
8219
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
8220
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7326
8221
|
}, undefined>, v.ObjectSchema<{
|
|
7327
8222
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
7328
8223
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -7377,7 +8272,7 @@ export declare const dismissPublicRunPrReviewFindingContract: {
|
|
|
7377
8272
|
}, undefined>, undefined>;
|
|
7378
8273
|
}, undefined>], undefined>, undefined>;
|
|
7379
8274
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
7380
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
8275
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
7381
8276
|
readonly stepKind: v.StringSchema<undefined>;
|
|
7382
8277
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
7383
8278
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -7578,6 +8473,27 @@ export declare const challengePublicRunPrReviewFindingContract: {
|
|
|
7578
8473
|
}, undefined>, undefined>;
|
|
7579
8474
|
}, undefined>, undefined>;
|
|
7580
8475
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
8476
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
8477
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
8478
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
8479
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
8480
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8481
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
8482
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
8483
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
8484
|
+
readonly path: v.StringSchema<undefined>;
|
|
8485
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8486
|
+
readonly reason: v.StringSchema<undefined>;
|
|
8487
|
+
}, undefined>, undefined>;
|
|
8488
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8489
|
+
}, undefined>, undefined>;
|
|
8490
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
8491
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
8492
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
8493
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
8494
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
8495
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
8496
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7581
8497
|
}, undefined>, v.ObjectSchema<{
|
|
7582
8498
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
7583
8499
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -7632,7 +8548,7 @@ export declare const challengePublicRunPrReviewFindingContract: {
|
|
|
7632
8548
|
}, undefined>, undefined>;
|
|
7633
8549
|
}, undefined>], undefined>, undefined>;
|
|
7634
8550
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
7635
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
8551
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
7636
8552
|
readonly stepKind: v.StringSchema<undefined>;
|
|
7637
8553
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
7638
8554
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -7829,6 +8745,27 @@ export declare const confirmPublicRunHumanTestContract: {
|
|
|
7829
8745
|
}, undefined>, undefined>;
|
|
7830
8746
|
}, undefined>, undefined>;
|
|
7831
8747
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
8748
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
8749
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
8750
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
8751
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
8752
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8753
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
8754
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
8755
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
8756
|
+
readonly path: v.StringSchema<undefined>;
|
|
8757
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8758
|
+
readonly reason: v.StringSchema<undefined>;
|
|
8759
|
+
}, undefined>, undefined>;
|
|
8760
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8761
|
+
}, undefined>, undefined>;
|
|
8762
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
8763
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
8764
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
8765
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
8766
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
8767
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
8768
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
7832
8769
|
}, undefined>, v.ObjectSchema<{
|
|
7833
8770
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
7834
8771
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -7883,7 +8820,7 @@ export declare const confirmPublicRunHumanTestContract: {
|
|
|
7883
8820
|
}, undefined>, undefined>;
|
|
7884
8821
|
}, undefined>], undefined>, undefined>;
|
|
7885
8822
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
7886
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
8823
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
7887
8824
|
readonly stepKind: v.StringSchema<undefined>;
|
|
7888
8825
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
7889
8826
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -8082,6 +9019,27 @@ export declare const requestPublicRunHumanTestFixContract: {
|
|
|
8082
9019
|
}, undefined>, undefined>;
|
|
8083
9020
|
}, undefined>, undefined>;
|
|
8084
9021
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
9022
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
9023
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
9024
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
9025
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
9026
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9027
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
9028
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
9029
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
9030
|
+
readonly path: v.StringSchema<undefined>;
|
|
9031
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9032
|
+
readonly reason: v.StringSchema<undefined>;
|
|
9033
|
+
}, undefined>, undefined>;
|
|
9034
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9035
|
+
}, undefined>, undefined>;
|
|
9036
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
9037
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
9038
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
9039
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
9040
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
9041
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
9042
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8085
9043
|
}, undefined>, v.ObjectSchema<{
|
|
8086
9044
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
8087
9045
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -8136,7 +9094,7 @@ export declare const requestPublicRunHumanTestFixContract: {
|
|
|
8136
9094
|
}, undefined>, undefined>;
|
|
8137
9095
|
}, undefined>], undefined>, undefined>;
|
|
8138
9096
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
8139
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
9097
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
8140
9098
|
readonly stepKind: v.StringSchema<undefined>;
|
|
8141
9099
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
8142
9100
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -8333,6 +9291,27 @@ export declare const approvePublicRunVisualConfirmContract: {
|
|
|
8333
9291
|
}, undefined>, undefined>;
|
|
8334
9292
|
}, undefined>, undefined>;
|
|
8335
9293
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
9294
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
9295
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
9296
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
9297
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
9298
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9299
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
9300
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
9301
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
9302
|
+
readonly path: v.StringSchema<undefined>;
|
|
9303
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9304
|
+
readonly reason: v.StringSchema<undefined>;
|
|
9305
|
+
}, undefined>, undefined>;
|
|
9306
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9307
|
+
}, undefined>, undefined>;
|
|
9308
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
9309
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
9310
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
9311
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
9312
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
9313
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
9314
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8336
9315
|
}, undefined>, v.ObjectSchema<{
|
|
8337
9316
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
8338
9317
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -8387,7 +9366,7 @@ export declare const approvePublicRunVisualConfirmContract: {
|
|
|
8387
9366
|
}, undefined>, undefined>;
|
|
8388
9367
|
}, undefined>], undefined>, undefined>;
|
|
8389
9368
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
8390
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
9369
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
8391
9370
|
readonly stepKind: v.StringSchema<undefined>;
|
|
8392
9371
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
8393
9372
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -8586,6 +9565,27 @@ export declare const requestPublicRunVisualConfirmFixContract: {
|
|
|
8586
9565
|
}, undefined>, undefined>;
|
|
8587
9566
|
}, undefined>, undefined>;
|
|
8588
9567
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
9568
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
9569
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
9570
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
9571
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
9572
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9573
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
9574
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
9575
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
9576
|
+
readonly path: v.StringSchema<undefined>;
|
|
9577
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9578
|
+
readonly reason: v.StringSchema<undefined>;
|
|
9579
|
+
}, undefined>, undefined>;
|
|
9580
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9581
|
+
}, undefined>, undefined>;
|
|
9582
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
9583
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
9584
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
9585
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
9586
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
9587
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
9588
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8589
9589
|
}, undefined>, v.ObjectSchema<{
|
|
8590
9590
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
8591
9591
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -8640,7 +9640,7 @@ export declare const requestPublicRunVisualConfirmFixContract: {
|
|
|
8640
9640
|
}, undefined>, undefined>;
|
|
8641
9641
|
}, undefined>], undefined>, undefined>;
|
|
8642
9642
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
8643
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
9643
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
8644
9644
|
readonly stepKind: v.StringSchema<undefined>;
|
|
8645
9645
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
8646
9646
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -8839,6 +9839,27 @@ export declare const filePublicRunFollowUpContract: {
|
|
|
8839
9839
|
}, undefined>, undefined>;
|
|
8840
9840
|
}, undefined>, undefined>;
|
|
8841
9841
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
9842
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
9843
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
9844
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
9845
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
9846
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9847
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
9848
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
9849
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
9850
|
+
readonly path: v.StringSchema<undefined>;
|
|
9851
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9852
|
+
readonly reason: v.StringSchema<undefined>;
|
|
9853
|
+
}, undefined>, undefined>;
|
|
9854
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9855
|
+
}, undefined>, undefined>;
|
|
9856
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
9857
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
9858
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
9859
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
9860
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
9861
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
9862
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
8842
9863
|
}, undefined>, v.ObjectSchema<{
|
|
8843
9864
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
8844
9865
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -8893,7 +9914,7 @@ export declare const filePublicRunFollowUpContract: {
|
|
|
8893
9914
|
}, undefined>, undefined>;
|
|
8894
9915
|
}, undefined>], undefined>, undefined>;
|
|
8895
9916
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
8896
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
9917
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
8897
9918
|
readonly stepKind: v.StringSchema<undefined>;
|
|
8898
9919
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
8899
9920
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -9092,6 +10113,27 @@ export declare const sendBackPublicRunFollowUpContract: {
|
|
|
9092
10113
|
}, undefined>, undefined>;
|
|
9093
10114
|
}, undefined>, undefined>;
|
|
9094
10115
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
10116
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
10117
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
10118
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
10119
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
10120
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10121
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
10122
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
10123
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
10124
|
+
readonly path: v.StringSchema<undefined>;
|
|
10125
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10126
|
+
readonly reason: v.StringSchema<undefined>;
|
|
10127
|
+
}, undefined>, undefined>;
|
|
10128
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10129
|
+
}, undefined>, undefined>;
|
|
10130
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
10131
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
10132
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
10133
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
10134
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
10135
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
10136
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9095
10137
|
}, undefined>, v.ObjectSchema<{
|
|
9096
10138
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
9097
10139
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -9146,7 +10188,7 @@ export declare const sendBackPublicRunFollowUpContract: {
|
|
|
9146
10188
|
}, undefined>, undefined>;
|
|
9147
10189
|
}, undefined>], undefined>, undefined>;
|
|
9148
10190
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
9149
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
10191
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
9150
10192
|
readonly stepKind: v.StringSchema<undefined>;
|
|
9151
10193
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
9152
10194
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -9348,6 +10390,27 @@ export declare const answerPublicRunFollowUpContract: {
|
|
|
9348
10390
|
}, undefined>, undefined>;
|
|
9349
10391
|
}, undefined>, undefined>;
|
|
9350
10392
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
10393
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
10394
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
10395
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
10396
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
10397
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10398
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
10399
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
10400
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
10401
|
+
readonly path: v.StringSchema<undefined>;
|
|
10402
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10403
|
+
readonly reason: v.StringSchema<undefined>;
|
|
10404
|
+
}, undefined>, undefined>;
|
|
10405
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10406
|
+
}, undefined>, undefined>;
|
|
10407
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
10408
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
10409
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
10410
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
10411
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
10412
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
10413
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9351
10414
|
}, undefined>, v.ObjectSchema<{
|
|
9352
10415
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
9353
10416
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -9402,7 +10465,7 @@ export declare const answerPublicRunFollowUpContract: {
|
|
|
9402
10465
|
}, undefined>, undefined>;
|
|
9403
10466
|
}, undefined>], undefined>, undefined>;
|
|
9404
10467
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
9405
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
10468
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
9406
10469
|
readonly stepKind: v.StringSchema<undefined>;
|
|
9407
10470
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
9408
10471
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -9601,6 +10664,27 @@ export declare const dismissPublicRunFollowUpContract: {
|
|
|
9601
10664
|
}, undefined>, undefined>;
|
|
9602
10665
|
}, undefined>, undefined>;
|
|
9603
10666
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
10667
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
10668
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
10669
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
10670
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
10671
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10672
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
10673
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
10674
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
10675
|
+
readonly path: v.StringSchema<undefined>;
|
|
10676
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10677
|
+
readonly reason: v.StringSchema<undefined>;
|
|
10678
|
+
}, undefined>, undefined>;
|
|
10679
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10680
|
+
}, undefined>, undefined>;
|
|
10681
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
10682
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
10683
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
10684
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
10685
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
10686
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
10687
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9604
10688
|
}, undefined>, v.ObjectSchema<{
|
|
9605
10689
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
9606
10690
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -9655,7 +10739,7 @@ export declare const dismissPublicRunFollowUpContract: {
|
|
|
9655
10739
|
}, undefined>, undefined>;
|
|
9656
10740
|
}, undefined>], undefined>, undefined>;
|
|
9657
10741
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
9658
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
10742
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
9659
10743
|
readonly stepKind: v.StringSchema<undefined>;
|
|
9660
10744
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
9661
10745
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -9855,6 +10939,27 @@ export declare const answerPublicRunInterviewContract: {
|
|
|
9855
10939
|
}, undefined>, undefined>;
|
|
9856
10940
|
}, undefined>, undefined>;
|
|
9857
10941
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
10942
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
10943
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
10944
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
10945
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
10946
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10947
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
10948
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
10949
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
10950
|
+
readonly path: v.StringSchema<undefined>;
|
|
10951
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10952
|
+
readonly reason: v.StringSchema<undefined>;
|
|
10953
|
+
}, undefined>, undefined>;
|
|
10954
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10955
|
+
}, undefined>, undefined>;
|
|
10956
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
10957
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
10958
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
10959
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
10960
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
10961
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
10962
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
9858
10963
|
}, undefined>, v.ObjectSchema<{
|
|
9859
10964
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
9860
10965
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -9909,7 +11014,7 @@ export declare const answerPublicRunInterviewContract: {
|
|
|
9909
11014
|
}, undefined>, undefined>;
|
|
9910
11015
|
}, undefined>], undefined>, undefined>;
|
|
9911
11016
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
9912
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
11017
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
9913
11018
|
readonly stepKind: v.StringSchema<undefined>;
|
|
9914
11019
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
9915
11020
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -10110,6 +11215,27 @@ export declare const continuePublicRunInterviewContract: {
|
|
|
10110
11215
|
}, undefined>, undefined>;
|
|
10111
11216
|
}, undefined>, undefined>;
|
|
10112
11217
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
11218
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
11219
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
11220
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
11221
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
11222
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11223
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
11224
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
11225
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
11226
|
+
readonly path: v.StringSchema<undefined>;
|
|
11227
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
11228
|
+
readonly reason: v.StringSchema<undefined>;
|
|
11229
|
+
}, undefined>, undefined>;
|
|
11230
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
11231
|
+
}, undefined>, undefined>;
|
|
11232
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
11233
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
11234
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
11235
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
11236
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
11237
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
11238
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10113
11239
|
}, undefined>, v.ObjectSchema<{
|
|
10114
11240
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
10115
11241
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -10164,7 +11290,7 @@ export declare const continuePublicRunInterviewContract: {
|
|
|
10164
11290
|
}, undefined>, undefined>;
|
|
10165
11291
|
}, undefined>], undefined>, undefined>;
|
|
10166
11292
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
10167
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
11293
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
10168
11294
|
readonly stepKind: v.StringSchema<undefined>;
|
|
10169
11295
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
10170
11296
|
readonly detail: v.StringSchema<undefined>;
|
|
@@ -10361,6 +11487,27 @@ export declare const proceedPublicRunInterviewContract: {
|
|
|
10361
11487
|
}, undefined>, undefined>;
|
|
10362
11488
|
}, undefined>, undefined>;
|
|
10363
11489
|
readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
11490
|
+
readonly postReport: v.NullableSchema<v.ObjectSchema<{
|
|
11491
|
+
readonly attempted: v.NumberSchema<undefined>;
|
|
11492
|
+
readonly posted: v.NumberSchema<undefined>;
|
|
11493
|
+
readonly folded: v.NumberSchema<undefined>;
|
|
11494
|
+
readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11495
|
+
readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
11496
|
+
readonly failures: v.ArraySchema<v.ObjectSchema<{
|
|
11497
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
11498
|
+
readonly path: v.StringSchema<undefined>;
|
|
11499
|
+
readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
11500
|
+
readonly reason: v.StringSchema<undefined>;
|
|
11501
|
+
}, undefined>, undefined>;
|
|
11502
|
+
readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
11503
|
+
}, undefined>, undefined>;
|
|
11504
|
+
readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
11505
|
+
readonly postedBody: v.BooleanSchema<undefined>;
|
|
11506
|
+
readonly postAttempts: v.NumberSchema<undefined>;
|
|
11507
|
+
readonly resumeAttempts: v.NumberSchema<undefined>;
|
|
11508
|
+
readonly maxResumeAttempts: v.NumberSchema<undefined>;
|
|
11509
|
+
readonly reportedSlices: v.NumberSchema<undefined>;
|
|
11510
|
+
readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
10364
11511
|
}, undefined>, v.ObjectSchema<{
|
|
10365
11512
|
readonly kind: v.LiteralSchema<"human-test", undefined>;
|
|
10366
11513
|
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
@@ -10415,7 +11562,7 @@ export declare const proceedPublicRunInterviewContract: {
|
|
|
10415
11562
|
}, undefined>, undefined>;
|
|
10416
11563
|
}, undefined>], undefined>, undefined>;
|
|
10417
11564
|
readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
|
|
10418
|
-
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
|
|
11565
|
+
readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
|
|
10419
11566
|
readonly stepKind: v.StringSchema<undefined>;
|
|
10420
11567
|
readonly stepIndex: v.NumberSchema<undefined>;
|
|
10421
11568
|
readonly detail: v.StringSchema<undefined>;
|