@cat-factory/contracts 0.239.0 → 0.241.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/dist/agent-presentation.d.ts +16 -0
  2. package/dist/agent-presentation.d.ts.map +1 -1
  3. package/dist/agent-presentation.js +16 -0
  4. package/dist/agent-presentation.js.map +1 -1
  5. package/dist/debug-api.d.ts +1 -1
  6. package/dist/entities.d.ts +32 -0
  7. package/dist/entities.d.ts.map +1 -1
  8. package/dist/entities.js +10 -0
  9. package/dist/entities.js.map +1 -1
  10. package/dist/environments.d.ts +26 -0
  11. package/dist/environments.d.ts.map +1 -1
  12. package/dist/environments.js +30 -0
  13. package/dist/environments.js.map +1 -1
  14. package/dist/execution.d.ts +172 -1
  15. package/dist/execution.d.ts.map +1 -1
  16. package/dist/execution.js +49 -1
  17. package/dist/execution.js.map +1 -1
  18. package/dist/form-fields.d.ts +44 -0
  19. package/dist/form-fields.d.ts.map +1 -1
  20. package/dist/form-fields.js +46 -0
  21. package/dist/form-fields.js.map +1 -1
  22. package/dist/gate-approval.d.ts +66 -0
  23. package/dist/gate-approval.d.ts.map +1 -0
  24. package/dist/gate-approval.js +67 -0
  25. package/dist/gate-approval.js.map +1 -0
  26. package/dist/gate-config.d.ts +134 -0
  27. package/dist/gate-config.d.ts.map +1 -0
  28. package/dist/gate-config.js +134 -0
  29. package/dist/gate-config.js.map +1 -0
  30. package/dist/gate.d.ts +10 -0
  31. package/dist/gate.d.ts.map +1 -1
  32. package/dist/gate.js +11 -0
  33. package/dist/gate.js.map +1 -1
  34. package/dist/index.d.ts +2 -0
  35. package/dist/index.d.ts.map +1 -1
  36. package/dist/index.js +2 -0
  37. package/dist/index.js.map +1 -1
  38. package/dist/initiative-preset.d.ts +4 -0
  39. package/dist/initiative-preset.d.ts.map +1 -1
  40. package/dist/input-gate.d.ts +38 -5
  41. package/dist/input-gate.d.ts.map +1 -1
  42. package/dist/input-gate.js +27 -1
  43. package/dist/input-gate.js.map +1 -1
  44. package/dist/pr-report.d.ts +39 -3
  45. package/dist/pr-report.d.ts.map +1 -1
  46. package/dist/pr-report.js +20 -2
  47. package/dist/pr-report.js.map +1 -1
  48. package/dist/provisioning-logs.d.ts +13 -5
  49. package/dist/provisioning-logs.d.ts.map +1 -1
  50. package/dist/provisioning-logs.js +11 -2
  51. package/dist/provisioning-logs.js.map +1 -1
  52. package/dist/public-decisions.d.ts +72 -3
  53. package/dist/public-decisions.d.ts.map +1 -1
  54. package/dist/public-decisions.js +19 -0
  55. package/dist/public-decisions.js.map +1 -1
  56. package/dist/requests.d.ts +37 -4
  57. package/dist/requests.d.ts.map +1 -1
  58. package/dist/requests.js +12 -0
  59. package/dist/requests.js.map +1 -1
  60. package/dist/routes/agent-runs.d.ts +62 -2
  61. package/dist/routes/agent-runs.d.ts.map +1 -1
  62. package/dist/routes/board.d.ts +21 -4
  63. package/dist/routes/board.d.ts.map +1 -1
  64. package/dist/routes/bug-hunt.d.ts +62 -2
  65. package/dist/routes/bug-hunt.d.ts.map +1 -1
  66. package/dist/routes/debug-api.d.ts +1 -1
  67. package/dist/routes/execution.d.ts +248 -8
  68. package/dist/routes/execution.d.ts.map +1 -1
  69. package/dist/routes/human-review.d.ts +31 -1
  70. package/dist/routes/human-review.d.ts.map +1 -1
  71. package/dist/routes/human-test.d.ts +155 -5
  72. package/dist/routes/human-test.d.ts.map +1 -1
  73. package/dist/routes/input-gate.d.ts +5 -1
  74. package/dist/routes/input-gate.d.ts.map +1 -1
  75. package/dist/routes/pipelines.d.ts +64 -0
  76. package/dist/routes/pipelines.d.ts.map +1 -1
  77. package/dist/routes/provisioning-logs.d.ts +1 -1
  78. package/dist/routes/public-decisions.d.ts +238 -34
  79. package/dist/routes/public-decisions.d.ts.map +1 -1
  80. package/dist/routes/visual-confirm.d.ts +93 -3
  81. package/dist/routes/visual-confirm.d.ts.map +1 -1
  82. package/dist/routes/workspaces.d.ts +138 -2
  83. package/dist/routes/workspaces.d.ts.map +1 -1
  84. package/dist/snapshot.d.ts +78 -1
  85. package/dist/snapshot.d.ts.map +1 -1
  86. package/dist/snapshot.js +11 -0
  87. package/dist/snapshot.js.map +1 -1
  88. package/dist/step-decisions.d.ts +27 -0
  89. package/dist/step-decisions.d.ts.map +1 -1
  90. package/dist/step-decisions.js +24 -2
  91. package/dist/step-decisions.js.map +1 -1
  92. package/dist/task-types.d.ts +4 -0
  93. package/dist/task-types.d.ts.map +1 -1
  94. package/package.json +1 -1
