@cat-factory/contracts 0.313.0 → 0.314.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 (63) hide show
  1. package/dist/deploy-fix.d.ts +98 -0
  2. package/dist/deploy-fix.d.ts.map +1 -0
  3. package/dist/deploy-fix.js +96 -0
  4. package/dist/deploy-fix.js.map +1 -0
  5. package/dist/entities.d.ts +18 -0
  6. package/dist/entities.d.ts.map +1 -1
  7. package/dist/entities.js +7 -0
  8. package/dist/entities.js.map +1 -1
  9. package/dist/environments.d.ts +26 -1
  10. package/dist/environments.d.ts.map +1 -1
  11. package/dist/environments.js +71 -1
  12. package/dist/environments.js.map +1 -1
  13. package/dist/execution.d.ts +50 -0
  14. package/dist/execution.d.ts.map +1 -1
  15. package/dist/execution.js +7 -0
  16. package/dist/execution.js.map +1 -1
  17. package/dist/index.d.ts +1 -0
  18. package/dist/index.d.ts.map +1 -1
  19. package/dist/index.js +1 -0
  20. package/dist/index.js.map +1 -1
  21. package/dist/notification-routing.d.ts +4 -4
  22. package/dist/notification-routing.d.ts.map +1 -1
  23. package/dist/notification-routing.js +3 -1
  24. package/dist/notification-routing.js.map +1 -1
  25. package/dist/notification-webhooks.d.ts +6 -6
  26. package/dist/notification-webhooks.d.ts.map +1 -1
  27. package/dist/notification-webhooks.js +1 -0
  28. package/dist/notification-webhooks.js.map +1 -1
  29. package/dist/notifications.d.ts +4 -4
  30. package/dist/notifications.d.ts.map +1 -1
  31. package/dist/notifications.js +7 -2
  32. package/dist/notifications.js.map +1 -1
  33. package/dist/public-api.d.ts +1 -1
  34. package/dist/requests.d.ts +8 -0
  35. package/dist/requests.d.ts.map +1 -1
  36. package/dist/routes/agent-runs.d.ts +40 -0
  37. package/dist/routes/agent-runs.d.ts.map +1 -1
  38. package/dist/routes/bug-hunt.d.ts +40 -0
  39. package/dist/routes/bug-hunt.d.ts.map +1 -1
  40. package/dist/routes/execution.d.ts +180 -0
  41. package/dist/routes/execution.d.ts.map +1 -1
  42. package/dist/routes/human-review.d.ts +20 -0
  43. package/dist/routes/human-review.d.ts.map +1 -1
  44. package/dist/routes/human-test.d.ts +100 -0
  45. package/dist/routes/human-test.d.ts.map +1 -1
  46. package/dist/routes/notification-webhooks.d.ts +14 -14
  47. package/dist/routes/notifications.d.ts +6 -6
  48. package/dist/routes/pipelines.d.ts +32 -0
  49. package/dist/routes/pipelines.d.ts.map +1 -1
  50. package/dist/routes/public-api.d.ts +3 -3
  51. package/dist/routes/slack.d.ts +3 -3
  52. package/dist/routes/visual-confirm.d.ts +60 -0
  53. package/dist/routes/visual-confirm.d.ts.map +1 -1
  54. package/dist/routes/workspaces.d.ts +50 -2
  55. package/dist/routes/workspaces.d.ts.map +1 -1
  56. package/dist/run-evidence.d.ts +12 -0
  57. package/dist/run-evidence.d.ts.map +1 -1
  58. package/dist/run-evidence.js +12 -0
  59. package/dist/run-evidence.js.map +1 -1
  60. package/dist/slack.d.ts +2 -2
  61. package/dist/snapshot.d.ts +25 -1
  62. package/dist/snapshot.d.ts.map +1 -1
  63. package/package.json +1 -1
@@ -763,6 +763,10 @@ export declare const startExecutionContract: {
763
763
  }, undefined>, undefined>;
764
764
  }, undefined>, undefined>;
