@cat-factory/contracts 0.39.0 → 0.40.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.
Files changed (55) hide show
  1. package/dist/agent-presentation.d.ts +2 -2
  2. package/dist/entities.d.ts +163 -0
  3. package/dist/entities.d.ts.map +1 -1
  4. package/dist/entities.js +59 -0
  5. package/dist/entities.js.map +1 -1
  6. package/dist/index.d.ts +1 -0
  7. package/dist/index.d.ts.map +1 -1
  8. package/dist/index.js +1 -0
  9. package/dist/index.js.map +1 -1
  10. package/dist/notifications.d.ts +2 -2
  11. package/dist/notifications.d.ts.map +1 -1
  12. package/dist/notifications.js +1 -0
  13. package/dist/notifications.js.map +1 -1
  14. package/dist/result-views.d.ts +1 -1
  15. package/dist/result-views.d.ts.map +1 -1
  16. package/dist/result-views.js +1 -0
  17. package/dist/result-views.js.map +1 -1
  18. package/dist/routes/agent-runs.d.ts +60 -0
  19. package/dist/routes/agent-runs.d.ts.map +1 -1
  20. package/dist/routes/execution.d.ts +240 -0
  21. package/dist/routes/execution.d.ts.map +1 -1
  22. package/dist/routes/human-review.d.ts +30 -0
  23. package/dist/routes/human-review.d.ts.map +1 -1
  24. package/dist/routes/human-test.d.ts +150 -0
  25. package/dist/routes/human-test.d.ts.map +1 -1
  26. package/dist/routes/index.d.ts +1 -0
  27. package/dist/routes/index.d.ts.map +1 -1
  28. package/dist/routes/index.js +1 -0
  29. package/dist/routes/index.js.map +1 -1
  30. package/dist/routes/notifications.d.ts +3 -3
  31. package/dist/routes/slack.d.ts +3 -3
  32. package/dist/routes/visual-confirm.d.ts +956 -0
  33. package/dist/routes/visual-confirm.d.ts.map +1 -0
  34. package/dist/routes/visual-confirm.js +34 -0
  35. package/dist/routes/visual-confirm.js.map +1 -0
  36. package/dist/routes/workspace-settings.d.ts +3 -0
  37. package/dist/routes/workspace-settings.d.ts.map +1 -1
  38. package/dist/routes/workspaces.d.ts +66 -4
  39. package/dist/routes/workspaces.d.ts.map +1 -1
  40. package/dist/slack.d.ts +2 -2
  41. package/dist/snapshot.d.ts +33 -2
  42. package/dist/snapshot.d.ts.map +1 -1
  43. package/dist/testing.d.ts +38 -0
  44. package/dist/testing.d.ts.map +1 -1
  45. package/dist/testing.js +26 -0
  46. package/dist/testing.js.map +1 -1
  47. package/dist/visual-confirm.d.ts +8 -0
  48. package/dist/visual-confirm.d.ts.map +1 -0
  49. package/dist/visual-confirm.js +11 -0
  50. package/dist/visual-confirm.js.map +1 -0
  51. package/dist/workspace-settings.d.ts +7 -0
  52. package/dist/workspace-settings.d.ts.map +1 -1
  53. package/dist/workspace-settings.js +7 -0
  54. package/dist/workspace-settings.js.map +1 -1
  55. package/package.json +1 -1
@@ -111,6 +111,14 @@ export declare const confirmHumanTestContract: {
111
111
  readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
112
112
  }, undefined>, undefined>;
113
113
  readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
114
+ readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
115
+ readonly view: import("valibot").StringSchema<undefined>;
116
+ readonly artifactId: import("valibot").StringSchema<undefined>;
117
+ readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
118
+ readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
119
+ readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
120
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
121
+ }, undefined>, undefined>, undefined>;
114
122
  }, undefined>, undefined>, undefined>;
115
123
  }, undefined>, undefined>, undefined>;
116
124
  readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
@@ -138,6 +146,28 @@ export declare const confirmHumanTestContract: {
138
146
  readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
139
147
  }, undefined>, undefined>, undefined>;
140
148
  }, undefined>, undefined>, undefined>;