@@ -85,6 +85,7 @@ export declare const startExecutionContract: {
85
85
  readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
86
86
  }, undefined>, undefined>, undefined>;
87
87
  readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
88
+ readonly config: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>, undefined>;
88
89
  readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
89
90
  readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
90
91
  readonly name: v.StringSchema<undefined>;
@@ -358,6 +359,16 @@ export declare const startExecutionContract: {
358
359
  readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
359
360
  readonly body: v.StringSchema<undefined>;
360
361
  }, undefined>, undefined>, undefined>;
362
+ readonly requiredApprovals: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
363
+ readonly approverPolicy: v.OptionalSchema<v.ObjectSchema<{
364
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
365
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
366
+ }, undefined>, undefined>;
367
+ readonly approvals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
368
+ readonly actorId: v.StringSchema<undefined>;
369
+ readonly actorLabel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
370
+ readonly at: v.NumberSchema<undefined>;
371
+ }, undefined>, undefined>, undefined>;
361
372
  }, undefined>, undefined>, undefined>;
362
373
  readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
363
374
  readonly threshold: v.NumberSchema<undefined>;
@@ -655,6 +666,14 @@ export declare const startExecutionContract: {
655
666
  readonly modalities: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>, undefined>;
656
667
  readonly mediaTypes: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToLowerCaseAction, v.MinLengthAction<string, 3, undefined>, v.MaxLengthAction<string, 128, undefined>, v.RegexAction<string, "must be a media type of the form type/subtype">]>, undefined>, undefined>;
657
668
  }, undefined>, undefined>;
669
+ readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
670
+ readonly approvers: v.OptionalSchema<v.ObjectSchema<{
671
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
672
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
673
+ }, undefined>, undefined>;
674
+ readonly minApprovals: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
675
+ readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
676
+ }, undefined>, undefined>;
658
677
  }, undefined>, undefined>, undefined>;
659
678
  readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
660
679
  readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -961,10 +980,17 @@ export declare const startExecutionContract: {
961
980
  readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
962
981
  readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
963
982
  readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
983
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
964
984
  readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
965
985
  }, undefined>, undefined>, undefined>;
966
986
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
967
987
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
988
+ readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
989
+ readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
990
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
991
+ readonly confirmation: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["confirmed", "still_standing", "unverifiable", "unconfirmed"], undefined>, undefined>, undefined>;
992
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
993
+ }, undefined>, undefined>, undefined>;
968
994
  }, undefined>, undefined>;
969
995
  readonly currentStep: v.NumberSchema<undefined>;
970
996
  readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
