@cat-factory/contracts 0.312.0 → 0.314.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/accountSettings.d.ts +3 -3
- package/dist/api-keys.d.ts +5 -5
- package/dist/api-keys.d.ts.map +1 -1
- package/dist/api-keys.js +1 -0
- package/dist/api-keys.js.map +1 -1
- package/dist/deploy-fix.d.ts +98 -0
- package/dist/deploy-fix.d.ts.map +1 -0
- package/dist/deploy-fix.js +96 -0
- package/dist/deploy-fix.js.map +1 -0
- package/dist/entities.d.ts +18 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +7 -0
- package/dist/entities.js.map +1 -1
- package/dist/environments.d.ts +26 -1
- package/dist/environments.d.ts.map +1 -1
- package/dist/environments.js +71 -1
- package/dist/environments.js.map +1 -1
- package/dist/execution.d.ts +50 -0
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +7 -0
- package/dist/execution.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/modelPolicy.d.ts +2 -2
- package/dist/modelPolicy.d.ts.map +1 -1
- package/dist/modelPolicy.js +1 -0
- package/dist/modelPolicy.js.map +1 -1
- package/dist/notification-routing.d.ts +4 -4
- package/dist/notification-routing.d.ts.map +1 -1
- package/dist/notification-routing.js +3 -1
- package/dist/notification-routing.js.map +1 -1
- package/dist/notification-webhooks.d.ts +6 -6
- package/dist/notification-webhooks.d.ts.map +1 -1
- package/dist/notification-webhooks.js +1 -0
- package/dist/notification-webhooks.js.map +1 -1
- package/dist/notifications.d.ts +4 -4
- package/dist/notifications.d.ts.map +1 -1
- package/dist/notifications.js +7 -2
- package/dist/notifications.js.map +1 -1
- package/dist/public-api.d.ts +1 -1
- package/dist/requests.d.ts +8 -0
- package/dist/requests.d.ts.map +1 -1
- package/dist/reserved-env-keys.d.ts.map +1 -1
- package/dist/reserved-env-keys.js +4 -0
- package/dist/reserved-env-keys.js.map +1 -1
- package/dist/routes/accounts.d.ts +7 -7
- package/dist/routes/agent-runs.d.ts +40 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/api-keys.d.ts +8 -8
- package/dist/routes/bug-hunt.d.ts +40 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +180 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +20 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +100 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/notification-webhooks.d.ts +14 -14
- package/dist/routes/notifications.d.ts +6 -6
- package/dist/routes/pipelines.d.ts +32 -0
- package/dist/routes/pipelines.d.ts.map +1 -1
- package/dist/routes/public-api.d.ts +3 -3
- package/dist/routes/slack.d.ts +3 -3
- package/dist/routes/visual-confirm.d.ts +60 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +50 -2
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/run-evidence.d.ts +12 -0
- package/dist/run-evidence.d.ts.map +1 -1
- package/dist/run-evidence.js +12 -0
- package/dist/run-evidence.js.map +1 -1
- package/dist/slack.d.ts +2 -2
- package/dist/snapshot.d.ts +25 -1
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -745,6 +745,10 @@ export declare const retryAgentRunContract: {
|
|
|
745
745
|
}, undefined>, undefined>;
|
|
746
746
|
}, undefined>, undefined>;
|
|
747
747
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
748
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
749
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
750
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
751
|
+
}, undefined>, undefined>;
|
|
748
752
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
749
753
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
750
754
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -1137,6 +1141,22 @@ export declare const retryAgentRunContract: {
|
|
|
1137
1141
|
}, undefined>, undefined>, undefined>;
|
|
1138
1142
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1139
1143
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1144
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
1145
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
1146
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
1147
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
1148
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
1149
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1150
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
1151
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1152
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
1153
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1154
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
1155
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1156
|
+
readonly error: v.StringSchema<undefined>;
|
|
1157
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1158
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
1159
|
+
}, undefined>, undefined>;
|
|
1140
1160
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
1141
1161
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
1142
1162
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -2030,6 +2050,10 @@ export declare const stopAgentRunContract: {
|
|
|
2030
2050
|
}, undefined>, undefined>;
|
|
2031
2051
|
}, undefined>, undefined>;
|
|
2032
2052
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2053
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
2054
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2055
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
2056
|
+
}, undefined>, undefined>;
|
|
2033
2057
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
2034
2058
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
2035
2059
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -2422,6 +2446,22 @@ export declare const stopAgentRunContract: {
|
|
|
2422
2446
|
}, undefined>, undefined>, undefined>;
|
|
2423
2447
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2424
2448
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2449
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
2450
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
2451
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2452
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2453
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
2454
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2455
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
2456
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2457
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
2458
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2459
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
2460
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2461
|
+
readonly error: v.StringSchema<undefined>;
|
|
2462
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2463
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2464
|
+
}, undefined>, undefined>;
|
|
2425
2465
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
2426
2466
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
2427
2467
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/B,CAAA"}
|
|
@@ -30,7 +30,7 @@ export declare const listWorkspaceApiKeysContract: {
|
|
|
30
30
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
31
31
|
readonly scope: import("valibot").PicklistSchema<["account", "workspace", "user"], undefined>;
|
|
32
32
|
readonly scopeId: import("valibot").StringSchema<undefined>;
|
|
33
|
-
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "openrouter", "litellm"], undefined>;
|
|
33
|
+
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "xai", "openrouter", "litellm"], undefined>;
|
|
34
34
|
readonly label: import("valibot").StringSchema<undefined>;
|
|
35
35
|
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
36
36
|
readonly lastUsedAt: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -47,7 +47,7 @@ export declare const addWorkspaceApiKeyContract: {
|
|
|
47
47
|
readonly method: "post";
|
|
48
48
|
readonly pathResolver: () => string;
|
|
49
49
|
readonly requestBodySchema: import("valibot").ObjectSchema<{
|
|
50
|
-
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "openrouter", "litellm"], undefined>;
|
|
50
|
+
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "xai", "openrouter", "litellm"], undefined>;
|
|
51
51
|
readonly label: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
52
52
|
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
53
53
|
}, undefined>;
|
|
@@ -78,7 +78,7 @@ export declare const addWorkspaceApiKeyContract: {
|
|
|
78
78
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
79
79
|
readonly scope: import("valibot").PicklistSchema<["account", "workspace", "user"], undefined>;
|
|
80
80
|
readonly scopeId: import("valibot").StringSchema<undefined>;
|
|
81
|
-
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "openrouter", "litellm"], undefined>;
|
|
81
|
+
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "xai", "openrouter", "litellm"], undefined>;
|
|
82
82
|
readonly label: import("valibot").StringSchema<undefined>;
|
|
83
83
|
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
84
84
|
readonly lastUsedAt: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -129,7 +129,7 @@ export declare const updateWorkspaceApiKeyContract: {
|
|
|
129
129
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
130
130
|
readonly scope: import("valibot").PicklistSchema<["account", "workspace", "user"], undefined>;
|
|
131
131
|
readonly scopeId: import("valibot").StringSchema<undefined>;
|
|
132
|
-
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "openrouter", "litellm"], undefined>;
|
|
132
|
+
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "xai", "openrouter", "litellm"], undefined>;
|
|
133
133
|
readonly label: import("valibot").StringSchema<undefined>;
|
|
134
134
|
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
135
135
|
readonly lastUsedAt: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -206,7 +206,7 @@ export declare const listUserApiKeysContract: {
|
|
|
206
206
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
207
207
|
readonly scope: import("valibot").PicklistSchema<["account", "workspace", "user"], undefined>;
|
|
208
208
|
readonly scopeId: import("valibot").StringSchema<undefined>;
|
|
209
|
-
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "openrouter", "litellm"], undefined>;
|
|
209
|
+
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "xai", "openrouter", "litellm"], undefined>;
|
|
210
210
|
readonly label: import("valibot").StringSchema<undefined>;
|
|
211
211
|
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
212
212
|
readonly lastUsedAt: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -223,7 +223,7 @@ export declare const addUserApiKeyContract: {
|
|
|
223
223
|
readonly method: "post";
|
|
224
224
|
readonly pathResolver: () => string;
|
|
225
225
|
readonly requestBodySchema: import("valibot").ObjectSchema<{
|
|
226
|
-
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "openrouter", "litellm"], undefined>;
|
|
226
|
+
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "xai", "openrouter", "litellm"], undefined>;
|
|
227
227
|
readonly label: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>;
|
|
228
228
|
readonly key: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>]>;
|
|
229
229
|
}, undefined>;
|
|
@@ -254,7 +254,7 @@ export declare const addUserApiKeyContract: {
|
|
|
254
254
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
255
255
|
readonly scope: import("valibot").PicklistSchema<["account", "workspace", "user"], undefined>;
|
|
256
256
|
readonly scopeId: import("valibot").StringSchema<undefined>;
|
|
257
|
-
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "openrouter", "litellm"], undefined>;
|
|
257
|
+
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "xai", "openrouter", "litellm"], undefined>;
|
|
258
258
|
readonly label: import("valibot").StringSchema<undefined>;
|
|
259
259
|
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
260
260
|
readonly lastUsedAt: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -305,7 +305,7 @@ export declare const updateUserApiKeyContract: {
|
|
|
305
305
|
readonly id: import("valibot").StringSchema<undefined>;
|
|
306
306
|
readonly scope: import("valibot").PicklistSchema<["account", "workspace", "user"], undefined>;
|
|
307
307
|
readonly scopeId: import("valibot").StringSchema<undefined>;
|
|
308
|
-
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "openrouter", "litellm"], undefined>;
|
|
308
|
+
readonly provider: import("valibot").PicklistSchema<["openai", "anthropic", "qwen", "deepseek", "moonshot", "xai", "openrouter", "litellm"], undefined>;
|
|
309
309
|
readonly label: import("valibot").StringSchema<undefined>;
|
|
310
310
|
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
311
311
|
readonly lastUsedAt: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
@@ -1060,6 +1060,10 @@ declare const adoptBugHuntResultSchema: v.ObjectSchema<{
|
|
|
1060
1060
|
}, undefined>, undefined>;
|
|
1061
1061
|
}, undefined>, undefined>;
|
|
1062
1062
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1063
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
1064
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1065
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
1066
|
+
}, undefined>, undefined>;
|
|
1063
1067
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
1064
1068
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
1065
1069
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -1452,6 +1456,22 @@ declare const adoptBugHuntResultSchema: v.ObjectSchema<{
|
|
|
1452
1456
|
}, undefined>, undefined>, undefined>;
|
|
1453
1457
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1454
1458
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1459
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
1460
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
1461
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
1462
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
1463
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
1464
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1465
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
1466
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1467
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
1468
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1469
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
1470
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1471
|
+
readonly error: v.StringSchema<undefined>;
|
|
1472
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1473
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
1474
|
+
}, undefined>, undefined>;
|
|
1455
1475
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
1456
1476
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
1457
1477
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -2763,6 +2783,10 @@ export declare const adoptBugHuntCandidateContract: {
|
|
|
2763
2783
|
}, undefined>, undefined>;
|
|
2764
2784
|
}, undefined>, undefined>;
|
|
2765
2785
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2786
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
2787
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2788
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
2789
|
+
}, undefined>, undefined>;
|
|
2766
2790
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
2767
2791
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
2768
2792
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -3155,6 +3179,22 @@ export declare const adoptBugHuntCandidateContract: {
|
|
|
3155
3179
|
}, undefined>, undefined>, undefined>;
|
|
3156
3180
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3157
3181
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3182
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
3183
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
3184
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
3185
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
3186
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
3187
|
+
readonly reason: v.StringSchema<undefined>;
|
|
3188
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
3189
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3190
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
3191
|
+
readonly at: v.NumberSchema<undefined>;
|
|
3192
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
3193
|
+
readonly reason: v.StringSchema<undefined>;
|
|
3194
|
+
readonly error: v.StringSchema<undefined>;
|
|
3195
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3196
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
3197
|
+
}, undefined>, undefined>;
|
|
3158
3198
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
3159
3199
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
3160
3200
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bug-hunt.d.ts","sourceRoot":"","sources":["../../src/routes/bug-hunt.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAe5B,QAAA,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"bug-hunt.d.ts","sourceRoot":"","sources":["../../src/routes/bug-hunt.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
|
|
@@ -763,6 +763,10 @@ export declare const startExecutionContract: {
|
|
|
763
763
|
}, undefined>, undefined>;
|
|
764
764
|
}, undefined>, undefined>;
|
|
765
765
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
766
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
767
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
768
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
769
|
+
}, undefined>, undefined>;
|
|
766
770
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
767
771
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
768
772
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -1155,6 +1159,22 @@ export declare const startExecutionContract: {
|
|
|
1155
1159
|
}, undefined>, undefined>, undefined>;
|
|
1156
1160
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1157
1161
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1162
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
1163
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
1164
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
1165
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
1166
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
1167
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1168
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
1169
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1170
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
1171
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1172
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
1173
|
+
readonly reason: v.StringSchema<undefined>;
|
|
1174
|
+
readonly error: v.StringSchema<undefined>;
|
|
1175
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1176
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
1177
|
+
}, undefined>, undefined>;
|
|
1158
1178
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
1159
1179
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
1160
1180
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -1968,6 +1988,10 @@ export declare const startAgentKindExecutionContract: {
|
|
|
1968
1988
|
}, undefined>, undefined>;
|
|
1969
1989
|
}, undefined>, undefined>;
|
|
1970
1990
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1991
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
1992
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1993
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
1994
|
+
}, undefined>, undefined>;
|
|
1971
1995
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
1972
1996
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
1973
1997
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -2360,6 +2384,22 @@ export declare const startAgentKindExecutionContract: {
|
|
|
2360
2384
|
}, undefined>, undefined>, undefined>;
|
|
2361
2385
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2362
2386
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2387
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
2388
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
2389
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2390
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2391
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
2392
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2393
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
2394
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2395
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
2396
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2397
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
2398
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2399
|
+
readonly error: v.StringSchema<undefined>;
|
|
2400
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2401
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2402
|
+
}, undefined>, undefined>;
|
|
2363
2403
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
2364
2404
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
2365
2405
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -4007,6 +4047,10 @@ export declare const resumeSpendContract: {
|
|
|
4007
4047
|
}, undefined>, undefined>;
|
|
4008
4048
|
}, undefined>, undefined>;
|
|
4009
4049
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4050
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
4051
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4052
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
4053
|
+
}, undefined>, undefined>;
|
|
4010
4054
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
4011
4055
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
4012
4056
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -4399,6 +4443,22 @@ export declare const resumeSpendContract: {
|
|
|
4399
4443
|
}, undefined>, undefined>, undefined>;
|
|
4400
4444
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4401
4445
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4446
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
4447
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
4448
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
4449
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
4450
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
4451
|
+
readonly reason: v.StringSchema<undefined>;
|
|
4452
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
4453
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4454
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
4455
|
+
readonly at: v.NumberSchema<undefined>;
|
|
4456
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
4457
|
+
readonly reason: v.StringSchema<undefined>;
|
|
4458
|
+
readonly error: v.StringSchema<undefined>;
|
|
4459
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4460
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
4461
|
+
}, undefined>, undefined>;
|
|
4402
4462
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
4403
4463
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
4404
4464
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -5647,6 +5707,10 @@ export declare const resolveDecisionContract: {
|
|
|
5647
5707
|
}, undefined>, undefined>;
|
|
5648
5708
|
}, undefined>, undefined>;
|
|
5649
5709
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5710
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
5711
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
5712
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
5713
|
+
}, undefined>, undefined>;
|
|
5650
5714
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
5651
5715
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
5652
5716
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -6039,6 +6103,22 @@ export declare const resolveDecisionContract: {
|
|
|
6039
6103
|
}, undefined>, undefined>, undefined>;
|
|
6040
6104
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6041
6105
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
6106
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
6107
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
6108
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
6109
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
6110
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
6111
|
+
readonly reason: v.StringSchema<undefined>;
|
|
6112
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
6113
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
6114
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
6115
|
+
readonly at: v.NumberSchema<undefined>;
|
|
6116
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
6117
|
+
readonly reason: v.StringSchema<undefined>;
|
|
6118
|
+
readonly error: v.StringSchema<undefined>;
|
|
6119
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
6120
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
6121
|
+
}, undefined>, undefined>;
|
|
6042
6122
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
6043
6123
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
6044
6124
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -6849,6 +6929,10 @@ export declare const approveStepContract: {
|
|
|
6849
6929
|
}, undefined>, undefined>;
|
|
6850
6930
|
}, undefined>, undefined>;
|
|
6851
6931
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6932
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
6933
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
6934
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
6935
|
+
}, undefined>, undefined>;
|
|
6852
6936
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
6853
6937
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
6854
6938
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -7241,6 +7325,22 @@ export declare const approveStepContract: {
|
|
|
7241
7325
|
}, undefined>, undefined>, undefined>;
|
|
7242
7326
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7243
7327
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7328
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
7329
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
7330
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
7331
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
7332
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
7333
|
+
readonly reason: v.StringSchema<undefined>;
|
|
7334
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
7335
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
7336
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
7337
|
+
readonly at: v.NumberSchema<undefined>;
|
|
7338
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
7339
|
+
readonly reason: v.StringSchema<undefined>;
|
|
7340
|
+
readonly error: v.StringSchema<undefined>;
|
|
7341
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7342
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
7343
|
+
}, undefined>, undefined>;
|
|
7244
7344
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
7245
7345
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
7246
7346
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -8065,6 +8165,10 @@ export declare const requestStepChangesContract: {
|
|
|
8065
8165
|
}, undefined>, undefined>;
|
|
8066
8166
|
}, undefined>, undefined>;
|
|
8067
8167
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8168
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
8169
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
8170
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
8171
|
+
}, undefined>, undefined>;
|
|
8068
8172
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
8069
8173
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
8070
8174
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -8457,6 +8561,22 @@ export declare const requestStepChangesContract: {
|
|
|
8457
8561
|
}, undefined>, undefined>, undefined>;
|
|
8458
8562
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8459
8563
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
8564
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
8565
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
8566
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
8567
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
8568
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
8569
|
+
readonly reason: v.StringSchema<undefined>;
|
|
8570
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
8571
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
8572
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
8573
|
+
readonly at: v.NumberSchema<undefined>;
|
|
8574
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
8575
|
+
readonly reason: v.StringSchema<undefined>;
|
|
8576
|
+
readonly error: v.StringSchema<undefined>;
|
|
8577
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
8578
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
8579
|
+
}, undefined>, undefined>;
|
|
8460
8580
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
8461
8581
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
8462
8582
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -9267,6 +9387,10 @@ export declare const resolveStepExceededContract: {
|
|
|
9267
9387
|
}, undefined>, undefined>;
|
|
9268
9388
|
}, undefined>, undefined>;
|
|
9269
9389
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9390
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
9391
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
9392
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
9393
|
+
}, undefined>, undefined>;
|
|
9270
9394
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
9271
9395
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
9272
9396
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -9659,6 +9783,22 @@ export declare const resolveStepExceededContract: {
|
|
|
9659
9783
|
}, undefined>, undefined>, undefined>;
|
|
9660
9784
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
9661
9785
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
9786
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
9787
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
9788
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
9789
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
9790
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
9791
|
+
readonly reason: v.StringSchema<undefined>;
|
|
9792
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
9793
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
9794
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
9795
|
+
readonly at: v.NumberSchema<undefined>;
|
|
9796
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
9797
|
+
readonly reason: v.StringSchema<undefined>;
|
|
9798
|
+
readonly error: v.StringSchema<undefined>;
|
|
9799
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
9800
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
9801
|
+
}, undefined>, undefined>;
|
|
9662
9802
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
9663
9803
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
9664
9804
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -10467,6 +10607,10 @@ export declare const restartExecutionContract: {
|
|
|
10467
10607
|
}, undefined>, undefined>;
|
|
10468
10608
|
}, undefined>, undefined>;
|
|
10469
10609
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10610
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
10611
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
10612
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
10613
|
+
}, undefined>, undefined>;
|
|
10470
10614
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
10471
10615
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
10472
10616
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -10859,6 +11003,22 @@ export declare const restartExecutionContract: {
|
|
|
10859
11003
|
}, undefined>, undefined>, undefined>;
|
|
10860
11004
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
10861
11005
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
11006
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
11007
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
11008
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
11009
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
11010
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
11011
|
+
readonly reason: v.StringSchema<undefined>;
|
|
11012
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
11013
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
11014
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
11015
|
+
readonly at: v.NumberSchema<undefined>;
|
|
11016
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
11017
|
+
readonly reason: v.StringSchema<undefined>;
|
|
11018
|
+
readonly error: v.StringSchema<undefined>;
|
|
11019
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
11020
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
11021
|
+
}, undefined>, undefined>;
|
|
10862
11022
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
10863
11023
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
10864
11024
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
@@ -11669,6 +11829,10 @@ export declare const rejectStepContract: {
|
|
|
11669
11829
|
}, undefined>, undefined>;
|
|
11670
11830
|
}, undefined>, undefined>;
|
|
11671
11831
|
readonly retainEnvironment: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11832
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
11833
|
+
readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
11834
|
+
readonly maxAttempts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
11835
|
+
}, undefined>, undefined>;
|
|
11672
11836
|
readonly gateConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
11673
11837
|
readonly approvers: v.OptionalSchema<v.ObjectSchema<{
|
|
11674
11838
|
readonly roles: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>, undefined>;
|
|
@@ -12061,6 +12225,22 @@ export declare const rejectStepContract: {
|
|
|
12061
12225
|
}, undefined>, undefined>, undefined>;
|
|
12062
12226
|
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
12063
12227
|
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
12228
|
+
readonly deployFix: v.OptionalSchema<v.ObjectSchema<{
|
|
12229
|
+
readonly phase: v.PicklistSchema<["fixing", "retrying"], undefined>;
|
|
12230
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
12231
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
12232
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
12233
|
+
readonly reason: v.StringSchema<undefined>;
|
|
12234
|
+
readonly lastError: v.StringSchema<undefined>;
|
|
12235
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
12236
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
12237
|
+
readonly at: v.NumberSchema<undefined>;
|
|
12238
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
12239
|
+
readonly reason: v.StringSchema<undefined>;
|
|
12240
|
+
readonly error: v.StringSchema<undefined>;
|
|
12241
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
12242
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
12243
|
+
}, undefined>, undefined>;
|
|
12064
12244
|
readonly disposeEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
12065
12245
|
readonly status: v.PicklistSchema<["reclaimed", "failed", "none"], undefined>;
|
|
12066
12246
|
readonly environmentId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|