@interf/compiler 0.9.4 → 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.
Files changed (103) hide show
  1. package/CHANGELOG.md +93 -0
  2. package/README.md +2 -1
  3. package/agent-skills/interf-actions/SKILL.md +17 -11
  4. package/agent-skills/interf-actions/references/cli.md +8 -22
  5. package/dist/cli/commands/action-input-cli.d.ts +25 -0
  6. package/dist/cli/commands/action-input-cli.js +73 -0
  7. package/dist/cli/commands/compile.d.ts +3 -8
  8. package/dist/cli/commands/compile.js +13 -41
  9. package/dist/cli/commands/create-method-wizard.d.ts +0 -12
  10. package/dist/cli/commands/create-method-wizard.js +95 -126
  11. package/dist/cli/commands/create.d.ts +0 -2
  12. package/dist/cli/commands/create.js +16 -22
  13. package/dist/cli/commands/doctor.js +1 -1
  14. package/dist/cli/commands/executor-flow.js +1 -1
  15. package/dist/cli/commands/init.d.ts +16 -1
  16. package/dist/cli/commands/init.js +40 -53
  17. package/dist/cli/commands/list.js +1 -1
  18. package/dist/cli/commands/preparation-action.d.ts +8 -0
  19. package/dist/cli/commands/preparation-action.js +29 -0
  20. package/dist/cli/commands/preparation-picker.d.ts +5 -0
  21. package/dist/cli/commands/preparation-picker.js +36 -0
  22. package/dist/cli/commands/preparation-selection.js +2 -2
  23. package/dist/cli/commands/reset.js +15 -4
  24. package/dist/cli/commands/service-action-flow.d.ts +9 -0
  25. package/dist/cli/commands/service-action-flow.js +19 -0
  26. package/dist/cli/commands/source-config-wizard.d.ts +0 -1
  27. package/dist/cli/commands/source-config-wizard.js +43 -53
  28. package/dist/cli/commands/status.js +7 -123
  29. package/dist/cli/commands/test.d.ts +1 -2
  30. package/dist/cli/commands/test.js +40 -203
  31. package/dist/cli/commands/web.js +8 -262
  32. package/dist/compiler-ui/404.html +1 -1
  33. package/dist/compiler-ui/__next.__PAGE__.txt +2 -2
  34. package/dist/compiler-ui/__next._full.txt +3 -3
  35. package/dist/compiler-ui/__next._head.txt +1 -1
  36. package/dist/compiler-ui/__next._index.txt +2 -2
  37. package/dist/compiler-ui/__next._tree.txt +2 -2
  38. package/dist/compiler-ui/_next/static/chunks/177mvn4rse235.js +89 -0
  39. package/dist/compiler-ui/_next/static/chunks/18a8f2jkv3z.c.css +3 -0
  40. package/dist/compiler-ui/_not-found/__next._full.txt +2 -2
  41. package/dist/compiler-ui/_not-found/__next._head.txt +1 -1
  42. package/dist/compiler-ui/_not-found/__next._index.txt +2 -2
  43. package/dist/compiler-ui/_not-found/__next._not-found.__PAGE__.txt +1 -1
  44. package/dist/compiler-ui/_not-found/__next._not-found.txt +1 -1
  45. package/dist/compiler-ui/_not-found/__next._tree.txt +2 -2
  46. package/dist/compiler-ui/_not-found.html +1 -1
  47. package/dist/compiler-ui/_not-found.txt +2 -2
  48. package/dist/compiler-ui/index.html +1 -1
  49. package/dist/compiler-ui/index.txt +3 -3
  50. package/dist/index.d.ts +0 -23
  51. package/dist/index.js +0 -16
  52. package/dist/packages/agents/lib/shells.js +2 -2
  53. package/dist/packages/compiler/lib/schema.d.ts +1 -1
  54. package/dist/packages/compiler/lib/schema.js +1 -1
  55. package/dist/packages/contracts/lib/schema.d.ts +0 -1
  56. package/dist/packages/contracts/lib/schema.js +0 -1
  57. package/dist/packages/execution/lib/schema.d.ts +0 -7
  58. package/dist/packages/execution/lib/schema.js +0 -1
  59. package/dist/packages/local-service/action-definitions.d.ts +246 -0
  60. package/dist/packages/local-service/action-definitions.js +1148 -0
  61. package/dist/packages/local-service/action-planner.d.ts +9 -0
  62. package/dist/packages/local-service/action-planner.js +134 -0
  63. package/dist/packages/local-service/action-values.d.ts +1 -23
  64. package/dist/packages/local-service/action-values.js +1 -31
  65. package/dist/packages/local-service/client.d.ts +48 -17
  66. package/dist/packages/local-service/client.js +95 -52
  67. package/dist/packages/local-service/index.d.ts +8 -5
  68. package/dist/packages/local-service/index.js +5 -3
  69. package/dist/packages/local-service/lib/schema.d.ts +301 -295
  70. package/dist/packages/local-service/lib/schema.js +114 -39
  71. package/dist/packages/local-service/native-run-handlers.d.ts +23 -0
  72. package/dist/{cli/commands/compile-controller.js → packages/local-service/native-run-handlers.js} +203 -19
  73. package/dist/{cli/commands/check-draft.d.ts → packages/local-service/readiness-check-draft.d.ts} +2 -2
  74. package/dist/packages/local-service/routes.d.ts +6 -1
  75. package/dist/packages/local-service/routes.js +7 -2
  76. package/dist/packages/local-service/run-observability.js +15 -17
  77. package/dist/packages/local-service/runtime.d.ts +10 -7
  78. package/dist/packages/local-service/runtime.js +427 -297
  79. package/dist/packages/local-service/server.js +94 -44
  80. package/dist/packages/method-package/method-review-paths.d.ts +1 -1
  81. package/dist/packages/method-package/method-review-paths.js +5 -5
  82. package/dist/packages/project-model/index.d.ts +1 -0
  83. package/dist/packages/project-model/index.js +1 -0
  84. package/dist/packages/project-model/preparation-entries.d.ts +11 -0
  85. package/dist/packages/project-model/preparation-entries.js +49 -0
  86. package/dist/packages/project-model/source-config.d.ts +1 -0
  87. package/dist/packages/project-model/source-config.js +12 -1
  88. package/dist/packages/testing/lib/schema.d.ts +2 -3
  89. package/dist/packages/testing/lib/schema.js +2 -3
  90. package/dist/packages/testing/readiness-check-run.d.ts +3 -3
  91. package/dist/packages/testing/readiness-check-run.js +12 -17
  92. package/package.json +5 -24
  93. package/dist/cli/commands/compile-controller.d.ts +0 -17
  94. package/dist/cli/commands/compiled-flow.d.ts +0 -25
  95. package/dist/cli/commands/compiled-flow.js +0 -112
  96. package/dist/cli/commands/test-flow.d.ts +0 -58
  97. package/dist/cli/commands/test-flow.js +0 -231
  98. package/dist/compiler-ui/_next/static/chunks/0d~8t0zm6545p.js +0 -118
  99. package/dist/compiler-ui/_next/static/chunks/0xnel.ax9a.2c.css +0 -3
  100. /package/dist/compiler-ui/_next/static/{j7pdoqWrl4YJrJUVnksbl → 84FaeF3EzBF9kKTMjSEVN}/_buildManifest.js +0 -0
  101. /package/dist/compiler-ui/_next/static/{j7pdoqWrl4YJrJUVnksbl → 84FaeF3EzBF9kKTMjSEVN}/_clientMiddlewareManifest.js +0 -0
  102. /package/dist/compiler-ui/_next/static/{j7pdoqWrl4YJrJUVnksbl → 84FaeF3EzBF9kKTMjSEVN}/_ssgManifest.js +0 -0
  103. /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 LocalServiceInstancePointerSchema: z.ZodObject<{
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
- comparison: z.ZodOptional<z.ZodNullable<z.ZodObject<{
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
- raw_pass_rate: z.ZodNullable<z.ZodNumber>;
1150
- compiled_pass_rate: z.ZodNullable<z.ZodNumber>;
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;
@@ -1270,6 +1265,90 @@ export declare const PreparationSetupCreateRequestSchema: z.ZodObject<{
1270
1265
  }, z.core.$strict>>>;
1271
1266
  }, z.core.$strict>;
1272
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;
1273
1352
  }, z.core.$strict>;