765
765
  readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
766
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
767
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
768
+ readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
769
+ }, undefined>, undefined>;
766
770
  readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
767
771
  readonly approvers: v.OptionalSchema<v.ObjectSchema<{
768
772
  readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -1155,6 +1159,22 @@ export declare const startExecutionContract: {
1155
1159
  }, undefined>, undefined>, undefined>;
1156
1160
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1157
1161
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1162
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
1163
+ readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
1164
+ readonly attempts: v.NumberSchema<undefined>;
1165
+ readonly maxAttempts: v.NumberSchema<undefined>;
1166
+ readonly frameId: v.StringSchema<undefined>;
1167
+ readonly reason: v.StringSchema<undefined>;
1168
+ readonly lastError: v.StringSchema<undefined>;
1169
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
1170
+ readonly attempt: v.NumberSchema<undefined>;
1171
+ readonly at: v.NumberSchema<undefined>;
1172
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
1173
+ readonly reason: v.StringSchema<undefined>;
1174
+ readonly error: v.StringSchema<undefined>;
1175
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1176
+ }, undefined>, undefined>, undefined>, undefined>;
1177
+ }, undefined>, undefined>;
1158
1178
  readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
1159
1179
  readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
1160
1180
  readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -1968,6 +1988,10 @@ export declare const startAgentKindExecutionContract: {
1968
1988
  }, undefined>, undefined>;
1969
1989
  }, undefined>, undefined>;
1970
1990
  readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1991
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
1992
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1993
+ readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
1994
+ }, undefined>, undefined>;
1971
1995
  readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
1972
1996
  readonly approvers: v.OptionalSchema<v.ObjectSchema<{
1973
1997
  readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -2360,6 +2384,22 @@ export declare const startAgentKindExecutionContract: {
2360
2384
  }, undefined>, undefined>, undefined>;
2361
2385
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2362
2386
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2387
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
2388
+ readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
2389
+ readonly attempts: v.NumberSchema<undefined>;
2390
+ readonly maxAttempts: v.NumberSchema<undefined>;
2391
+ readonly frameId: v.StringSchema<undefined>;
2392
+ readonly reason: v.StringSchema<undefined>;
2393
+ readonly lastError: v.StringSchema<undefined>;
2394
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
2395
+ readonly attempt: v.NumberSchema<undefined>;
2396
+ readonly at: v.NumberSchema<undefined>;
2397
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
2398
+ readonly reason: v.StringSchema<undefined>;
2399
+ readonly error: v.StringSchema<undefined>;
2400
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2401
+ }, undefined>, undefined>, undefined>, undefined>;
2402
+ }, undefined>, undefined>;
2363
2403
  readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
2364
2404
  readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
2365
2405
  readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -4007,6 +4047,10 @@ export declare const resumeSpendContract: {
4007
4047
  }, undefined>, undefined>;
4008
4048
  }, undefined>, undefined>;
4009
4049
  readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
4050
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
4051
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
4052
+ readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
4053
+ }, undefined>, undefined>;
4010
4054
  readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
4011
4055
  readonly approvers: v.OptionalSchema<v.ObjectSchema<{
4012
4056
  readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -4399,6 +4443,22 @@ export declare const resumeSpendContract: {
4399
4443
  }, undefined>, undefined>, undefined>;
4400
4444
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4401
4445
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4446
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
4447
+ readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
4448
+ readonly attempts: v.NumberSchema<undefined>;
4449
+ readonly maxAttempts: v.NumberSchema<undefined>;
4450
+ readonly frameId: v.StringSchema<undefined>;
4451
+ readonly reason: v.StringSchema<undefined>;
4452
+ readonly lastError: v.StringSchema<undefined>;
4453
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
4454
+ readonly attempt: v.NumberSchema<undefined>;
4455
+ readonly at: v.NumberSchema<undefined>;
4456
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
4457
+ readonly reason: v.StringSchema<undefined>;
4458
+ readonly error: v.StringSchema<undefined>;
4459
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
4460
+ }, undefined>, undefined>, undefined>, undefined>;
4461
+ }, undefined>, undefined>;
4402
4462
  readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