@@ -1043,8 +1069,12 @@ export declare const startExecutionContract: {
1043
1069
  readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
1044
1070
  readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
1045
1071
  readonly issues: v.ArraySchema<v.ObjectSchema<{
1046
- readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
1072
+ readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
1047
1073
  readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
1074
+ readonly field: v.OptionalSchema<v.ObjectSchema<{
1075
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
1076
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
1077
+ }, undefined>, undefined>;
1048
1078
  }, undefined>, undefined>;
1049
1079
  readonly checkedAt: v.NumberSchema<undefined>;
1050
1080
  readonly overriddenBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -1976,6 +2006,7 @@ export declare const resumeSpendContract: {
1976
2006
  readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1977
2007
  }, undefined>, undefined>, undefined>;
1978
2008
  readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
2009
+ readonly config: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>, undefined>;
1979
2010
  readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1980
2011
  readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
1981
2012
  readonly name: v.StringSchema<undefined>;
@@ -2249,6 +2280,16 @@ export declare const resumeSpendContract: {
2249
2280
  readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2250
2281
  readonly body: v.StringSchema<undefined>;
2251
2282
  }, undefined>, undefined>, undefined>;
2283
+ readonly requiredApprovals: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
2284
+ readonly approverPolicy: v.OptionalSchema<v.ObjectSchema<{
2285
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
2286
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
2287
+ }, undefined>, undefined>;
2288
+ readonly approvals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
2289
+ readonly actorId: v.StringSchema<undefined>;
2290
+ readonly actorLabel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2291
+ readonly at: v.NumberSchema<undefined>;
2292
+ }, undefined>, undefined>, undefined>;
2252
2293
  }, undefined>, undefined>, undefined>;
2253
2294
  readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
2254
2295
  readonly threshold: v.NumberSchema<undefined>;
@@ -2546,6 +2587,14 @@ export declare const resumeSpendContract: {
2546
2587
  readonly modalities: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>, undefined>;
2547
2588
  readonly mediaTypes: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToLowerCaseAction, v.MinLengthAction<string, 3, undefined>, v.MaxLengthAction<string, 128, undefined>, v.RegexAction<string, "must be a media type of the form type/subtype">]>, undefined>, undefined>;
2548
2589
  }, undefined>, undefined>;
2590
+ readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
2591
+ readonly approvers: v.OptionalSchema<v.ObjectSchema<{
2592
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
2593
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
2594
+ }, undefined>, undefined>;
2595
+ readonly minApprovals: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
2596
+ readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
2597
+ }, undefined>, undefined>;
2549
2598
  }, undefined>, undefined>, undefined>;
2550
2599
  readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2551
2600
  readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -2852,10 +2901,17 @@ export declare const resumeSpendContract: {
2852
2901
  readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
2853
2902
  readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
2854
2903
  readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2904
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2855
2905
  readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2856
2906
  }, undefined>, undefined>, undefined>;
2857
2907
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2858
2908
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2909
+ readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
2910
+ readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
2911
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2912
+ readonly confirmation: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["confirmed", "still_standing", "unverifiable", "unconfirmed"], undefined>, undefined>, undefined>;
2913
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2914
+ }, undefined>, undefined>, undefined>;
2859
2915
  }, undefined>, undefined>;
2860
2916
  readonly currentStep: v.NumberSchema<undefined>;
2861
2917
  readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
@@ -2934,8 +2990,12 @@ export declare const resumeSpendContract: {
2934
2990
  readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
2935
2991
  readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
2936
2992
  readonly issues: v.ArraySchema<v.ObjectSchema<{
2937
- readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
2993
+ readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
2938
2994
  readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
2995
+ readonly field: v.OptionalSchema<v.ObjectSchema<{
2996
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
2997
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
2998
+ }, undefined>, undefined>;
2939
2999
  }, undefined>, undefined>;
2940
3000
  readonly checkedAt: v.NumberSchema<undefined>;
2941
3001
  readonly overriddenBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -3351,6 +3411,7 @@ export declare const resolveDecisionContract: {
3351
3411
  readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3352
3412
  }, undefined>, undefined>, undefined>;
3353
3413
  readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
3414
+ readonly config: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>, undefined>;
3354
3415
  readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
3355
3416
  readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
3356
3417
  readonly name: v.StringSchema<undefined>;
@@ -3624,6 +3685,16 @@ export declare const resolveDecisionContract: {
3624
3685
  readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3625
3686
  readonly body: v.StringSchema<undefined>;
3626
3687
  }, undefined>, undefined>, undefined>;
3688
+ readonly requiredApprovals: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
3689
+ readonly approverPolicy: v.OptionalSchema<v.ObjectSchema<{
3690
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
3691
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
3692
+ }, undefined>, undefined>;
3693
+ readonly approvals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
3694
+ readonly actorId: v.StringSchema<undefined>;
3695
+ readonly actorLabel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
3696
+ readonly at: v.NumberSchema<undefined>;
3697
+ }, undefined>, undefined>, undefined>;
3627
3698
  }, undefined>, undefined>, undefined>;