1274
1353
  export declare const ReadinessCheckDraftCreateRequestSchema: z.ZodObject<{
1275
1354
  preparation: z.ZodString;
@@ -1362,11 +1441,8 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
1362
1441
  version: z.ZodLiteral<1>;
1363
1442
  run_id: z.ZodString;
1364
1443
  job_type: z.ZodEnum<{
1365
- compile: "compile";
1366
1444
  "method-authoring": "method-authoring";
1367
1445
  "method-improvement": "method-improvement";
1368
- "preparation-setup": "preparation-setup";
1369
- test: "test";
1370
1446
  "readiness-check-draft": "readiness-check-draft";
1371
1447
  }>;
1372
1448
  status: z.ZodEnum<{
@@ -1474,7 +1550,7 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1474
1550
  portable_context_path: z.ZodNullable<z.ZodString>;
1475
1551
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1476
1552
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1477
- comparison: z.ZodNullable<z.ZodObject<{
1553
+ readiness_run: z.ZodNullable<z.ZodObject<{
1478
1554
  kind: z.ZodLiteral<"interf-readiness-check-run">;
1479
1555
  version: z.ZodLiteral<1>;
1480
1556
  generated_at: z.ZodString;
@@ -1526,9 +1602,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1526
1602
  }, z.core.$strip>;
1527
1603
  }, z.core.$strip>>;
1528
1604
  summary: z.ZodObject<{
1529
- raw_pass_rate: z.ZodNullable<z.ZodNumber>;
1530
- compiled_pass_rate: z.ZodNullable<z.ZodNumber>;
1531
- 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>;
1532
1607
  }, z.core.$strip>;
1533
1608
  }, z.core.$strip>>;
1534
1609
  readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -1600,7 +1675,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1600
1675
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1601
1676
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1602
1677
  }, z.core.$strict>>;
1603
- delta: z.ZodNullable<z.ZodNumber>;
1604
1678
  }, z.core.$strict>;
1605
1679
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
1606
1680
  gate: z.ZodEnum<{
@@ -1836,7 +1910,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1836
1910
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1837
1911
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1838
1912
  }, z.core.$strict>>;