4403
4463
  readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
4404
4464
  readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -5647,6 +5707,10 @@ export declare const resolveDecisionContract: {
5647
5707
  }, undefined>, undefined>;
5648
5708
  }, undefined>, undefined>;
5649
5709
  readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
5710
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
5711
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
5712
+ readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
5713
+ }, undefined>, undefined>;
5650
5714
  readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
5651
5715
  readonly approvers: v.OptionalSchema<v.ObjectSchema<{
5652
5716
  readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -6039,6 +6103,22 @@ export declare const resolveDecisionContract: {
6039
6103
  }, undefined>, undefined>, undefined>;
6040
6104
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6041
6105
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6106
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
6107
+ readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
6108
+ readonly attempts: v.NumberSchema<undefined>;
6109
+ readonly maxAttempts: v.NumberSchema<undefined>;
6110
+ readonly frameId: v.StringSchema<undefined>;
6111
+ readonly reason: v.StringSchema<undefined>;
6112
+ readonly lastError: v.StringSchema<undefined>;
6113
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
6114
+ readonly attempt: v.NumberSchema<undefined>;
6115
+ readonly at: v.NumberSchema<undefined>;
6116
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
6117
+ readonly reason: v.StringSchema<undefined>;
6118
+ readonly error: v.StringSchema<undefined>;
6119
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
6120
+ }, undefined>, undefined>, undefined>, undefined>;
6121
+ }, undefined>, undefined>;
6042
6122
  readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
6043
6123
  readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
6044
6124
  readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -6849,6 +6929,10 @@ export declare const approveStepContract: {
6849
6929
  }, undefined>, undefined>;
6850
6930
  }, undefined>, undefined>;
6851
6931
  readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6932
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
6933
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6934
+ readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
6935
+ }, undefined>, undefined>;
6852
6936
  readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
6853
6937
  readonly approvers: v.OptionalSchema<v.ObjectSchema<{
6854
6938
  readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -7241,6 +7325,22 @@ export declare const approveStepContract: {
7241
7325
  }, undefined>, undefined>, undefined>;
7242
7326
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
7243
7327
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
7328
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
7329
+ readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
7330
+ readonly attempts: v.NumberSchema<undefined>;
7331
+ readonly maxAttempts: v.NumberSchema<undefined>;
7332
+ readonly frameId: v.StringSchema<undefined>;
7333
+ readonly reason: v.StringSchema<undefined>;
7334
+ readonly lastError: v.StringSchema<undefined>;
7335
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
7336
+ readonly attempt: v.NumberSchema<undefined>;
7337
+ readonly at: v.NumberSchema<undefined>;
7338
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
7339
+ readonly reason: v.StringSchema<undefined>;
7340
+ readonly error: v.StringSchema<undefined>;
7341
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
7342
+ }, undefined>, undefined>, undefined>, undefined>;
7343
+ }, undefined>, undefined>;
7244
7344
  readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
7245
7345
  readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
7246
7346
  readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -8065,6 +8165,10 @@ export declare const requestStepChangesContract: {
8065
8165
  }, undefined>, undefined>;
8066
8166
  }, undefined>, undefined>;
8067
8167
  readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
8168
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
8169
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
8170
+ readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
8171
+ }, undefined>, undefined>;
8068
8172
  readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
8069
8173
  readonly approvers: v.OptionalSchema<v.ObjectSchema<{
8070
8174
  readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -8457,6 +8561,22 @@ export declare const requestStepChangesContract: {
8457
8561
  }, undefined>, undefined>, undefined>;
8458
8562
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
8459
8563
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
8564
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
8565
+ readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
8566
+ readonly attempts: v.NumberSchema<undefined>;
8567
+ readonly maxAttempts: v.NumberSchema<undefined>;
8568
+ readonly frameId: v.StringSchema<undefined>;
8569
+ readonly reason: v.StringSchema<undefined>;
8570
+ readonly lastError: v.StringSchema<undefined>;
8571
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
8572
+ readonly attempt: v.NumberSchema<undefined>;
8573
+ readonly at: v.NumberSchema<undefined>;
8574
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
8575
+ readonly reason: v.StringSchema<undefined>;
8576
+ readonly error: v.StringSchema<undefined>;
8577
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
8578
+ }, undefined>, undefined>, undefined>, undefined>;
8579
+ }, undefined>, undefined>;
8460
8580
  readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
