@cat-factory/contracts 0.81.2 → 0.82.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entities.d.ts +30 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +8 -0
- package/dist/entities.js.map +1 -1
- package/dist/frontend.d.ts +125 -1
- package/dist/frontend.d.ts.map +1 -1
- package/dist/frontend.js +59 -1
- package/dist/frontend.js.map +1 -1
- package/dist/requests.d.ts +7 -0
- package/dist/requests.d.ts.map +1 -1
- package/dist/routes/agent-runs.d.ts +32 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/board.d.ts +17 -0
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +71 -0
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/environments.js +9 -0
- package/dist/routes/environments.js.map +1 -1
- package/dist/routes/execution.d.ts +130 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +16 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +80 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +3 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +48 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +34 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +17 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -503,6 +503,22 @@ export declare const startExecutionContract: {
|
|
|
503
503
|
}, undefined>, undefined>, undefined>;
|
|
504
504
|
}, undefined>, undefined>;
|
|
505
505
|
}, undefined>, undefined>, undefined>;
|
|
506
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
507
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
508
|
+
readonly message: v.StringSchema<undefined>;
|
|
509
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
510
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
511
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
512
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
513
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
514
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
515
|
+
readonly total: v.NumberSchema<undefined>;
|
|
516
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
517
|
+
readonly label: v.StringSchema<undefined>;
|
|
518
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
519
|
+
}, undefined>, undefined>, undefined>;
|
|
520
|
+
}, undefined>, undefined>;
|
|
521
|
+
}, undefined>, undefined>, undefined>;
|
|
506
522
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
507
523
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
508
524
|
}, undefined>;
|
|
@@ -679,6 +695,7 @@ export declare const cancelExecutionContract: {
|
|
|
679
695
|
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
680
696
|
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
681
697
|
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
698
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
682
699
|
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
683
700
|
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
684
701
|
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
@@ -888,6 +905,7 @@ export declare const mergeBlockContract: {
|
|
|
888
905
|
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
889
906
|
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
890
907
|
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
908
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
891
909
|
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
892
910
|
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
893
911
|
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
@@ -1458,6 +1476,22 @@ export declare const resumeSpendContract: {
|
|
|
1458
1476
|
}, undefined>, undefined>, undefined>;
|
|
1459
1477
|
}, undefined>, undefined>;
|
|
1460
1478
|
}, undefined>, undefined>, undefined>;
|
|
1479
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1480
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1481
|
+
readonly message: v.StringSchema<undefined>;
|
|
1482
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1483
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1484
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
1485
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
1486
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
1487
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
1488
|
+
readonly total: v.NumberSchema<undefined>;
|
|
1489
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1490
|
+
readonly label: v.StringSchema<undefined>;
|
|
1491
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
1492
|
+
}, undefined>, undefined>, undefined>;
|
|
1493
|
+
}, undefined>, undefined>;
|
|
1494
|
+
}, undefined>, undefined>, undefined>;
|
|
1461
1495
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1462
1496
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1463
1497
|
}, undefined>, undefined>;
|
|
@@ -2190,6 +2224,22 @@ export declare const resolveDecisionContract: {
|
|
|
2190
2224
|
}, undefined>, undefined>, undefined>;
|
|
2191
2225
|
}, undefined>, undefined>;
|
|
2192
2226
|
}, undefined>, undefined>, undefined>;
|
|
2227
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2228
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2229
|
+
readonly message: v.StringSchema<undefined>;
|
|
2230
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2231
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2232
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2233
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2234
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
2235
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
2236
|
+
readonly total: v.NumberSchema<undefined>;
|
|
2237
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2238
|
+
readonly label: v.StringSchema<undefined>;
|
|
2239
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2240
|
+
}, undefined>, undefined>, undefined>;
|
|
2241
|
+
}, undefined>, undefined>;
|
|
2242
|
+
}, undefined>, undefined>, undefined>;
|
|
2193
2243
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2194
2244
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2195
2245
|
}, undefined>;
|
|
@@ -2700,6 +2750,22 @@ export declare const approveStepContract: {
|
|
|
2700
2750
|
}, undefined>, undefined>, undefined>;
|
|
2701
2751
|
}, undefined>, undefined>;
|
|
2702
2752
|
}, undefined>, undefined>, undefined>;
|
|
2753
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2754
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2755
|
+
readonly message: v.StringSchema<undefined>;
|
|
2756
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2757
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2758
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2759
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2760
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
2761
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
2762
|
+
readonly total: v.NumberSchema<undefined>;
|
|
2763
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2764
|
+
readonly label: v.StringSchema<undefined>;
|
|
2765
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2766
|
+
}, undefined>, undefined>, undefined>;
|
|
2767
|
+
}, undefined>, undefined>;
|
|
2768
|
+
}, undefined>, undefined>, undefined>;
|
|
2703
2769
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2704
2770
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2705
2771
|
}, undefined>;
|
|
@@ -3224,6 +3290,22 @@ export declare const requestStepChangesContract: {
|
|
|
3224
3290
|
}, undefined>, undefined>, undefined>;
|
|
3225
3291
|
}, undefined>, undefined>;
|
|
3226
3292
|
}, undefined>, undefined>, undefined>;
|
|
3293
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3294
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3295
|
+
readonly message: v.StringSchema<undefined>;
|
|
3296
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3297
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3298
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
3299
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
3300
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
3301
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
3302
|
+
readonly total: v.NumberSchema<undefined>;
|
|
3303
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3304
|
+
readonly label: v.StringSchema<undefined>;
|
|
3305
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3306
|
+
}, undefined>, undefined>, undefined>;
|
|
3307
|
+
}, undefined>, undefined>;
|
|
3308
|
+
}, undefined>, undefined>, undefined>;
|
|
3227
3309
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3228
3310
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3229
3311
|
}, undefined>;
|
|
@@ -3734,6 +3816,22 @@ export declare const resolveStepExceededContract: {
|
|
|
3734
3816
|
}, undefined>, undefined>, undefined>;
|
|
3735
3817
|
}, undefined>, undefined>;
|
|
3736
3818
|
}, undefined>, undefined>, undefined>;
|
|
3819
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3820
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3821
|
+
readonly message: v.StringSchema<undefined>;
|
|
3822
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3823
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3824
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
3825
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
3826
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
3827
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
3828
|
+
readonly total: v.NumberSchema<undefined>;
|
|
3829
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3830
|
+
readonly label: v.StringSchema<undefined>;
|
|
3831
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3832
|
+
}, undefined>, undefined>, undefined>;
|
|
3833
|
+
}, undefined>, undefined>;
|
|
3834
|
+
}, undefined>, undefined>, undefined>;
|
|
3737
3835
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3738
3836
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3739
3837
|
}, undefined>;
|
|
@@ -4242,6 +4340,22 @@ export declare const restartExecutionContract: {
|
|
|
4242
4340
|
}, undefined>, undefined>, undefined>;
|
|
4243
4341
|
}, undefined>, undefined>;
|
|
4244
4342
|
}, undefined>, undefined>, undefined>;
|
|
4343
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4344
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
4345
|
+
readonly message: v.StringSchema<undefined>;
|
|
4346
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4347
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4348
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
4349
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
4350
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
4351
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
4352
|
+
readonly total: v.NumberSchema<undefined>;
|
|
4353
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4354
|
+
readonly label: v.StringSchema<undefined>;
|
|
4355
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
4356
|
+
}, undefined>, undefined>, undefined>;
|
|
4357
|
+
}, undefined>, undefined>;
|
|
4358
|
+
}, undefined>, undefined>, undefined>;
|
|
4245
4359
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4246
4360
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4247
4361
|
}, undefined>;
|
|
@@ -4752,6 +4866,22 @@ export declare const rejectStepContract: {
|
|
|
4752
4866
|
}, undefined>, undefined>, undefined>;
|
|
4753
4867
|
}, undefined>, undefined>;
|
|
4754
4868
|
}, undefined>, undefined>, undefined>;
|
|
4869
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4870
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
4871
|
+
readonly message: v.StringSchema<undefined>;
|
|
4872
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4873
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4874
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
4875
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
4876
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
4877
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
4878
|
+
readonly total: v.NumberSchema<undefined>;
|
|
4879
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4880
|
+
readonly label: v.StringSchema<undefined>;
|
|
4881
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
4882
|
+
}, undefined>, undefined>, undefined>;
|
|
4883
|
+
}, undefined>, undefined>;
|
|
4884
|
+
}, undefined>, undefined>, undefined>;
|
|
4755
4885
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4756
4886
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4757
4887
|
}, 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;AAwC5B,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwC5B,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAIF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9B,CAAA;AAIF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKzC,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,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"}
|
|
@@ -501,6 +501,22 @@ export declare const requestHumanReviewFixContract: {
|
|
|
501
501
|
}, undefined>, undefined>, undefined>;
|
|
502
502
|
}, undefined>, undefined>;
|
|
503
503
|
}, undefined>, undefined>, undefined>;
|
|
504
|
+
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
505
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
506
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
507
|
+
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
508
|
+
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
509
|
+
readonly occurredAt: import("valibot").NumberSchema<undefined>;
|
|
510
|
+
readonly lastSubtasks: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
511
|
+
readonly completed: import("valibot").NumberSchema<undefined>;
|
|
512
|
+
readonly inProgress: import("valibot").NumberSchema<undefined>;
|
|
513
|
+
readonly total: import("valibot").NumberSchema<undefined>;
|
|
514
|
+
readonly items: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
515
|
+
readonly label: import("valibot").StringSchema<undefined>;
|
|
516
|
+
readonly status: import("valibot").PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
517
|
+
}, undefined>, undefined>, undefined>;
|
|
518
|
+
}, undefined>, undefined>;
|
|
519
|
+
}, undefined>, undefined>, undefined>;
|
|
504
520
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
505
521
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
506
522
|
}, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
|
|
@@ -500,6 +500,22 @@ export declare const confirmHumanTestContract: {
|
|
|
500
500
|
}, undefined>, undefined>, undefined>;
|
|
501
501
|
}, undefined>, undefined>;
|
|
502
502
|
}, undefined>, undefined>, undefined>;
|
|
503
|
+
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
504
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
505
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
506
|
+
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
507
|
+
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
508
|
+
readonly occurredAt: import("valibot").NumberSchema<undefined>;
|
|
509
|
+
readonly lastSubtasks: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
510
|
+
readonly completed: import("valibot").NumberSchema<undefined>;
|
|
511
|
+
readonly inProgress: import("valibot").NumberSchema<undefined>;
|
|
512
|
+
readonly total: import("valibot").NumberSchema<undefined>;
|
|
513
|
+
readonly items: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
514
|
+
readonly label: import("valibot").StringSchema<undefined>;
|
|
515
|
+
readonly status: import("valibot").PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
516
|
+
}, undefined>, undefined>, undefined>;
|
|
517
|
+
}, undefined>, undefined>;
|
|
518
|
+
}, undefined>, undefined>, undefined>;
|
|
503
519
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
504
520
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
505
521
|
}, undefined>;
|
|
@@ -1008,6 +1024,22 @@ export declare const requestHumanTestFixContract: {
|
|
|
1008
1024
|
}, undefined>, undefined>, undefined>;
|
|
1009
1025
|
}, undefined>, undefined>;
|
|
1010
1026
|
}, undefined>, undefined>, undefined>;
|
|
1027
|
+
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1028
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1029
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
1030
|
+
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1031
|
+
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1032
|
+
readonly occurredAt: import("valibot").NumberSchema<undefined>;
|
|
1033
|
+
readonly lastSubtasks: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1034
|
+
readonly completed: import("valibot").NumberSchema<undefined>;
|
|
1035
|
+
readonly inProgress: import("valibot").NumberSchema<undefined>;
|
|
1036
|
+
readonly total: import("valibot").NumberSchema<undefined>;
|
|
1037
|
+
readonly items: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1038
|
+
readonly label: import("valibot").StringSchema<undefined>;
|
|
1039
|
+
readonly status: import("valibot").PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
1040
|
+
}, undefined>, undefined>, undefined>;
|
|
1041
|
+
}, undefined>, undefined>;
|
|
1042
|
+
}, undefined>, undefined>, undefined>;
|
|
1011
1043
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1012
1044
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1013
1045
|
}, undefined>;
|
|
@@ -1514,6 +1546,22 @@ export declare const pullMainHumanTestContract: {
|
|
|
1514
1546
|
}, undefined>, undefined>, undefined>;
|
|
1515
1547
|
}, undefined>, undefined>;
|
|
1516
1548
|
}, undefined>, undefined>, undefined>;
|
|
1549
|
+
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1550
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1551
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
1552
|
+
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1553
|
+
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1554
|
+
readonly occurredAt: import("valibot").NumberSchema<undefined>;
|
|
1555
|
+
readonly lastSubtasks: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1556
|
+
readonly completed: import("valibot").NumberSchema<undefined>;
|
|
1557
|
+
readonly inProgress: import("valibot").NumberSchema<undefined>;
|
|
1558
|
+
readonly total: import("valibot").NumberSchema<undefined>;
|
|
1559
|
+
readonly items: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1560
|
+
readonly label: import("valibot").StringSchema<undefined>;
|
|
1561
|
+
readonly status: import("valibot").PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
1562
|
+
}, undefined>, undefined>, undefined>;
|
|
1563
|
+
}, undefined>, undefined>;
|
|
1564
|
+
}, undefined>, undefined>, undefined>;
|
|
1517
1565
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1518
1566
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1519
1567
|
}, undefined>;
|
|
@@ -2020,6 +2068,22 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
2020
2068
|
}, undefined>, undefined>, undefined>;
|
|
2021
2069
|
}, undefined>, undefined>;
|
|
2022
2070
|
}, undefined>, undefined>, undefined>;
|
|
2071
|
+
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2072
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2073
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
2074
|
+
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2075
|
+
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2076
|
+
readonly occurredAt: import("valibot").NumberSchema<undefined>;
|
|
2077
|
+
readonly lastSubtasks: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2078
|
+
readonly completed: import("valibot").NumberSchema<undefined>;
|
|
2079
|
+
readonly inProgress: import("valibot").NumberSchema<undefined>;
|
|
2080
|
+
readonly total: import("valibot").NumberSchema<undefined>;
|
|
2081
|
+
readonly items: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2082
|
+
readonly label: import("valibot").StringSchema<undefined>;
|
|
2083
|
+
readonly status: import("valibot").PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2084
|
+
}, undefined>, undefined>, undefined>;
|
|
2085
|
+
}, undefined>, undefined>;
|
|
2086
|
+
}, undefined>, undefined>, undefined>;
|
|
2023
2087
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2024
2088
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
2025
2089
|
}, undefined>;
|
|
@@ -2526,6 +2590,22 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
2526
2590
|
}, undefined>, undefined>, undefined>;
|
|
2527
2591
|
}, undefined>, undefined>;
|
|
2528
2592
|
}, undefined>, undefined>, undefined>;
|
|
2593
|
+
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2594
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2595
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
2596
|
+
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2597
|
+
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2598
|
+
readonly occurredAt: import("valibot").NumberSchema<undefined>;
|
|
2599
|
+
readonly lastSubtasks: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2600
|
+
readonly completed: import("valibot").NumberSchema<undefined>;
|
|
2601
|
+
readonly inProgress: import("valibot").NumberSchema<undefined>;
|
|
2602
|
+
readonly total: import("valibot").NumberSchema<undefined>;
|
|
2603
|
+
readonly items: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2604
|
+
readonly label: import("valibot").StringSchema<undefined>;
|
|
2605
|
+
readonly status: import("valibot").PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2606
|
+
}, undefined>, undefined>, undefined>;
|
|
2607
|
+
}, undefined>, undefined>;
|
|
2608
|
+
}, undefined>, undefined>, undefined>;
|
|
2529
2609
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2530
2610
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
2531
2611
|
}, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
|
package/dist/routes/tasks.d.ts
CHANGED
|
@@ -681,6 +681,7 @@ export declare const createTaskFromIssueContract: {
|
|
|
681
681
|
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
682
682
|
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
683
683
|
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
684
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
684
685
|
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
685
686
|
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
686
687
|
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
@@ -919,6 +920,7 @@ export declare const spawnEpicContract: {
|
|
|
919
920
|
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
920
921
|
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
921
922
|
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
923
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
922
924
|
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
923
925
|
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
924
926
|
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
@@ -1094,6 +1096,7 @@ export declare const spawnEpicContract: {
|
|
|
1094
1096
|
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1095
1097
|
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1096
1098
|
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1099
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1097
1100
|
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
1098
1101
|
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1099
1102
|
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tasks.d.ts","sourceRoot":"","sources":["../../src/routes/tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAuD5B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIlC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAItC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMrC,CAAA;AAIF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIlC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAItC,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAW5B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM9B,CAAA;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3B,CAAA;AAEF,eAAO,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"tasks.d.ts","sourceRoot":"","sources":["../../src/routes/tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAuD5B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIlC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAItC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKvC,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMrC,CAAA;AAIF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIlC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAItC,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAW5B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM9B,CAAA;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3B,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKtC,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA"}
|
|
@@ -501,6 +501,22 @@ export declare const approveVisualConfirmContract: {
|
|
|
501
501
|
}, undefined>, undefined>, undefined>;
|
|
502
502
|
}, undefined>, undefined>;
|
|
503
503
|
}, undefined>, undefined>, undefined>;
|
|
504
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
505
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
506
|
+
readonly message: v.StringSchema<undefined>;
|
|
507
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
508
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
509
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
510
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
511
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
512
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
513
|
+
readonly total: v.NumberSchema<undefined>;
|
|
514
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
515
|
+
readonly label: v.StringSchema<undefined>;
|
|
516
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
517
|
+
}, undefined>, undefined>, undefined>;
|
|
518
|
+
}, undefined>, undefined>;
|
|
519
|
+
}, undefined>, undefined>, undefined>;
|
|
504
520
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
505
521
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
506
522
|
}, undefined>;
|
|
@@ -1009,6 +1025,22 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
1009
1025
|
}, undefined>, undefined>, undefined>;
|
|
1010
1026
|
}, undefined>, undefined>;
|
|
1011
1027
|
}, undefined>, undefined>, undefined>;
|
|
1028
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1029
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1030
|
+
readonly message: v.StringSchema<undefined>;
|
|
1031
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1032
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1033
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
1034
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
1035
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
1036
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
1037
|
+
readonly total: v.NumberSchema<undefined>;
|
|
1038
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1039
|
+
readonly label: v.StringSchema<undefined>;
|
|
1040
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
1041
|
+
}, undefined>, undefined>, undefined>;
|
|
1042
|
+
}, undefined>, undefined>;
|
|
1043
|
+
}, undefined>, undefined>, undefined>;
|
|
1012
1044
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1013
1045
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1014
1046
|
}, undefined>;
|
|
@@ -1515,6 +1547,22 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
1515
1547
|
}, undefined>, undefined>, undefined>;
|
|
1516
1548
|
}, undefined>, undefined>;
|
|
1517
1549
|
}, undefined>, undefined>, undefined>;
|
|
1550
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1551
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1552
|
+
readonly message: v.StringSchema<undefined>;
|
|
1553
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1554
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1555
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
1556
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
1557
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
1558
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
1559
|
+
readonly total: v.NumberSchema<undefined>;
|
|
1560
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1561
|
+
readonly label: v.StringSchema<undefined>;
|
|
1562
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
1563
|
+
}, undefined>, undefined>, undefined>;
|
|
1564
|
+
}, undefined>, undefined>;
|
|
1565
|
+
}, undefined>, undefined>, undefined>;
|
|
1518
1566
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1519
1567
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1520
1568
|
}, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"visual-confirm.d.ts","sourceRoot":"","sources":["../../src/routes/visual-confirm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"visual-confirm.d.ts","sourceRoot":"","sources":["../../src/routes/visual-confirm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1C,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMzC,CAAA"}
|
|
@@ -215,6 +215,7 @@ export declare const createWorkspaceContract: {
|
|
|
215
215
|
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
216
216
|
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
217
217
|
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
218
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
218
219
|
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
219
220
|
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
220
221
|
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
@@ -768,6 +769,22 @@ export declare const createWorkspaceContract: {
|
|
|
768
769
|
}, undefined>, undefined>, undefined>;
|
|
769
770
|
}, undefined>, undefined>;
|
|
770
771
|
}, undefined>, undefined>, undefined>;
|
|
772
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
773
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
774
|
+
readonly message: v.StringSchema<undefined>;
|
|
775
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
776
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
777
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
778
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
779
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
780
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
781
|
+
readonly total: v.NumberSchema<undefined>;
|
|
782
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
783
|
+
readonly label: v.StringSchema<undefined>;
|
|
784
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
785
|
+
}, undefined>, undefined>, undefined>;
|
|
786
|
+
}, undefined>, undefined>;
|
|
787
|
+
}, undefined>, undefined>, undefined>;
|
|
771
788
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
772
789
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
773
790
|
}, undefined>, undefined>;
|
|
@@ -1219,6 +1236,7 @@ export declare const getWorkspaceContract: {
|
|
|
1219
1236
|
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1220
1237
|
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1221
1238
|
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1239
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
1222
1240
|
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
1223
1241
|
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
1224
1242
|
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
@@ -1772,6 +1790,22 @@ export declare const getWorkspaceContract: {
|
|
|
1772
1790
|
}, undefined>, undefined>, undefined>;
|
|
1773
1791
|
}, undefined>, undefined>;
|
|
1774
1792
|
}, undefined>, undefined>, undefined>;
|
|
1793
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1794
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1795
|
+
readonly message: v.StringSchema<undefined>;
|
|
1796
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1797
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1798
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
1799
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
1800
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
1801
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
1802
|
+
readonly total: v.NumberSchema<undefined>;
|
|
1803
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1804
|
+
readonly label: v.StringSchema<undefined>;
|
|
1805
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
1806
|
+
}, undefined>, undefined>, undefined>;
|
|
1807
|
+
}, undefined>, undefined>;
|
|
1808
|
+
}, undefined>, undefined>, undefined>;
|
|
1775
1809
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1776
1810
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1777
1811
|
}, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/routes/workspaces.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAgB5B,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/routes/workspaces.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAgB5B,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK/B,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMlC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA"}
|