3628
3699
  readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
3629
3700
  readonly threshold: v.NumberSchema<undefined>;
@@ -3921,6 +3992,14 @@ export declare const resolveDecisionContract: {
3921
3992
  readonly modalities: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>, undefined>;
3922
3993
  readonly mediaTypes: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToLowerCaseAction, v.MinLengthAction<string, 3, undefined>, v.MaxLengthAction<string, 128, undefined>, v.RegexAction<string, "must be a media type of the form type/subtype">]>, undefined>, undefined>;
3923
3994
  }, undefined>, undefined>;
3995
+ readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
3996
+ readonly approvers: v.OptionalSchema<v.ObjectSchema<{
3997
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
3998
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
3999
+ }, undefined>, undefined>;
4000
+ readonly minApprovals: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
4001
+ readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
4002
+ }, undefined>, undefined>;
3924
4003
  }, undefined>, undefined>, undefined>;
3925
4004
  readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
3926
4005
  readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -4227,10 +4306,17 @@ export declare const resolveDecisionContract: {
4227
4306
  readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
4228
4307
  readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
4229
4308
  readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
4309
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
4230
4310
  readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
4231
4311
  }, undefined>, undefined>, undefined>;
4232
4312
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4233
4313
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4314
+ readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
4315
+ readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
4316
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
4317
+ readonly confirmation: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["confirmed", "still_standing", "unverifiable", "unconfirmed"], undefined>, undefined>, undefined>;
4318
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
4319
+ }, undefined>, undefined>, undefined>;
4234
4320
  }, undefined>, undefined>;
4235
4321
  readonly currentStep: v.NumberSchema<undefined>;
4236
4322
  readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
@@ -4309,8 +4395,12 @@ export declare const resolveDecisionContract: {
4309
4395
  readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
4310
4396
  readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
4311
4397
  readonly issues: v.ArraySchema<v.ObjectSchema<{
4312
- readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
4398
+ readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
4313
4399
  readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
4400
+ readonly field: v.OptionalSchema<v.ObjectSchema<{
4401
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
4402
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
4403
+ }, undefined>, undefined>;
4314
4404
  }, undefined>, undefined>;
4315
4405
  readonly checkedAt: v.NumberSchema<undefined>;
4316
4406
  readonly overriddenBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -4405,6 +4495,7 @@ export declare const approveStepContract: {
4405
4495
  readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4406
4496
  }, undefined>, undefined>, undefined>;
4407
4497
  readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
4498
+ readonly config: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>, undefined>;
4408
4499
  readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
4409
4500
  readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
4410
4501
  readonly name: v.StringSchema<undefined>;
@@ -4678,6 +4769,16 @@ export declare const approveStepContract: {
4678
4769
  readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4679
4770
  readonly body: v.StringSchema<undefined>;
4680
4771
  }, undefined>, undefined>, undefined>;
4772
+ readonly requiredApprovals: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
4773
+ readonly approverPolicy: v.OptionalSchema<v.ObjectSchema<{
4774
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
4775
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
4776
+ }, undefined>, undefined>;
4777
+ readonly approvals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
4778
+ readonly actorId: v.StringSchema<undefined>;
4779
+ readonly actorLabel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4780
+ readonly at: v.NumberSchema<undefined>;
4781
+ }, undefined>, undefined>, undefined>;
4681
4782
  }, undefined>, undefined>, undefined>;