8461
8581
  readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
8462
8582
  readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -9267,6 +9387,10 @@ export declare const resolveStepExceededContract: {
9267
9387
  }, undefined>, undefined>;
9268
9388
  }, undefined>, undefined>;
9269
9389
  readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
9390
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
9391
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
9392
+ readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
9393
+ }, undefined>, undefined>;
9270
9394
  readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
9271
9395
  readonly approvers: v.OptionalSchema<v.ObjectSchema<{
9272
9396
  readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -9659,6 +9783,22 @@ export declare const resolveStepExceededContract: {
9659
9783
  }, undefined>, undefined>, undefined>;
9660
9784
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
9661
9785
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
9786
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
9787
+ readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
9788
+ readonly attempts: v.NumberSchema<undefined>;
9789
+ readonly maxAttempts: v.NumberSchema<undefined>;
9790
+ readonly frameId: v.StringSchema<undefined>;
9791
+ readonly reason: v.StringSchema<undefined>;
9792
+ readonly lastError: v.StringSchema<undefined>;
9793
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
9794
+ readonly attempt: v.NumberSchema<undefined>;
9795
+ readonly at: v.NumberSchema<undefined>;
9796
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
9797
+ readonly reason: v.StringSchema<undefined>;
9798
+ readonly error: v.StringSchema<undefined>;
9799
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
9800
+ }, undefined>, undefined>, undefined>, undefined>;
9801
+ }, undefined>, undefined>;
9662
9802
  readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
9663
9803
  readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
9664
9804
  readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -10467,6 +10607,10 @@ export declare const restartExecutionContract: {
10467
10607
  }, undefined>, undefined>;
10468
10608
  }, undefined>, undefined>;
10469
10609
  readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
10610
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
10611
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
10612
+ readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
10613
+ }, undefined>, undefined>;
10470
10614
  readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
10471
10615
  readonly approvers: v.OptionalSchema<v.ObjectSchema<{
10472
10616
  readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -10859,6 +11003,22 @@ export declare const restartExecutionContract: {
10859
11003
  }, undefined>, undefined>, undefined>;
10860
11004
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
10861
11005
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
11006
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
11007
+ readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
11008
+ readonly attempts: v.NumberSchema<undefined>;
11009
+ readonly maxAttempts: v.NumberSchema<undefined>;
11010
+ readonly frameId: v.StringSchema<undefined>;
11011
+ readonly reason: v.StringSchema<undefined>;
11012
+ readonly lastError: v.StringSchema<undefined>;
11013
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
11014
+ readonly attempt: v.NumberSchema<undefined>;
11015
+ readonly at: v.NumberSchema<undefined>;
11016
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
11017
+ readonly reason: v.StringSchema<undefined>;
11018
+ readonly error: v.StringSchema<undefined>;
11019
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
11020
+ }, undefined>, undefined>, undefined>, undefined>;
11021
+ }, undefined>, undefined>;
10862
11022
  readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
10863
11023
  readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
10864
11024
  readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -11669,6 +11829,10 @@ export declare const rejectStepContract: {
11669
11829
  }, undefined>, undefined>;
11670
11830
  }, undefined>, undefined>;
11671
11831
  readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
11832
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
11833
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
11834
+ readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
11835
+ }, undefined>, undefined>;
11672
11836
  readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