149
+ readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
150
+ readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
151
+ readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
152
+ readonly view: import("valibot").StringSchema<undefined>;
153
+ readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
154
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
155
+ }, undefined>, undefined>, undefined>;
156
+ readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
157
+ readonly attempts: import("valibot").NumberSchema<undefined>;
158
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
159
+ readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
160
+ readonly findings: import("valibot").StringSchema<undefined>;
161
+ readonly helperKind: import("valibot").StringSchema<undefined>;
162
+ readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
163
+ readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
164
+ readonly at: import("valibot").NumberSchema<undefined>;
165
+ }, undefined>, undefined>, undefined>;
166
+ readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
167
+ readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
168
+ readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
169
+ }, undefined>, undefined>, undefined>;
170
+ }, undefined>, undefined>, undefined>;
141
171
  readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
142
172
  readonly id: import("valibot").StringSchema<undefined>;
143
173
  readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
@@ -400,6 +430,14 @@ export declare const requestHumanTestFixContract: {
400
430
  readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
401
431
  }, undefined>, undefined>;
402
432
  readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
433
+ readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
434
+ readonly view: import("valibot").StringSchema<undefined>;
435
+ readonly artifactId: import("valibot").StringSchema<undefined>;
436
+ readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
437
+ readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
438
+ readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
439
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
440
+ }, undefined>, undefined>, undefined>;
403
441
  }, undefined>, undefined>, undefined>;
404
442
  }, undefined>, undefined>, undefined>;
405
443
  readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
@@ -427,6 +465,28 @@ export declare const requestHumanTestFixContract: {
427
465
  readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
428
466
  }, undefined>, undefined>, undefined>;
429
467
  }, undefined>, undefined>, undefined>;
468
+ readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
469
+ readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
470
+ readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
471
+ readonly view: import("valibot").StringSchema<undefined>;
472
+ readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
473
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
474
+ }, undefined>, undefined>, undefined>;
475
+ readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
476
+ readonly attempts: import("valibot").NumberSchema<undefined>;
477
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
478
+ readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
479
+ readonly findings: import("valibot").StringSchema<undefined>;
480
+ readonly helperKind: import("valibot").StringSchema<undefined>;
481
+ readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
482
+ readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
483
+ readonly at: import("valibot").NumberSchema<undefined>;
484
+ }, undefined>, undefined>, undefined>;
485
+ readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
486
+ readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
487
+ readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
488
+ }, undefined>, undefined>, undefined>;
489
+ }, undefined>, undefined>, undefined>;
430
490
  readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
431
491
  readonly id: import("valibot").StringSchema<undefined>;
432
492
  readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
@@ -687,6 +747,14 @@ export declare const pullMainHumanTestContract: {
687
747
  readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
688
748
  }, undefined>, undefined>;
689
749
  readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
750
+ readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
751
+ readonly view: import("valibot").StringSchema<undefined>;
752
+ readonly artifactId: import("valibot").StringSchema<undefined>;
753
+ readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
754
+ readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
755
+ readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
756
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
757
+ }, undefined>, undefined>, undefined>;
690
758
  }, undefined>, undefined>, undefined>;
691
759
  }, undefined>, undefined>, undefined>;
692
760
  readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
@@ -714,6 +782,28 @@ export declare const pullMainHumanTestContract: {
714
782
  readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
715
783
  }, undefined>, undefined>, undefined>;
716
784
  }, undefined>, undefined>, undefined>;
785
+ readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
786
+ readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
787
+ readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
788
+ readonly view: import("valibot").StringSchema<undefined>;
789
+ readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
790
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
791
+ }, undefined>, undefined>, undefined>;
792
+ readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
793
+ readonly attempts: import("valibot").NumberSchema<undefined>;
794
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
795
+ readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
796
+ readonly findings: import("valibot").StringSchema<undefined>;
797
+ readonly helperKind: import("valibot").StringSchema<undefined>;
798
+ readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
799
+ readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
800
+ readonly at: import("valibot").NumberSchema<undefined>;
801
+ }, undefined>, undefined>, undefined>;
802
+ readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
803
+ readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
804
+ readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
805
+ }, undefined>, undefined>, undefined>;
806
+ }, undefined>, undefined>, undefined>;
717
807
  readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