4682
4783
  readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
4683
4784
  readonly threshold: v.NumberSchema<undefined>;
@@ -4975,6 +5076,14 @@ export declare const approveStepContract: {
4975
5076
  readonly modalities: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>, undefined>;
4976
5077
  readonly mediaTypes: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToLowerCaseAction, v.MinLengthAction<string, 3, undefined>, v.MaxLengthAction<string, 128, undefined>, v.RegexAction<string, "must be a media type of the form type/subtype">]>, undefined>, undefined>;
4977
5078
  }, undefined>, undefined>;
5079
+ readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
5080
+ readonly approvers: v.OptionalSchema<v.ObjectSchema<{
5081
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
5082
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
5083
+ }, undefined>, undefined>;
5084
+ readonly minApprovals: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
5085
+ readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
5086
+ }, undefined>, undefined>;
4978
5087
  }, undefined>, undefined>, undefined>;
4979
5088
  readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
4980
5089
  readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -5281,10 +5390,17 @@ export declare const approveStepContract: {
5281
5390
  readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
5282
5391
  readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
5283
5392
  readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5393
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5284
5394
  readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5285
5395
  }, undefined>, undefined>, undefined>;
5286
5396
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5287
5397
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5398
+ readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
5399
+ readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
5400
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5401
+ readonly confirmation: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["confirmed", "still_standing", "unverifiable", "unconfirmed"], undefined>, undefined>, undefined>;
5402
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5403
+ }, undefined>, undefined>, undefined>;
5288
5404
  }, undefined>, undefined>;
5289
5405
  readonly currentStep: v.NumberSchema<undefined>;
5290
5406
  readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
@@ -5363,8 +5479,12 @@ export declare const approveStepContract: {
5363
5479
  readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
5364
5480
  readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
5365
5481
  readonly issues: v.ArraySchema<v.ObjectSchema<{
5366
- readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
5482
+ readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
5367
5483
  readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
5484
+ readonly field: v.OptionalSchema<v.ObjectSchema<{
5485
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
5486
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
5487
+ }, undefined>, undefined>;
5368
5488
  }, undefined>, undefined>;
5369
5489
  readonly checkedAt: v.NumberSchema<undefined>;
5370
5490
  readonly overriddenBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -5473,6 +5593,7 @@ export declare const requestStepChangesContract: {
5473
5593
  readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5474
5594
  }, undefined>, undefined>, undefined>;
5475
5595
  readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
5596
+ readonly config: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>, undefined>;
5476
5597
  readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
5477
5598
  readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
5478
5599
  readonly name: v.StringSchema<undefined>;
@@ -5746,6 +5867,16 @@ export declare const requestStepChangesContract: {
5746
5867
  readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5747
5868
  readonly body: v.StringSchema<undefined>;
5748
5869
  }, undefined>, undefined>, undefined>;
5870
+ readonly requiredApprovals: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
5871
+ readonly approverPolicy: v.OptionalSchema<v.ObjectSchema<{
5872
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
5873
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
5874
+ }, undefined>, undefined>;
5875
+ readonly approvals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
5876
+ readonly actorId: v.StringSchema<undefined>;
5877
+ readonly actorLabel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5878
+ readonly at: v.NumberSchema<undefined>;
5879
+ }, undefined>, undefined>, undefined>;
5749
5880
  }, undefined>, undefined>, undefined>;
5750
5881
  readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
5751
5882
  readonly threshold: v.NumberSchema<undefined>;
@@ -6043,6 +6174,14 @@ export declare const requestStepChangesContract: {
6043
6174
  readonly modalities: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>, undefined>;
6044
6175
  readonly mediaTypes: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToLowerCaseAction, v.MinLengthAction<string, 3, undefined>, v.MaxLengthAction<string, 128, undefined>, v.RegexAction<string, "must be a media type of the form type/subtype">]>, undefined>, undefined>;
6045
6176
  }, undefined>, undefined>;