11673
11837
  readonly approvers: v.OptionalSchema<v.ObjectSchema<{
11674
11838
  readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -12061,6 +12225,22 @@ export declare const rejectStepContract: {
12061
12225
  }, undefined>, undefined>, undefined>;
12062
12226
  readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
12063
12227
  readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
12228
+ readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
12229
+ readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
12230
+ readonly attempts: v.NumberSchema<undefined>;
12231
+ readonly maxAttempts: v.NumberSchema<undefined>;
12232
+ readonly frameId: v.StringSchema<undefined>;
12233
+ readonly reason: v.StringSchema<undefined>;
12234
+ readonly lastError: v.StringSchema<undefined>;
12235
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
12236
+ readonly attempt: v.NumberSchema<undefined>;
12237
+ readonly at: v.NumberSchema<undefined>;
12238
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
12239
+ readonly reason: v.StringSchema<undefined>;
12240
+ readonly error: v.StringSchema<undefined>;
12241
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
12242
+ }, undefined>, undefined>, undefined>, undefined>;
12243
+ }, undefined>, undefined>;
12064
12244
  readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
12065
12245
  readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
12066
12246
  readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AA4D5B,QAAA,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;IAG3B,6FAA6F;;aAE7F,CAAA;AAUF,QAAA,MAAM,8BAA8B;;IAElC,sFAAsF;;IAEtF,+FAA+F;;IAE/F,sFAAsF;;;;;;;;;;;;;;;;;;;IAEtF,0FAA0F;;aAE1F,CAAA;AAEF;;;;GAIG;AACH,MAAM,MAAM,qBAAqB,GAAG,IAAI,CACtC,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,EAC7C,aAAa,CACd,CAAA;AACD,MAAM,MAAM,mBAAmB,GAAG,IAAI,CACpC,CAAC,CAAC,WAAW,CAAC,OAAO,8BAA8B,CAAC,EACpD,aAAa,CACd,CAAA;AAID,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF;;;;GAIG;AACH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1C,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAS7B,CAAA;AAIF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9B,CAAA;AAIF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIpC,CAAA;AAIF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK5C,CAAA;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA7HxC,6FAA6F;;;;CAkI7F,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAtH/C,sFAAsF;;YAEtF,+FAA+F;;YAE/F,sFAAsF;;;;;;;;;;;;;;;;;;;YAEtF,0FAA0F;;;;CAqH1F,CAAA;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK5C,CAAA;AAIF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO9B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOrC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOtC,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7B,CAAA"}
1
+ {"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AA4D5B,QAAA,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;IAG3B,6FAA6F;;aAE7F,CAAA;AAUF,QAAA,MAAM,8BAA8B;;IAElC,sFAAsF;;IAEtF,+FAA+F;;IAE/F,sFAAsF;;;;;;;;;;;;;;;;;;;IAEtF,0FAA0F;;aAE1F,CAAA;AAEF;;;;GAIG;AACH,MAAM,MAAM,qBAAqB,GAAG,IAAI,CACtC,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,EAC7C,aAAa,CACd,CAAA;AACD,MAAM,MAAM,mBAAmB,GAAG,IAAI,CACpC,CAAC,CAAC,WAAW,CAAC,OAAO,8BAA8B,CAAC,EACpD,aAAa,CACd,CAAA;AAID,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF;;;;GAIG;AACH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1C,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAS7B,CAAA;AAIF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9B,CAAA;AAIF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIpC,CAAA;AAIF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK5C,CAAA;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA7HxC,6FAA6F;;;;CAkI7F,CAAA;AAEF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAtH/C,sFAAsF;;YAEtF,+FAA+F;;YAE/F,sFAAsF;;;;;;;;;;;;;;;;;;;YAEtF,0FAA0F;;;;CAqH1F,CAAA;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK5C,CAAA;AAIF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO9B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOrC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOtC,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7B,CAAA"}
@@ -702,6 +702,10 @@ export declare const requestHumanReviewFixContract: {
702
702
  }, undefined>, undefined>;
703
703
  }, undefined>, undefined>;
704
704
  readonly retainEnvironment: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