1839
- delta: z.ZodNullable<z.ZodNumber>;
1840
1913
  }, z.core.$strict>;
1841
1914
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
1842
1915
  gate: z.ZodEnum<{
@@ -1877,7 +1950,6 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
1877
1950
  compile: "compile";
1878
1951
  "method-authoring": "method-authoring";
1879
1952
  "method-improvement": "method-improvement";
1880
- "preparation-setup": "preparation-setup";
1881
1953
  test: "test";
1882
1954
  "readiness-check-draft": "readiness-check-draft";
1883
1955
  job: "job";
@@ -2005,7 +2077,6 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
2005
2077
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2006
2078
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2007
2079
  }, z.core.$strict>>;
2008
- delta: z.ZodNullable<z.ZodNumber>;
2009
2080
  }, z.core.$strict>;
2010
2081
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
2011
2082
  gate: z.ZodEnum<{
@@ -2098,43 +2169,6 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
2098
2169
  }, z.core.$strict>>>;
2099
2170
  }, z.core.$strict>;
2100
2171
  }, z.core.$strict>;
2101
- export declare const RunCreateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2102
- run_type: z.ZodLiteral<"compile">;
2103
- preparation: z.ZodString;
2104
- method: z.ZodOptional<z.ZodString>;
2105
- max_attempts: z.ZodOptional<z.ZodNumber>;
2106
- max_loops: z.ZodOptional<z.ZodNumber>;
2107
- preserve_stage_shells: z.ZodOptional<z.ZodEnum<{
2108
- "on-failure": "on-failure";
2109
- always: "always";
2110
- }>>;
2111
- }, z.core.$strict>, z.ZodObject<{
2112
- run_type: z.ZodLiteral<"prepare">;
2113
- preparation: z.ZodString;
2114
- method: z.ZodOptional<z.ZodString>;
2115
- max_attempts: z.ZodOptional<z.ZodNumber>;
2116
- max_loops: z.ZodOptional<z.ZodNumber>;
2117
- preserve_stage_shells: z.ZodOptional<z.ZodEnum<{
2118
- "on-failure": "on-failure";
2119
- always: "always";
2120
- }>>;
2121
- }, z.core.$strict>, z.ZodObject<{
2122
- run_type: z.ZodLiteral<"test">;
2123
- preparation: z.ZodString;
2124
- mode: z.ZodDefault<z.ZodEnum<{
2125
- compiled: "compiled";
2126
- raw: "raw";
2127
- both: "both";
2128
- }>>;
2129
- }, z.core.$strict>, z.ZodObject<{
2130
- run_type: z.ZodLiteral<"check">;
2131
- preparation: z.ZodString;
2132
- mode: z.ZodDefault<z.ZodEnum<{
2133
- compiled: "compiled";
2134
- raw: "raw";
2135
- both: "both";
2136
- }>>;
2137
- }, z.core.$strict>], "run_type">;
2138
2172
  export declare const LocalExecutorStatusSchema: z.ZodObject<{
2139
2173
  kind: z.ZodLiteral<"interf-local-executor-status">;
2140
2174
  version: z.ZodLiteral<1>;
@@ -2163,11 +2197,21 @@ export declare const ActionProposalTypeSchema: z.ZodEnum<{
2163
2197
  compile: "compile";
2164
2198
  "method-authoring": "method-authoring";
2165
2199
  "method-improvement": "method-improvement";
2166
- "preparation-setup": "preparation-setup";
2167
2200
  test: "test";
2168
2201
  "readiness-check-draft": "readiness-check-draft";
2169
2202
  clarification: "clarification";
2170
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
+ }>;
2171
2215
  export declare const ActionProposalStatusSchema: z.ZodEnum<{
2172
2216
  failed: "failed";
2173
2217
  needs_clarification: "needs_clarification";
@@ -2176,9 +2220,25 @@ export declare const ActionProposalStatusSchema: z.ZodEnum<{
2176
2220
  denied: "denied";
2177
2221
  submitted: "submitted";
2178
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
+ }>;
2179
2231
  export declare const ActionProposalCreateRequestSchema: z.ZodObject<{
2180
2232
  message: z.ZodString;
2181
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
+ }>>;
2182
2242
  values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2183
2243
  }, z.core.$strict>;
2184
2244
  export declare const ActionProposalPlanSchema: z.ZodObject<{
@@ -2186,10 +2246,12 @@ export declare const ActionProposalPlanSchema: z.ZodObject<{
2186
2246
  compile: "compile";
2187
2247
  "method-authoring": "method-authoring";
2188
2248
  "method-improvement": "method-improvement";
2189
- "preparation-setup": "preparation-setup";
2190
2249
  test: "test";
2191
2250
  "readiness-check-draft": "readiness-check-draft";
2251
+ "method-change": "method-change";
2252
+ "preparation-change": "preparation-change";
2192
2253
  clarification: "clarification";
2254
+ "preparation-setup": "preparation-setup";
2193
2255
  }>;
2194
2256
  preparation: z.ZodOptional<z.ZodString>;
2195
2257
  method: z.ZodOptional<z.ZodString>;
@@ -2227,6 +2289,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2227
2289
  message: z.ZodString;
2228
2290
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2229
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
+ }>>;
2230
2300
  created_at: z.ZodString;
2231
2301
  updated_at: z.ZodString;
2232
2302
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2267,6 +2337,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2267
2337
  message: z.ZodString;
2268
2338
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2269
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
+ }>>;
2270
2348
  created_at: z.ZodString;