718
808
  readonly id: import("valibot").StringSchema<undefined>;
719
809
  readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
@@ -974,6 +1064,14 @@ export declare const recreateHumanTestEnvContract: {
974
1064
  readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
975
1065
  }, undefined>, undefined>;
976
1066
  readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
1067
+ readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1068
+ readonly view: import("valibot").StringSchema<undefined>;
1069
+ readonly artifactId: import("valibot").StringSchema<undefined>;
1070
+ readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1071
+ readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
1072
+ readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
1073
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1074
+ }, undefined>, undefined>, undefined>;
977
1075
  }, undefined>, undefined>, undefined>;
978
1076
  }, undefined>, undefined>, undefined>;
979
1077
  readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
@@ -1001,6 +1099,28 @@ export declare const recreateHumanTestEnvContract: {
1001
1099
  readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1002
1100
  }, undefined>, undefined>, undefined>;
1003
1101
  }, undefined>, undefined>, undefined>;
1102
+ readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
1103
+ readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
1104
+ readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1105
+ readonly view: import("valibot").StringSchema<undefined>;
1106
+ readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1107
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1108
+ }, undefined>, undefined>, undefined>;
1109
+ readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1110
+ readonly attempts: import("valibot").NumberSchema<undefined>;
1111
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
1112
+ readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1113
+ readonly findings: import("valibot").StringSchema<undefined>;
1114
+ readonly helperKind: import("valibot").StringSchema<undefined>;
1115
+ readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1116
+ readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
1117
+ readonly at: import("valibot").NumberSchema<undefined>;
1118
+ }, undefined>, undefined>, undefined>;
1119
+ readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
1120
+ readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
1121
+ readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1122
+ }, undefined>, undefined>, undefined>;
1123
+ }, undefined>, undefined>, undefined>;
1004
1124
  readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
1005
1125
  readonly id: import("valibot").StringSchema<undefined>;
1006
1126
  readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
@@ -1261,6 +1381,14 @@ export declare const destroyHumanTestEnvContract: {
1261
1381
  readonly severity: import("valibot").PicklistSchema<["low", "medium", "high", "critical"], undefined>;
1262
1382
  }, undefined>, undefined>;
1263
1383
  readonly environment: import("valibot").OptionalSchema<import("valibot").PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
1384
+ readonly screenshots: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1385
+ readonly view: import("valibot").StringSchema<undefined>;
1386
+ readonly artifactId: import("valibot").StringSchema<undefined>;
1387
+ readonly hash: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1388
+ readonly width: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
1389
+ readonly height: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
1390
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1391
+ }, undefined>, undefined>, undefined>;
1264
1392
  }, undefined>, undefined>, undefined>;
1265
1393
  }, undefined>, undefined>, undefined>;
1266
1394
  readonly humanTest: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
@@ -1288,6 +1416,28 @@ export declare const destroyHumanTestEnvContract: {
1288
1416
  readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1289
1417
  }, undefined>, undefined>, undefined>;
1290
1418
  }, undefined>, undefined>, undefined>;
1419
+ readonly visualConfirm: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
1420
+ readonly phase: import("valibot").PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
1421
+ readonly pairs: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1422
+ readonly view: import("valibot").StringSchema<undefined>;
1423
+ readonly actualArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1424
+ readonly referenceArtifactId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1425
+ }, undefined>, undefined>, undefined>;
1426
+ readonly degradedReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1427
+ readonly attempts: import("valibot").NumberSchema<undefined>;
1428
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
1429
+ readonly rounds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1430
+ readonly findings: import("valibot").StringSchema<undefined>;
1431
+ readonly helperKind: import("valibot").StringSchema<undefined>;
1432
+ readonly jobId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1433
+ readonly outcome: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
1434
+ readonly at: import("valibot").NumberSchema<undefined>;
1435
+ }, undefined>, undefined>, undefined>;
1436
+ readonly pendingAction: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
1437
+ readonly type: import("valibot").PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
1438
+ readonly findings: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1439
+ }, undefined>, undefined>, undefined>;
1440
+ }, undefined>, undefined>, undefined>;
1291
1441
  readonly environment: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