705
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
706
+ readonly enabled: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
707
+ readonly maxAttempts: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 5, undefined>]>, undefined>;
708
+ }, undefined>, undefined>;
705
709
  readonly gateConfig: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
706
710
  readonly approvers: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
707
711
  readonly roles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -1094,6 +1098,22 @@ export declare const requestHumanReviewFixContract: {
1094
1098
  }, undefined>, undefined>, undefined>;
1095
1099
  readonly deployFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1096
1100
  readonly deployPrimaryFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1101
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
1102
+ readonly phase: import("valibot").PicklistSchema<["fixing", "retrying"], undefined>;
1103
+ readonly attempts: import("valibot").NumberSchema<undefined>;
1104
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
1105
+ readonly frameId: import("valibot").StringSchema<undefined>;
1106
+ readonly reason: import("valibot").StringSchema<undefined>;
1107
+ readonly lastError: import("valibot").StringSchema<undefined>;
1108
+ readonly attemptLog: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1109
+ readonly attempt: import("valibot").NumberSchema<undefined>;
1110
+ readonly at: import("valibot").NumberSchema<undefined>;
1111
+ readonly outcome: import("valibot").PicklistSchema<["completed", "failed"], undefined>;
1112
+ readonly reason: import("valibot").StringSchema<undefined>;
1113
+ readonly error: import("valibot").StringSchema<undefined>;
1114
+ readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1115
+ }, undefined>, undefined>, undefined>, undefined>;
1116
+ }, undefined>, undefined>;
1097
1117
  readonly disposeEnvs: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").ObjectSchema<{
1098
1118
  readonly status: import("valibot").PicklistSchema<["reclaimed", "failed", "none"], undefined>;
1099
1119
  readonly environmentId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
1
+ {"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
@@ -701,6 +701,10 @@ export declare const confirmHumanTestContract: {
701
701
  }, undefined>, undefined>;
702
702
  }, undefined>, undefined>;
703
703
  readonly retainEnvironment: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
704
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
705
+ readonly enabled: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
706
+ readonly maxAttempts: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 5, undefined>]>, undefined>;
707
+ }, undefined>, undefined>;
704
708
  readonly gateConfig: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
705
709
  readonly approvers: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
706
710
  readonly roles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -1093,6 +1097,22 @@ export declare const confirmHumanTestContract: {
1093
1097
  }, undefined>, undefined>, undefined>;
1094
1098
  readonly deployFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1095
1099
  readonly deployPrimaryFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
1100
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
1101
+ readonly phase: import("valibot").PicklistSchema<["fixing", "retrying"], undefined>;
1102
+ readonly attempts: import("valibot").NumberSchema<undefined>;
1103
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
1104
+ readonly frameId: import("valibot").StringSchema<undefined>;
1105
+ readonly reason: import("valibot").StringSchema<undefined>;
1106
+ readonly lastError: import("valibot").StringSchema<undefined>;
1107
+ readonly attemptLog: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
1108
+ readonly attempt: import("valibot").NumberSchema<undefined>;
1109
+ readonly at: import("valibot").NumberSchema<undefined>;
1110
+ readonly outcome: import("valibot").PicklistSchema<["completed", "failed"], undefined>;
1111
+ readonly reason: import("valibot").StringSchema<undefined>;
1112
+ readonly error: import("valibot").StringSchema<undefined>;
1113
+ readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
1114
+ }, undefined>, undefined>, undefined>, undefined>;
1115
+ }, undefined>, undefined>;
1096
1116
  readonly disposeEnvs: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").ObjectSchema<{
1097
1117
  readonly status: import("valibot").PicklistSchema<["reclaimed", "failed", "none"], undefined>;
1098
1118
  readonly environmentId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
@@ -1901,6 +1921,10 @@ export declare const requestHumanTestFixContract: {
1901
1921
  }, undefined>, undefined>;
1902
1922
  }, undefined>, undefined>;
1903
1923
  readonly retainEnvironment: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