2271
2349
  updated_at: z.ZodString;
2272
2350
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2316,70 +2394,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2316
2394
  message: z.ZodString;
2317
2395
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2318
2396
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2319
- created_at: z.ZodString;
2320
- updated_at: z.ZodString;
2321
- proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2322
- name: z.ZodString;
2323
- display_name: z.ZodString;
2324
- command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2325
- }, z.core.$strict>>>;
2326
- approval: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2327
- approved: z.ZodBoolean;
2328
- decided_at: z.ZodString;
2329
- note: z.ZodOptional<z.ZodString>;
2330
- }, z.core.$strict>>>;
2331
- submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2332
- submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2333
- "compile-run": "compile-run";
2334
- "test-run": "test-run";
2335
- "job-run": "job-run";
2336
- }>>>;
2337
- error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2338
- action_type: z.ZodLiteral<"preparation-setup">;
2339
- request: z.ZodObject<{
2340
- preparation: z.ZodObject<{
2341
- id: z.ZodOptional<z.ZodString>;
2342
- name: z.ZodString;
2343
- path: z.ZodString;
2344
- about: z.ZodOptional<z.ZodString>;
2345
- method: z.ZodOptional<z.ZodString>;
2346
- max_attempts: z.ZodOptional<z.ZodNumber>;
2347
- max_loops: z.ZodOptional<z.ZodNumber>;
2348
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
2349
- id: z.ZodOptional<z.ZodString>;
2350
- question: z.ZodString;
2351
- answer: z.ZodOptional<z.ZodString>;
2352
- expect: z.ZodOptional<z.ZodObject<{
2353
- must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
2354
- must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
2355
- must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
2356
- min_words: z.ZodOptional<z.ZodNumber>;
2357
- max_words: z.ZodOptional<z.ZodNumber>;
2358
- }, z.core.$strip>>;
2359
- strictness: z.ZodOptional<z.ZodString>;
2360
- }, z.core.$strict>>>;
2361
- }, z.core.$strict>;
2362
- prepare_after_setup: z.ZodDefault<z.ZodBoolean>;
2363
- }, z.core.$strict>;
2364
- }, z.core.$strict>, z.ZodObject<{
2365
- kind: z.ZodLiteral<"interf-action-proposal">;
2366
- version: z.ZodLiteral<1>;
2367
- proposal_id: z.ZodString;
2368
- status: z.ZodEnum<{
2369
- failed: "failed";
2370
- needs_clarification: "needs_clarification";
2371
- awaiting_approval: "awaiting_approval";
2372
- approved: "approved";
2373
- denied: "denied";
2374
- submitted: "submitted";
2375
- }>;
2376
- title: z.ZodString;
2377
- summary: z.ZodString;
2378
- assistant_message: z.ZodOptional<z.ZodString>;
2379
- command_preview: z.ZodOptional<z.ZodString>;
2380
- message: z.ZodString;
2381
- preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2382
- 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
+ }>>;
2383
2405
  created_at: z.ZodString;
2384
2406
  updated_at: z.ZodString;
2385
2407
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2427,6 +2449,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2427
2449
  message: z.ZodString;
2428
2450
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2429
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
+ }>>;
2430
2460
  created_at: z.ZodString;
2431
2461
  updated_at: z.ZodString;
2432
2462
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2472,6 +2502,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2472
2502
  message: z.ZodString;
2473
2503
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2474
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
+ }>>;
2475
2513
  created_at: z.ZodString;
2476
2514
  updated_at: z.ZodString;
2477
2515
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2534,6 +2572,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2534
2572
  message: z.ZodString;
2535
2573
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2536
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
+ }>>;
2537
2583
  created_at: z.ZodString;
2538
2584
  updated_at: z.ZodString;
2539
2585
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2651,7 +2697,6 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2651
2697
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2652
2698
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2653
2699
  }, z.core.$strict>>;
2654
- delta: z.ZodNullable<z.ZodNumber>;
2655
2700
  }, z.core.$strict>;
2656
2701
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
2657
2702
  gate: z.ZodEnum<{
@@ -2767,7 +2812,6 @@ export declare const ReadinessResourceSchema: z.ZodObject<{
2767
2812
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2768
2813
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2769
2814
  }, z.core.$strict>>;
2770
- delta: z.ZodNullable<z.ZodNumber>;
2771
2815
  }, z.core.$strict>;
2772
2816
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
2773
2817
  gate: z.ZodEnum<{
@@ -2823,6 +2867,15 @@ export declare const LocalServiceDiscoverySchema: z.ZodObject<{
2823
2867
  source_files: z.ZodString;
2824
2868
  workspace_files: z.ZodString;
2825
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;
2826
2879
  executor: z.ZodString;
2827
2880
  }, z.core.$strict>;
2828
2881
  }, z.core.$strict>;
@@ -2953,7 +3006,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
2953
3006
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2954
3007
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2955
3008
  }, z.core.$strict>>;
2956
- delta: z.ZodNullable<z.ZodNumber>;
2957
3009
  }, z.core.$strict>;
2958
3010
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
2959
3011
  gate: z.ZodEnum<{
@@ -3004,6 +3056,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3004
3056
  }>>;
