@cat-factory/contracts 0.239.0 → 0.240.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/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 +134 -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 +18 -0
- package/dist/form-fields.d.ts.map +1 -1
- package/dist/form-fields.js +25 -0
- package/dist/form-fields.js.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 +15 -3
- package/dist/public-decisions.d.ts.map +1 -1
- package/dist/requests.d.ts +21 -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 +24 -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 +24 -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 +96 -8
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +12 -1
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +60 -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/provisioning-logs.d.ts +1 -1
- package/dist/routes/public-decisions.d.ts +170 -34
- package/dist/routes/public-decisions.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +36 -3
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +26 -2
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +13 -1
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -36,8 +36,12 @@ export declare const resolveInputGateContract: {
|
|
|
36
36
|
readonly status: import("valibot").PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
37
37
|
readonly mode: import("valibot").PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
38
38
|
readonly issues: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
39
|
-
readonly code: import("valibot").PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
|
|
39
|
+
readonly code: import("valibot").PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
40
40
|
readonly severity: import("valibot").PicklistSchema<["blocking", "advisory"], undefined>;
|
|
41
|
+
readonly field: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
42
|
+
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
43
|
+
readonly label: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>;
|
|
44
|
+
}, undefined>, undefined>;
|
|
41
45
|
}, undefined>, undefined>;
|
|
42
46
|
readonly checkedAt: import("valibot").NumberSchema<undefined>;
|
|
43
47
|
readonly overriddenBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input-gate.d.ts","sourceRoot":"","sources":["../../src/routes/input-gate.ts"],"names":[],"mappings":"AAkBA,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"input-gate.d.ts","sourceRoot":"","sources":["../../src/routes/input-gate.ts"],"names":[],"mappings":"AAkBA,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA"}
|
|
@@ -29,7 +29,7 @@ export declare const listProvisioningLogsContract: {
|
|
|
29
29
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
30
30
|
readonly workspaceId: import("valibot").StringSchema<undefined>;
|
|
31
31
|
readonly subsystem: import("valibot").PicklistSchema<["environment", "runner-pool", "container"], undefined>;
|
|
32
|
-
readonly operation: import("valibot").PicklistSchema<["provision", "teardown", "status", "dispatch", "release", "poll-failure"], undefined>;
|
|
32
|
+
readonly operation: import("valibot").PicklistSchema<["provision", "teardown", "teardown-verify", "status", "dispatch", "release", "poll-failure"], undefined>;
|
|
33
33
|
readonly targetId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
34
34
|
readonly providerId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
35
35
|
readonly blockId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -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<{
|
|
@@ -296,8 +300,12 @@ export declare const replyPublicRunFindingContract: {
|
|
|
296
300
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
297
301
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
298
302
|
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>;
|
|
303
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
300
304
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
305
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
306
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
307
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
308
|
+
}, undefined>, undefined>;
|
|
301
309
|
}, undefined>, undefined>;
|
|
302
310
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
303
311
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -501,8 +509,12 @@ export declare const setPublicRunFindingStatusContract: {
|
|
|
501
509
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
502
510
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
503
511
|
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>;
|
|
512
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
505
513
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
514
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
515
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
516
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
517
|
+
}, undefined>, undefined>;
|
|
506
518
|
}, undefined>, undefined>;
|
|
507
519
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
508
520
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -708,8 +720,12 @@ export declare const incorporatePublicRunRequirementsContract: {
|
|
|
708
720
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
709
721
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
710
722
|
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>;
|
|
723
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
712
724
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
725
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
726
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
727
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
728
|
+
}, undefined>, undefined>;
|
|
713
729
|
}, undefined>, undefined>;
|
|
714
730
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
715
731
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -909,8 +925,12 @@ export declare const reReviewPublicRunRequirementsContract: {
|
|
|
909
925
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
910
926
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
911
927
|
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>;
|
|
928
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
913
929
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
930
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
931
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
932
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
933
|
+
}, undefined>, undefined>;
|
|
914
934
|
}, undefined>, undefined>;
|
|
915
935
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
916
936
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1110,8 +1130,12 @@ export declare const proceedPublicRunRequirementsContract: {
|
|
|
1110
1130
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1111
1131
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1112
1132
|
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>;
|
|
1133
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1114
1134
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1135
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1136
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1137
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1138
|
+
}, undefined>, undefined>;
|
|
1115
1139
|
}, undefined>, undefined>;
|
|
1116
1140
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1117
1141
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1313,8 +1337,12 @@ export declare const resolvePublicRunRequirementsExceededContract: {
|
|
|
1313
1337
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1314
1338
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1315
1339
|
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>;
|
|
1340
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1317
1341
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1342
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1343
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1344
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1345
|
+
}, undefined>, undefined>;
|
|
1318
1346
|
}, undefined>, undefined>;
|
|
1319
1347
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1320
1348
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1522,8 +1550,12 @@ export declare const choosePublicRunForkContract: {
|
|
|
1522
1550
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1523
1551
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1524
1552
|
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>;
|
|
1553
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1526
1554
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1555
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1556
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1557
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1558
|
+
}, undefined>, undefined>;
|
|
1527
1559
|
}, undefined>, undefined>;
|
|
1528
1560
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1529
1561
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1726,8 +1758,12 @@ export declare const resolvePublicRunJudgeContract: {
|
|
|
1726
1758
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1727
1759
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1728
1760
|
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>;
|
|
1761
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1730
1762
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1763
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1764
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1765
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1766
|
+
}, undefined>, undefined>;
|
|
1731
1767
|
}, undefined>, undefined>;
|
|
1732
1768
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1733
1769
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1939,8 +1975,12 @@ export declare const resolvePublicRunInputGateContract: {
|
|
|
1939
1975
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
1940
1976
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
1941
1977
|
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>;
|
|
1978
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
1943
1979
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
1980
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
1981
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1982
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1983
|
+
}, undefined>, undefined>;
|
|
1944
1984
|
}, undefined>, undefined>;
|
|
1945
1985
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
1946
1986
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2144,8 +2184,12 @@ export declare const approvePublicRunStepContract: {
|
|
|
2144
2184
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2145
2185
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2146
2186
|
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>;
|
|
2187
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2148
2188
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
2189
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
2190
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2191
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2192
|
+
}, undefined>, undefined>;
|
|
2149
2193
|
}, undefined>, undefined>;
|
|
2150
2194
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2151
2195
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2349,8 +2393,12 @@ export declare const requestPublicRunStepChangesContract: {
|
|
|
2349
2393
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2350
2394
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2351
2395
|
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>;
|
|
2396
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2353
2397
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
2398
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
2399
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2400
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2401
|
+
}, undefined>, undefined>;
|
|
2354
2402
|
}, undefined>, undefined>;
|
|
2355
2403
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2356
2404
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2554,8 +2602,12 @@ export declare const rejectPublicRunStepContract: {
|
|
|
2554
2602
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2555
2603
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2556
2604
|
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>;
|
|
2605
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2558
2606
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
2607
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
2608
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2609
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2610
|
+
}, undefined>, undefined>;
|
|
2559
2611
|
}, undefined>, undefined>;
|
|
2560
2612
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2561
2613
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2764,8 +2816,12 @@ export declare const resolvePublicRunStepExceededContract: {
|
|
|
2764
2816
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2765
2817
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2766
2818
|
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>;
|
|
2819
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2768
2820
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
2821
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
2822
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2823
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2824
|
+
}, undefined>, undefined>;
|
|
2769
2825
|
}, undefined>, undefined>;
|
|
2770
2826
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2771
2827
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2972,8 +3028,12 @@ export declare const resolvePublicRunAgentDecisionContract: {
|
|
|
2972
3028
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
2973
3029
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
2974
3030
|
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>;
|
|
3031
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
2976
3032
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3033
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3034
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3035
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3036
|
+
}, undefined>, undefined>;
|
|
2977
3037
|
}, undefined>, undefined>;
|
|
2978
3038
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
2979
3039
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3177,8 +3237,12 @@ export declare const replyPublicRunClarityFindingContract: {
|
|
|
3177
3237
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3178
3238
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3179
3239
|
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>;
|
|
3240
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3181
3241
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3242
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3243
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3244
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3245
|
+
}, undefined>, undefined>;
|
|
3182
3246
|
}, undefined>, undefined>;
|
|
3183
3247
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3184
3248
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3382,8 +3446,12 @@ export declare const setPublicRunClarityFindingStatusContract: {
|
|
|
3382
3446
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3383
3447
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3384
3448
|
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>;
|
|
3449
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3386
3450
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3451
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3452
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3453
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3454
|
+
}, undefined>, undefined>;
|
|
3387
3455
|
}, undefined>, undefined>;
|
|
3388
3456
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3389
3457
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3585,8 +3653,12 @@ export declare const incorporatePublicRunClarityContract: {
|
|
|
3585
3653
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3586
3654
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3587
3655
|
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>;
|
|
3656
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3589
3657
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3658
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3659
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3660
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3661
|
+
}, undefined>, undefined>;
|
|
3590
3662
|
}, undefined>, undefined>;
|
|
3591
3663
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3592
3664
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3786,8 +3858,12 @@ export declare const reReviewPublicRunClarityContract: {
|
|
|
3786
3858
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3787
3859
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3788
3860
|
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>;
|
|
3861
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3790
3862
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
3863
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
3864
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3865
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3866
|
+
}, undefined>, undefined>;
|
|
3791
3867
|
}, undefined>, undefined>;
|
|
3792
3868
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3793
3869
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -3987,8 +4063,12 @@ export declare const proceedPublicRunClarityContract: {
|
|
|
3987
4063
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
3988
4064
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
3989
4065
|
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>;
|
|
4066
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
3991
4067
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4068
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4069
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4070
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4071
|
+
}, undefined>, undefined>;
|
|
3992
4072
|
}, undefined>, undefined>;
|
|
3993
4073
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
3994
4074
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -4190,8 +4270,12 @@ export declare const resolvePublicRunClarityExceededContract: {
|
|
|
4190
4270
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
4191
4271
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
4192
4272
|
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>;
|
|
4273
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
4194
4274
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4275
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4276
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4277
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4278
|
+
}, undefined>, undefined>;
|
|
4195
4279
|
}, undefined>, undefined>;
|
|
4196
4280
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
4197
4281
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -4397,8 +4481,12 @@ export declare const replyPublicRunBrainstormOptionContract: {
|
|
|
4397
4481
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
4398
4482
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
4399
4483
|
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>;
|
|
4484
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
4401
4485
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4486
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4487
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4488
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4489
|
+
}, undefined>, undefined>;
|
|
4402
4490
|
}, undefined>, undefined>;
|
|
4403
4491
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
4404
4492
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -4604,8 +4692,12 @@ export declare const setPublicRunBrainstormOptionStatusContract: {
|
|
|
4604
4692
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
4605
4693
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
4606
4694
|
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>;
|
|
4695
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
4608
4696
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4697
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4698
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4699
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4700
|
+
}, undefined>, undefined>;
|
|
4609
4701
|
}, undefined>, undefined>;
|
|
4610
4702
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
4611
4703
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -4809,8 +4901,12 @@ export declare const incorporatePublicRunBrainstormContract: {
|
|
|
4809
4901
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
4810
4902
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
4811
4903
|
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>;
|
|
4904
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
4813
4905
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
4906
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
4907
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4908
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
4909
|
+
}, undefined>, undefined>;
|
|
4814
4910
|
}, undefined>, undefined>;
|
|
4815
4911
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
4816
4912
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5012,8 +5108,12 @@ export declare const reReviewPublicRunBrainstormContract: {
|
|
|
5012
5108
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5013
5109
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5014
5110
|
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>;
|
|
5111
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5016
5112
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
5113
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
5114
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5115
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5116
|
+
}, undefined>, undefined>;
|
|
5017
5117
|
}, undefined>, undefined>;
|
|
5018
5118
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5019
5119
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5215,8 +5315,12 @@ export declare const proceedPublicRunBrainstormContract: {
|
|
|
5215
5315
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5216
5316
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5217
5317
|
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>;
|
|
5318
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5219
5319
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
5320
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
5321
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5322
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5323
|
+
}, undefined>, undefined>;
|
|
5220
5324
|
}, undefined>, undefined>;
|
|
5221
5325
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5222
5326
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5420,8 +5524,12 @@ export declare const resolvePublicRunBrainstormExceededContract: {
|
|
|
5420
5524
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5421
5525
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5422
5526
|
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>;
|
|
5527
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5424
5528
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
5529
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
5530
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5531
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5532
|
+
}, undefined>, undefined>;
|
|
5425
5533
|
}, undefined>, undefined>;
|
|
5426
5534
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5427
5535
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5629,8 +5737,12 @@ export declare const resolvePublicRunPrReviewContract: {
|
|
|
5629
5737
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5630
5738
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5631
5739
|
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>;
|
|
5740
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5633
5741
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
5742
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
5743
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5744
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5745
|
+
}, undefined>, undefined>;
|
|
5634
5746
|
}, undefined>, undefined>;
|
|
5635
5747
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5636
5748
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -5832,8 +5944,12 @@ export declare const dismissPublicRunPrReviewFindingContract: {
|
|
|
5832
5944
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
5833
5945
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
5834
5946
|
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>;
|
|
5947
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
5836
5948
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
5949
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
5950
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5951
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
5952
|
+
}, undefined>, undefined>;
|
|
5837
5953
|
}, undefined>, undefined>;
|
|
5838
5954
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
5839
5955
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6037,8 +6153,12 @@ export declare const challengePublicRunPrReviewFindingContract: {
|
|
|
6037
6153
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6038
6154
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6039
6155
|
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>;
|
|
6156
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6041
6157
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6158
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6159
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6160
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6161
|
+
}, undefined>, undefined>;
|
|
6042
6162
|
}, undefined>, undefined>;
|
|
6043
6163
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6044
6164
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6238,8 +6358,12 @@ export declare const confirmPublicRunHumanTestContract: {
|
|
|
6238
6358
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6239
6359
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6240
6360
|
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>;
|
|
6361
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6242
6362
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6363
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6364
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6365
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6366
|
+
}, undefined>, undefined>;
|
|
6243
6367
|
}, undefined>, undefined>;
|
|
6244
6368
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6245
6369
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6441,8 +6565,12 @@ export declare const requestPublicRunHumanTestFixContract: {
|
|
|
6441
6565
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6442
6566
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6443
6567
|
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>;
|
|
6568
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6445
6569
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6570
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6571
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6572
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6573
|
+
}, undefined>, undefined>;
|
|
6446
6574
|
}, undefined>, undefined>;
|
|
6447
6575
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6448
6576
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6642,8 +6770,12 @@ export declare const approvePublicRunVisualConfirmContract: {
|
|
|
6642
6770
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6643
6771
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6644
6772
|
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>;
|
|
6773
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6646
6774
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6775
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6776
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6777
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6778
|
+
}, undefined>, undefined>;
|
|
6647
6779
|
}, undefined>, undefined>;
|
|
6648
6780
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6649
6781
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -6845,8 +6977,12 @@ export declare const requestPublicRunVisualConfirmFixContract: {
|
|
|
6845
6977
|
readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
|
|
6846
6978
|
readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
|
|
6847
6979
|
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>;
|
|
6980
|
+
readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
|
|
6849
6981
|
readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
|
|
6982
|
+
readonly field: v.OptionalSchema<v.ObjectSchema<{
|
|
6983
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6984
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
6985
|
+
}, undefined>, undefined>;
|
|
6850
6986
|
}, undefined>, undefined>;
|
|
6851
6987
|
readonly checkedAt: v.NumberSchema<undefined>;
|
|
6852
6988
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-decisions.d.ts","sourceRoot":"","sources":["../../src/routes/public-decisions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmD5B,iFAAiF;AACjF,eAAO,MAAM,8BAA8B
|
|
1
|
+
{"version":3,"file":"public-decisions.d.ts","sourceRoot":"","sources":["../../src/routes/public-decisions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmD5B,iFAAiF;AACjF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAIF,mCAAmC;AACnC,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOxC,CAAA;AAEF,+EAA+E;AAC/E,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO5C,CAAA;AAEF;;;;GAIG;AACH,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnD,CAAA;AAEF,iEAAiE;AACjE,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhD,CAAA;AAEF,mGAAmG;AACnG,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/C,CAAA;AAEF,4FAA4F;AAC5F,eAAO,MAAM,4CAA4C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvD,CAAA;AAIF,mFAAmF;AACnF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAIF,yFAAyF;AACzF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA;AAIF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5C,CAAA;AAUF,qFAAqF;AACrF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOvC,CAAA;AAEF,qFAAqF;AACrF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO9C,CAAA;AAEF,oFAAoF;AACpF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOtC,CAAA;AAEF;;;;;GAKG;AACH,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO/C,CAAA;AAIF;;;GAGG;AACH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOhD,CAAA;AASF,kCAAkC;AAClC,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO/C,CAAA;AAEF,uFAAuF;AACvF,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnD,CAAA;AAEF,iGAAiG;AACjG,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM9C,CAAA;AAEF,0DAA0D;AAC1D,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM3C,CAAA;AAEF,2DAA2D;AAC3D,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1C,CAAA;AAEF,oGAAoG;AACpG,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMlD,CAAA;AAIF,6DAA6D;AAC7D,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOjD,CAAA;AAEF,qEAAqE;AACrE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOrD,CAAA;AAEF,kFAAkF;AAClF,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOjD,CAAA;AAEF,oEAAoE;AACpE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO9C,CAAA;AAEF,gGAAgG;AAChG,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7C,CAAA;AAEF,gGAAgG;AAChG,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOrD,CAAA;AAIF;;;;;GAKG;AACH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM3C,CAAA;AAEF,yFAAyF;AACzF,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlD,CAAA;AAEF,8FAA8F;AAC9F,eAAO,MAAM,yCAAyC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOpD,CAAA;AAUF,+FAA+F;AAC/F,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5C,CAAA;AAEF,2EAA2E;AAC3E,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/C,CAAA;AAEF,4DAA4D;AAC5D,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhD,CAAA;AAEF,6EAA6E;AAC7E,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnD,CAAA"}
|