@cat-factory/contracts 0.299.0 → 0.300.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/agent-failure-kinds.d.ts +1 -1
- package/dist/agent-failure-kinds.d.ts.map +1 -1
- package/dist/agent-failure-kinds.js +6 -0
- package/dist/agent-failure-kinds.js.map +1 -1
- package/dist/bootstrap.d.ts +2 -2
- package/dist/debug-api.d.ts +3 -3
- package/dist/env-config-repair.d.ts +1 -1
- package/dist/execution.d.ts +3 -3
- package/dist/public-provisioning.d.ts +105 -6
- package/dist/public-provisioning.d.ts.map +1 -1
- package/dist/public-provisioning.js +55 -5
- package/dist/public-provisioning.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +8 -8
- package/dist/routes/bootstrap.d.ts +3 -3
- package/dist/routes/bug-hunt.d.ts +4 -4
- package/dist/routes/debug-api.d.ts +2 -2
- package/dist/routes/execution.d.ts +18 -18
- package/dist/routes/human-review.d.ts +2 -2
- package/dist/routes/human-test.d.ts +10 -10
- package/dist/routes/public-provisioning.d.ts +8 -3
- package/dist/routes/public-provisioning.d.ts.map +1 -1
- package/dist/routes/public-provisioning.js +4 -1
- package/dist/routes/public-provisioning.js.map +1 -1
- package/dist/routes/visual-confirm.d.ts +6 -6
- package/dist/routes/workspaces.d.ts +8 -8
- package/dist/snapshot.d.ts +4 -4
- package/package.json +1 -1
|
@@ -42,7 +42,7 @@ export declare const listDebugRunsContract: {
|
|
|
42
42
|
readonly currentStep: import("valibot").NumberSchema<undefined>;
|
|
43
43
|
readonly stepCount: import("valibot").NumberSchema<undefined>;
|
|
44
44
|
readonly failure: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
45
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
45
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
46
46
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
47
47
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
48
48
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -112,7 +112,7 @@ export declare const getDebugRunContract: {
|
|
|
112
112
|
readonly currentStep: import("valibot").NumberSchema<undefined>;
|
|
113
113
|
readonly stepCount: import("valibot").NumberSchema<undefined>;
|
|
114
114
|
readonly failure: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
115
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
115
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
116
116
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
117
117
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
118
118
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -1147,7 +1147,7 @@ export declare const startExecutionContract: {
|
|
|
1147
1147
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
1148
1148
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
1149
1149
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1150
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1150
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1151
1151
|
readonly message: v.StringSchema<undefined>;
|
|
1152
1152
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1153
1153
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1165,7 +1165,7 @@ export declare const startExecutionContract: {
|
|
|
1165
1165
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1166
1166
|
}, undefined>, undefined>, undefined>;
|
|
1167
1167
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1168
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1168
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1169
1169
|
readonly message: v.StringSchema<undefined>;
|
|
1170
1170
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1171
1171
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -2334,7 +2334,7 @@ export declare const startAgentKindExecutionContract: {
|
|
|
2334
2334
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
2335
2335
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
2336
2336
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2337
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2337
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
2338
2338
|
readonly message: v.StringSchema<undefined>;
|
|
2339
2339
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2340
2340
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -2352,7 +2352,7 @@ export declare const startAgentKindExecutionContract: {
|
|
|
2352
2352
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2353
2353
|
}, undefined>, undefined>, undefined>;
|
|
2354
2354
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2355
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2355
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
2356
2356
|
readonly message: v.StringSchema<undefined>;
|
|
2357
2357
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2358
2358
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4355,7 +4355,7 @@ export declare const resumeSpendContract: {
|
|
|
4355
4355
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
4356
4356
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
4357
4357
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4358
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
4358
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
4359
4359
|
readonly message: v.StringSchema<undefined>;
|
|
4360
4360
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4361
4361
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -4373,7 +4373,7 @@ export declare const resumeSpendContract: {
|
|
|
4373
4373
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4374
4374
|
}, undefined>, undefined>, undefined>;
|
|
4375
4375
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4376
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
4376
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
4377
4377
|
readonly message: v.StringSchema<undefined>;
|
|
4378
4378
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
4379
4379
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5977,7 +5977,7 @@ export declare const resolveDecisionContract: {
|
|
|
5977
5977
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
5978
5978
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
5979
5979
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5980
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
5980
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
5981
5981
|
readonly message: v.StringSchema<undefined>;
|
|
5982
5982
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5983
5983
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5995,7 +5995,7 @@ export declare const resolveDecisionContract: {
|
|
|
5995
5995
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
5996
5996
|
}, undefined>, undefined>, undefined>;
|
|
5997
5997
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5998
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
5998
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
5999
5999
|
readonly message: v.StringSchema<undefined>;
|
|
6000
6000
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
6001
6001
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -7161,7 +7161,7 @@ export declare const approveStepContract: {
|
|
|
7161
7161
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
7162
7162
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
7163
7163
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
7164
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
7164
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
7165
7165
|
readonly message: v.StringSchema<undefined>;
|
|
7166
7166
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7167
7167
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -7179,7 +7179,7 @@ export declare const approveStepContract: {
|
|
|
7179
7179
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
7180
7180
|
}, undefined>, undefined>, undefined>;
|
|
7181
7181
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
7182
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
7182
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
7183
7183
|
readonly message: v.StringSchema<undefined>;
|
|
7184
7184
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
7185
7185
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -8359,7 +8359,7 @@ export declare const requestStepChangesContract: {
|
|
|
8359
8359
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
8360
8360
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
8361
8361
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
8362
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
8362
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
8363
8363
|
readonly message: v.StringSchema<undefined>;
|
|
8364
8364
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
8365
8365
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -8377,7 +8377,7 @@ export declare const requestStepChangesContract: {
|
|
|
8377
8377
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
8378
8378
|
}, undefined>, undefined>, undefined>;
|
|
8379
8379
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
8380
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
8380
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
8381
8381
|
readonly message: v.StringSchema<undefined>;
|
|
8382
8382
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
8383
8383
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -9543,7 +9543,7 @@ export declare const resolveStepExceededContract: {
|
|
|
9543
9543
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
9544
9544
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
9545
9545
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
9546
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
9546
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
9547
9547
|
readonly message: v.StringSchema<undefined>;
|
|
9548
9548
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
9549
9549
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -9561,7 +9561,7 @@ export declare const resolveStepExceededContract: {
|
|
|
9561
9561
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
9562
9562
|
}, undefined>, undefined>, undefined>;
|
|
9563
9563
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
9564
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
9564
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
9565
9565
|
readonly message: v.StringSchema<undefined>;
|
|
9566
9566
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
9567
9567
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -10725,7 +10725,7 @@ export declare const restartExecutionContract: {
|
|
|
10725
10725
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
10726
10726
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
10727
10727
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
10728
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
10728
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
10729
10729
|
readonly message: v.StringSchema<undefined>;
|
|
10730
10730
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
10731
10731
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -10743,7 +10743,7 @@ export declare const restartExecutionContract: {
|
|
|
10743
10743
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
10744
10744
|
}, undefined>, undefined>, undefined>;
|
|
10745
10745
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
10746
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
10746
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
10747
10747
|
readonly message: v.StringSchema<undefined>;
|
|
10748
10748
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
10749
10749
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -11909,7 +11909,7 @@ export declare const rejectStepContract: {
|
|
|
11909
11909
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
11910
11910
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
11911
11911
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
11912
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
11912
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
11913
11913
|
readonly message: v.StringSchema<undefined>;
|
|
11914
11914
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
11915
11915
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -11927,7 +11927,7 @@ export declare const rejectStepContract: {
|
|
|
11927
11927
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
11928
11928
|
}, undefined>, undefined>, undefined>;
|
|
11929
11929
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
11930
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
11930
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
11931
11931
|
readonly message: v.StringSchema<undefined>;
|
|
11932
11932
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
11933
11933
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1086,7 +1086,7 @@ export declare const requestHumanReviewFixContract: {
|
|
|
1086
1086
|
readonly currentStep: import("valibot").NumberSchema<undefined>;
|
|
1087
1087
|
readonly status: import("valibot").PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
1088
1088
|
readonly failure: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1089
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1089
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1090
1090
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
1091
1091
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1092
1092
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -1104,7 +1104,7 @@ export declare const requestHumanReviewFixContract: {
|
|
|
1104
1104
|
readonly stepIndex: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1105
1105
|
}, undefined>, undefined>, undefined>;
|
|
1106
1106
|
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1107
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1107
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1108
1108
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
1109
1109
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1110
1110
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -1085,7 +1085,7 @@ export declare const confirmHumanTestContract: {
|
|
|
1085
1085
|
readonly currentStep: import("valibot").NumberSchema<undefined>;
|
|
1086
1086
|
readonly status: import("valibot").PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
1087
1087
|
readonly failure: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1088
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1088
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1089
1089
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
1090
1090
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1091
1091
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -1103,7 +1103,7 @@ export declare const confirmHumanTestContract: {
|
|
|
1103
1103
|
readonly stepIndex: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1104
1104
|
}, undefined>, undefined>, undefined>;
|
|
1105
1105
|
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1106
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1106
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1107
1107
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
1108
1108
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1109
1109
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -2267,7 +2267,7 @@ export declare const requestHumanTestFixContract: {
|
|
|
2267
2267
|
readonly currentStep: import("valibot").NumberSchema<undefined>;
|
|
2268
2268
|
readonly status: import("valibot").PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
2269
2269
|
readonly failure: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2270
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2270
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
2271
2271
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
2272
2272
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2273
2273
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -2285,7 +2285,7 @@ export declare const requestHumanTestFixContract: {
|
|
|
2285
2285
|
readonly stepIndex: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
2286
2286
|
}, undefined>, undefined>, undefined>;
|
|
2287
2287
|
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2288
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2288
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
2289
2289
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
2290
2290
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2291
2291
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -3447,7 +3447,7 @@ export declare const pullMainHumanTestContract: {
|
|
|
3447
3447
|
readonly currentStep: import("valibot").NumberSchema<undefined>;
|
|
3448
3448
|
readonly status: import("valibot").PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
3449
3449
|
readonly failure: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
3450
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3450
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
3451
3451
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
3452
3452
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3453
3453
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -3465,7 +3465,7 @@ export declare const pullMainHumanTestContract: {
|
|
|
3465
3465
|
readonly stepIndex: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
3466
3466
|
}, undefined>, undefined>, undefined>;
|
|
3467
3467
|
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
3468
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3468
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
3469
3469
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
3470
3470
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3471
3471
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -4627,7 +4627,7 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
4627
4627
|
readonly currentStep: import("valibot").NumberSchema<undefined>;
|
|
4628
4628
|
readonly status: import("valibot").PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
4629
4629
|
readonly failure: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
4630
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
4630
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
4631
4631
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
4632
4632
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4633
4633
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -4645,7 +4645,7 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
4645
4645
|
readonly stepIndex: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
4646
4646
|
}, undefined>, undefined>, undefined>;
|
|
4647
4647
|
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
4648
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
4648
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
4649
4649
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
4650
4650
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4651
4651
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -5807,7 +5807,7 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
5807
5807
|
readonly currentStep: import("valibot").NumberSchema<undefined>;
|
|
5808
5808
|
readonly status: import("valibot").PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
5809
5809
|
readonly failure: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
5810
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
5810
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
5811
5811
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
5812
5812
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5813
5813
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -5825,7 +5825,7 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
5825
5825
|
readonly stepIndex: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
5826
5826
|
}, undefined>, undefined>, undefined>;
|
|
5827
5827
|
readonly failureHistory: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
5828
|
-
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
5828
|
+
readonly kind: import("valibot").PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
5829
5829
|
readonly message: import("valibot").StringSchema<undefined>;
|
|
5830
5830
|
readonly detail: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
5831
5831
|
readonly hint: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
@@ -65,7 +65,7 @@ export declare const startPublicRepoBootstrapContract: {
|
|
|
65
65
|
}, undefined>, undefined>, undefined>;
|
|
66
66
|
}, undefined>, undefined>;
|
|
67
67
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
68
|
-
readonly failureKind: v.NullableSchema<v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>, undefined>;
|
|
68
|
+
readonly failureKind: v.NullableSchema<v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>, undefined>;
|
|
69
69
|
readonly failureDetail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
70
70
|
readonly failureHint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
71
71
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
@@ -250,7 +250,7 @@ export declare const getPublicRepoBootstrapContract: {
|
|
|
250
250
|
}, undefined>, undefined>, undefined>;
|
|
251
251
|
}, undefined>, undefined>;
|
|
252
252
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
253
|
-
readonly failureKind: v.NullableSchema<v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>, undefined>;
|
|
253
|
+
readonly failureKind: v.NullableSchema<v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>, undefined>;
|
|
254
254
|
readonly failureDetail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
255
255
|
readonly failureHint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
256
256
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
@@ -530,7 +530,10 @@ export declare const updatePublicServiceContract: {
|
|
|
530
530
|
readonly minScope: "admin";
|
|
531
531
|
};
|
|
532
532
|
/**
|
|
533
|
-
* The workspace's model catalog, with the
|
|
533
|
+
* The workspace's model catalog, with the flags that decide whether a run can dispatch and which of
|
|
534
|
+
* four unrelated fixes an unrunnable model needs: `available`, `policyBlocked`,
|
|
535
|
+
* `personalSubscription` and `subscriptionConfigured`. Each is documented on
|
|
536
|
+
* `publicWiredModelSchema`, which is where a caller reading the field learns what `null` means.
|
|
534
537
|
*
|
|
535
538
|
* The alternative to serving this is not a different call, it is a caller discovering an unwired
|
|
536
539
|
* model forty minutes into a run it has already paid for.
|
|
@@ -569,6 +572,8 @@ export declare const listPublicWiredModelsContract: {
|
|
|
569
572
|
readonly available: v.BooleanSchema<undefined>;
|
|
570
573
|
readonly policyBlocked: v.BooleanSchema<undefined>;
|
|
571
574
|
readonly userScoped: v.BooleanSchema<undefined>;
|
|
575
|
+
readonly personalSubscription: v.BooleanSchema<undefined>;
|
|
576
|
+
readonly subscriptionConfigured: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
572
577
|
}, undefined>, undefined>;
|
|
573
578
|
readonly excludesUserScopedModels: v.BooleanSchema<undefined>;
|
|
574
579
|
}, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-provisioning.d.ts","sourceRoot":"","sources":["../../src/routes/public-provisioning.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAiD5B;;;;;;;GAOG;AACH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ5C,CAAA;AAID;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ5C,CAAA;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQlC,CAAA;AAED,qFAAqF;AACrF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ1C,CAAA;AAID;;;;;;;;GAQG;AACH,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQnD,CAAA;AAED;;;;;;GAMG;AACH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ5C,CAAA;AAID;;;;;;;;;;GAUG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASvC,CAAA;AAID
|
|
1
|
+
{"version":3,"file":"public-provisioning.d.ts","sourceRoot":"","sources":["../../src/routes/public-provisioning.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAiD5B;;;;;;;GAOG;AACH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ5C,CAAA;AAID;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ5C,CAAA;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQlC,CAAA;AAED,qFAAqF;AACrF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ1C,CAAA;AAID;;;;;;;;GAQG;AACH,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQnD,CAAA;AAED;;;;;;GAMG;AACH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ5C,CAAA;AAID;;;;;;;;;;GAUG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASvC,CAAA;AAID;;;;;;;;GAQG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOzC,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO1C,CAAA;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO1C,CAAA;AAED;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO1C,CAAA;AAID;;;;;;;GAOG;AACH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7C,CAAA;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQhD,CAAA"}
|
|
@@ -143,7 +143,10 @@ export const updatePublicServiceContract = withMinScope('admin', defineApiContra
|
|
|
143
143
|
}));
|
|
144
144
|
// ---- what this deployment has WIRED -----------------------------------------
|
|
145
145
|
/**
|
|
146
|
-
* The workspace's model catalog, with the
|
|
146
|
+
* The workspace's model catalog, with the flags that decide whether a run can dispatch and which of
|
|
147
|
+
* four unrelated fixes an unrunnable model needs: `available`, `policyBlocked`,
|
|
148
|
+
* `personalSubscription` and `subscriptionConfigured`. Each is documented on
|
|
149
|
+
* `publicWiredModelSchema`, which is where a caller reading the field learns what `null` means.
|
|
147
150
|
*
|
|
148
151
|
* The alternative to serving this is not a different call, it is a caller discovering an unwired
|
|
149
152
|
* model forty minutes into a run it has already paid for.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-provisioning.js","sourceRoot":"","sources":["../../src/routes/public-provisioning.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"public-provisioning.js","sourceRoot":"","sources":["../../src/routes/public-provisioning.ts"],"names":[],"mappings":"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"}
|
|
@@ -1086,7 +1086,7 @@ export declare const approveVisualConfirmContract: {
|
|
|
1086
1086
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
1087
1087
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
1088
1088
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1089
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1089
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1090
1090
|
readonly message: v.StringSchema<undefined>;
|
|
1091
1091
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1092
1092
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1104,7 +1104,7 @@ export declare const approveVisualConfirmContract: {
|
|
|
1104
1104
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1105
1105
|
}, undefined>, undefined>, undefined>;
|
|
1106
1106
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1107
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1107
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1108
1108
|
readonly message: v.StringSchema<undefined>;
|
|
1109
1109
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1110
1110
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -2268,7 +2268,7 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
2268
2268
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
2269
2269
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
2270
2270
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2271
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2271
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
2272
2272
|
readonly message: v.StringSchema<undefined>;
|
|
2273
2273
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2274
2274
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -2286,7 +2286,7 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
2286
2286
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2287
2287
|
}, undefined>, undefined>, undefined>;
|
|
2288
2288
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2289
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2289
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
2290
2290
|
readonly message: v.StringSchema<undefined>;
|
|
2291
2291
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2292
2292
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -3448,7 +3448,7 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
3448
3448
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
3449
3449
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
3450
3450
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3451
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3451
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
3452
3452
|
readonly message: v.StringSchema<undefined>;
|
|
3453
3453
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3454
3454
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -3466,7 +3466,7 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
3466
3466
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3467
3467
|
}, undefined>, undefined>, undefined>;
|
|
3468
3468
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3469
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3469
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
3470
3470
|
readonly message: v.StringSchema<undefined>;
|
|
3471
3471
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3472
3472
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1607,7 +1607,7 @@ export declare const createWorkspaceContract: {
|
|
|
1607
1607
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
1608
1608
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
1609
1609
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1610
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1610
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1611
1611
|
readonly message: v.StringSchema<undefined>;
|
|
1612
1612
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1613
1613
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1625,7 +1625,7 @@ export declare const createWorkspaceContract: {
|
|
|
1625
1625
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1626
1626
|
}, undefined>, undefined>, undefined>;
|
|
1627
1627
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1628
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1628
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1629
1629
|
readonly message: v.StringSchema<undefined>;
|
|
1630
1630
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1631
1631
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1721,7 +1721,7 @@ export declare const createWorkspaceContract: {
|
|
|
1721
1721
|
}, undefined>, undefined>;
|
|
1722
1722
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1723
1723
|
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
1724
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1724
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1725
1725
|
readonly message: v.StringSchema<undefined>;
|
|
1726
1726
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1727
1727
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1765,7 +1765,7 @@ export declare const createWorkspaceContract: {
|
|
|
1765
1765
|
}, undefined>, undefined>;
|
|
1766
1766
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1767
1767
|
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
1768
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1768
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1769
1769
|
readonly message: v.StringSchema<undefined>;
|
|
1770
1770
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1771
1771
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5128,7 +5128,7 @@ export declare const getWorkspaceContract: {
|
|
|
5128
5128
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
5129
5129
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
5130
5130
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
5131
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
5131
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
5132
5132
|
readonly message: v.StringSchema<undefined>;
|
|
5133
5133
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5134
5134
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5146,7 +5146,7 @@ export declare const getWorkspaceContract: {
|
|
|
5146
5146
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
5147
5147
|
}, undefined>, undefined>, undefined>;
|
|
5148
5148
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
5149
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
5149
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
5150
5150
|
readonly message: v.StringSchema<undefined>;
|
|
5151
5151
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5152
5152
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5242,7 +5242,7 @@ export declare const getWorkspaceContract: {
|
|
|
5242
5242
|
}, undefined>, undefined>;
|
|
5243
5243
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5244
5244
|
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
5245
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
5245
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
5246
5246
|
readonly message: v.StringSchema<undefined>;
|
|
5247
5247
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5248
5248
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5286,7 +5286,7 @@ export declare const getWorkspaceContract: {
|
|
|
5286
5286
|
}, undefined>, undefined>;
|
|
5287
5287
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5288
5288
|
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
5289
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
5289
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
5290
5290
|
readonly message: v.StringSchema<undefined>;
|
|
5291
5291
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
5292
5292
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
package/dist/snapshot.d.ts
CHANGED
|
@@ -1545,7 +1545,7 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1545
1545
|
readonly currentStep: v.NumberSchema<undefined>;
|
|
1546
1546
|
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
1547
1547
|
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1548
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1548
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1549
1549
|
readonly message: v.StringSchema<undefined>;
|
|
1550
1550
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1551
1551
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1563,7 +1563,7 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1563
1563
|
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1564
1564
|
}, undefined>, undefined>, undefined>;
|
|
1565
1565
|
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1566
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1566
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1567
1567
|
readonly message: v.StringSchema<undefined>;
|
|
1568
1568
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1569
1569
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1665,7 +1665,7 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1665
1665
|
}, undefined>, undefined>;
|
|
1666
1666
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1667
1667
|
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
1668
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1668
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1669
1669
|
readonly message: v.StringSchema<undefined>;
|
|
1670
1670
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1671
1671
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -1715,7 +1715,7 @@ export declare const workspaceSnapshotSchema: v.ObjectSchema<{
|
|
|
1715
1715
|
}, undefined>, undefined>;
|
|
1716
1716
|
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1717
1717
|
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
1718
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
1718
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "state_unreadable", "cancelled", "unknown"], undefined>;
|
|
1719
1719
|
readonly message: v.StringSchema<undefined>;
|
|
1720
1720
|
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1721
1721
|
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|