3005
3057
  built_in: z.ZodDefault<z.ZodBoolean>;
3006
3058
  active_for_preparations: z.ZodDefault<z.ZodArray<z.ZodString>>;
3059
+ output_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
3007
3060
  stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
3008
3061
  id: z.ZodString;
3009
3062
  label: z.ZodString;
@@ -3331,7 +3384,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3331
3384
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3332
3385
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3333
3386
  }, z.core.$strict>>;
3334
- delta: z.ZodNullable<z.ZodNumber>;
3335
3387
  }, z.core.$strict>;
3336
3388
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
3337
3389
  gate: z.ZodEnum<{
@@ -3458,7 +3510,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3458
3510
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3459
3511
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3460
3512
  }, z.core.$strict>>;
3461
- delta: z.ZodNullable<z.ZodNumber>;
3462
3513
  }, z.core.$strict>;
3463
3514
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
3464
3515
  gate: z.ZodEnum<{
@@ -3497,11 +3548,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3497
3548
  version: z.ZodLiteral<1>;
3498
3549
  run_id: z.ZodString;
3499
3550
  job_type: z.ZodEnum<{
3500
- compile: "compile";
3501
3551
  "method-authoring": "method-authoring";
3502
3552
  "method-improvement": "method-improvement";
3503
- "preparation-setup": "preparation-setup";
3504
- test: "test";
3505
3553
  "readiness-check-draft": "readiness-check-draft";
3506
3554
  }>;
3507
3555
  status: z.ZodEnum<{
@@ -3596,7 +3644,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3596
3644
  portable_context_path: z.ZodNullable<z.ZodString>;
3597
3645
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3598
3646
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3599
- comparison: z.ZodNullable<z.ZodObject<{
3647
+ readiness_run: z.ZodNullable<z.ZodObject<{
3600
3648
  kind: z.ZodLiteral<"interf-readiness-check-run">;
3601
3649
  version: z.ZodLiteral<1>;
3602
3650
  generated_at: z.ZodString;
@@ -3648,9 +3696,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3648
3696
  }, z.core.$strip>;
3649
3697
  }, z.core.$strip>>;
3650
3698
  summary: z.ZodObject<{
3651
- raw_pass_rate: z.ZodNullable<z.ZodNumber>;
3652
- compiled_pass_rate: z.ZodNullable<z.ZodNumber>;
3653
- 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>;
3654
3701
  }, z.core.$strip>;
3655
3702
  }, z.core.$strip>>;
3656
3703
  readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -3722,7 +3769,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3722
3769
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3723
3770
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3724
3771
  }, z.core.$strict>>;
3725
- delta: z.ZodNullable<z.ZodNumber>;
3726
3772
  }, z.core.$strict>;
3727
3773
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
3728
3774
  gate: z.ZodEnum<{
@@ -3958,7 +4004,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3958
4004
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3959
4005
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3960
4006
  }, z.core.$strict>>;
3961
- delta: z.ZodNullable<z.ZodNumber>;
3962
4007
  }, z.core.$strict>;
3963
4008
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
3964
4009
  gate: z.ZodEnum<{
@@ -4001,7 +4046,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4001
4046
  compile: "compile";
4002
4047
  "method-authoring": "method-authoring";
4003
4048
  "method-improvement": "method-improvement";
4004
- "preparation-setup": "preparation-setup";
4005
4049
  test: "test";
4006
4050
  "readiness-check-draft": "readiness-check-draft";
4007
4051
  job: "job";
@@ -4129,7 +4173,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4129
4173
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4130
4174
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4131
4175
  }, z.core.$strict>>;
4132
- delta: z.ZodNullable<z.ZodNumber>;
4133
4176
  }, z.core.$strict>;
4134
4177
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
4135
4178
  gate: z.ZodEnum<{
@@ -4266,6 +4309,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4266
4309
  message: z.ZodString;
4267
4310
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4268
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
+ }>>;
4269
4320
  created_at: z.ZodString;
4270
4321
  updated_at: z.ZodString;
4271
4322
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4306,6 +4357,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4306
4357
  message: z.ZodString;
4307
4358
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4308
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
+ }>>;
4309
4368
  created_at: z.ZodString;
4310
4369
  updated_at: z.ZodString;
4311
4370
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4355,70 +4414,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4355
4414
  message: z.ZodString;