1924
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
1925
+ readonly enabled: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
1926
+ readonly maxAttempts: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 5, undefined>]>, undefined>;
1927
+ }, undefined>, undefined>;
1904
1928
  readonly gateConfig: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
1905
1929
  readonly approvers: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
1906
1930
  readonly roles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -2293,6 +2317,22 @@ export declare const requestHumanTestFixContract: {
2293
2317
  }, undefined>, undefined>, undefined>;
2294
2318
  readonly deployFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
2295
2319
  readonly deployPrimaryFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
2320
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
2321
+ readonly phase: import("valibot").PicklistSchema<["fixing", "retrying"], undefined>;
2322
+ readonly attempts: import("valibot").NumberSchema<undefined>;
2323
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
2324
+ readonly frameId: import("valibot").StringSchema<undefined>;
2325
+ readonly reason: import("valibot").StringSchema<undefined>;
2326
+ readonly lastError: import("valibot").StringSchema<undefined>;
2327
+ readonly attemptLog: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
2328
+ readonly attempt: import("valibot").NumberSchema<undefined>;
2329
+ readonly at: import("valibot").NumberSchema<undefined>;
2330
+ readonly outcome: import("valibot").PicklistSchema<["completed", "failed"], undefined>;
2331
+ readonly reason: import("valibot").StringSchema<undefined>;
2332
+ readonly error: import("valibot").StringSchema<undefined>;
2333
+ readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
2334
+ }, undefined>, undefined>, undefined>, undefined>;
2335
+ }, undefined>, undefined>;
2296
2336
  readonly disposeEnvs: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").ObjectSchema<{
2297
2337
  readonly status: import("valibot").PicklistSchema<["reclaimed", "failed", "none"], undefined>;
2298
2338
  readonly environmentId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
@@ -3099,6 +3139,10 @@ export declare const pullMainHumanTestContract: {
3099
3139
  }, undefined>, undefined>;
3100
3140
  }, undefined>, undefined>;
3101
3141
  readonly retainEnvironment: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
3142
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
3143
+ readonly enabled: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
3144
+ readonly maxAttempts: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 5, undefined>]>, undefined>;
3145
+ }, undefined>, undefined>;
3102
3146
  readonly gateConfig: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
3103
3147
  readonly approvers: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
3104
3148
  readonly roles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -3491,6 +3535,22 @@ export declare const pullMainHumanTestContract: {
3491
3535
  }, undefined>, undefined>, undefined>;
3492
3536
  readonly deployFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
3493
3537
  readonly deployPrimaryFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
3538
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
3539
+ readonly phase: import("valibot").PicklistSchema<["fixing", "retrying"], undefined>;
3540
+ readonly attempts: import("valibot").NumberSchema<undefined>;
3541
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
3542
+ readonly frameId: import("valibot").StringSchema<undefined>;
3543
+ readonly reason: import("valibot").StringSchema<undefined>;
3544
+ readonly lastError: import("valibot").StringSchema<undefined>;
3545
+ readonly attemptLog: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
3546
+ readonly attempt: import("valibot").NumberSchema<undefined>;
3547
+ readonly at: import("valibot").NumberSchema<undefined>;
3548
+ readonly outcome: import("valibot").PicklistSchema<["completed", "failed"], undefined>;
3549
+ readonly reason: import("valibot").StringSchema<undefined>;
3550
+ readonly error: import("valibot").StringSchema<undefined>;
3551
+ readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
3552
+ }, undefined>, undefined>, undefined>, undefined>;
3553
+ }, undefined>, undefined>;
3494
3554
  readonly disposeEnvs: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").ObjectSchema<{
3495
3555
  readonly status: import("valibot").PicklistSchema<["reclaimed", "failed", "none"], undefined>;
3496
3556
  readonly environmentId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
@@ -4297,6 +4357,10 @@ export declare const recreateHumanTestEnvContract: {
4297
4357
  }, undefined>, undefined>;
4298
4358
  }, undefined>, undefined>;
4299
4359
  readonly retainEnvironment: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