6177
+ readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
6178
+ readonly approvers: v.OptionalSchema<v.ObjectSchema<{
6179
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
6180
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
6181
+ }, undefined>, undefined>;
6182
+ readonly minApprovals: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
6183
+ readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
6184
+ }, undefined>, undefined>;
6046
6185
  }, undefined>, undefined>, undefined>;
6047
6186
  readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6048
6187
  readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -6349,10 +6488,17 @@ export declare const requestStepChangesContract: {
6349
6488
  readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
6350
6489
  readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
6351
6490
  readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
6491
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
6352
6492
  readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
6353
6493
  }, undefined>, undefined>, undefined>;
6354
6494
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6355
6495
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6496
+ readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
6497
+ readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
6498
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
6499
+ readonly confirmation: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["confirmed", "still_standing", "unverifiable", "unconfirmed"], undefined>, undefined>, undefined>;
6500
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
6501
+ }, undefined>, undefined>, undefined>;
6356
6502
  }, undefined>, undefined>;
6357
6503
  readonly currentStep: v.NumberSchema<undefined>;
6358
6504
  readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
@@ -6431,8 +6577,12 @@ export declare const requestStepChangesContract: {
6431
6577
  readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
6432
6578
  readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
6433
6579
  readonly issues: v.ArraySchema<v.ObjectSchema<{
6434
- readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
6580
+ readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
6435
6581
  readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
6582
+ readonly field: v.OptionalSchema<v.ObjectSchema<{
6583
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
6584
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
6585
+ }, undefined>, undefined>;
6436
6586
  }, undefined>, undefined>;
6437
6587
  readonly checkedAt: v.NumberSchema<undefined>;
6438
6588
  readonly overriddenBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -6527,6 +6677,7 @@ export declare const resolveStepExceededContract: {
6527
6677
  readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6528
6678
  }, undefined>, undefined>, undefined>;
6529
6679
  readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
6680
+ readonly config: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>, undefined>;
6530
6681
  readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
6531
6682
  readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
6532
6683
  readonly name: v.StringSchema<undefined>;
@@ -6800,6 +6951,16 @@ export declare const resolveStepExceededContract: {
6800
6951
  readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6801
6952
  readonly body: v.StringSchema<undefined>;
6802
6953
  }, undefined>, undefined>, undefined>;
6954
+ readonly requiredApprovals: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
6955
+ readonly approverPolicy: v.OptionalSchema<v.ObjectSchema<{
6956
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
6957
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
6958
+ }, undefined>, undefined>;
6959
+ readonly approvals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
6960
+ readonly actorId: v.StringSchema<undefined>;
6961
+ readonly actorLabel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6962
+ readonly at: v.NumberSchema<undefined>;
6963
+ }, undefined>, undefined>, undefined>;
6803
6964
  }, undefined>, undefined>, undefined>;
6804
6965
  readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
6805
6966
  readonly threshold: v.NumberSchema<undefined>;
@@ -7097,6 +7258,14 @@ export declare const resolveStepExceededContract: {
7097
7258
  readonly modalities: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>, undefined>;
7098
7259
  readonly mediaTypes: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToLowerCaseAction, v.MinLengthAction<string, 3, undefined>, v.MaxLengthAction<string, 128, undefined>, v.RegexAction<string, "must be a media type of the form type/subtype">]>, undefined>, undefined>;
7099
7260
  }, undefined>, undefined>;
7261
+ readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
7262
+ readonly approvers: v.OptionalSchema<v.ObjectSchema<{
7263
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
7264
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
7265
+ }, undefined>, undefined>;
7266
+ readonly minApprovals: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
7267
+ readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
7268
+ }, undefined>, undefined>;
7100
7269
  }, undefined>, undefined>, undefined>;
7101
7270
  readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
7102
7271
  readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -7403,10 +7572,17 @@ export declare const resolveStepExceededContract: {
7403
7572
  readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
7404
7573
  readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
7405
7574
  readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
7575
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
7406
7576
  readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
7407
7577
  }, undefined>, undefined>, undefined>;
7408
7578
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
7409
7579
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
7580
+ readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
7581
+ readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
7582
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
7583
+ readonly confirmation: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["confirmed", "still_standing", "unverifiable", "unconfirmed"], undefined>, undefined>, undefined>;
7584
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
7585
+ }, undefined>, undefined>, undefined>;
7410
7586
  }, undefined>, undefined>;