4356
4415
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4357
4416
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4358
- created_at: z.ZodString;
4359
- updated_at: z.ZodString;
4360
- proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4361
- name: z.ZodString;
4362
- display_name: z.ZodString;
4363
- command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4364
- }, z.core.$strict>>>;
4365
- approval: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4366
- approved: z.ZodBoolean;
4367
- decided_at: z.ZodString;
4368
- note: z.ZodOptional<z.ZodString>;
4369
- }, z.core.$strict>>>;
4370
- submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4371
- submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4372
- "compile-run": "compile-run";
4373
- "test-run": "test-run";
4374
- "job-run": "job-run";
4375
- }>>>;
4376
- error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4377
- action_type: z.ZodLiteral<"preparation-setup">;
4378
- request: z.ZodObject<{
4379
- preparation: z.ZodObject<{
4380
- id: z.ZodOptional<z.ZodString>;
4381
- name: z.ZodString;
4382
- path: z.ZodString;
4383
- about: z.ZodOptional<z.ZodString>;
4384
- method: z.ZodOptional<z.ZodString>;
4385
- max_attempts: z.ZodOptional<z.ZodNumber>;
4386
- max_loops: z.ZodOptional<z.ZodNumber>;
4387
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
4388
- id: z.ZodOptional<z.ZodString>;
4389
- question: z.ZodString;
4390
- answer: z.ZodOptional<z.ZodString>;
4391
- expect: z.ZodOptional<z.ZodObject<{
4392
- must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
4393
- must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
4394
- must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
4395
- min_words: z.ZodOptional<z.ZodNumber>;
4396
- max_words: z.ZodOptional<z.ZodNumber>;
4397
- }, z.core.$strip>>;
4398
- strictness: z.ZodOptional<z.ZodString>;
4399
- }, z.core.$strict>>>;
4400
- }, z.core.$strict>;
4401
- prepare_after_setup: z.ZodDefault<z.ZodBoolean>;
4402
- }, z.core.$strict>;
4403
- }, z.core.$strict>, z.ZodObject<{
4404
- kind: z.ZodLiteral<"interf-action-proposal">;
4405
- version: z.ZodLiteral<1>;
4406
- proposal_id: z.ZodString;
4407
- status: z.ZodEnum<{
4408
- failed: "failed";
4409
- needs_clarification: "needs_clarification";
4410
- awaiting_approval: "awaiting_approval";
4411
- approved: "approved";
4412
- denied: "denied";
4413
- submitted: "submitted";
4414
- }>;
4415
- title: z.ZodString;
4416
- summary: z.ZodString;
4417
- assistant_message: z.ZodOptional<z.ZodString>;
4418
- command_preview: z.ZodOptional<z.ZodString>;
4419
- message: z.ZodString;
4420
- preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4421
- 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
+ }>>;
4422
4425
  created_at: z.ZodString;
4423
4426
  updated_at: z.ZodString;
4424
4427
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4466,6 +4469,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4466
4469
  message: z.ZodString;
4467
4470
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4468
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
+ }>>;
4469
4480
  created_at: z.ZodString;
4470
4481
  updated_at: z.ZodString;
4471
4482
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4511,6 +4522,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4511
4522
  message: z.ZodString;
4512
4523
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4513
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
+ }>>;
4514
4533
  created_at: z.ZodString;
4515
4534
  updated_at: z.ZodString;
4516
4535
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4573,6 +4592,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4573
4592
  message: z.ZodString;
4574
4593
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4575
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
+ }>>;
4576
4603
  created_at: z.ZodString;
4577
4604
  updated_at: z.ZodString;
4578
4605
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4692,7 +4719,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4692
4719
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4693
4720
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4694
4721
  }, z.core.$strict>>;
4695
- delta: z.ZodNullable<z.ZodNumber>;
4696
4722
  }, z.core.$strict>;
4697
4723
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
4698
4724
  gate: z.ZodEnum<{
@@ -4810,7 +4836,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4810
4836
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4811
4837
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4812
4838
  }, z.core.$strict>>;
4813
- delta: z.ZodNullable<z.ZodNumber>;
4814
4839
  }, z.core.$strict>;
4815
4840
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
4816
4841
  gate: z.ZodEnum<{
@@ -4978,7 +5003,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
4978
5003
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4979
5004
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4980
5005
  }, z.core.$strict>>;
4981
- delta: z.ZodNullable<z.ZodNumber>;
4982
5006
  }, z.core.$strict>;
4983
5007
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
4984
5008
  gate: z.ZodEnum<{
@@ -5029,6 +5053,7 @@ export declare const MethodListResponseSchema: z.ZodObject<{
5029
5053
  }>>;
5030
5054
  built_in: z.ZodDefault<z.ZodBoolean>;
5031
5055
  active_for_preparations: z.ZodDefault<z.ZodArray<z.ZodString>>;
5056
+ output_paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
5032
5057
  stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
5033
5058
  id: z.ZodString;
5034
5059
  label: z.ZodString;
@@ -5356,7 +5381,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5356
5381
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5357
5382
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5358
5383
  }, z.core.$strict>>;
5359
- delta: z.ZodNullable<z.ZodNumber>;
5360
5384
  }, z.core.$strict>;
5361
5385
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
5362
5386
  gate: z.ZodEnum<{
@@ -5483,7 +5507,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5483
5507
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5484
5508
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5485
5509
  }, z.core.$strict>>;
5486
- delta: z.ZodNullable<z.ZodNumber>;
5487
5510
  }, z.core.$strict>;
