@cat-factory/contracts 0.153.0 → 0.154.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/execution.d.ts +34 -2
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +8 -0
- package/dist/execution.js.map +1 -1
- package/dist/prReview.d.ts +124 -2
- package/dist/prReview.d.ts.map +1 -1
- package/dist/prReview.js +84 -0
- package/dist/prReview.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +20 -2
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +80 -8
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +10 -1
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +50 -5
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/prReview.d.ts +183 -2
- package/dist/routes/prReview.d.ts.map +1 -1
- package/dist/routes/prReview.js +23 -4
- package/dist/routes/prReview.js.map +1 -1
- package/dist/routes/visual-confirm.d.ts +30 -3
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +20 -2
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +10 -1
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -454,7 +454,7 @@ export declare const retryAgentRunContract: {
|
|
|
454
454
|
readonly messageId: v.StringSchema<undefined>;
|
|
455
455
|
}, undefined>, undefined>, undefined>;
|
|
456
456
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
457
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
457
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
458
458
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
459
459
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
460
460
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -473,6 +473,11 @@ export declare const retryAgentRunContract: {
|
|
|
473
473
|
readonly title: v.StringSchema<undefined>;
|
|
474
474
|
readonly detail: v.StringSchema<undefined>;
|
|
475
475
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
476
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
477
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
478
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
479
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
480
|
+
}, undefined>, undefined>, undefined>;
|
|
476
481
|
}, undefined>, undefined>, readonly []>;
|
|
477
482
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
478
483
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -496,6 +501,10 @@ export declare const retryAgentRunContract: {
|
|
|
496
501
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
497
502
|
}, undefined>, undefined>, undefined>;
|
|
498
503
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
504
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
505
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
506
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
507
|
+
}, undefined>, undefined>, undefined>;
|
|
499
508
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
500
509
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
501
510
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -1350,7 +1359,7 @@ export declare const stopAgentRunContract: {
|
|
|
1350
1359
|
readonly messageId: v.StringSchema<undefined>;
|
|
1351
1360
|
}, undefined>, undefined>, undefined>;
|
|
1352
1361
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1353
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
1362
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
1354
1363
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1355
1364
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1356
1365
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -1369,6 +1378,11 @@ export declare const stopAgentRunContract: {
|
|
|
1369
1378
|
readonly title: v.StringSchema<undefined>;
|
|
1370
1379
|
readonly detail: v.StringSchema<undefined>;
|
|
1371
1380
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1381
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1382
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
1383
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1384
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1385
|
+
}, undefined>, undefined>, undefined>;
|
|
1372
1386
|
}, undefined>, undefined>, readonly []>;
|
|
1373
1387
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
1374
1388
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -1392,6 +1406,10 @@ export declare const stopAgentRunContract: {
|
|
|
1392
1406
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
1393
1407
|
}, undefined>, undefined>, undefined>;
|
|
1394
1408
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
1409
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1410
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
1411
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1412
|
+
}, undefined>, undefined>, undefined>;
|
|
1395
1413
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1396
1414
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
1397
1415
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/B,CAAA"}
|
|
@@ -413,7 +413,7 @@ export declare const startExecutionContract: {
|
|
|
413
413
|
readonly messageId: v.StringSchema<undefined>;
|
|
414
414
|
}, undefined>, undefined>, undefined>;
|
|
415
415
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
416
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
416
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
417
417
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
418
418
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
419
419
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -432,6 +432,11 @@ export declare const startExecutionContract: {
|
|
|
432
432
|
readonly title: v.StringSchema<undefined>;
|
|
433
433
|
readonly detail: v.StringSchema<undefined>;
|
|
434
434
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
435
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
436
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
437
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
438
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
439
|
+
}, undefined>, undefined>, undefined>;
|
|
435
440
|
}, undefined>, undefined>, readonly []>;
|
|
436
441
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
437
442
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -455,6 +460,10 @@ export declare const startExecutionContract: {
|
|
|
455
460
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
456
461
|
}, undefined>, undefined>, undefined>;
|
|
457
462
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
463
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
464
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
465
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
466
|
+
}, undefined>, undefined>, undefined>;
|
|
458
467
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
459
468
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
460
469
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -2005,7 +2014,7 @@ export declare const resumeSpendContract: {
|
|
|
2005
2014
|
readonly messageId: v.StringSchema<undefined>;
|
|
2006
2015
|
}, undefined>, undefined>, undefined>;
|
|
2007
2016
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2008
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
2017
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
2009
2018
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2010
2019
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2011
2020
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -2024,6 +2033,11 @@ export declare const resumeSpendContract: {
|
|
|
2024
2033
|
readonly title: v.StringSchema<undefined>;
|
|
2025
2034
|
readonly detail: v.StringSchema<undefined>;
|
|
2026
2035
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2036
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2037
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
2038
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2039
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2040
|
+
}, undefined>, undefined>, undefined>;
|
|
2027
2041
|
}, undefined>, undefined>, readonly []>;
|
|
2028
2042
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
2029
2043
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -2047,6 +2061,10 @@ export declare const resumeSpendContract: {
|
|
|
2047
2061
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
2048
2062
|
}, undefined>, undefined>, undefined>;
|
|
2049
2063
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2064
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2065
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
2066
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2067
|
+
}, undefined>, undefined>, undefined>;
|
|
2050
2068
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2051
2069
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
2052
2070
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -3128,7 +3146,7 @@ export declare const resolveDecisionContract: {
|
|
|
3128
3146
|
readonly messageId: v.StringSchema<undefined>;
|
|
3129
3147
|
}, undefined>, undefined>, undefined>;
|
|
3130
3148
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3131
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3149
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3132
3150
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3133
3151
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3134
3152
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -3147,6 +3165,11 @@ export declare const resolveDecisionContract: {
|
|
|
3147
3165
|
readonly title: v.StringSchema<undefined>;
|
|
3148
3166
|
readonly detail: v.StringSchema<undefined>;
|
|
3149
3167
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3168
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3169
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
3170
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3171
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3172
|
+
}, undefined>, undefined>, undefined>;
|
|
3150
3173
|
}, undefined>, undefined>, readonly []>;
|
|
3151
3174
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
3152
3175
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -3170,6 +3193,10 @@ export declare const resolveDecisionContract: {
|
|
|
3170
3193
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
3171
3194
|
}, undefined>, undefined>, undefined>;
|
|
3172
3195
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3196
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3197
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
3198
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3199
|
+
}, undefined>, undefined>, undefined>;
|
|
3173
3200
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3174
3201
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
3175
3202
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -3941,7 +3968,7 @@ export declare const approveStepContract: {
|
|
|
3941
3968
|
readonly messageId: v.StringSchema<undefined>;
|
|
3942
3969
|
}, undefined>, undefined>, undefined>;
|
|
3943
3970
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3944
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3971
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3945
3972
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3946
3973
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3947
3974
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -3960,6 +3987,11 @@ export declare const approveStepContract: {
|
|
|
3960
3987
|
readonly title: v.StringSchema<undefined>;
|
|
3961
3988
|
readonly detail: v.StringSchema<undefined>;
|
|
3962
3989
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3990
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3991
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
3992
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3993
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3994
|
+
}, undefined>, undefined>, undefined>;
|
|
3963
3995
|
}, undefined>, undefined>, readonly []>;
|
|
3964
3996
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
3965
3997
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -3983,6 +4015,10 @@ export declare const approveStepContract: {
|
|
|
3983
4015
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
3984
4016
|
}, undefined>, undefined>, undefined>;
|
|
3985
4017
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
4018
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4019
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
4020
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4021
|
+
}, undefined>, undefined>, undefined>;
|
|
3986
4022
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3987
4023
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
3988
4024
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -4768,7 +4804,7 @@ export declare const requestStepChangesContract: {
|
|
|
4768
4804
|
readonly messageId: v.StringSchema<undefined>;
|
|
4769
4805
|
}, undefined>, undefined>, undefined>;
|
|
4770
4806
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4771
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
4807
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
4772
4808
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4773
4809
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4774
4810
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -4787,6 +4823,11 @@ export declare const requestStepChangesContract: {
|
|
|
4787
4823
|
readonly title: v.StringSchema<undefined>;
|
|
4788
4824
|
readonly detail: v.StringSchema<undefined>;
|
|
4789
4825
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4826
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4827
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
4828
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4829
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4830
|
+
}, undefined>, undefined>, undefined>;
|
|
4790
4831
|
}, undefined>, undefined>, readonly []>;
|
|
4791
4832
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
4792
4833
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -4810,6 +4851,10 @@ export declare const requestStepChangesContract: {
|
|
|
4810
4851
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
4811
4852
|
}, undefined>, undefined>, undefined>;
|
|
4812
4853
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
4854
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4855
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
4856
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4857
|
+
}, undefined>, undefined>, undefined>;
|
|
4813
4858
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4814
4859
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
4815
4860
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -5581,7 +5626,7 @@ export declare const resolveStepExceededContract: {
|
|
|
5581
5626
|
readonly messageId: v.StringSchema<undefined>;
|
|
5582
5627
|
}, undefined>, undefined>, undefined>;
|
|
5583
5628
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5584
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
5629
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
5585
5630
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5586
5631
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5587
5632
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -5600,6 +5645,11 @@ export declare const resolveStepExceededContract: {
|
|
|
5600
5645
|
readonly title: v.StringSchema<undefined>;
|
|
5601
5646
|
readonly detail: v.StringSchema<undefined>;
|
|
5602
5647
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5648
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5649
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
5650
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5651
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5652
|
+
}, undefined>, undefined>, undefined>;
|
|
5603
5653
|
}, undefined>, undefined>, readonly []>;
|
|
5604
5654
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
5605
5655
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -5623,6 +5673,10 @@ export declare const resolveStepExceededContract: {
|
|
|
5623
5673
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
5624
5674
|
}, undefined>, undefined>, undefined>;
|
|
5625
5675
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
5676
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5677
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
5678
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5679
|
+
}, undefined>, undefined>, undefined>;
|
|
5626
5680
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5627
5681
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
5628
5682
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -6392,7 +6446,7 @@ export declare const restartExecutionContract: {
|
|
|
6392
6446
|
readonly messageId: v.StringSchema<undefined>;
|
|
6393
6447
|
}, undefined>, undefined>, undefined>;
|
|
6394
6448
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6395
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
6449
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
6396
6450
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6397
6451
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
6398
6452
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -6411,6 +6465,11 @@ export declare const restartExecutionContract: {
|
|
|
6411
6465
|
readonly title: v.StringSchema<undefined>;
|
|
6412
6466
|
readonly detail: v.StringSchema<undefined>;
|
|
6413
6467
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6468
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6469
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
6470
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6471
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6472
|
+
}, undefined>, undefined>, undefined>;
|
|
6414
6473
|
}, undefined>, undefined>, readonly []>;
|
|
6415
6474
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
6416
6475
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -6434,6 +6493,10 @@ export declare const restartExecutionContract: {
|
|
|
6434
6493
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
6435
6494
|
}, undefined>, undefined>, undefined>;
|
|
6436
6495
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
6496
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6497
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
6498
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6499
|
+
}, undefined>, undefined>, undefined>;
|
|
6437
6500
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
6438
6501
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
6439
6502
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -7205,7 +7268,7 @@ export declare const rejectStepContract: {
|
|
|
7205
7268
|
readonly messageId: v.StringSchema<undefined>;
|
|
7206
7269
|
}, undefined>, undefined>, undefined>;
|
|
7207
7270
|
readonly prReview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7208
|
-
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
7271
|
+
readonly status: v.PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
7209
7272
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7210
7273
|
readonly slices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
7211
7274
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -7224,6 +7287,11 @@ export declare const rejectStepContract: {
|
|
|
7224
7287
|
readonly title: v.StringSchema<undefined>;
|
|
7225
7288
|
readonly detail: v.StringSchema<undefined>;
|
|
7226
7289
|
readonly suggestedFix: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7290
|
+
readonly challenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7291
|
+
readonly status: v.PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
7292
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7293
|
+
readonly justification: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7294
|
+
}, undefined>, undefined>, undefined>;
|
|
7227
7295
|
}, undefined>, undefined>, readonly []>;
|
|
7228
7296
|
readonly selectedFindingIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
7229
7297
|
readonly resolution: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -7247,6 +7315,10 @@ export declare const rejectStepContract: {
|
|
|
7247
7315
|
readonly postedBody: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
7248
7316
|
}, undefined>, undefined>, undefined>;
|
|
7249
7317
|
readonly pendingPrReviewPost: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
7318
|
+
readonly pendingChallenge: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7319
|
+
readonly findingId: v.StringSchema<undefined>;
|
|
7320
|
+
readonly question: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7321
|
+
}, undefined>, undefined>, undefined>;
|
|
7250
7322
|
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7251
7323
|
readonly previousProposal: v.StringSchema<undefined>;
|
|
7252
7324
|
readonly feedback: v.StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAkD5B,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAkD5B,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAIF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9B,CAAA;AAIF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIpC,CAAA;AAIF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK5C,CAAA;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK5C,CAAA;AAIF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO9B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOrC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOtC,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7B,CAAA"}
|
|
@@ -411,7 +411,7 @@ export declare const requestHumanReviewFixContract: {
|
|
|
411
411
|
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
412
412
|
}, undefined>, undefined>, undefined>;
|
|
413
413
|
readonly prReview: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
414
|
-
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
414
|
+
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
415
415
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
416
416
|
readonly slices: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
417
417
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
@@ -430,6 +430,11 @@ export declare const requestHumanReviewFixContract: {
|
|
|
430
430
|
readonly title: import("valibot").StringSchema<undefined>;
|
|
431
431
|
readonly detail: import("valibot").StringSchema<undefined>;
|
|
432
432
|
readonly suggestedFix: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
433
|
+
readonly challenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
434
|
+
readonly status: import("valibot").PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
435
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
436
|
+
readonly justification: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
437
|
+
}, undefined>, undefined>, undefined>;
|
|
433
438
|
}, undefined>, undefined>, readonly []>;
|
|
434
439
|
readonly selectedFindingIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, readonly []>;
|
|
435
440
|
readonly resolution: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -453,6 +458,10 @@ export declare const requestHumanReviewFixContract: {
|
|
|
453
458
|
readonly postedBody: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, false>;
|
|
454
459
|
}, undefined>, undefined>, undefined>;
|
|
455
460
|
readonly pendingPrReviewPost: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
461
|
+
readonly pendingChallenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
462
|
+
readonly findingId: import("valibot").StringSchema<undefined>;
|
|
463
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
464
|
+
}, undefined>, undefined>, undefined>;
|
|
456
465
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
457
466
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
458
467
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
|
|
@@ -410,7 +410,7 @@ export declare const confirmHumanTestContract: {
|
|
|
410
410
|
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
411
411
|
}, undefined>, undefined>, undefined>;
|
|
412
412
|
readonly prReview: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
413
|
-
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
413
|
+
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
414
414
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
415
415
|
readonly slices: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
416
416
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
@@ -429,6 +429,11 @@ export declare const confirmHumanTestContract: {
|
|
|
429
429
|
readonly title: import("valibot").StringSchema<undefined>;
|
|
430
430
|
readonly detail: import("valibot").StringSchema<undefined>;
|
|
431
431
|
readonly suggestedFix: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
432
|
+
readonly challenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
433
|
+
readonly status: import("valibot").PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
434
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
435
|
+
readonly justification: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
436
|
+
}, undefined>, undefined>, undefined>;
|
|
432
437
|
}, undefined>, undefined>, readonly []>;
|
|
433
438
|
readonly selectedFindingIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, readonly []>;
|
|
434
439
|
readonly resolution: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -452,6 +457,10 @@ export declare const confirmHumanTestContract: {
|
|
|
452
457
|
readonly postedBody: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, false>;
|
|
453
458
|
}, undefined>, undefined>, undefined>;
|
|
454
459
|
readonly pendingPrReviewPost: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
460
|
+
readonly pendingChallenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
461
|
+
readonly findingId: import("valibot").StringSchema<undefined>;
|
|
462
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
463
|
+
}, undefined>, undefined>, undefined>;
|
|
455
464
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
456
465
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
457
466
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -1221,7 +1230,7 @@ export declare const requestHumanTestFixContract: {
|
|
|
1221
1230
|
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
1222
1231
|
}, undefined>, undefined>, undefined>;
|
|
1223
1232
|
readonly prReview: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1224
|
-
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
1233
|
+
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
1225
1234
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1226
1235
|
readonly slices: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1227
1236
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
@@ -1240,6 +1249,11 @@ export declare const requestHumanTestFixContract: {
|
|
|
1240
1249
|
readonly title: import("valibot").StringSchema<undefined>;
|
|
1241
1250
|
readonly detail: import("valibot").StringSchema<undefined>;
|
|
1242
1251
|
readonly suggestedFix: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1252
|
+
readonly challenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1253
|
+
readonly status: import("valibot").PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
1254
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1255
|
+
readonly justification: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1256
|
+
}, undefined>, undefined>, undefined>;
|
|
1243
1257
|
}, undefined>, undefined>, readonly []>;
|
|
1244
1258
|
readonly selectedFindingIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, readonly []>;
|
|
1245
1259
|
readonly resolution: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -1263,6 +1277,10 @@ export declare const requestHumanTestFixContract: {
|
|
|
1263
1277
|
readonly postedBody: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, false>;
|
|
1264
1278
|
}, undefined>, undefined>, undefined>;
|
|
1265
1279
|
readonly pendingPrReviewPost: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
1280
|
+
readonly pendingChallenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1281
|
+
readonly findingId: import("valibot").StringSchema<undefined>;
|
|
1282
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1283
|
+
}, undefined>, undefined>, undefined>;
|
|
1266
1284
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1267
1285
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
1268
1286
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -2030,7 +2048,7 @@ export declare const pullMainHumanTestContract: {
|
|
|
2030
2048
|
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
2031
2049
|
}, undefined>, undefined>, undefined>;
|
|
2032
2050
|
readonly prReview: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2033
|
-
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
2051
|
+
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
2034
2052
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2035
2053
|
readonly slices: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2036
2054
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
@@ -2049,6 +2067,11 @@ export declare const pullMainHumanTestContract: {
|
|
|
2049
2067
|
readonly title: import("valibot").StringSchema<undefined>;
|
|
2050
2068
|
readonly detail: import("valibot").StringSchema<undefined>;
|
|
2051
2069
|
readonly suggestedFix: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2070
|
+
readonly challenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2071
|
+
readonly status: import("valibot").PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
2072
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2073
|
+
readonly justification: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2074
|
+
}, undefined>, undefined>, undefined>;
|
|
2052
2075
|
}, undefined>, undefined>, readonly []>;
|
|
2053
2076
|
readonly selectedFindingIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, readonly []>;
|
|
2054
2077
|
readonly resolution: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -2072,6 +2095,10 @@ export declare const pullMainHumanTestContract: {
|
|
|
2072
2095
|
readonly postedBody: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, false>;
|
|
2073
2096
|
}, undefined>, undefined>, undefined>;
|
|
2074
2097
|
readonly pendingPrReviewPost: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
2098
|
+
readonly pendingChallenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2099
|
+
readonly findingId: import("valibot").StringSchema<undefined>;
|
|
2100
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2101
|
+
}, undefined>, undefined>, undefined>;
|
|
2075
2102
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2076
2103
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
2077
2104
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -2839,7 +2866,7 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
2839
2866
|
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
2840
2867
|
}, undefined>, undefined>, undefined>;
|
|
2841
2868
|
readonly prReview: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2842
|
-
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
2869
|
+
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
2843
2870
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2844
2871
|
readonly slices: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2845
2872
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
@@ -2858,6 +2885,11 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
2858
2885
|
readonly title: import("valibot").StringSchema<undefined>;
|
|
2859
2886
|
readonly detail: import("valibot").StringSchema<undefined>;
|
|
2860
2887
|
readonly suggestedFix: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2888
|
+
readonly challenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2889
|
+
readonly status: import("valibot").PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
2890
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2891
|
+
readonly justification: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2892
|
+
}, undefined>, undefined>, undefined>;
|
|
2861
2893
|
}, undefined>, undefined>, readonly []>;
|
|
2862
2894
|
readonly selectedFindingIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, readonly []>;
|
|
2863
2895
|
readonly resolution: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -2881,6 +2913,10 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
2881
2913
|
readonly postedBody: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, false>;
|
|
2882
2914
|
}, undefined>, undefined>, undefined>;
|
|
2883
2915
|
readonly pendingPrReviewPost: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
2916
|
+
readonly pendingChallenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2917
|
+
readonly findingId: import("valibot").StringSchema<undefined>;
|
|
2918
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2919
|
+
}, undefined>, undefined>, undefined>;
|
|
2884
2920
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2885
2921
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
2886
2922
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -3648,7 +3684,7 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
3648
3684
|
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
3649
3685
|
}, undefined>, undefined>, undefined>;
|
|
3650
3686
|
readonly prReview: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
3651
|
-
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3687
|
+
readonly status: import("valibot").PicklistSchema<["reviewing", "awaiting_selection", "challenging", "fixing", "posting", "done", "skipped"], undefined>;
|
|
3652
3688
|
readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3653
3689
|
readonly slices: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
3654
3690
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
@@ -3667,6 +3703,11 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
3667
3703
|
readonly title: import("valibot").StringSchema<undefined>;
|
|
3668
3704
|
readonly detail: import("valibot").StringSchema<undefined>;
|
|
3669
3705
|
readonly suggestedFix: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3706
|
+
readonly challenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
3707
|
+
readonly status: import("valibot").PicklistSchema<["investigating", "upheld", "amended", "retracted", "failed"], undefined>;
|
|
3708
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3709
|
+
readonly justification: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3710
|
+
}, undefined>, undefined>, undefined>;
|
|
3670
3711
|
}, undefined>, undefined>, readonly []>;
|
|
3671
3712
|
readonly selectedFindingIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, readonly []>;
|
|
3672
3713
|
readonly resolution: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["finish", "fix", "post"], undefined>, undefined>, undefined>;
|
|
@@ -3690,6 +3731,10 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
3690
3731
|
readonly postedBody: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, false>;
|
|
3691
3732
|
}, undefined>, undefined>, undefined>;
|
|
3692
3733
|
readonly pendingPrReviewPost: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
3734
|
+
readonly pendingChallenge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
3735
|
+
readonly findingId: import("valibot").StringSchema<undefined>;
|
|
3736
|
+
readonly question: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3737
|
+
}, undefined>, undefined>, undefined>;
|
|
3693
3738
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
3694
3739
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
3695
3740
|
readonly feedback: import("valibot").StringSchema<undefined>;
|