7411
7587
  readonly currentStep: v.NumberSchema<undefined>;
7412
7588
  readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
@@ -7485,8 +7661,12 @@ export declare const resolveStepExceededContract: {
7485
7661
  readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
7486
7662
  readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
7487
7663
  readonly issues: v.ArraySchema<v.ObjectSchema<{
7488
- readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
7664
+ readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
7489
7665
  readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
7666
+ readonly field: v.OptionalSchema<v.ObjectSchema<{
7667
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
7668
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
7669
+ }, undefined>, undefined>;
7490
7670
  }, undefined>, undefined>;
7491
7671
  readonly checkedAt: v.NumberSchema<undefined>;
7492
7672
  readonly overriddenBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -7579,6 +7759,7 @@ export declare const restartExecutionContract: {
7579
7759
  readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
7580
7760
  }, undefined>, undefined>, undefined>;
7581
7761
  readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
7762
+ readonly config: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>, undefined>;
7582
7763
  readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
7583
7764
  readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
7584
7765
  readonly name: v.StringSchema<undefined>;
@@ -7852,6 +8033,16 @@ export declare const restartExecutionContract: {
7852
8033
  readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
7853
8034
  readonly body: v.StringSchema<undefined>;
7854
8035
  }, undefined>, undefined>, undefined>;
8036
+ readonly requiredApprovals: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
8037
+ readonly approverPolicy: v.OptionalSchema<v.ObjectSchema<{
8038
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
8039
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
8040
+ }, undefined>, undefined>;
8041
+ readonly approvals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
8042
+ readonly actorId: v.StringSchema<undefined>;
8043
+ readonly actorLabel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
8044
+ readonly at: v.NumberSchema<undefined>;
8045
+ }, undefined>, undefined>, undefined>;
7855
8046
  }, undefined>, undefined>, undefined>;
7856
8047
  readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
7857
8048
  readonly threshold: v.NumberSchema<undefined>;
@@ -8149,6 +8340,14 @@ export declare const restartExecutionContract: {
8149
8340
  readonly modalities: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>, undefined>;
8150
8341
  readonly mediaTypes: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToLowerCaseAction, v.MinLengthAction<string, 3, undefined>, v.MaxLengthAction<string, 128, undefined>, v.RegexAction<string, "must be a media type of the form type/subtype">]>, undefined>, undefined>;
8151
8342
  }, undefined>, undefined>;
8343
+ readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
8344
+ readonly approvers: v.OptionalSchema<v.ObjectSchema<{
8345
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
8346
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
8347
+ }, undefined>, undefined>;
8348
+ readonly minApprovals: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
8349
+ readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
8350
+ }, undefined>, undefined>;
8152
8351
  }, undefined>, undefined>, undefined>;
8153
8352
  readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
8154
8353
  readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -8455,10 +8654,17 @@ export declare const restartExecutionContract: {
8455
8654
  readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
8456
8655
  readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
8457
8656
  readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
8657
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
8458
8658
  readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
8459
8659
  }, undefined>, undefined>, undefined>;
8460
8660
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
8461
8661
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
8662
+ readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
8663
+ readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
8664
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
8665
+ readonly confirmation: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["confirmed", "still_standing", "unverifiable", "unconfirmed"], undefined>, undefined>, undefined>;
8666
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
8667
+ }, undefined>, undefined>, undefined>;
8462
8668
  }, undefined>, undefined>;
8463
8669
  readonly currentStep: v.NumberSchema<undefined>;
8464
8670
  readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