5488
5511
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
5489
5512
  gate: z.ZodEnum<{
@@ -5522,11 +5545,8 @@ export declare const LocalJobRunListResponseSchema: z.ZodObject<{
5522
5545
  version: z.ZodLiteral<1>;
5523
5546
  run_id: z.ZodString;
5524
5547
  job_type: z.ZodEnum<{
5525
- compile: "compile";
5526
5548
  "method-authoring": "method-authoring";
5527
5549
  "method-improvement": "method-improvement";
5528
- "preparation-setup": "preparation-setup";
5529
- test: "test";
5530
5550
  "readiness-check-draft": "readiness-check-draft";
5531
5551
  }>;
5532
5552
  status: z.ZodEnum<{
@@ -5621,7 +5641,7 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
5621
5641
  portable_context_path: z.ZodNullable<z.ZodString>;
5622
5642
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5623
5643
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5624
- comparison: z.ZodNullable<z.ZodObject<{
5644
+ readiness_run: z.ZodNullable<z.ZodObject<{
5625
5645
  kind: z.ZodLiteral<"interf-readiness-check-run">;
5626
5646
  version: z.ZodLiteral<1>;
5627
5647
  generated_at: z.ZodString;
@@ -5673,9 +5693,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
5673
5693
  }, z.core.$strip>;
5674
5694
  }, z.core.$strip>>;
5675
5695
  summary: z.ZodObject<{
5676
- raw_pass_rate: z.ZodNullable<z.ZodNumber>;
5677
- compiled_pass_rate: z.ZodNullable<z.ZodNumber>;
5678
- 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>;
5679
5698
  }, z.core.$strip>;
5680
5699
  }, z.core.$strip>>;
5681
5700
  readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -5747,7 +5766,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
5747
5766
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5748
5767
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5749
5768
  }, z.core.$strict>>;
5750
- delta: z.ZodNullable<z.ZodNumber>;
5751
5769
  }, z.core.$strict>;
5752
5770
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
5753
5771
  gate: z.ZodEnum<{
@@ -5983,7 +6001,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
5983
6001
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5984
6002
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5985
6003
  }, z.core.$strict>>;
5986
- delta: z.ZodNullable<z.ZodNumber>;
5987
6004
  }, z.core.$strict>;
5988
6005
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
5989
6006
  gate: z.ZodEnum<{
@@ -6026,7 +6043,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6026
6043
  compile: "compile";
6027
6044
  "method-authoring": "method-authoring";
6028
6045
  "method-improvement": "method-improvement";
6029
- "preparation-setup": "preparation-setup";
6030
6046
  test: "test";
6031
6047
  "readiness-check-draft": "readiness-check-draft";
6032
6048
  job: "job";
@@ -6154,7 +6170,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6154
6170
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6155
6171
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6156
6172
  }, z.core.$strict>>;
6157
- delta: z.ZodNullable<z.ZodNumber>;
6158
6173
  }, z.core.$strict>;
6159
6174
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
6160
6175
  gate: z.ZodEnum<{
@@ -6268,6 +6283,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6268
6283
  message: z.ZodString;
6269
6284
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6270
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
+ }>>;
6271
6294
  created_at: z.ZodString;
6272
6295
  updated_at: z.ZodString;
6273
6296
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -6308,6 +6331,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6308
6331
  message: z.ZodString;
6309
6332
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6310
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
+ }>>;
6311
6342
  created_at: z.ZodString;
6312
6343
  updated_at: z.ZodString;
6313
6344
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -6357,70 +6388,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6357
6388
  message: z.ZodString;
6358
6389
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6359
6390
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6360
- created_at: z.ZodString;
6361
- updated_at: z.ZodString;
6362
- proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
6363
- name: z.ZodString;
6364
- display_name: z.ZodString;
6365
- command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6366
- }, z.core.$strict>>>;
6367
- approval: z.ZodOptional<z.ZodNullable<z.ZodObject<{
6368
- approved: z.ZodBoolean;
6369
- decided_at: z.ZodString;
6370
- note: z.ZodOptional<z.ZodString>;
6371
- }, z.core.$strict>>>;
6372
- submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6373
- submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
6374
- "compile-run": "compile-run";
6375
- "test-run": "test-run";
6376
- "job-run": "job-run";
6377
- }>>>;
6378
- error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6379
- action_type: z.ZodLiteral<"preparation-setup">;
6380
- request: z.ZodObject<{
6381
- preparation: z.ZodObject<{
6382
- id: z.ZodOptional<z.ZodString>;
6383
- name: z.ZodString;
6384
- path: z.ZodString;
6385
- about: z.ZodOptional<z.ZodString>;
6386
- method: z.ZodOptional<z.ZodString>;
6387
- max_attempts: z.ZodOptional<z.ZodNumber>;
6388
- max_loops: z.ZodOptional<z.ZodNumber>;
6389
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
6390
- id: z.ZodOptional<z.ZodString>;
6391
- question: z.ZodString;
6392
- answer: z.ZodOptional<z.ZodString>;
6393
- expect: z.ZodOptional<z.ZodObject<{
6394
- must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
6395
- must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
6396
- must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
6397
- min_words: z.ZodOptional<z.ZodNumber>;
6398
- max_words: z.ZodOptional<z.ZodNumber>;
6399
- }, z.core.$strip>>;
6400
- strictness: z.ZodOptional<z.ZodString>;
6401
- }, z.core.$strict>>>;
6402
- }, z.core.$strict>;
6403
- prepare_after_setup: z.ZodDefault<z.ZodBoolean>;
6404
- }, z.core.$strict>;
6405
- }, z.core.$strict>, z.ZodObject<{
6406
- kind: z.ZodLiteral<"interf-action-proposal">;
6407
- version: z.ZodLiteral<1>;
6408
- proposal_id: z.ZodString;
6409
- status: z.ZodEnum<{
6410
- failed: "failed";
6411
- needs_clarification: "needs_clarification";
6412
- awaiting_approval: "awaiting_approval";
6413
- approved: "approved";
6414
- denied: "denied";
6415
- submitted: "submitted";
6416
- }>;
6417
- title: z.ZodString;
6418
- summary: z.ZodString;
6419
- assistant_message: z.ZodOptional<z.ZodString>;
6420
- command_preview: z.ZodOptional<z.ZodString>;
6421
- message: z.ZodString;
6422
- preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6423
- 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
+ }>>;
6424
6399
  created_at: z.ZodString;
