@interf/compiler 0.9.3 → 0.9.5
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/CHANGELOG.md +93 -0
- package/README.md +2 -1
- package/agent-skills/interf-actions/SKILL.md +17 -11
- package/agent-skills/interf-actions/references/cli.md +8 -22
- package/dist/cli/commands/action-input-cli.d.ts +25 -0
- package/dist/cli/commands/action-input-cli.js +73 -0
- package/dist/cli/commands/compile.d.ts +3 -8
- package/dist/cli/commands/compile.js +13 -41
- package/dist/cli/commands/create-method-wizard.d.ts +0 -12
- package/dist/cli/commands/create-method-wizard.js +95 -126
- package/dist/cli/commands/create.d.ts +0 -2
- package/dist/cli/commands/create.js +16 -22
- package/dist/cli/commands/doctor.js +1 -1
- package/dist/cli/commands/executor-flow.js +1 -1
- package/dist/cli/commands/init.d.ts +16 -1
- package/dist/cli/commands/init.js +40 -53
- package/dist/cli/commands/list.js +1 -1
- package/dist/cli/commands/preparation-action.d.ts +8 -0
- package/dist/cli/commands/preparation-action.js +29 -0
- package/dist/cli/commands/preparation-picker.d.ts +5 -0
- package/dist/cli/commands/preparation-picker.js +36 -0
- package/dist/cli/commands/preparation-selection.js +2 -2
- package/dist/cli/commands/reset.js +15 -4
- package/dist/cli/commands/service-action-flow.d.ts +9 -0
- package/dist/cli/commands/service-action-flow.js +19 -0
- package/dist/cli/commands/source-config-wizard.d.ts +0 -1
- package/dist/cli/commands/source-config-wizard.js +43 -53
- package/dist/cli/commands/status.js +7 -123
- package/dist/cli/commands/test.d.ts +1 -2
- package/dist/cli/commands/test.js +40 -203
- package/dist/cli/commands/web.js +8 -262
- package/dist/compiler-ui/404.html +1 -1
- package/dist/compiler-ui/__next.__PAGE__.txt +2 -2
- package/dist/compiler-ui/__next._full.txt +3 -3
- package/dist/compiler-ui/__next._head.txt +1 -1
- package/dist/compiler-ui/__next._index.txt +2 -2
- package/dist/compiler-ui/__next._tree.txt +2 -2
- package/dist/compiler-ui/_next/static/chunks/177mvn4rse235.js +89 -0
- package/dist/compiler-ui/_next/static/chunks/18a8f2jkv3z.c.css +3 -0
- package/dist/compiler-ui/_not-found/__next._full.txt +2 -2
- package/dist/compiler-ui/_not-found/__next._head.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._index.txt +2 -2
- package/dist/compiler-ui/_not-found/__next._not-found.__PAGE__.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._not-found.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._tree.txt +2 -2
- package/dist/compiler-ui/_not-found.html +1 -1
- package/dist/compiler-ui/_not-found.txt +2 -2
- package/dist/compiler-ui/index.html +1 -1
- package/dist/compiler-ui/index.txt +3 -3
- package/dist/index.d.ts +0 -23
- package/dist/index.js +0 -16
- package/dist/packages/agents/lib/shells.js +2 -2
- package/dist/packages/compiler/lib/schema.d.ts +1 -1
- package/dist/packages/compiler/lib/schema.js +1 -1
- package/dist/packages/contracts/lib/schema.d.ts +0 -1
- package/dist/packages/contracts/lib/schema.js +0 -1
- package/dist/packages/execution/lib/schema.d.ts +0 -7
- package/dist/packages/execution/lib/schema.js +0 -1
- package/dist/packages/local-service/action-definitions.d.ts +246 -0
- package/dist/packages/local-service/action-definitions.js +1148 -0
- package/dist/packages/local-service/action-planner.d.ts +9 -0
- package/dist/packages/local-service/action-planner.js +134 -0
- package/dist/packages/local-service/action-values.d.ts +1 -22
- package/dist/packages/local-service/action-values.js +1 -30
- package/dist/packages/local-service/client.d.ts +48 -17
- package/dist/packages/local-service/client.js +95 -52
- package/dist/packages/local-service/index.d.ts +8 -5
- package/dist/packages/local-service/index.js +5 -3
- package/dist/packages/local-service/lib/schema.d.ts +302 -292
- package/dist/packages/local-service/lib/schema.js +115 -39
- package/dist/packages/local-service/native-run-handlers.d.ts +23 -0
- package/dist/{cli/commands/compile-controller.js → packages/local-service/native-run-handlers.js} +203 -19
- package/dist/{cli/commands/check-draft.d.ts → packages/local-service/readiness-check-draft.d.ts} +2 -2
- package/dist/packages/local-service/routes.d.ts +6 -1
- package/dist/packages/local-service/routes.js +7 -2
- package/dist/packages/local-service/run-observability.js +15 -17
- package/dist/packages/local-service/runtime.d.ts +10 -7
- package/dist/packages/local-service/runtime.js +430 -286
- package/dist/packages/local-service/server.js +94 -44
- package/dist/packages/method-package/method-review-paths.d.ts +1 -1
- package/dist/packages/method-package/method-review-paths.js +5 -5
- package/dist/packages/project-model/index.d.ts +1 -0
- package/dist/packages/project-model/index.js +1 -0
- package/dist/packages/project-model/preparation-entries.d.ts +11 -0
- package/dist/packages/project-model/preparation-entries.js +49 -0
- package/dist/packages/project-model/source-config.d.ts +1 -0
- package/dist/packages/project-model/source-config.js +12 -1
- package/dist/packages/testing/lib/schema.d.ts +2 -3
- package/dist/packages/testing/lib/schema.js +2 -3
- package/dist/packages/testing/readiness-check-run.d.ts +3 -3
- package/dist/packages/testing/readiness-check-run.js +12 -17
- package/package.json +5 -24
- package/dist/cli/commands/compile-controller.d.ts +0 -17
- package/dist/cli/commands/compiled-flow.d.ts +0 -25
- package/dist/cli/commands/compiled-flow.js +0 -112
- package/dist/cli/commands/test-flow.d.ts +0 -58
- package/dist/cli/commands/test-flow.js +0 -231
- package/dist/compiler-ui/_next/static/chunks/0c9mu7yldxyyg.css +0 -3
- package/dist/compiler-ui/_next/static/chunks/15mks7ry_cupt.js +0 -118
- /package/dist/compiler-ui/_next/static/{pIZnDsV3Je6hdC3cOsGdK → 84FaeF3EzBF9kKTMjSEVN}/_buildManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{pIZnDsV3Je6hdC3cOsGdK → 84FaeF3EzBF9kKTMjSEVN}/_clientMiddlewareManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{pIZnDsV3Je6hdC3cOsGdK → 84FaeF3EzBF9kKTMjSEVN}/_ssgManifest.js +0 -0
- /package/dist/{cli/commands/check-draft.js → packages/local-service/readiness-check-draft.js} +0 -0
|
@@ -17,7 +17,13 @@ export declare const LocalServiceHealthSchema: z.ZodObject<{
|
|
|
17
17
|
started_at: z.ZodOptional<z.ZodString>;
|
|
18
18
|
package_version: z.ZodOptional<z.ZodString>;
|
|
19
19
|
}, z.core.$strict>;
|
|
20
|
-
export declare const
|
|
20
|
+
export declare const LocalServiceErrorSchema: z.ZodObject<{
|
|
21
|
+
error: z.ZodObject<{
|
|
22
|
+
message: z.ZodString;
|
|
23
|
+
code: z.ZodOptional<z.ZodString>;
|
|
24
|
+
}, z.core.$strict>;
|
|
25
|
+
}, z.core.$strict>;
|
|
26
|
+
export declare const LocalServicePointerSchema: z.ZodObject<{
|
|
21
27
|
service_url: z.ZodString;
|
|
22
28
|
host: z.ZodString;
|
|
23
29
|
port: z.ZodNumber;
|
|
@@ -94,7 +100,6 @@ export declare const PreparationReadinessStateSchema: z.ZodObject<{
|
|
|
94
100
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
95
101
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
96
102
|
}, z.core.$strict>>;
|
|
97
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
98
103
|
}, z.core.$strict>;
|
|
99
104
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
100
105
|
gate: z.ZodEnum<{
|
|
@@ -254,7 +259,6 @@ export declare const PreparationResourceSchema: z.ZodObject<{
|
|
|
254
259
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
255
260
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
256
261
|
}, z.core.$strict>>;
|
|
257
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
258
262
|
}, z.core.$strict>;
|
|
259
263
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
260
264
|
gate: z.ZodEnum<{
|
|
@@ -303,6 +307,7 @@ export declare const MethodResourceSchema: z.ZodObject<{
|
|
|
303
307
|
}>>;
|
|
304
308
|
built_in: z.ZodDefault<z.ZodBoolean>;
|
|
305
309
|
active_for_preparations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
310
|
+
output_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
306
311
|
stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
307
312
|
id: z.ZodString;
|
|
308
313
|
label: z.ZodString;
|
|
@@ -544,7 +549,6 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
|
|
|
544
549
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
545
550
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
546
551
|
}, z.core.$strict>>;
|
|
547
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
548
552
|
}, z.core.$strict>;
|
|
549
553
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
550
554
|
gate: z.ZodEnum<{
|
|
@@ -917,7 +921,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
917
921
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
918
922
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
919
923
|
}, z.core.$strict>>;
|
|
920
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
921
924
|
}, z.core.$strict>;
|
|
922
925
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
923
926
|
gate: z.ZodEnum<{
|
|
@@ -1044,7 +1047,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1044
1047
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1045
1048
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1046
1049
|
}, z.core.$strict>>;
|
|
1047
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
1048
1050
|
}, z.core.$strict>;
|
|
1049
1051
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1050
1052
|
gate: z.ZodEnum<{
|
|
@@ -1077,11 +1079,8 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1077
1079
|
}, z.core.$strict>;
|
|
1078
1080
|
}, z.core.$strict>;
|
|
1079
1081
|
export declare const LocalJobTypeSchema: z.ZodEnum<{
|
|
1080
|
-
compile: "compile";
|
|
1081
1082
|
"method-authoring": "method-authoring";
|
|
1082
1083
|
"method-improvement": "method-improvement";
|
|
1083
|
-
"preparation-setup": "preparation-setup";
|
|
1084
|
-
test: "test";
|
|
1085
1084
|
"readiness-check-draft": "readiness-check-draft";
|
|
1086
1085
|
}>;
|
|
1087
1086
|
export declare const LocalJobStatusSchema: z.ZodEnum<{
|
|
@@ -1094,7 +1093,7 @@ export declare const LocalJobStatusSchema: z.ZodEnum<{
|
|
|
1094
1093
|
export declare const LocalRunHandlerResultSchema: z.ZodObject<{
|
|
1095
1094
|
ok: z.ZodBoolean;
|
|
1096
1095
|
error: z.ZodOptional<z.ZodString>;
|
|
1097
|
-
|
|
1096
|
+
readiness_run: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1098
1097
|
kind: z.ZodLiteral<"interf-readiness-check-run">;
|
|
1099
1098
|
version: z.ZodLiteral<1>;
|
|
1100
1099
|
generated_at: z.ZodString;
|
|
@@ -1146,9 +1145,8 @@ export declare const LocalRunHandlerResultSchema: z.ZodObject<{
|
|
|
1146
1145
|
}, z.core.$strip>;
|
|
1147
1146
|
}, z.core.$strip>>;
|
|
1148
1147
|
summary: z.ZodObject<{
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
pass_rate_delta: z.ZodNullable<z.ZodNumber>;
|
|
1148
|
+
source_files_pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
1149
|
+
portable_context_pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
1152
1150
|
}, z.core.$strip>;
|
|
1153
1151
|
}, z.core.$strip>>>;
|
|
1154
1152
|
}, z.core.$strict>;
|
|
@@ -1223,11 +1221,8 @@ export declare const LocalJobEventSchema: z.ZodObject<{
|
|
|
1223
1221
|
}, z.core.$strict>;
|
|
1224
1222
|
export declare const LocalJobRunCreateRequestSchema: z.ZodObject<{
|
|
1225
1223
|
job_type: z.ZodEnum<{
|
|
1226
|
-
compile: "compile";
|
|
1227
1224
|
"method-authoring": "method-authoring";
|
|
1228
1225
|
"method-improvement": "method-improvement";
|
|
1229
|
-
"preparation-setup": "preparation-setup";
|
|
1230
|
-
test: "test";
|
|
1231
1226
|
"readiness-check-draft": "readiness-check-draft";
|
|
1232
1227
|
}>;
|
|
1233
1228
|
title: z.ZodString;
|
|
@@ -1269,6 +1264,91 @@ export declare const PreparationSetupCreateRequestSchema: z.ZodObject<{
|
|
|
1269
1264
|
strictness: z.ZodOptional<z.ZodString>;
|
|
1270
1265
|
}, z.core.$strict>>>;
|
|
1271
1266
|
}, z.core.$strict>;
|
|
1267
|
+
prepare_after_setup: z.ZodDefault<z.ZodBoolean>;
|
|
1268
|
+
setup_mode: z.ZodDefault<z.ZodEnum<{
|
|
1269
|
+
create: "create";
|
|
1270
|
+
"select-method": "select-method";
|
|
1271
|
+
}>>;
|
|
1272
|
+
}, z.core.$strict>;
|
|
1273
|
+
export declare const PreparationSetupResultSchema: z.ZodObject<{
|
|
1274
|
+
kind: z.ZodLiteral<"interf-preparation-setup-result">;
|
|
1275
|
+
version: z.ZodLiteral<1>;
|
|
1276
|
+
operation: z.ZodEnum<{
|
|
1277
|
+
create: "create";
|
|
1278
|
+
"select-method": "select-method";
|
|
1279
|
+
}>;
|
|
1280
|
+
preparation: z.ZodString;
|
|
1281
|
+
method: z.ZodString;
|
|
1282
|
+
source_folder_path: z.ZodString;
|
|
1283
|
+
config_path: z.ZodString;
|
|
1284
|
+
portable_context_path: z.ZodString;
|
|
1285
|
+
changed: z.ZodBoolean;
|
|
1286
|
+
message: z.ZodString;
|
|
1287
|
+
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1288
|
+
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodLiteral<"compile-run">>>;
|
|
1289
|
+
}, z.core.$strict>;
|
|
1290
|
+
export declare const MethodChangeCreateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1291
|
+
action_type: z.ZodOptional<z.ZodLiteral<"method-change">>;
|
|
1292
|
+
operation: z.ZodLiteral<"duplicate">;
|
|
1293
|
+
method: z.ZodString;
|
|
1294
|
+
new_method_id: z.ZodString;
|
|
1295
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1296
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
1297
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1298
|
+
action_type: z.ZodOptional<z.ZodLiteral<"method-change">>;
|
|
1299
|
+
operation: z.ZodLiteral<"remove">;
|
|
1300
|
+
method: z.ZodString;
|
|
1301
|
+
confirmation: z.ZodString;
|
|
1302
|
+
}, z.core.$strict>], "operation">;
|
|
1303
|
+
export declare const MethodChangeResultSchema: z.ZodObject<{
|
|
1304
|
+
kind: z.ZodLiteral<"interf-method-change-result">;
|
|
1305
|
+
version: z.ZodLiteral<1>;
|
|
1306
|
+
operation: z.ZodEnum<{
|
|
1307
|
+
duplicate: "duplicate";
|
|
1308
|
+
remove: "remove";
|
|
1309
|
+
}>;
|
|
1310
|
+
method: z.ZodString;
|
|
1311
|
+
new_method_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1312
|
+
updated_preparations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1313
|
+
method_path: z.ZodString;
|
|
1314
|
+
changed: z.ZodBoolean;
|
|
1315
|
+
message: z.ZodString;
|
|
1316
|
+
}, z.core.$strict>;
|
|
1317
|
+
export declare const PreparationChangeCreateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1318
|
+
action_type: z.ZodOptional<z.ZodLiteral<"preparation-change">>;
|
|
1319
|
+
operation: z.ZodLiteral<"remove">;
|
|
1320
|
+
preparation: z.ZodString;
|
|
1321
|
+
confirmation: z.ZodString;
|
|
1322
|
+
}, z.core.$strict>], "operation">;
|
|
1323
|
+
export declare const PreparationChangeResultSchema: z.ZodObject<{
|
|
1324
|
+
kind: z.ZodLiteral<"interf-preparation-change-result">;
|
|
1325
|
+
version: z.ZodLiteral<1>;
|
|
1326
|
+
operation: z.ZodLiteral<"remove">;
|
|
1327
|
+
preparation: z.ZodString;
|
|
1328
|
+
config_path: z.ZodString;
|
|
1329
|
+
portable_context_path: z.ZodString;
|
|
1330
|
+
portable_context_retained: z.ZodBoolean;
|
|
1331
|
+
changed: z.ZodBoolean;
|
|
1332
|
+
message: z.ZodString;
|
|
1333
|
+
}, z.core.$strict>;
|
|
1334
|
+
export declare const ResetRequestSchema: z.ZodObject<{
|
|
1335
|
+
preparation: z.ZodString;
|
|
1336
|
+
scope: z.ZodEnum<{
|
|
1337
|
+
compile: "compile";
|
|
1338
|
+
all: "all";
|
|
1339
|
+
}>;
|
|
1340
|
+
}, z.core.$strict>;
|
|
1341
|
+
export declare const ResetResultSchema: z.ZodObject<{
|
|
1342
|
+
kind: z.ZodLiteral<"interf-reset-result">;
|
|
1343
|
+
version: z.ZodLiteral<1>;
|
|
1344
|
+
preparation: z.ZodString;
|
|
1345
|
+
scope: z.ZodEnum<{
|
|
1346
|
+
compile: "compile";
|
|
1347
|
+
all: "all";
|
|
1348
|
+
}>;
|
|
1349
|
+
portable_context_path: z.ZodString;
|
|
1350
|
+
changed: z.ZodBoolean;
|
|
1351
|
+
message: z.ZodString;
|
|
1272
1352
|
}, z.core.$strict>;
|
|
1273
1353
|
export declare const ReadinessCheckDraftCreateRequestSchema: z.ZodObject<{
|
|
1274
1354
|
preparation: z.ZodString;
|
|
@@ -1361,11 +1441,8 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
|
|
|
1361
1441
|
version: z.ZodLiteral<1>;
|
|
1362
1442
|
run_id: z.ZodString;
|
|
1363
1443
|
job_type: z.ZodEnum<{
|
|
1364
|
-
compile: "compile";
|
|
1365
1444
|
"method-authoring": "method-authoring";
|
|
1366
1445
|
"method-improvement": "method-improvement";
|
|
1367
|
-
"preparation-setup": "preparation-setup";
|
|
1368
|
-
test: "test";
|
|
1369
1446
|
"readiness-check-draft": "readiness-check-draft";
|
|
1370
1447
|
}>;
|
|
1371
1448
|
status: z.ZodEnum<{
|
|
@@ -1473,7 +1550,7 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1473
1550
|
portable_context_path: z.ZodNullable<z.ZodString>;
|
|
1474
1551
|
started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1475
1552
|
finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1476
|
-
|
|
1553
|
+
readiness_run: z.ZodNullable<z.ZodObject<{
|
|
1477
1554
|
kind: z.ZodLiteral<"interf-readiness-check-run">;
|
|
1478
1555
|
version: z.ZodLiteral<1>;
|
|
1479
1556
|
generated_at: z.ZodString;
|
|
@@ -1525,9 +1602,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1525
1602
|
}, z.core.$strip>;
|
|
1526
1603
|
}, z.core.$strip>>;
|
|
1527
1604
|
summary: z.ZodObject<{
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
pass_rate_delta: z.ZodNullable<z.ZodNumber>;
|
|
1605
|
+
source_files_pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
1606
|
+
portable_context_pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
1531
1607
|
}, z.core.$strip>;
|
|
1532
1608
|
}, z.core.$strip>>;
|
|
1533
1609
|
readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1599,7 +1675,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1599
1675
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1600
1676
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1601
1677
|
}, z.core.$strict>>;
|
|
1602
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
1603
1678
|
}, z.core.$strict>;
|
|
1604
1679
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1605
1680
|
gate: z.ZodEnum<{
|
|
@@ -1835,7 +1910,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1835
1910
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1836
1911
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1837
1912
|
}, z.core.$strict>>;
|
|
1838
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
1839
1913
|
}, z.core.$strict>;
|
|
1840
1914
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1841
1915
|
gate: z.ZodEnum<{
|
|
@@ -1876,7 +1950,6 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
|
|
|
1876
1950
|
compile: "compile";
|
|
1877
1951
|
"method-authoring": "method-authoring";
|
|
1878
1952
|
"method-improvement": "method-improvement";
|
|
1879
|
-
"preparation-setup": "preparation-setup";
|
|
1880
1953
|
test: "test";
|
|
1881
1954
|
"readiness-check-draft": "readiness-check-draft";
|
|
1882
1955
|
job: "job";
|
|
@@ -2004,7 +2077,6 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
|
|
|
2004
2077
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2005
2078
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2006
2079
|
}, z.core.$strict>>;
|
|
2007
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
2008
2080
|
}, z.core.$strict>;
|
|
2009
2081
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2010
2082
|
gate: z.ZodEnum<{
|
|
@@ -2097,43 +2169,6 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
|
|
|
2097
2169
|
}, z.core.$strict>>>;
|
|
2098
2170
|
}, z.core.$strict>;
|
|
2099
2171
|
}, z.core.$strict>;
|
|
2100
|
-
export declare const RunCreateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2101
|
-
run_type: z.ZodLiteral<"compile">;
|
|
2102
|
-
preparation: z.ZodString;
|
|
2103
|
-
method: z.ZodOptional<z.ZodString>;
|
|
2104
|
-
max_attempts: z.ZodOptional<z.ZodNumber>;
|
|
2105
|
-
max_loops: z.ZodOptional<z.ZodNumber>;
|
|
2106
|
-
preserve_stage_shells: z.ZodOptional<z.ZodEnum<{
|
|
2107
|
-
"on-failure": "on-failure";
|
|
2108
|
-
always: "always";
|
|
2109
|
-
}>>;
|
|
2110
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2111
|
-
run_type: z.ZodLiteral<"prepare">;
|
|
2112
|
-
preparation: z.ZodString;
|
|
2113
|
-
method: z.ZodOptional<z.ZodString>;
|
|
2114
|
-
max_attempts: z.ZodOptional<z.ZodNumber>;
|
|
2115
|
-
max_loops: z.ZodOptional<z.ZodNumber>;
|
|
2116
|
-
preserve_stage_shells: z.ZodOptional<z.ZodEnum<{
|
|
2117
|
-
"on-failure": "on-failure";
|
|
2118
|
-
always: "always";
|
|
2119
|
-
}>>;
|
|
2120
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2121
|
-
run_type: z.ZodLiteral<"test">;
|
|
2122
|
-
preparation: z.ZodString;
|
|
2123
|
-
mode: z.ZodDefault<z.ZodEnum<{
|
|
2124
|
-
compiled: "compiled";
|
|
2125
|
-
raw: "raw";
|
|
2126
|
-
both: "both";
|
|
2127
|
-
}>>;
|
|
2128
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2129
|
-
run_type: z.ZodLiteral<"check">;
|
|
2130
|
-
preparation: z.ZodString;
|
|
2131
|
-
mode: z.ZodDefault<z.ZodEnum<{
|
|
2132
|
-
compiled: "compiled";
|
|
2133
|
-
raw: "raw";
|
|
2134
|
-
both: "both";
|
|
2135
|
-
}>>;
|
|
2136
|
-
}, z.core.$strict>], "run_type">;
|
|
2137
2172
|
export declare const LocalExecutorStatusSchema: z.ZodObject<{
|
|
2138
2173
|
kind: z.ZodLiteral<"interf-local-executor-status">;
|
|
2139
2174
|
version: z.ZodLiteral<1>;
|
|
@@ -2162,11 +2197,21 @@ export declare const ActionProposalTypeSchema: z.ZodEnum<{
|
|
|
2162
2197
|
compile: "compile";
|
|
2163
2198
|
"method-authoring": "method-authoring";
|
|
2164
2199
|
"method-improvement": "method-improvement";
|
|
2165
|
-
"preparation-setup": "preparation-setup";
|
|
2166
2200
|
test: "test";
|
|
2167
2201
|
"readiness-check-draft": "readiness-check-draft";
|
|
2168
2202
|
clarification: "clarification";
|
|
2169
2203
|
}>;
|
|
2204
|
+
export declare const ActionProposalPlanActionTypeSchema: z.ZodEnum<{
|
|
2205
|
+
compile: "compile";
|
|
2206
|
+
"method-authoring": "method-authoring";
|
|
2207
|
+
"method-improvement": "method-improvement";
|
|
2208
|
+
test: "test";
|
|
2209
|
+
"readiness-check-draft": "readiness-check-draft";
|
|
2210
|
+
"method-change": "method-change";
|
|
2211
|
+
"preparation-change": "preparation-change";
|
|
2212
|
+
clarification: "clarification";
|
|
2213
|
+
"preparation-setup": "preparation-setup";
|
|
2214
|
+
}>;
|
|
2170
2215
|
export declare const ActionProposalStatusSchema: z.ZodEnum<{
|
|
2171
2216
|
failed: "failed";
|
|
2172
2217
|
needs_clarification: "needs_clarification";
|
|
@@ -2175,9 +2220,25 @@ export declare const ActionProposalStatusSchema: z.ZodEnum<{
|
|
|
2175
2220
|
denied: "denied";
|
|
2176
2221
|
submitted: "submitted";
|
|
2177
2222
|
}>;
|
|
2223
|
+
export declare const ActionClientOriginSchema: z.ZodEnum<{
|
|
2224
|
+
unknown: "unknown";
|
|
2225
|
+
"ui-chat": "ui-chat";
|
|
2226
|
+
cli: "cli";
|
|
2227
|
+
"agent-cli": "agent-cli";
|
|
2228
|
+
mcp: "mcp";
|
|
2229
|
+
service: "service";
|
|
2230
|
+
}>;
|
|
2178
2231
|
export declare const ActionProposalCreateRequestSchema: z.ZodObject<{
|
|
2179
2232
|
message: z.ZodString;
|
|
2180
2233
|
preparation: z.ZodOptional<z.ZodString>;
|
|
2234
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2235
|
+
unknown: "unknown";
|
|
2236
|
+
"ui-chat": "ui-chat";
|
|
2237
|
+
cli: "cli";
|
|
2238
|
+
"agent-cli": "agent-cli";
|
|
2239
|
+
mcp: "mcp";
|
|
2240
|
+
service: "service";
|
|
2241
|
+
}>>;
|
|
2181
2242
|
values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2182
2243
|
}, z.core.$strict>;
|
|
2183
2244
|
export declare const ActionProposalPlanSchema: z.ZodObject<{
|
|
@@ -2185,10 +2246,12 @@ export declare const ActionProposalPlanSchema: z.ZodObject<{
|
|
|
2185
2246
|
compile: "compile";
|
|
2186
2247
|
"method-authoring": "method-authoring";
|
|
2187
2248
|
"method-improvement": "method-improvement";
|
|
2188
|
-
"preparation-setup": "preparation-setup";
|
|
2189
2249
|
test: "test";
|
|
2190
2250
|
"readiness-check-draft": "readiness-check-draft";
|
|
2251
|
+
"method-change": "method-change";
|
|
2252
|
+
"preparation-change": "preparation-change";
|
|
2191
2253
|
clarification: "clarification";
|
|
2254
|
+
"preparation-setup": "preparation-setup";
|
|
2192
2255
|
}>;
|
|
2193
2256
|
preparation: z.ZodOptional<z.ZodString>;
|
|
2194
2257
|
method: z.ZodOptional<z.ZodString>;
|
|
@@ -2226,6 +2289,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2226
2289
|
message: z.ZodString;
|
|
2227
2290
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2228
2291
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2292
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2293
|
+
unknown: "unknown";
|
|
2294
|
+
"ui-chat": "ui-chat";
|
|
2295
|
+
cli: "cli";
|
|
2296
|
+
"agent-cli": "agent-cli";
|
|
2297
|
+
mcp: "mcp";
|
|
2298
|
+
service: "service";
|
|
2299
|
+
}>>;
|
|
2229
2300
|
created_at: z.ZodString;
|
|
2230
2301
|
updated_at: z.ZodString;
|
|
2231
2302
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2266,6 +2337,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2266
2337
|
message: z.ZodString;
|
|
2267
2338
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2268
2339
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2340
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2341
|
+
unknown: "unknown";
|
|
2342
|
+
"ui-chat": "ui-chat";
|
|
2343
|
+
cli: "cli";
|
|
2344
|
+
"agent-cli": "agent-cli";
|
|
2345
|
+
mcp: "mcp";
|
|
2346
|
+
service: "service";
|
|
2347
|
+
}>>;
|
|
2269
2348
|
created_at: z.ZodString;
|
|
2270
2349
|
updated_at: z.ZodString;
|
|
2271
2350
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2315,69 +2394,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2315
2394
|
message: z.ZodString;
|
|
2316
2395
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2317
2396
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
approved: z.ZodBoolean;
|
|
2327
|
-
decided_at: z.ZodString;
|
|
2328
|
-
note: z.ZodOptional<z.ZodString>;
|
|
2329
|
-
}, z.core.$strict>>>;
|
|
2330
|
-
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2331
|
-
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2332
|
-
"compile-run": "compile-run";
|
|
2333
|
-
"test-run": "test-run";
|
|
2334
|
-
"job-run": "job-run";
|
|
2335
|
-
}>>>;
|
|
2336
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2337
|
-
action_type: z.ZodLiteral<"preparation-setup">;
|
|
2338
|
-
request: z.ZodObject<{
|
|
2339
|
-
preparation: z.ZodObject<{
|
|
2340
|
-
id: z.ZodOptional<z.ZodString>;
|
|
2341
|
-
name: z.ZodString;
|
|
2342
|
-
path: z.ZodString;
|
|
2343
|
-
about: z.ZodOptional<z.ZodString>;
|
|
2344
|
-
method: z.ZodOptional<z.ZodString>;
|
|
2345
|
-
max_attempts: z.ZodOptional<z.ZodNumber>;
|
|
2346
|
-
max_loops: z.ZodOptional<z.ZodNumber>;
|
|
2347
|
-
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2348
|
-
id: z.ZodOptional<z.ZodString>;
|
|
2349
|
-
question: z.ZodString;
|
|
2350
|
-
answer: z.ZodOptional<z.ZodString>;
|
|
2351
|
-
expect: z.ZodOptional<z.ZodObject<{
|
|
2352
|
-
must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2353
|
-
must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
2354
|
-
must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2355
|
-
min_words: z.ZodOptional<z.ZodNumber>;
|
|
2356
|
-
max_words: z.ZodOptional<z.ZodNumber>;
|
|
2357
|
-
}, z.core.$strip>>;
|
|
2358
|
-
strictness: z.ZodOptional<z.ZodString>;
|
|
2359
|
-
}, z.core.$strict>>>;
|
|
2360
|
-
}, z.core.$strict>;
|
|
2361
|
-
}, z.core.$strict>;
|
|
2362
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2363
|
-
kind: z.ZodLiteral<"interf-action-proposal">;
|
|
2364
|
-
version: z.ZodLiteral<1>;
|
|
2365
|
-
proposal_id: z.ZodString;
|
|
2366
|
-
status: z.ZodEnum<{
|
|
2367
|
-
failed: "failed";
|
|
2368
|
-
needs_clarification: "needs_clarification";
|
|
2369
|
-
awaiting_approval: "awaiting_approval";
|
|
2370
|
-
approved: "approved";
|
|
2371
|
-
denied: "denied";
|
|
2372
|
-
submitted: "submitted";
|
|
2373
|
-
}>;
|
|
2374
|
-
title: z.ZodString;
|
|
2375
|
-
summary: z.ZodString;
|
|
2376
|
-
assistant_message: z.ZodOptional<z.ZodString>;
|
|
2377
|
-
command_preview: z.ZodOptional<z.ZodString>;
|
|
2378
|
-
message: z.ZodString;
|
|
2379
|
-
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2380
|
-
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2397
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2398
|
+
unknown: "unknown";
|
|
2399
|
+
"ui-chat": "ui-chat";
|
|
2400
|
+
cli: "cli";
|
|
2401
|
+
"agent-cli": "agent-cli";
|
|
2402
|
+
mcp: "mcp";
|
|
2403
|
+
service: "service";
|
|
2404
|
+
}>>;
|
|
2381
2405
|
created_at: z.ZodString;
|
|
2382
2406
|
updated_at: z.ZodString;
|
|
2383
2407
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2425,6 +2449,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2425
2449
|
message: z.ZodString;
|
|
2426
2450
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2427
2451
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2452
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2453
|
+
unknown: "unknown";
|
|
2454
|
+
"ui-chat": "ui-chat";
|
|
2455
|
+
cli: "cli";
|
|
2456
|
+
"agent-cli": "agent-cli";
|
|
2457
|
+
mcp: "mcp";
|
|
2458
|
+
service: "service";
|
|
2459
|
+
}>>;
|
|
2428
2460
|
created_at: z.ZodString;
|
|
2429
2461
|
updated_at: z.ZodString;
|
|
2430
2462
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2470,6 +2502,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2470
2502
|
message: z.ZodString;
|
|
2471
2503
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2472
2504
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2505
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2506
|
+
unknown: "unknown";
|
|
2507
|
+
"ui-chat": "ui-chat";
|
|
2508
|
+
cli: "cli";
|
|
2509
|
+
"agent-cli": "agent-cli";
|
|
2510
|
+
mcp: "mcp";
|
|
2511
|
+
service: "service";
|
|
2512
|
+
}>>;
|
|
2473
2513
|
created_at: z.ZodString;
|
|
2474
2514
|
updated_at: z.ZodString;
|
|
2475
2515
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2532,6 +2572,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2532
2572
|
message: z.ZodString;
|
|
2533
2573
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2534
2574
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2575
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2576
|
+
unknown: "unknown";
|
|
2577
|
+
"ui-chat": "ui-chat";
|
|
2578
|
+
cli: "cli";
|
|
2579
|
+
"agent-cli": "agent-cli";
|
|
2580
|
+
mcp: "mcp";
|
|
2581
|
+
service: "service";
|
|
2582
|
+
}>>;
|
|
2535
2583
|
created_at: z.ZodString;
|
|
2536
2584
|
updated_at: z.ZodString;
|
|
2537
2585
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2649,7 +2697,6 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
|
|
|
2649
2697
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2650
2698
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2651
2699
|
}, z.core.$strict>>;
|
|
2652
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
2653
2700
|
}, z.core.$strict>;
|
|
2654
2701
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2655
2702
|
gate: z.ZodEnum<{
|
|
@@ -2765,7 +2812,6 @@ export declare const ReadinessResourceSchema: z.ZodObject<{
|
|
|
2765
2812
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2766
2813
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2767
2814
|
}, z.core.$strict>>;
|
|
2768
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
2769
2815
|
}, z.core.$strict>;
|
|
2770
2816
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2771
2817
|
gate: z.ZodEnum<{
|
|
@@ -2821,6 +2867,15 @@ export declare const LocalServiceDiscoverySchema: z.ZodObject<{
|
|
|
2821
2867
|
source_files: z.ZodString;
|
|
2822
2868
|
workspace_files: z.ZodString;
|
|
2823
2869
|
action_proposals: z.ZodString;
|
|
2870
|
+
preparation_setups: z.ZodString;
|
|
2871
|
+
preparation_changes: z.ZodString;
|
|
2872
|
+
method_changes: z.ZodString;
|
|
2873
|
+
readiness_check_drafts: z.ZodString;
|
|
2874
|
+
method_authoring_runs: z.ZodString;
|
|
2875
|
+
method_improvement_runs: z.ZodString;
|
|
2876
|
+
compile_runs: z.ZodString;
|
|
2877
|
+
test_runs: z.ZodString;
|
|
2878
|
+
reset: z.ZodString;
|
|
2824
2879
|
executor: z.ZodString;
|
|
2825
2880
|
}, z.core.$strict>;
|
|
2826
2881
|
}, z.core.$strict>;
|
|
@@ -2951,7 +3006,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2951
3006
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2952
3007
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2953
3008
|
}, z.core.$strict>>;
|
|
2954
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
2955
3009
|
}, z.core.$strict>;
|
|
2956
3010
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2957
3011
|
gate: z.ZodEnum<{
|
|
@@ -3002,6 +3056,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3002
3056
|
}>>;
|
|
3003
3057
|
built_in: z.ZodDefault<z.ZodBoolean>;
|
|
3004
3058
|
active_for_preparations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3059
|
+
output_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3005
3060
|
stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3006
3061
|
id: z.ZodString;
|
|
3007
3062
|
label: z.ZodString;
|
|
@@ -3329,7 +3384,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3329
3384
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3330
3385
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3331
3386
|
}, z.core.$strict>>;
|
|
3332
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
3333
3387
|
}, z.core.$strict>;
|
|
3334
3388
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3335
3389
|
gate: z.ZodEnum<{
|
|
@@ -3456,7 +3510,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3456
3510
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3457
3511
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3458
3512
|
}, z.core.$strict>>;
|
|
3459
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
3460
3513
|
}, z.core.$strict>;
|
|
3461
3514
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3462
3515
|
gate: z.ZodEnum<{
|
|
@@ -3495,11 +3548,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3495
3548
|
version: z.ZodLiteral<1>;
|
|
3496
3549
|
run_id: z.ZodString;
|
|
3497
3550
|
job_type: z.ZodEnum<{
|
|
3498
|
-
compile: "compile";
|
|
3499
3551
|
"method-authoring": "method-authoring";
|
|
3500
3552
|
"method-improvement": "method-improvement";
|
|
3501
|
-
"preparation-setup": "preparation-setup";
|
|
3502
|
-
test: "test";
|
|
3503
3553
|
"readiness-check-draft": "readiness-check-draft";
|
|
3504
3554
|
}>;
|
|
3505
3555
|
status: z.ZodEnum<{
|
|
@@ -3594,7 +3644,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3594
3644
|
portable_context_path: z.ZodNullable<z.ZodString>;
|
|
3595
3645
|
started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3596
3646
|
finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3597
|
-
|
|
3647
|
+
readiness_run: z.ZodNullable<z.ZodObject<{
|
|
3598
3648
|
kind: z.ZodLiteral<"interf-readiness-check-run">;
|
|
3599
3649
|
version: z.ZodLiteral<1>;
|
|
3600
3650
|
generated_at: z.ZodString;
|
|
@@ -3646,9 +3696,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3646
3696
|
}, z.core.$strip>;
|
|
3647
3697
|
}, z.core.$strip>>;
|
|
3648
3698
|
summary: z.ZodObject<{
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
pass_rate_delta: z.ZodNullable<z.ZodNumber>;
|
|
3699
|
+
source_files_pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
3700
|
+
portable_context_pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
3652
3701
|
}, z.core.$strip>;
|
|
3653
3702
|
}, z.core.$strip>>;
|
|
3654
3703
|
readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3720,7 +3769,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3720
3769
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3721
3770
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3722
3771
|
}, z.core.$strict>>;
|
|
3723
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
3724
3772
|
}, z.core.$strict>;
|
|
3725
3773
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3726
3774
|
gate: z.ZodEnum<{
|
|
@@ -3956,7 +4004,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3956
4004
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3957
4005
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3958
4006
|
}, z.core.$strict>>;
|
|
3959
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
3960
4007
|
}, z.core.$strict>;
|
|
3961
4008
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3962
4009
|
gate: z.ZodEnum<{
|
|
@@ -3999,7 +4046,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3999
4046
|
compile: "compile";
|
|
4000
4047
|
"method-authoring": "method-authoring";
|
|
4001
4048
|
"method-improvement": "method-improvement";
|
|
4002
|
-
"preparation-setup": "preparation-setup";
|
|
4003
4049
|
test: "test";
|
|
4004
4050
|
"readiness-check-draft": "readiness-check-draft";
|
|
4005
4051
|
job: "job";
|
|
@@ -4127,7 +4173,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4127
4173
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4128
4174
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4129
4175
|
}, z.core.$strict>>;
|
|
4130
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
4131
4176
|
}, z.core.$strict>;
|
|
4132
4177
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4133
4178
|
gate: z.ZodEnum<{
|
|
@@ -4264,6 +4309,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4264
4309
|
message: z.ZodString;
|
|
4265
4310
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4266
4311
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4312
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4313
|
+
unknown: "unknown";
|
|
4314
|
+
"ui-chat": "ui-chat";
|
|
4315
|
+
cli: "cli";
|
|
4316
|
+
"agent-cli": "agent-cli";
|
|
4317
|
+
mcp: "mcp";
|
|
4318
|
+
service: "service";
|
|
4319
|
+
}>>;
|
|
4267
4320
|
created_at: z.ZodString;
|
|
4268
4321
|
updated_at: z.ZodString;
|
|
4269
4322
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4304,6 +4357,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4304
4357
|
message: z.ZodString;
|
|
4305
4358
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4306
4359
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4360
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4361
|
+
unknown: "unknown";
|
|
4362
|
+
"ui-chat": "ui-chat";
|
|
4363
|
+
cli: "cli";
|
|
4364
|
+
"agent-cli": "agent-cli";
|
|
4365
|
+
mcp: "mcp";
|
|
4366
|
+
service: "service";
|
|
4367
|
+
}>>;
|
|
4307
4368
|
created_at: z.ZodString;
|
|
4308
4369
|
updated_at: z.ZodString;
|
|
4309
4370
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4353,69 +4414,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4353
4414
|
message: z.ZodString;
|
|
4354
4415
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4355
4416
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
approved: z.ZodBoolean;
|
|
4365
|
-
decided_at: z.ZodString;
|
|
4366
|
-
note: z.ZodOptional<z.ZodString>;
|
|
4367
|
-
}, z.core.$strict>>>;
|
|
4368
|
-
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4369
|
-
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4370
|
-
"compile-run": "compile-run";
|
|
4371
|
-
"test-run": "test-run";
|
|
4372
|
-
"job-run": "job-run";
|
|
4373
|
-
}>>>;
|
|
4374
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4375
|
-
action_type: z.ZodLiteral<"preparation-setup">;
|
|
4376
|
-
request: z.ZodObject<{
|
|
4377
|
-
preparation: z.ZodObject<{
|
|
4378
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4379
|
-
name: z.ZodString;
|
|
4380
|
-
path: z.ZodString;
|
|
4381
|
-
about: z.ZodOptional<z.ZodString>;
|
|
4382
|
-
method: z.ZodOptional<z.ZodString>;
|
|
4383
|
-
max_attempts: z.ZodOptional<z.ZodNumber>;
|
|
4384
|
-
max_loops: z.ZodOptional<z.ZodNumber>;
|
|
4385
|
-
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4386
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4387
|
-
question: z.ZodString;
|
|
4388
|
-
answer: z.ZodOptional<z.ZodString>;
|
|
4389
|
-
expect: z.ZodOptional<z.ZodObject<{
|
|
4390
|
-
must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4391
|
-
must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
4392
|
-
must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4393
|
-
min_words: z.ZodOptional<z.ZodNumber>;
|
|
4394
|
-
max_words: z.ZodOptional<z.ZodNumber>;
|
|
4395
|
-
}, z.core.$strip>>;
|
|
4396
|
-
strictness: z.ZodOptional<z.ZodString>;
|
|
4397
|
-
}, z.core.$strict>>>;
|
|
4398
|
-
}, z.core.$strict>;
|
|
4399
|
-
}, z.core.$strict>;
|
|
4400
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
4401
|
-
kind: z.ZodLiteral<"interf-action-proposal">;
|
|
4402
|
-
version: z.ZodLiteral<1>;
|
|
4403
|
-
proposal_id: z.ZodString;
|
|
4404
|
-
status: z.ZodEnum<{
|
|
4405
|
-
failed: "failed";
|
|
4406
|
-
needs_clarification: "needs_clarification";
|
|
4407
|
-
awaiting_approval: "awaiting_approval";
|
|
4408
|
-
approved: "approved";
|
|
4409
|
-
denied: "denied";
|
|
4410
|
-
submitted: "submitted";
|
|
4411
|
-
}>;
|
|
4412
|
-
title: z.ZodString;
|
|
4413
|
-
summary: z.ZodString;
|
|
4414
|
-
assistant_message: z.ZodOptional<z.ZodString>;
|
|
4415
|
-
command_preview: z.ZodOptional<z.ZodString>;
|
|
4416
|
-
message: z.ZodString;
|
|
4417
|
-
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4418
|
-
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4417
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4418
|
+
unknown: "unknown";
|
|
4419
|
+
"ui-chat": "ui-chat";
|
|
4420
|
+
cli: "cli";
|
|
4421
|
+
"agent-cli": "agent-cli";
|
|
4422
|
+
mcp: "mcp";
|
|
4423
|
+
service: "service";
|
|
4424
|
+
}>>;
|
|
4419
4425
|
created_at: z.ZodString;
|
|
4420
4426
|
updated_at: z.ZodString;
|
|
4421
4427
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4463,6 +4469,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4463
4469
|
message: z.ZodString;
|
|
4464
4470
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4465
4471
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4472
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4473
|
+
unknown: "unknown";
|
|
4474
|
+
"ui-chat": "ui-chat";
|
|
4475
|
+
cli: "cli";
|
|
4476
|
+
"agent-cli": "agent-cli";
|
|
4477
|
+
mcp: "mcp";
|
|
4478
|
+
service: "service";
|
|
4479
|
+
}>>;
|
|
4466
4480
|
created_at: z.ZodString;
|
|
4467
4481
|
updated_at: z.ZodString;
|
|
4468
4482
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4508,6 +4522,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4508
4522
|
message: z.ZodString;
|
|
4509
4523
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4510
4524
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4525
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4526
|
+
unknown: "unknown";
|
|
4527
|
+
"ui-chat": "ui-chat";
|
|
4528
|
+
cli: "cli";
|
|
4529
|
+
"agent-cli": "agent-cli";
|
|
4530
|
+
mcp: "mcp";
|
|
4531
|
+
service: "service";
|
|
4532
|
+
}>>;
|
|
4511
4533
|
created_at: z.ZodString;
|
|
4512
4534
|
updated_at: z.ZodString;
|
|
4513
4535
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4570,6 +4592,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4570
4592
|
message: z.ZodString;
|
|
4571
4593
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4572
4594
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4595
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4596
|
+
unknown: "unknown";
|
|
4597
|
+
"ui-chat": "ui-chat";
|
|
4598
|
+
cli: "cli";
|
|
4599
|
+
"agent-cli": "agent-cli";
|
|
4600
|
+
mcp: "mcp";
|
|
4601
|
+
service: "service";
|
|
4602
|
+
}>>;
|
|
4573
4603
|
created_at: z.ZodString;
|
|
4574
4604
|
updated_at: z.ZodString;
|
|
4575
4605
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4689,7 +4719,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4689
4719
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4690
4720
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4691
4721
|
}, z.core.$strict>>;
|
|
4692
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
4693
4722
|
}, z.core.$strict>;
|
|
4694
4723
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4695
4724
|
gate: z.ZodEnum<{
|
|
@@ -4807,7 +4836,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4807
4836
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4808
4837
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4809
4838
|
}, z.core.$strict>>;
|
|
4810
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
4811
4839
|
}, z.core.$strict>;
|
|
4812
4840
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4813
4841
|
gate: z.ZodEnum<{
|
|
@@ -4975,7 +5003,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
|
|
|
4975
5003
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4976
5004
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4977
5005
|
}, z.core.$strict>>;
|
|
4978
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
4979
5006
|
}, z.core.$strict>;
|
|
4980
5007
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4981
5008
|
gate: z.ZodEnum<{
|
|
@@ -5026,6 +5053,7 @@ export declare const MethodListResponseSchema: z.ZodObject<{
|
|
|
5026
5053
|
}>>;
|
|
5027
5054
|
built_in: z.ZodDefault<z.ZodBoolean>;
|
|
5028
5055
|
active_for_preparations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5056
|
+
output_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5029
5057
|
stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5030
5058
|
id: z.ZodString;
|
|
5031
5059
|
label: z.ZodString;
|
|
@@ -5353,7 +5381,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
5353
5381
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5354
5382
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5355
5383
|
}, z.core.$strict>>;
|
|
5356
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
5357
5384
|
}, z.core.$strict>;
|
|
5358
5385
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5359
5386
|
gate: z.ZodEnum<{
|
|
@@ -5480,7 +5507,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
5480
5507
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5481
5508
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5482
5509
|
}, z.core.$strict>>;
|
|
5483
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
5484
5510
|
}, z.core.$strict>;
|
|
5485
5511
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5486
5512
|
gate: z.ZodEnum<{
|
|
@@ -5519,11 +5545,8 @@ export declare const LocalJobRunListResponseSchema: z.ZodObject<{
|
|
|
5519
5545
|
version: z.ZodLiteral<1>;
|
|
5520
5546
|
run_id: z.ZodString;
|
|
5521
5547
|
job_type: z.ZodEnum<{
|
|
5522
|
-
compile: "compile";
|
|
5523
5548
|
"method-authoring": "method-authoring";
|
|
5524
5549
|
"method-improvement": "method-improvement";
|
|
5525
|
-
"preparation-setup": "preparation-setup";
|
|
5526
|
-
test: "test";
|
|
5527
5550
|
"readiness-check-draft": "readiness-check-draft";
|
|
5528
5551
|
}>;
|
|
5529
5552
|
status: z.ZodEnum<{
|
|
@@ -5618,7 +5641,7 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
5618
5641
|
portable_context_path: z.ZodNullable<z.ZodString>;
|
|
5619
5642
|
started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5620
5643
|
finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5621
|
-
|
|
5644
|
+
readiness_run: z.ZodNullable<z.ZodObject<{
|
|
5622
5645
|
kind: z.ZodLiteral<"interf-readiness-check-run">;
|
|
5623
5646
|
version: z.ZodLiteral<1>;
|
|
5624
5647
|
generated_at: z.ZodString;
|
|
@@ -5670,9 +5693,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
5670
5693
|
}, z.core.$strip>;
|
|
5671
5694
|
}, z.core.$strip>>;
|
|
5672
5695
|
summary: z.ZodObject<{
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
pass_rate_delta: z.ZodNullable<z.ZodNumber>;
|
|
5696
|
+
source_files_pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
5697
|
+
portable_context_pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
5676
5698
|
}, z.core.$strip>;
|
|
5677
5699
|
}, z.core.$strip>>;
|
|
5678
5700
|
readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5744,7 +5766,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
5744
5766
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5745
5767
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5746
5768
|
}, z.core.$strict>>;
|
|
5747
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
5748
5769
|
}, z.core.$strict>;
|
|
5749
5770
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5750
5771
|
gate: z.ZodEnum<{
|
|
@@ -5980,7 +6001,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
5980
6001
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5981
6002
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5982
6003
|
}, z.core.$strict>>;
|
|
5983
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
5984
6004
|
}, z.core.$strict>;
|
|
5985
6005
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5986
6006
|
gate: z.ZodEnum<{
|
|
@@ -6023,7 +6043,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
|
|
|
6023
6043
|
compile: "compile";
|
|
6024
6044
|
"method-authoring": "method-authoring";
|
|
6025
6045
|
"method-improvement": "method-improvement";
|
|
6026
|
-
"preparation-setup": "preparation-setup";
|
|
6027
6046
|
test: "test";
|
|
6028
6047
|
"readiness-check-draft": "readiness-check-draft";
|
|
6029
6048
|
job: "job";
|
|
@@ -6151,7 +6170,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
|
|
|
6151
6170
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6152
6171
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6153
6172
|
}, z.core.$strict>>;
|
|
6154
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
6155
6173
|
}, z.core.$strict>;
|
|
6156
6174
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6157
6175
|
gate: z.ZodEnum<{
|
|
@@ -6265,6 +6283,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
6265
6283
|
message: z.ZodString;
|
|
6266
6284
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6267
6285
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6286
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
6287
|
+
unknown: "unknown";
|
|
6288
|
+
"ui-chat": "ui-chat";
|
|
6289
|
+
cli: "cli";
|
|
6290
|
+
"agent-cli": "agent-cli";
|
|
6291
|
+
mcp: "mcp";
|
|
6292
|
+
service: "service";
|
|
6293
|
+
}>>;
|
|
6268
6294
|
created_at: z.ZodString;
|
|
6269
6295
|
updated_at: z.ZodString;
|
|
6270
6296
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6305,6 +6331,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
6305
6331
|
message: z.ZodString;
|
|
6306
6332
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6307
6333
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6334
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
6335
|
+
unknown: "unknown";
|
|
6336
|
+
"ui-chat": "ui-chat";
|
|
6337
|
+
cli: "cli";
|
|
6338
|
+
"agent-cli": "agent-cli";
|
|
6339
|
+
mcp: "mcp";
|
|
6340
|
+
service: "service";
|
|
6341
|
+
}>>;
|
|
6308
6342
|
created_at: z.ZodString;
|
|
6309
6343
|
updated_at: z.ZodString;
|
|
6310
6344
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6354,69 +6388,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
6354
6388
|
message: z.ZodString;
|
|
6355
6389
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6356
6390
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6357
|
-
|
|
6358
|
-
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
|
|
6362
|
-
|
|
6363
|
-
|
|
6364
|
-
|
|
6365
|
-
approved: z.ZodBoolean;
|
|
6366
|
-
decided_at: z.ZodString;
|
|
6367
|
-
note: z.ZodOptional<z.ZodString>;
|
|
6368
|
-
}, z.core.$strict>>>;
|
|
6369
|
-
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6370
|
-
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
6371
|
-
"compile-run": "compile-run";
|
|
6372
|
-
"test-run": "test-run";
|
|
6373
|
-
"job-run": "job-run";
|
|
6374
|
-
}>>>;
|
|
6375
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6376
|
-
action_type: z.ZodLiteral<"preparation-setup">;
|
|
6377
|
-
request: z.ZodObject<{
|
|
6378
|
-
preparation: z.ZodObject<{
|
|
6379
|
-
id: z.ZodOptional<z.ZodString>;
|
|
6380
|
-
name: z.ZodString;
|
|
6381
|
-
path: z.ZodString;
|
|
6382
|
-
about: z.ZodOptional<z.ZodString>;
|
|
6383
|
-
method: z.ZodOptional<z.ZodString>;
|
|
6384
|
-
max_attempts: z.ZodOptional<z.ZodNumber>;
|
|
6385
|
-
max_loops: z.ZodOptional<z.ZodNumber>;
|
|
6386
|
-
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6387
|
-
id: z.ZodOptional<z.ZodString>;
|
|
6388
|
-
question: z.ZodString;
|
|
6389
|
-
answer: z.ZodOptional<z.ZodString>;
|
|
6390
|
-
expect: z.ZodOptional<z.ZodObject<{
|
|
6391
|
-
must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6392
|
-
must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
6393
|
-
must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6394
|
-
min_words: z.ZodOptional<z.ZodNumber>;
|
|
6395
|
-
max_words: z.ZodOptional<z.ZodNumber>;
|
|
6396
|
-
}, z.core.$strip>>;
|
|
6397
|
-
strictness: z.ZodOptional<z.ZodString>;
|
|
6398
|
-
}, z.core.$strict>>>;
|
|
6399
|
-
}, z.core.$strict>;
|
|
6400
|
-
}, z.core.$strict>;
|
|
6401
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
6402
|
-
kind: z.ZodLiteral<"interf-action-proposal">;
|
|
6403
|
-
version: z.ZodLiteral<1>;
|
|
6404
|
-
proposal_id: z.ZodString;
|
|
6405
|
-
status: z.ZodEnum<{
|
|
6406
|
-
failed: "failed";
|
|
6407
|
-
needs_clarification: "needs_clarification";
|
|
6408
|
-
awaiting_approval: "awaiting_approval";
|
|
6409
|
-
approved: "approved";
|
|
6410
|
-
denied: "denied";
|
|
6411
|
-
submitted: "submitted";
|
|
6412
|
-
}>;
|
|
6413
|
-
title: z.ZodString;
|
|
6414
|
-
summary: z.ZodString;
|
|
6415
|
-
assistant_message: z.ZodOptional<z.ZodString>;
|
|
6416
|
-
command_preview: z.ZodOptional<z.ZodString>;
|
|
6417
|
-
message: z.ZodString;
|
|
6418
|
-
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6419
|
-
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6391
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
6392
|
+
unknown: "unknown";
|
|
6393
|
+
"ui-chat": "ui-chat";
|
|
6394
|
+
cli: "cli";
|
|
6395
|
+
"agent-cli": "agent-cli";
|
|
6396
|
+
mcp: "mcp";
|
|
6397
|
+
service: "service";
|
|
6398
|
+
}>>;
|
|
6420
6399
|
created_at: z.ZodString;
|
|
6421
6400
|
updated_at: z.ZodString;
|
|
6422
6401
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6464,6 +6443,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
6464
6443
|
message: z.ZodString;
|
|
6465
6444
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6466
6445
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6446
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
6447
|
+
unknown: "unknown";
|
|
6448
|
+
"ui-chat": "ui-chat";
|
|
6449
|
+
cli: "cli";
|
|
6450
|
+
"agent-cli": "agent-cli";
|
|
6451
|
+
mcp: "mcp";
|
|
6452
|
+
service: "service";
|
|
6453
|
+
}>>;
|
|
6467
6454
|
created_at: z.ZodString;
|
|
6468
6455
|
updated_at: z.ZodString;
|
|
6469
6456
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6509,6 +6496,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
6509
6496
|
message: z.ZodString;
|
|
6510
6497
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6511
6498
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6499
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
6500
|
+
unknown: "unknown";
|
|
6501
|
+
"ui-chat": "ui-chat";
|
|
6502
|
+
cli: "cli";
|
|
6503
|
+
"agent-cli": "agent-cli";
|
|
6504
|
+
mcp: "mcp";
|
|
6505
|
+
service: "service";
|
|
6506
|
+
}>>;
|
|
6512
6507
|
created_at: z.ZodString;
|
|
6513
6508
|
updated_at: z.ZodString;
|
|
6514
6509
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6571,6 +6566,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
6571
6566
|
message: z.ZodString;
|
|
6572
6567
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6573
6568
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6569
|
+
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
6570
|
+
unknown: "unknown";
|
|
6571
|
+
"ui-chat": "ui-chat";
|
|
6572
|
+
cli: "cli";
|
|
6573
|
+
"agent-cli": "agent-cli";
|
|
6574
|
+
mcp: "mcp";
|
|
6575
|
+
service: "service";
|
|
6576
|
+
}>>;
|
|
6574
6577
|
created_at: z.ZodString;
|
|
6575
6578
|
updated_at: z.ZodString;
|
|
6576
6579
|
proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -6690,7 +6693,6 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
|
|
|
6690
6693
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6691
6694
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6692
6695
|
}, z.core.$strict>>;
|
|
6693
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
6694
6696
|
}, z.core.$strict>;
|
|
6695
6697
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6696
6698
|
gate: z.ZodEnum<{
|
|
@@ -6808,7 +6810,6 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
|
|
|
6808
6810
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6809
6811
|
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6810
6812
|
}, z.core.$strict>>;
|
|
6811
|
-
delta: z.ZodNullable<z.ZodNumber>;
|
|
6812
6813
|
}, z.core.$strict>;
|
|
6813
6814
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6814
6815
|
gate: z.ZodEnum<{
|
|
@@ -6858,8 +6859,9 @@ export declare const WorkspaceFileListResponseSchema: z.ZodObject<{
|
|
|
6858
6859
|
}, z.core.$strict>>;
|
|
6859
6860
|
}, z.core.$strict>;
|
|
6860
6861
|
export type LocalServiceConfig = z.infer<typeof LocalServiceConfigSchema>;
|
|
6862
|
+
export type LocalServiceError = z.infer<typeof LocalServiceErrorSchema>;
|
|
6861
6863
|
export type LocalServiceHealth = z.infer<typeof LocalServiceHealthSchema>;
|
|
6862
|
-
export type
|
|
6864
|
+
export type LocalServicePointer = z.infer<typeof LocalServicePointerSchema>;
|
|
6863
6865
|
export type PreparationReadinessState = z.infer<typeof PreparationReadinessStateSchema>;
|
|
6864
6866
|
export type PortableContextMapping = z.infer<typeof PortableContextMappingSchema>;
|
|
6865
6867
|
export type PreparationRunLinkage = z.infer<typeof PreparationRunLinkageSchema>;
|
|
@@ -6879,6 +6881,13 @@ export type LocalJobEventType = z.infer<typeof LocalJobEventTypeSchema>;
|
|
|
6879
6881
|
export type LocalJobEvent = z.infer<typeof LocalJobEventSchema>;
|
|
6880
6882
|
export type LocalJobRunCreateRequest = z.infer<typeof LocalJobRunCreateRequestSchema>;
|
|
6881
6883
|
export type PreparationSetupCreateRequest = z.infer<typeof PreparationSetupCreateRequestSchema>;
|
|
6884
|
+
export type PreparationSetupResult = z.infer<typeof PreparationSetupResultSchema>;
|
|
6885
|
+
export type MethodChangeCreateRequest = z.infer<typeof MethodChangeCreateRequestSchema>;
|
|
6886
|
+
export type MethodChangeResult = z.infer<typeof MethodChangeResultSchema>;
|
|
6887
|
+
export type PreparationChangeCreateRequest = z.infer<typeof PreparationChangeCreateRequestSchema>;
|
|
6888
|
+
export type PreparationChangeResult = z.infer<typeof PreparationChangeResultSchema>;
|
|
6889
|
+
export type ResetRequest = z.infer<typeof ResetRequestSchema>;
|
|
6890
|
+
export type ResetResult = z.infer<typeof ResetResultSchema>;
|
|
6882
6891
|
export type ReadinessCheckDraftCreateRequest = z.infer<typeof ReadinessCheckDraftCreateRequestSchema>;
|
|
6883
6892
|
export type ReadinessCheckDraftResult = z.infer<typeof ReadinessCheckDraftResultSchema>;
|
|
6884
6893
|
export type MethodAuthoringCreateRequest = z.infer<typeof MethodAuthoringCreateRequestSchema>;
|
|
@@ -6889,11 +6898,12 @@ export type TestRunStatus = z.infer<typeof TestRunStatusSchema>;
|
|
|
6889
6898
|
export type TestRunCreateRequest = z.infer<typeof TestRunCreateRequestSchema>;
|
|
6890
6899
|
export type TestRunResource = z.infer<typeof TestRunResourceSchema>;
|
|
6891
6900
|
export type RunObservabilityResource = z.infer<typeof RunObservabilityResourceSchema>;
|
|
6892
|
-
export type RunCreateRequest = z.infer<typeof RunCreateRequestSchema>;
|
|
6893
6901
|
export type LocalExecutorStatus = z.infer<typeof LocalExecutorStatusSchema>;
|
|
6894
6902
|
export type ActionProposalType = z.infer<typeof ActionProposalTypeSchema>;
|
|
6903
|
+
export type ActionProposalPlanActionType = z.infer<typeof ActionProposalPlanActionTypeSchema>;
|
|
6895
6904
|
export type ActionProposalStatus = z.infer<typeof ActionProposalStatusSchema>;
|
|
6896
|
-
export type
|
|
6905
|
+
export type ActionClientOrigin = z.infer<typeof ActionClientOriginSchema>;
|
|
6906
|
+
export type ActionProposalCreateRequest = z.input<typeof ActionProposalCreateRequestSchema>;
|
|
6897
6907
|
export type ActionProposalPlan = z.infer<typeof ActionProposalPlanSchema>;
|
|
6898
6908
|
export type ActionProposalApprovalRequest = z.infer<typeof ActionProposalApprovalRequestSchema>;
|
|
6899
6909
|
export type ActionProposalApproval = z.infer<typeof ActionProposalApprovalSchema>;
|