1292
1442
  readonly id: import("valibot").StringSchema<undefined>;
1293
1443
  readonly url: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
1
+ {"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
@@ -16,6 +16,7 @@ export * from './fragment-library.js';
16
16
  export * from './github.js';
17
17
  export * from './human-review.js';
18
18
  export * from './human-test.js';
19
+ export * from './visual-confirm.js';
19
20
  export * from './incident-enrichment.js';
20
21
  export * from './kaizen.js';
21
22
  export * from './localModels.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
@@ -19,6 +19,7 @@ export * from './fragment-library.js';
19
19
  export * from './github.js';
20
20
  export * from './human-review.js';
21
21
  export * from './human-test.js';
22
+ export * from './visual-confirm.js';
22
23
  export * from './incident-enrichment.js';
23
24
  export * from './kaizen.js';
24
25
  export * from './localModels.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
@@ -28,7 +28,7 @@ export declare const listNotificationsContract: {
28
28
  }, undefined>;
29
29
  readonly 200: v.ArraySchema<v.ObjectSchema<{
30
30
  readonly id: v.StringSchema<undefined>;
31
- readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>;
31
+ readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending"], undefined>;
32
32
  readonly status: v.PicklistSchema<["open", "acted", "dismissed"], undefined>;
33
33
  readonly severity: v.OptionalSchema<v.PicklistSchema<["normal", "urgent"], undefined>, undefined>;
34
34
  readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
@@ -100,7 +100,7 @@ export declare const actNotificationContract: {
100
100
  }, undefined>;
101
101
  readonly 200: v.ObjectSchema<{
102
102
  readonly id: v.StringSchema<undefined>;
103
- readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>;
103
+ readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending"], undefined>;
104
104
  readonly status: v.PicklistSchema<["open", "acted", "dismissed"], undefined>;
105
105
  readonly severity: v.OptionalSchema<v.PicklistSchema<["normal", "urgent"], undefined>, undefined>;
106
106
  readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
@@ -172,7 +172,7 @@ export declare const dismissNotificationContract: {
172
172
  }, undefined>;
173
173
  readonly 200: v.ObjectSchema<{
174
174
  readonly id: v.StringSchema<undefined>;
175
- readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>;
175
+ readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending"], undefined>;
176
176
  readonly status: v.PicklistSchema<["open", "acted", "dismissed"], undefined>;
177
177
  readonly severity: v.OptionalSchema<v.PicklistSchema<["normal", "urgent"], undefined>, undefined>;
178
178
  readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
@@ -200,7 +200,7 @@ export declare const getSlackSettingsContract: {
200
200
  }, undefined>;
201
201
  }, undefined>;
202
202
  readonly 200: v.ObjectSchema<{
203
- readonly routes: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>, v.ObjectSchema<{
203
+ readonly routes: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending"], undefined>, v.ObjectSchema<{
204
204
  readonly enabled: v.BooleanSchema<undefined>;
205
205
  readonly channel: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
206
206
  }, undefined>, undefined>;
@@ -213,7 +213,7 @@ export declare const updateSlackSettingsContract: {
213
213
  readonly method: "put";
214
214
  readonly pathResolver: () => string;
215
215
  readonly requestBodySchema: v.ObjectSchema<{
216
- readonly routes: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>, v.ObjectSchema<{
216
+ readonly routes: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending"], undefined>, v.ObjectSchema<{
217
217
  readonly enabled: v.BooleanSchema<undefined>;
218
218
  readonly channel: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
219
219
  }, undefined>, undefined>;
@@ -243,7 +243,7 @@ export declare const updateSlackSettingsContract: {
243
243
  }, undefined>;
244
244
  }, undefined>;
245
245
  readonly 200: v.ObjectSchema<{
246
- readonly routes: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "human_review", "followup_pending"], undefined>, v.ObjectSchema<{
246
+ readonly routes: v.RecordSchema<v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending"], undefined>, v.ObjectSchema<{
247
247
  readonly enabled: v.BooleanSchema<undefined>;
248
248
  readonly channel: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
249
249
  }, undefined>, undefined>;