@cat-factory/contracts 0.239.0 → 0.241.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/agent-presentation.d.ts +16 -0
- package/dist/agent-presentation.d.ts.map +1 -1
- package/dist/agent-presentation.js +16 -0
- package/dist/agent-presentation.js.map +1 -1
- package/dist/debug-api.d.ts +1 -1
- package/dist/entities.d.ts +32 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +10 -0
- package/dist/entities.js.map +1 -1
- package/dist/environments.d.ts +26 -0
- package/dist/environments.d.ts.map +1 -1
- package/dist/environments.js +30 -0
- package/dist/environments.js.map +1 -1
- package/dist/execution.d.ts +172 -1
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +49 -1
- package/dist/execution.js.map +1 -1
- package/dist/form-fields.d.ts +44 -0
- package/dist/form-fields.d.ts.map +1 -1
- package/dist/form-fields.js +46 -0
- package/dist/form-fields.js.map +1 -1
- package/dist/gate-approval.d.ts +66 -0
- package/dist/gate-approval.d.ts.map +1 -0
- package/dist/gate-approval.js +67 -0
- package/dist/gate-approval.js.map +1 -0
- package/dist/gate-config.d.ts +134 -0
- package/dist/gate-config.d.ts.map +1 -0
- package/dist/gate-config.js +134 -0
- package/dist/gate-config.js.map +1 -0
- package/dist/gate.d.ts +10 -0
- package/dist/gate.d.ts.map +1 -1
- package/dist/gate.js +11 -0
- package/dist/gate.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/initiative-preset.d.ts +4 -0
- package/dist/initiative-preset.d.ts.map +1 -1
- package/dist/input-gate.d.ts +38 -5
- package/dist/input-gate.d.ts.map +1 -1
- package/dist/input-gate.js +27 -1
- package/dist/input-gate.js.map +1 -1
- package/dist/pr-report.d.ts +39 -3
- package/dist/pr-report.d.ts.map +1 -1
- package/dist/pr-report.js +20 -2
- package/dist/pr-report.js.map +1 -1
- package/dist/provisioning-logs.d.ts +13 -5
- package/dist/provisioning-logs.d.ts.map +1 -1
- package/dist/provisioning-logs.js +11 -2
- package/dist/provisioning-logs.js.map +1 -1
- package/dist/public-decisions.d.ts +72 -3
- package/dist/public-decisions.d.ts.map +1 -1
- package/dist/public-decisions.js +19 -0
- package/dist/public-decisions.js.map +1 -1
- package/dist/requests.d.ts +37 -4
- package/dist/requests.d.ts.map +1 -1
- package/dist/requests.js +12 -0
- package/dist/requests.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +62 -2
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/board.d.ts +21 -4
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +62 -2
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/debug-api.d.ts +1 -1
- package/dist/routes/execution.d.ts +248 -8
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +31 -1
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +155 -5
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/input-gate.d.ts +5 -1
- package/dist/routes/input-gate.d.ts.map +1 -1
- package/dist/routes/pipelines.d.ts +64 -0
- package/dist/routes/pipelines.d.ts.map +1 -1
- package/dist/routes/provisioning-logs.d.ts +1 -1
- package/dist/routes/public-decisions.d.ts +238 -34
- package/dist/routes/public-decisions.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +93 -3
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +138 -2
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +78 -1
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/snapshot.js +11 -0
- package/dist/snapshot.js.map +1 -1
- package/dist/step-decisions.d.ts +27 -0
- package/dist/step-decisions.d.ts.map +1 -1
- package/dist/step-decisions.js +24 -2
- package/dist/step-decisions.js.map +1 -1
- package/dist/task-types.d.ts +4 -0
- package/dist/task-types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -91,8 +91,12 @@ export declare const listPublicRunDecisionsContract: {
|
|
|
91
91
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
92
92
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
93
93
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
94
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
94
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
95
95
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
96
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
97
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
98
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
99
|
+
}, undefined>, undefined>;
|
|
96
100
|
}, undefined>, undefined>;
|
|
97
101
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
98
102
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -103,6 +107,8 @@ export declare const listPublicRunDecisionsContract: {
|
|
|
103
107
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
104
108
|
readonly proposal: v.StringSchema<undefined>;
|
|
105
109
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
110
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
111
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
106
112
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
107
113
|
}, undefined>, v.ObjectSchema<{
|
|
108
114
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -296,8 +302,12 @@ export declare const replyPublicRunFindingContract: {
|
|
|
296
302
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
297
303
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
298
304
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
299
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
305
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
300
306
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
307
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
308
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
309
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
310
|
+
}, undefined>, undefined>;
|
|
301
311
|
}, undefined>, undefined>;
|
|
302
312
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
303
313
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -308,6 +318,8 @@ export declare const replyPublicRunFindingContract: {
|
|
|
308
318
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
309
319
|
readonly proposal: v.StringSchema<undefined>;
|
|
310
320
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
321
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
322
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
311
323
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
312
324
|
}, undefined>, v.ObjectSchema<{
|
|
313
325
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -501,8 +513,12 @@ export declare const setPublicRunFindingStatusContract: {
|
|
|
501
513
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
502
514
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
503
515
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
504
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
516
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
505
517
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
518
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
519
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
520
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
521
|
+
}, undefined>, undefined>;
|
|
506
522
|
}, undefined>, undefined>;
|
|
507
523
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
508
524
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -513,6 +529,8 @@ export declare const setPublicRunFindingStatusContract: {
|
|
|
513
529
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
514
530
|
readonly proposal: v.StringSchema<undefined>;
|
|
515
531
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
532
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
533
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
516
534
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
517
535
|
}, undefined>, v.ObjectSchema<{
|
|
518
536
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -708,8 +726,12 @@ export declare const incorporatePublicRunRequirementsContract: {
|
|
|
708
726
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
709
727
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
710
728
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
711
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
729
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
712
730
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
731
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
732
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
733
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
734
|
+
}, undefined>, undefined>;
|
|
713
735
|
}, undefined>, undefined>;
|
|
714
736
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
715
737
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -720,6 +742,8 @@ export declare const incorporatePublicRunRequirementsContract: {
|
|
|
720
742
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
721
743
|
readonly proposal: v.StringSchema<undefined>;
|
|
722
744
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
745
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
746
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
723
747
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
724
748
|
}, undefined>, v.ObjectSchema<{
|
|
725
749
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -909,8 +933,12 @@ export declare const reReviewPublicRunRequirementsContract: {
|
|
|
909
933
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
910
934
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
911
935
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
912
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
936
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
913
937
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
938
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
939
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
940
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
941
|
+
}, undefined>, undefined>;
|
|
914
942
|
}, undefined>, undefined>;
|
|
915
943
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
916
944
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -921,6 +949,8 @@ export declare const reReviewPublicRunRequirementsContract: {
|
|
|
921
949
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
922
950
|
readonly proposal: v.StringSchema<undefined>;
|
|
923
951
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
952
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
953
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
924
954
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
925
955
|
}, undefined>, v.ObjectSchema<{
|
|
926
956
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -1110,8 +1140,12 @@ export declare const proceedPublicRunRequirementsContract: {
|
|
|
1110
1140
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1111
1141
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1112
1142
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
1113
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
1143
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1114
1144
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1145
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1146
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1147
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1148
|
+
}, undefined>, undefined>;
|
|
1115
1149
|
}, undefined>, undefined>;
|
|
1116
1150
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1117
1151
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1122,6 +1156,8 @@ export declare const proceedPublicRunRequirementsContract: {
|
|
|
1122
1156
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
1123
1157
|
readonly proposal: v.StringSchema<undefined>;
|
|
1124
1158
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1159
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
1160
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
1125
1161
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
1126
1162
|
}, undefined>, v.ObjectSchema<{
|
|
1127
1163
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -1313,8 +1349,12 @@ export declare const resolvePublicRunRequirementsExceededContract: {
|
|
|
1313
1349
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1314
1350
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1315
1351
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
1316
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
1352
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1317
1353
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1354
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1355
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1356
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1357
|
+
}, undefined>, undefined>;
|
|
1318
1358
|
}, undefined>, undefined>;
|
|
1319
1359
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1320
1360
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1325,6 +1365,8 @@ export declare const resolvePublicRunRequirementsExceededContract: {
|
|
|
1325
1365
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
1326
1366
|
readonly proposal: v.StringSchema<undefined>;
|
|
1327
1367
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1368
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
1369
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
1328
1370
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
1329
1371
|
}, undefined>, v.ObjectSchema<{
|
|
1330
1372
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -1522,8 +1564,12 @@ export declare const choosePublicRunForkContract: {
|
|
|
1522
1564
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1523
1565
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1524
1566
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
1525
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
1567
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1526
1568
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1569
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1570
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1571
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1572
|
+
}, undefined>, undefined>;
|
|
1527
1573
|
}, undefined>, undefined>;
|
|
1528
1574
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1529
1575
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1534,6 +1580,8 @@ export declare const choosePublicRunForkContract: {
|
|
|
1534
1580
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
1535
1581
|
readonly proposal: v.StringSchema<undefined>;
|
|
1536
1582
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1583
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
1584
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
1537
1585
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
1538
1586
|
}, undefined>, v.ObjectSchema<{
|
|
1539
1587
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -1726,8 +1774,12 @@ export declare const resolvePublicRunJudgeContract: {
|
|
|
1726
1774
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1727
1775
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1728
1776
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
1729
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
1777
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1730
1778
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1779
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1780
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1781
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1782
|
+
}, undefined>, undefined>;
|
|
1731
1783
|
}, undefined>, undefined>;
|
|
1732
1784
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1733
1785
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1738,6 +1790,8 @@ export declare const resolvePublicRunJudgeContract: {
|
|
|
1738
1790
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
1739
1791
|
readonly proposal: v.StringSchema<undefined>;
|
|
1740
1792
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1793
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
1794
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
1741
1795
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
1742
1796
|
}, undefined>, v.ObjectSchema<{
|
|
1743
1797
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -1939,8 +1993,12 @@ export declare const resolvePublicRunInputGateContract: {
|
|
|
1939
1993
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1940
1994
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1941
1995
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
1942
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
1996
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1943
1997
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1998
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1999
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2000
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2001
|
+
}, undefined>, undefined>;
|
|
1944
2002
|
}, undefined>, undefined>;
|
|
1945
2003
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1946
2004
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1951,6 +2009,8 @@ export declare const resolvePublicRunInputGateContract: {
|
|
|
1951
2009
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
1952
2010
|
readonly proposal: v.StringSchema<undefined>;
|
|
1953
2011
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2012
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
2013
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
1954
2014
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
1955
2015
|
}, undefined>, v.ObjectSchema<{
|
|
1956
2016
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -2144,8 +2204,12 @@ export declare const approvePublicRunStepContract: {
|
|
|
2144
2204
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2145
2205
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2146
2206
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
2147
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
2207
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2148
2208
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
2209
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
2210
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2211
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2212
|
+
}, undefined>, undefined>;
|
|
2149
2213
|
}, undefined>, undefined>;
|
|
2150
2214
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2151
2215
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2156,6 +2220,8 @@ export declare const approvePublicRunStepContract: {
|
|
|
2156
2220
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
2157
2221
|
readonly proposal: v.StringSchema<undefined>;
|
|
2158
2222
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2223
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
2224
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
2159
2225
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
2160
2226
|
}, undefined>, v.ObjectSchema<{
|
|
2161
2227
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -2349,8 +2415,12 @@ export declare const requestPublicRunStepChangesContract: {
|
|
|
2349
2415
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2350
2416
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2351
2417
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
2352
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
2418
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2353
2419
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
2420
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
2421
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2422
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2423
|
+
}, undefined>, undefined>;
|
|
2354
2424
|
}, undefined>, undefined>;
|
|
2355
2425
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2356
2426
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2361,6 +2431,8 @@ export declare const requestPublicRunStepChangesContract: {
|
|
|
2361
2431
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
2362
2432
|
readonly proposal: v.StringSchema<undefined>;
|
|
2363
2433
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2434
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
2435
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
2364
2436
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
2365
2437
|
}, undefined>, v.ObjectSchema<{
|
|
2366
2438
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -2554,8 +2626,12 @@ export declare const rejectPublicRunStepContract: {
|
|
|
2554
2626
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2555
2627
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2556
2628
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
2557
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
2629
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2558
2630
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
2631
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
2632
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2633
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2634
|
+
}, undefined>, undefined>;
|
|
2559
2635
|
}, undefined>, undefined>;
|
|
2560
2636
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2561
2637
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2566,6 +2642,8 @@ export declare const rejectPublicRunStepContract: {
|
|
|
2566
2642
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
2567
2643
|
readonly proposal: v.StringSchema<undefined>;
|
|
2568
2644
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2645
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
2646
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
2569
2647
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
2570
2648
|
}, undefined>, v.ObjectSchema<{
|
|
2571
2649
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -2764,8 +2842,12 @@ export declare const resolvePublicRunStepExceededContract: {
|
|
|
2764
2842
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2765
2843
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2766
2844
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
2767
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
2845
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2768
2846
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
2847
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
2848
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2849
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2850
|
+
}, undefined>, undefined>;
|
|
2769
2851
|
}, undefined>, undefined>;
|
|
2770
2852
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2771
2853
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2776,6 +2858,8 @@ export declare const resolvePublicRunStepExceededContract: {
|
|
|
2776
2858
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
2777
2859
|
readonly proposal: v.StringSchema<undefined>;
|
|
2778
2860
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2861
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
2862
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
2779
2863
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
2780
2864
|
}, undefined>, v.ObjectSchema<{
|
|
2781
2865
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -2972,8 +3056,12 @@ export declare const resolvePublicRunAgentDecisionContract: {
|
|
|
2972
3056
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2973
3057
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2974
3058
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
2975
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
3059
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2976
3060
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3061
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3062
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3063
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3064
|
+
}, undefined>, undefined>;
|
|
2977
3065
|
}, undefined>, undefined>;
|
|
2978
3066
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2979
3067
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2984,6 +3072,8 @@ export declare const resolvePublicRunAgentDecisionContract: {
|
|
|
2984
3072
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
2985
3073
|
readonly proposal: v.StringSchema<undefined>;
|
|
2986
3074
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3075
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
3076
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
2987
3077
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
2988
3078
|
}, undefined>, v.ObjectSchema<{
|
|
2989
3079
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -3177,8 +3267,12 @@ export declare const replyPublicRunClarityFindingContract: {
|
|
|
3177
3267
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3178
3268
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3179
3269
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
3180
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
3270
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3181
3271
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3272
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3273
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3274
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3275
|
+
}, undefined>, undefined>;
|
|
3182
3276
|
}, undefined>, undefined>;
|
|
3183
3277
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3184
3278
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3189,6 +3283,8 @@ export declare const replyPublicRunClarityFindingContract: {
|
|
|
3189
3283
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
3190
3284
|
readonly proposal: v.StringSchema<undefined>;
|
|
3191
3285
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3286
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
3287
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
3192
3288
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
3193
3289
|
}, undefined>, v.ObjectSchema<{
|
|
3194
3290
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -3382,8 +3478,12 @@ export declare const setPublicRunClarityFindingStatusContract: {
|
|
|
3382
3478
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3383
3479
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3384
3480
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
3385
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
3481
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3386
3482
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3483
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3484
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3485
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3486
|
+
}, undefined>, undefined>;
|
|
3387
3487
|
}, undefined>, undefined>;
|
|
3388
3488
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3389
3489
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3394,6 +3494,8 @@ export declare const setPublicRunClarityFindingStatusContract: {
|
|
|
3394
3494
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
3395
3495
|
readonly proposal: v.StringSchema<undefined>;
|
|
3396
3496
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3497
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
3498
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
3397
3499
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
3398
3500
|
}, undefined>, v.ObjectSchema<{
|
|
3399
3501
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -3585,8 +3687,12 @@ export declare const incorporatePublicRunClarityContract: {
|
|
|
3585
3687
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3586
3688
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3587
3689
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
3588
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
3690
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3589
3691
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3692
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3693
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3694
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3695
|
+
}, undefined>, undefined>;
|
|
3590
3696
|
}, undefined>, undefined>;
|
|
3591
3697
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3592
3698
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3597,6 +3703,8 @@ export declare const incorporatePublicRunClarityContract: {
|
|
|
3597
3703
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
3598
3704
|
readonly proposal: v.StringSchema<undefined>;
|
|
3599
3705
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3706
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
3707
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
3600
3708
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
3601
3709
|
}, undefined>, v.ObjectSchema<{
|
|
3602
3710
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -3786,8 +3894,12 @@ export declare const reReviewPublicRunClarityContract: {
|
|
|
3786
3894
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3787
3895
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3788
3896
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
3789
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
3897
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3790
3898
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3899
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3900
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3901
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3902
|
+
}, undefined>, undefined>;
|
|
3791
3903
|
}, undefined>, undefined>;
|
|
3792
3904
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3793
3905
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3798,6 +3910,8 @@ export declare const reReviewPublicRunClarityContract: {
|
|
|
3798
3910
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
3799
3911
|
readonly proposal: v.StringSchema<undefined>;
|
|
3800
3912
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3913
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
3914
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
3801
3915
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
3802
3916
|
}, undefined>, v.ObjectSchema<{
|
|
3803
3917
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -3987,8 +4101,12 @@ export declare const proceedPublicRunClarityContract: {
|
|
|
3987
4101
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3988
4102
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3989
4103
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
3990
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
4104
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3991
4105
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4106
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4107
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4108
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4109
|
+
}, undefined>, undefined>;
|
|
3992
4110
|
}, undefined>, undefined>;
|
|
3993
4111
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3994
4112
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3999,6 +4117,8 @@ export declare const proceedPublicRunClarityContract: {
|
|
|
3999
4117
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
4000
4118
|
readonly proposal: v.StringSchema<undefined>;
|
|
4001
4119
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4120
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
4121
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
4002
4122
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
4003
4123
|
}, undefined>, v.ObjectSchema<{
|
|
4004
4124
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -4190,8 +4310,12 @@ export declare const resolvePublicRunClarityExceededContract: {
|
|
|
4190
4310
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
4191
4311
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
4192
4312
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
4193
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
4313
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
4194
4314
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4315
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4316
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4317
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4318
|
+
}, undefined>, undefined>;
|
|
4195
4319
|
}, undefined>, undefined>;
|
|
4196
4320
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
4197
4321
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -4202,6 +4326,8 @@ export declare const resolvePublicRunClarityExceededContract: {
|
|
|
4202
4326
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
4203
4327
|
readonly proposal: v.StringSchema<undefined>;
|
|
4204
4328
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4329
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
4330
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
4205
4331
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
4206
4332
|
}, undefined>, v.ObjectSchema<{
|
|
4207
4333
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -4397,8 +4523,12 @@ export declare const replyPublicRunBrainstormOptionContract: {
|
|
|
4397
4523
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
4398
4524
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
4399
4525
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
4400
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
4526
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
4401
4527
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4528
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4529
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4530
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4531
|
+
}, undefined>, undefined>;
|
|
4402
4532
|
}, undefined>, undefined>;
|
|
4403
4533
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
4404
4534
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -4409,6 +4539,8 @@ export declare const replyPublicRunBrainstormOptionContract: {
|
|
|
4409
4539
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
4410
4540
|
readonly proposal: v.StringSchema<undefined>;
|
|
4411
4541
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4542
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
4543
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
4412
4544
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
4413
4545
|
}, undefined>, v.ObjectSchema<{
|
|
4414
4546
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -4604,8 +4736,12 @@ export declare const setPublicRunBrainstormOptionStatusContract: {
|
|
|
4604
4736
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
4605
4737
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
4606
4738
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
4607
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
4739
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
4608
4740
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4741
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4742
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4743
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4744
|
+
}, undefined>, undefined>;
|
|
4609
4745
|
}, undefined>, undefined>;
|
|
4610
4746
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
4611
4747
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -4616,6 +4752,8 @@ export declare const setPublicRunBrainstormOptionStatusContract: {
|
|
|
4616
4752
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
4617
4753
|
readonly proposal: v.StringSchema<undefined>;
|
|
4618
4754
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4755
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
4756
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
4619
4757
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
4620
4758
|
}, undefined>, v.ObjectSchema<{
|
|
4621
4759
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -4809,8 +4947,12 @@ export declare const incorporatePublicRunBrainstormContract: {
|
|
|
4809
4947
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
4810
4948
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
4811
4949
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
4812
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
4950
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
4813
4951
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4952
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4953
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4954
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4955
|
+
}, undefined>, undefined>;
|
|
4814
4956
|
}, undefined>, undefined>;
|
|
4815
4957
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
4816
4958
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -4821,6 +4963,8 @@ export declare const incorporatePublicRunBrainstormContract: {
|
|
|
4821
4963
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
4822
4964
|
readonly proposal: v.StringSchema<undefined>;
|
|
4823
4965
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4966
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
4967
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
4824
4968
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
4825
4969
|
}, undefined>, v.ObjectSchema<{
|
|
4826
4970
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -5012,8 +5156,12 @@ export declare const reReviewPublicRunBrainstormContract: {
|
|
|
5012
5156
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5013
5157
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5014
5158
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
5015
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
5159
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5016
5160
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
5161
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
5162
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5163
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5164
|
+
}, undefined>, undefined>;
|
|
5017
5165
|
}, undefined>, undefined>;
|
|
5018
5166
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5019
5167
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5024,6 +5172,8 @@ export declare const reReviewPublicRunBrainstormContract: {
|
|
|
5024
5172
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
5025
5173
|
readonly proposal: v.StringSchema<undefined>;
|
|
5026
5174
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5175
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
5176
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
5027
5177
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
5028
5178
|
}, undefined>, v.ObjectSchema<{
|
|
5029
5179
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -5215,8 +5365,12 @@ export declare const proceedPublicRunBrainstormContract: {
|
|
|
5215
5365
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5216
5366
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5217
5367
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
5218
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
5368
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5219
5369
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
5370
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
5371
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5372
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5373
|
+
}, undefined>, undefined>;
|
|
5220
5374
|
}, undefined>, undefined>;
|
|
5221
5375
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5222
5376
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5227,6 +5381,8 @@ export declare const proceedPublicRunBrainstormContract: {
|
|
|
5227
5381
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
5228
5382
|
readonly proposal: v.StringSchema<undefined>;
|
|
5229
5383
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5384
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
5385
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
5230
5386
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
5231
5387
|
}, undefined>, v.ObjectSchema<{
|
|
5232
5388
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -5420,8 +5576,12 @@ export declare const resolvePublicRunBrainstormExceededContract: {
|
|
|
5420
5576
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5421
5577
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5422
5578
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
5423
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
5579
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5424
5580
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
5581
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
5582
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5583
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5584
|
+
}, undefined>, undefined>;
|
|
5425
5585
|
}, undefined>, undefined>;
|
|
5426
5586
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5427
5587
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5432,6 +5592,8 @@ export declare const resolvePublicRunBrainstormExceededContract: {
|
|
|
5432
5592
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
5433
5593
|
readonly proposal: v.StringSchema<undefined>;
|
|
5434
5594
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5595
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
5596
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
5435
5597
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
5436
5598
|
}, undefined>, v.ObjectSchema<{
|
|
5437
5599
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -5629,8 +5791,12 @@ export declare const resolvePublicRunPrReviewContract: {
|
|
|
5629
5791
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5630
5792
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5631
5793
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
5632
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
5794
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5633
5795
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
5796
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
5797
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5798
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5799
|
+
}, undefined>, undefined>;
|
|
5634
5800
|
}, undefined>, undefined>;
|
|
5635
5801
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5636
5802
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5641,6 +5807,8 @@ export declare const resolvePublicRunPrReviewContract: {
|
|
|
5641
5807
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
5642
5808
|
readonly proposal: v.StringSchema<undefined>;
|
|
5643
5809
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5810
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
5811
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
5644
5812
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
5645
5813
|
}, undefined>, v.ObjectSchema<{
|
|
5646
5814
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -5832,8 +6000,12 @@ export declare const dismissPublicRunPrReviewFindingContract: {
|
|
|
5832
6000
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5833
6001
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5834
6002
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
5835
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
6003
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5836
6004
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6005
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6006
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6007
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6008
|
+
}, undefined>, undefined>;
|
|
5837
6009
|
}, undefined>, undefined>;
|
|
5838
6010
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5839
6011
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5844,6 +6016,8 @@ export declare const dismissPublicRunPrReviewFindingContract: {
|
|
|
5844
6016
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
5845
6017
|
readonly proposal: v.StringSchema<undefined>;
|
|
5846
6018
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6019
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
6020
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
5847
6021
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
5848
6022
|
}, undefined>, v.ObjectSchema<{
|
|
5849
6023
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -6037,8 +6211,12 @@ export declare const challengePublicRunPrReviewFindingContract: {
|
|
|
6037
6211
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6038
6212
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6039
6213
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
6040
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
6214
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6041
6215
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6216
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6217
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6218
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6219
|
+
}, undefined>, undefined>;
|
|
6042
6220
|
}, undefined>, undefined>;
|
|
6043
6221
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6044
6222
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6049,6 +6227,8 @@ export declare const challengePublicRunPrReviewFindingContract: {
|
|
|
6049
6227
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
6050
6228
|
readonly proposal: v.StringSchema<undefined>;
|
|
6051
6229
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6230
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
6231
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
6052
6232
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
6053
6233
|
}, undefined>, v.ObjectSchema<{
|
|
6054
6234
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -6238,8 +6418,12 @@ export declare const confirmPublicRunHumanTestContract: {
|
|
|
6238
6418
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6239
6419
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6240
6420
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
6241
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
6421
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6242
6422
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6423
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6424
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6425
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6426
|
+
}, undefined>, undefined>;
|
|
6243
6427
|
}, undefined>, undefined>;
|
|
6244
6428
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6245
6429
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6250,6 +6434,8 @@ export declare const confirmPublicRunHumanTestContract: {
|
|
|
6250
6434
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
6251
6435
|
readonly proposal: v.StringSchema<undefined>;
|
|
6252
6436
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6437
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
6438
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
6253
6439
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
6254
6440
|
}, undefined>, v.ObjectSchema<{
|
|
6255
6441
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -6441,8 +6627,12 @@ export declare const requestPublicRunHumanTestFixContract: {
|
|
|
6441
6627
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6442
6628
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6443
6629
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
6444
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
6630
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6445
6631
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6632
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6633
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6634
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6635
|
+
}, undefined>, undefined>;
|
|
6446
6636
|
}, undefined>, undefined>;
|
|
6447
6637
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6448
6638
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6453,6 +6643,8 @@ export declare const requestPublicRunHumanTestFixContract: {
|
|
|
6453
6643
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
6454
6644
|
readonly proposal: v.StringSchema<undefined>;
|
|
6455
6645
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6646
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
6647
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
6456
6648
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
6457
6649
|
}, undefined>, v.ObjectSchema<{
|
|
6458
6650
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -6642,8 +6834,12 @@ export declare const approvePublicRunVisualConfirmContract: {
|
|
|
6642
6834
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6643
6835
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6644
6836
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
6645
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
6837
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6646
6838
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6839
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6840
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6841
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6842
|
+
}, undefined>, undefined>;
|
|
6647
6843
|
}, undefined>, undefined>;
|
|
6648
6844
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6649
6845
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6654,6 +6850,8 @@ export declare const approvePublicRunVisualConfirmContract: {
|
|
|
6654
6850
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
6655
6851
|
readonly proposal: v.StringSchema<undefined>;
|
|
6656
6852
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6853
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
6854
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
6657
6855
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
6658
6856
|
}, undefined>, v.ObjectSchema<{
|
|
6659
6857
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|
|
@@ -6845,8 +7043,12 @@ export declare const requestPublicRunVisualConfirmFixContract: {
|
|
|
6845
7043
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6846
7044
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6847
7045
|
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
6848
|
-
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
7046
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6849
7047
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
7048
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
7049
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
7050
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
7051
|
+
}, undefined>, undefined>;
|
|
6850
7052
|
}, undefined>, undefined>;
|
|
6851
7053
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6852
7054
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6857,6 +7059,8 @@ export declare const requestPublicRunVisualConfirmFixContract: {
|
|
|
6857
7059
|
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
6858
7060
|
readonly proposal: v.StringSchema<undefined>;
|
|
6859
7061
|
readonly feedback: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7062
|
+
readonly requiredApprovals: v.NumberSchema<undefined>;
|
|
7063
|
+
readonly recordedApprovals: v.NumberSchema<undefined>;
|
|
6860
7064
|
readonly exceeded: v.BooleanSchema<undefined>;
|
|
6861
7065
|
}, undefined>, v.ObjectSchema<{
|
|
6862
7066
|
readonly kind: v.LiteralSchema<"agent-decision", undefined>;
|