@@ -8537,8 +8743,12 @@ export declare const restartExecutionContract: {
8537
8743
  readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
8538
8744
  readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
8539
8745
  readonly issues: v.ArraySchema<v.ObjectSchema<{
8540
- readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
8746
+ readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
8541
8747
  readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
8748
+ readonly field: v.OptionalSchema<v.ObjectSchema<{
8749
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
8750
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
8751
+ }, undefined>, undefined>;
8542
8752
  }, undefined>, undefined>;
8543
8753
  readonly checkedAt: v.NumberSchema<undefined>;
8544
8754
  readonly overriddenBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -8633,6 +8843,7 @@ export declare const rejectStepContract: {
8633
8843
  readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
8634
8844
  }, undefined>, undefined>, undefined>;
8635
8845
  readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
8846
+ readonly config: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>, undefined>;
8636
8847
  readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
8637
8848
  readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
8638
8849
  readonly name: v.StringSchema<undefined>;
@@ -8906,6 +9117,16 @@ export declare const rejectStepContract: {
8906
9117
  readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
8907
9118
  readonly body: v.StringSchema<undefined>;
8908
9119
  }, undefined>, undefined>, undefined>;
9120
+ readonly requiredApprovals: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
9121
+ readonly approverPolicy: v.OptionalSchema<v.ObjectSchema<{
9122
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
9123
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
9124
+ }, undefined>, undefined>;
9125
+ readonly approvals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
9126
+ readonly actorId: v.StringSchema<undefined>;
9127
+ readonly actorLabel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
9128
+ readonly at: v.NumberSchema<undefined>;
9129
+ }, undefined>, undefined>, undefined>;
8909
9130
  }, undefined>, undefined>, undefined>;
8910
9131
  readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
8911
9132
  readonly threshold: v.NumberSchema<undefined>;
@@ -9203,6 +9424,14 @@ export declare const rejectStepContract: {
9203
9424
  readonly modalities: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["image", "audio", "video", "3d-model", "3d-scene", "document"], undefined>, undefined>, undefined>;
9204
9425
  readonly mediaTypes: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToLowerCaseAction, v.MinLengthAction<string, 3, undefined>, v.MaxLengthAction<string, 128, undefined>, v.RegexAction<string, "must be a media type of the form type/subtype">]>, undefined>, undefined>;
9205
9426
  }, undefined>, undefined>;
9427
+ readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
9428
+ readonly approvers: v.OptionalSchema<v.ObjectSchema<{
9429
+ readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
9430
+ readonly userIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
9431
+ }, undefined>, undefined>;
9432
+ readonly minApprovals: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
9433
+ readonly fields: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
9434
+ }, undefined>, undefined>;
9206
9435
  }, undefined>, undefined>, undefined>;
9207
9436
  readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
9208
9437
  readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
@@ -9509,10 +9738,17 @@ export declare const rejectStepContract: {
9509
9738
  readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
9510
9739
  readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
9511
9740
  readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
9741
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
9512
9742
  readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
9513
9743
  }, undefined>, undefined>, undefined>;
9514
9744
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
9515
9745
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
9746
+ readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
9747
+ readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
9748
+ readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
9749
+ readonly confirmation: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["confirmed", "still_standing", "unverifiable", "unconfirmed"], undefined>, undefined>, undefined>;
9750
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
9751
+ }, undefined>, undefined>, undefined>;
9516
9752
  }, undefined>, undefined>;
9517
9753
  readonly currentStep: v.NumberSchema<undefined>;
9518
9754
  readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
@@ -9591,8 +9827,12 @@ export declare const rejectStepContract: {
9591
9827
  readonly status: v.PicklistSchema<["off", "not_applicable", "passed", "blocked", "overridden"], undefined>;
9592
9828
  readonly mode: v.PicklistSchema<["standard", "advisory", "off"], undefined>;
9593
9829
  readonly issues: v.ArraySchema<v.ObjectSchema<{
9594
- readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing"], undefined>;
9830
+ readonly code: v.PicklistSchema<readonly ["description_missing", "description_placeholder", "description_thin", "reproduction_missing", "review_target_missing", "success_criteria_missing", "required_field_missing"], undefined>;
9595
9831
  readonly severity: v.PicklistSchema<["blocking", "advisory"], undefined>;
9832
+ readonly field: v.OptionalSchema<v.ObjectSchema<{
9833
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
9834
+ readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
9835
+ }, undefined>, undefined>;
9596
9836
  }, undefined>, undefined>;
9597
9837
  readonly checkedAt: v.NumberSchema<undefined>;
9598
9838
  readonly overriddenBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;