6425
6400
  updated_at: z.ZodString;
6426
6401
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -6468,6 +6443,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6468
6443
  message: z.ZodString;
6469
6444
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6470
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
+ }>>;
6471
6454
  created_at: z.ZodString;
6472
6455
  updated_at: z.ZodString;
6473
6456
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -6513,6 +6496,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6513
6496
  message: z.ZodString;
6514
6497
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6515
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
+ }>>;
6516
6507
  created_at: z.ZodString;
6517
6508
  updated_at: z.ZodString;
6518
6509
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -6575,6 +6566,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6575
6566
  message: z.ZodString;
6576
6567
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6577
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
+ }>>;
6578
6577
  created_at: z.ZodString;
6579
6578
  updated_at: z.ZodString;
6580
6579
  proposed_by_executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -6694,7 +6693,6 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
6694
6693
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6695
6694
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6696
6695
  }, z.core.$strict>>;
6697
- delta: z.ZodNullable<z.ZodNumber>;
6698
6696
  }, z.core.$strict>;
6699
6697
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
6700
6698
  gate: z.ZodEnum<{
@@ -6812,7 +6810,6 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
6812
6810
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6813
6811
  run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6814
6812
  }, z.core.$strict>>;
6815
- delta: z.ZodNullable<z.ZodNumber>;
6816
6813
  }, z.core.$strict>;
6817
6814
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
6818
6815
  gate: z.ZodEnum<{
@@ -6862,8 +6859,9 @@ export declare const WorkspaceFileListResponseSchema: z.ZodObject<{
6862
6859
  }, z.core.$strict>>;
6863
6860
  }, z.core.$strict>;
6864
6861
  export type LocalServiceConfig = z.infer<typeof LocalServiceConfigSchema>;
6862
+ export type LocalServiceError = z.infer<typeof LocalServiceErrorSchema>;
6865
6863
  export type LocalServiceHealth = z.infer<typeof LocalServiceHealthSchema>;
6866
- export type LocalServiceInstancePointer = z.infer<typeof LocalServiceInstancePointerSchema>;
6864
+ export type LocalServicePointer = z.infer<typeof LocalServicePointerSchema>;
6867
6865
  export type PreparationReadinessState = z.infer<typeof PreparationReadinessStateSchema>;
6868
6866
  export type PortableContextMapping = z.infer<typeof PortableContextMappingSchema>;
6869
6867
  export type PreparationRunLinkage = z.infer<typeof PreparationRunLinkageSchema>;
@@ -6883,6 +6881,13 @@ export type LocalJobEventType = z.infer<typeof LocalJobEventTypeSchema>;
6883
6881
  export type LocalJobEvent = z.infer<typeof LocalJobEventSchema>;
6884
6882
  export type LocalJobRunCreateRequest = z.infer<typeof LocalJobRunCreateRequestSchema>;
6885
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>;
6886
6891
  export type ReadinessCheckDraftCreateRequest = z.infer<typeof ReadinessCheckDraftCreateRequestSchema>;
6887
6892
  export type ReadinessCheckDraftResult = z.infer<typeof ReadinessCheckDraftResultSchema>;
6888
6893
  export type MethodAuthoringCreateRequest = z.infer<typeof MethodAuthoringCreateRequestSchema>;
@@ -6893,11 +6898,12 @@ export type TestRunStatus = z.infer<typeof TestRunStatusSchema>;
6893
6898
  export type TestRunCreateRequest = z.infer<typeof TestRunCreateRequestSchema>;
6894
6899
  export type TestRunResource = z.infer<typeof TestRunResourceSchema>;
6895
6900
  export type RunObservabilityResource = z.infer<typeof RunObservabilityResourceSchema>;
6896
- export type RunCreateRequest = z.infer<typeof RunCreateRequestSchema>;
6897
6901
  export type LocalExecutorStatus = z.infer<typeof LocalExecutorStatusSchema>;
6898
6902
  export type ActionProposalType = z.infer<typeof ActionProposalTypeSchema>;
6903
+ export type ActionProposalPlanActionType = z.infer<typeof ActionProposalPlanActionTypeSchema>;
6899
6904
  export type ActionProposalStatus = z.infer<typeof ActionProposalStatusSchema>;
6900
- export type ActionProposalCreateRequest = z.infer<typeof ActionProposalCreateRequestSchema>;
6905
+ export type ActionClientOrigin = z.infer<typeof ActionClientOriginSchema>;
6906
+ export type ActionProposalCreateRequest = z.input<typeof ActionProposalCreateRequestSchema>;
6901
6907
  export type ActionProposalPlan = z.infer<typeof ActionProposalPlanSchema>;
6902
6908
  export type ActionProposalApprovalRequest = z.infer<typeof ActionProposalApprovalRequestSchema>;
6903
6909
  export type ActionProposalApproval = z.infer<typeof ActionProposalApprovalSchema>;