4360
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
4361
+ readonly enabled: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
4362
+ readonly maxAttempts: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 5, undefined>]>, undefined>;
4363
+ }, undefined>, undefined>;
4300
4364
  readonly gateConfig: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
4301
4365
  readonly approvers: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
4302
4366
  readonly roles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -4689,6 +4753,22 @@ export declare const recreateHumanTestEnvContract: {
4689
4753
  }, undefined>, undefined>, undefined>;
4690
4754
  readonly deployFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
4691
4755
  readonly deployPrimaryFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
4756
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
4757
+ readonly phase: import("valibot").PicklistSchema<["fixing", "retrying"], undefined>;
4758
+ readonly attempts: import("valibot").NumberSchema<undefined>;
4759
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
4760
+ readonly frameId: import("valibot").StringSchema<undefined>;
4761
+ readonly reason: import("valibot").StringSchema<undefined>;
4762
+ readonly lastError: import("valibot").StringSchema<undefined>;
4763
+ readonly attemptLog: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
4764
+ readonly attempt: import("valibot").NumberSchema<undefined>;
4765
+ readonly at: import("valibot").NumberSchema<undefined>;
4766
+ readonly outcome: import("valibot").PicklistSchema<["completed", "failed"], undefined>;
4767
+ readonly reason: import("valibot").StringSchema<undefined>;
4768
+ readonly error: import("valibot").StringSchema<undefined>;
4769
+ readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
4770
+ }, undefined>, undefined>, undefined>, undefined>;
4771
+ }, undefined>, undefined>;
4692
4772
  readonly disposeEnvs: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").ObjectSchema<{
4693
4773
  readonly status: import("valibot").PicklistSchema<["reclaimed", "failed", "none"], undefined>;
4694
4774
  readonly environmentId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
@@ -5495,6 +5575,10 @@ export declare const destroyHumanTestEnvContract: {
5495
5575
  }, undefined>, undefined>;
5496
5576
  }, undefined>, undefined>;
5497
5577
  readonly retainEnvironment: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
5578
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
5579
+ readonly enabled: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
5580
+ readonly maxAttempts: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>, import("valibot").MaxValueAction<number, 5, undefined>]>, undefined>;
5581
+ }, undefined>, undefined>;
5498
5582
  readonly gateConfig: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
5499
5583
  readonly approvers: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
5500
5584
  readonly roles: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
@@ -5887,6 +5971,22 @@ export declare const destroyHumanTestEnvContract: {
5887
5971
  }, undefined>, undefined>, undefined>;
5888
5972
  readonly deployFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
5889
5973
  readonly deployPrimaryFrameId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
5974
+ readonly deployFix: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
5975
+ readonly phase: import("valibot").PicklistSchema<["fixing", "retrying"], undefined>;
5976
+ readonly attempts: import("valibot").NumberSchema<undefined>;
5977
+ readonly maxAttempts: import("valibot").NumberSchema<undefined>;
5978
+ readonly frameId: import("valibot").StringSchema<undefined>;
5979
+ readonly reason: import("valibot").StringSchema<undefined>;
5980
+ readonly lastError: import("valibot").StringSchema<undefined>;
5981
+ readonly attemptLog: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
5982
+ readonly attempt: import("valibot").NumberSchema<undefined>;
5983
+ readonly at: import("valibot").NumberSchema<undefined>;
5984
+ readonly outcome: import("valibot").PicklistSchema<["completed", "failed"], undefined>;
5985
+ readonly reason: import("valibot").StringSchema<undefined>;
5986
+ readonly error: import("valibot").StringSchema<undefined>;
5987
+ readonly summary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
5988
+ }, undefined>, undefined>, undefined>, undefined>;
5989
+ }, undefined>, undefined>;
5890
5990
  readonly disposeEnvs: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").ObjectSchema<{
5891
5991
  readonly status: import("valibot").PicklistSchema<["reclaimed", "failed", "none"], undefined>;
5892
5992
  readonly environmentId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;