@interf/compiler 0.9.1 → 0.9.4

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 (251) hide show
  1. package/README.md +9 -9
  2. package/agent-skills/interf-actions/SKILL.md +3 -0
  3. package/agent-skills/interf-actions/references/cli.md +13 -13
  4. package/{builtin-workflows/interf → builtin-methods/interf-default}/README.md +2 -2
  5. package/builtin-methods/interf-default/improve/SKILL.md +18 -0
  6. package/{builtin-workflows/interf/workflow.json → builtin-methods/interf-default/method.json} +4 -4
  7. package/{builtin-workflows/interf/workflow.schema.json → builtin-methods/interf-default/method.schema.json} +2 -2
  8. package/dist/cli/commands/check-draft.d.ts +6 -6
  9. package/dist/cli/commands/check-draft.js +5 -5
  10. package/dist/cli/commands/compile-controller.d.ts +7 -7
  11. package/dist/cli/commands/compile-controller.js +35 -38
  12. package/dist/cli/commands/compile.d.ts +3 -3
  13. package/dist/cli/commands/compile.js +23 -21
  14. package/dist/cli/commands/compiled-flow.d.ts +11 -11
  15. package/dist/cli/commands/compiled-flow.js +33 -30
  16. package/dist/cli/commands/create-method-wizard.d.ts +76 -0
  17. package/dist/cli/commands/{create-workflow-wizard.js → create-method-wizard.js} +153 -163
  18. package/dist/cli/commands/create.d.ts +3 -3
  19. package/dist/cli/commands/create.js +44 -45
  20. package/dist/cli/commands/default.js +1 -1
  21. package/dist/cli/commands/executor-flow.d.ts +6 -6
  22. package/dist/cli/commands/executor-flow.js +1 -1
  23. package/dist/cli/commands/init.d.ts +2 -2
  24. package/dist/cli/commands/init.js +139 -118
  25. package/dist/cli/commands/list.js +11 -10
  26. package/dist/cli/commands/preparation-selection.d.ts +3 -3
  27. package/dist/cli/commands/source-config-wizard.d.ts +9 -9
  28. package/dist/cli/commands/source-config-wizard.js +43 -43
  29. package/dist/cli/commands/status.js +36 -9
  30. package/dist/cli/commands/test-flow.d.ts +15 -15
  31. package/dist/cli/commands/test-flow.js +29 -219
  32. package/dist/cli/commands/test.d.ts +2 -2
  33. package/dist/cli/commands/test.js +50 -51
  34. package/dist/cli/commands/verify.js +7 -7
  35. package/dist/cli/commands/web.js +41 -28
  36. package/dist/compiler-ui/404.html +1 -0
  37. package/dist/compiler-ui/__next.__PAGE__.txt +10 -0
  38. package/dist/compiler-ui/__next._full.txt +20 -0
  39. package/dist/compiler-ui/__next._head.txt +5 -0
  40. package/dist/compiler-ui/__next._index.txt +5 -0
  41. package/dist/compiler-ui/__next._tree.txt +5 -0
  42. package/dist/compiler-ui/_next/static/chunks/06yhdspx~ca5-.js +5 -0
  43. package/{apps/compiler-ui/.next/static/chunks/0fgt_8knmicoz.js → dist/compiler-ui/_next/static/chunks/0d~8t0zm6545p.js} +15 -21
  44. package/dist/compiler-ui/_next/static/chunks/0xnel.ax9a.2c.css +3 -0
  45. package/{apps/compiler-ui/.next/static/chunks/turbopack-109rtik40vwh5.js → dist/compiler-ui/_next/static/chunks/turbopack-0.uq1k8c0j4s..js} +1 -1
  46. package/dist/compiler-ui/_not-found/__next._full.txt +15 -0
  47. package/dist/compiler-ui/_not-found/__next._head.txt +5 -0
  48. package/dist/compiler-ui/_not-found/__next._index.txt +5 -0
  49. package/dist/compiler-ui/_not-found/__next._not-found.__PAGE__.txt +5 -0
  50. package/dist/compiler-ui/_not-found/__next._not-found.txt +5 -0
  51. package/dist/compiler-ui/_not-found/__next._tree.txt +2 -0
  52. package/dist/compiler-ui/_not-found.html +1 -0
  53. package/dist/compiler-ui/_not-found.txt +15 -0
  54. package/{apps/compiler-ui/.next/server/app → dist/compiler-ui}/index.html +1 -1
  55. package/dist/compiler-ui/index.txt +20 -0
  56. package/dist/index.d.ts +8 -6
  57. package/dist/index.js +5 -3
  58. package/dist/packages/agents/index.d.ts +1 -1
  59. package/dist/packages/agents/lib/args.d.ts +2 -2
  60. package/dist/packages/agents/lib/compiled-bootstrap.js +7 -6
  61. package/dist/packages/agents/lib/execution-profile.d.ts +5 -5
  62. package/dist/packages/agents/lib/execution-profile.js +7 -6
  63. package/dist/packages/agents/lib/executors.d.ts +13 -13
  64. package/dist/packages/agents/lib/preflight.d.ts +1 -0
  65. package/dist/packages/agents/lib/preflight.js +32 -9
  66. package/dist/packages/agents/lib/shells.d.ts +25 -24
  67. package/dist/packages/agents/lib/shells.js +161 -154
  68. package/dist/packages/agents/lib/types.d.ts +2 -2
  69. package/dist/packages/compiler/artifact-counts.d.ts +1 -0
  70. package/dist/packages/compiler/artifact-counts.js +30 -0
  71. package/dist/packages/compiler/compiled-paths.d.ts +4 -7
  72. package/dist/packages/compiler/compiled-paths.js +9 -15
  73. package/dist/packages/compiler/compiled-pipeline.d.ts +11 -12
  74. package/dist/packages/compiler/compiled-pipeline.js +22 -22
  75. package/dist/packages/compiler/compiled-schema.d.ts +20 -20
  76. package/dist/packages/compiler/compiled-schema.js +29 -29
  77. package/dist/packages/compiler/compiled-stage-plan.d.ts +4 -4
  78. package/dist/packages/compiler/compiled-stage-plan.js +8 -8
  79. package/dist/packages/compiler/compiled-stage-runner.d.ts +5 -5
  80. package/dist/packages/compiler/compiled-stage-runner.js +7 -7
  81. package/dist/packages/compiler/compiled-target.d.ts +5 -5
  82. package/dist/packages/compiler/compiled-target.js +5 -5
  83. package/dist/packages/compiler/index.d.ts +3 -3
  84. package/dist/packages/compiler/index.js +2 -2
  85. package/dist/packages/compiler/lib/schema.d.ts +62 -247
  86. package/dist/packages/compiler/lib/schema.js +56 -174
  87. package/dist/packages/compiler/{workflows.d.ts → method-runs.d.ts} +4 -4
  88. package/dist/packages/compiler/{workflows.js → method-runs.js} +4 -3
  89. package/dist/packages/compiler/raw-snapshot.d.ts +0 -7
  90. package/dist/packages/compiler/raw-snapshot.js +0 -1
  91. package/dist/packages/compiler/reset.js +3 -3
  92. package/dist/packages/compiler/runtime-acceptance.js +9 -16
  93. package/dist/packages/compiler/runtime-contracts.js +9 -9
  94. package/dist/packages/compiler/runtime-prompt.js +4 -4
  95. package/dist/packages/compiler/runtime-reconcile.d.ts +2 -2
  96. package/dist/packages/compiler/runtime-reconcile.js +3 -3
  97. package/dist/packages/compiler/runtime-runs.js +9 -9
  98. package/dist/packages/compiler/runtime-types.d.ts +8 -7
  99. package/dist/packages/compiler/state-health.js +26 -35
  100. package/dist/packages/compiler/state-view.js +6 -6
  101. package/dist/packages/compiler/validate-compiled.d.ts +5 -5
  102. package/dist/packages/compiler/validate-compiled.js +56 -64
  103. package/dist/packages/compiler/validate.d.ts +2 -2
  104. package/dist/packages/compiler/validate.js +22 -14
  105. package/dist/packages/contracts/index.d.ts +2 -0
  106. package/dist/packages/contracts/index.js +1 -0
  107. package/dist/packages/contracts/lib/schema.d.ts +205 -0
  108. package/dist/packages/contracts/lib/schema.js +101 -0
  109. package/dist/packages/execution/index.d.ts +2 -2
  110. package/dist/packages/execution/index.js +1 -1
  111. package/dist/packages/execution/lib/schema.d.ts +80 -83
  112. package/dist/packages/execution/lib/schema.js +25 -48
  113. package/dist/packages/local-service/action-values.d.ts +1 -1
  114. package/dist/packages/local-service/action-values.js +1 -1
  115. package/dist/packages/local-service/client.d.ts +4 -4
  116. package/dist/packages/local-service/client.js +4 -4
  117. package/dist/packages/local-service/index.d.ts +3 -3
  118. package/dist/packages/local-service/index.js +2 -2
  119. package/dist/packages/local-service/lib/schema.d.ts +540 -974
  120. package/dist/packages/local-service/lib/schema.js +44 -160
  121. package/dist/packages/local-service/run-observability.d.ts +6 -0
  122. package/dist/packages/local-service/run-observability.js +592 -0
  123. package/dist/packages/local-service/runtime.d.ts +19 -23
  124. package/dist/packages/local-service/runtime.js +349 -913
  125. package/dist/packages/local-service/server.d.ts +1 -0
  126. package/dist/packages/local-service/server.js +25 -20
  127. package/dist/packages/method-authoring/index.d.ts +4 -0
  128. package/dist/packages/method-authoring/index.js +4 -0
  129. package/dist/packages/{workflow-authoring/lib/workflow-edit-utils.d.ts → method-authoring/lib/method-edit-utils.d.ts} +3 -3
  130. package/dist/packages/method-authoring/method-authoring.d.ts +24 -0
  131. package/dist/packages/method-authoring/method-authoring.js +116 -0
  132. package/dist/packages/method-authoring/method-edit-session.d.ts +18 -0
  133. package/dist/packages/method-authoring/method-edit-session.js +125 -0
  134. package/dist/packages/method-authoring/method-improvement.d.ts +23 -0
  135. package/dist/packages/{workflow-authoring/workflow-improvement.js → method-authoring/method-improvement.js} +63 -63
  136. package/dist/packages/{workflow-package/builtin-compiled-workflow.d.ts → method-package/builtin-compiled-method.d.ts} +1 -1
  137. package/dist/packages/{workflow-package/builtin-compiled-workflow.js → method-package/builtin-compiled-method.js} +17 -17
  138. package/dist/packages/{workflow-package → method-package}/context-interface.d.ts +12 -12
  139. package/dist/packages/{workflow-package → method-package}/context-interface.js +19 -19
  140. package/dist/packages/method-package/index.d.ts +11 -0
  141. package/dist/packages/method-package/index.js +11 -0
  142. package/dist/packages/method-package/interf-method-package.d.ts +31 -0
  143. package/dist/packages/{workflow-package/interf-workflow-package.js → method-package/interf-method-package.js} +145 -145
  144. package/dist/packages/{workflow-package → method-package}/lib/package-root.js +1 -1
  145. package/dist/packages/method-package/local-methods.d.ts +64 -0
  146. package/dist/packages/method-package/local-methods.js +466 -0
  147. package/dist/packages/method-package/method-definitions.d.ts +83 -0
  148. package/dist/packages/method-package/method-definitions.js +205 -0
  149. package/dist/packages/{workflow-package/workflow-helpers.d.ts → method-package/method-helpers.d.ts} +10 -10
  150. package/dist/packages/{workflow-package/workflow-helpers.js → method-package/method-helpers.js} +22 -26
  151. package/dist/packages/method-package/method-review-paths.d.ts +10 -0
  152. package/dist/packages/{workflow-package/workflow-review-paths.js → method-package/method-review-paths.js} +4 -4
  153. package/dist/packages/{workflow-package/workflow-stage-runner.d.ts → method-package/method-stage-runner.d.ts} +12 -11
  154. package/dist/packages/{workflow-package/workflow-stage-runner.js → method-package/method-stage-runner.js} +6 -6
  155. package/dist/packages/methods/index.d.ts +2 -0
  156. package/dist/packages/methods/index.js +2 -0
  157. package/dist/packages/methods/method-resolution.d.ts +6 -0
  158. package/dist/packages/methods/method-resolution.js +7 -0
  159. package/dist/packages/project-model/index.d.ts +1 -4
  160. package/dist/packages/project-model/index.js +0 -3
  161. package/dist/packages/project-model/interf-detect.d.ts +1 -5
  162. package/dist/packages/project-model/interf-detect.js +7 -18
  163. package/dist/packages/project-model/interf-scaffold.d.ts +2 -2
  164. package/dist/packages/project-model/interf-scaffold.js +38 -39
  165. package/dist/packages/project-model/interf.d.ts +1 -2
  166. package/dist/packages/project-model/interf.js +1 -2
  167. package/dist/packages/project-model/lib/schema.d.ts +2 -66
  168. package/dist/packages/project-model/lib/schema.js +5 -23
  169. package/dist/packages/project-model/project-paths.d.ts +9 -10
  170. package/dist/packages/project-model/project-paths.js +14 -17
  171. package/dist/packages/project-model/source-config.d.ts +11 -18
  172. package/dist/packages/project-model/source-config.js +42 -60
  173. package/dist/packages/project-model/source-folders.d.ts +4 -4
  174. package/dist/packages/project-model/source-folders.js +10 -10
  175. package/dist/packages/testing/index.d.ts +2 -2
  176. package/dist/packages/testing/index.js +1 -1
  177. package/dist/packages/testing/lib/schema.d.ts +11 -11
  178. package/dist/packages/testing/lib/schema.js +8 -9
  179. package/dist/packages/testing/readiness-check-run.d.ts +67 -0
  180. package/dist/packages/testing/readiness-check-run.js +258 -0
  181. package/dist/packages/testing/test-execution.d.ts +3 -3
  182. package/dist/packages/testing/test-execution.js +5 -5
  183. package/dist/packages/testing/test-paths.js +6 -6
  184. package/dist/packages/testing/test-profile-presets.js +2 -2
  185. package/dist/packages/testing/test-sandbox.js +10 -11
  186. package/dist/packages/testing/test-targets.d.ts +1 -1
  187. package/dist/packages/testing/test-targets.js +8 -7
  188. package/dist/packages/testing/test-types.d.ts +1 -1
  189. package/package.json +16 -33
  190. package/apps/compiler-ui/.next/static/chunks/0ti_66mx7~w2-.js +0 -5
  191. package/apps/compiler-ui/.next/static/chunks/13g~4mamjft.c.css +0 -3
  192. package/builtin-workflows/interf/improve/SKILL.md +0 -18
  193. package/dist/cli/commands/create-workflow-wizard.d.ts +0 -76
  194. package/dist/packages/project-model/compiled-paths.d.ts +0 -1
  195. package/dist/packages/project-model/compiled-paths.js +0 -1
  196. package/dist/packages/project-model/compiled-raw.d.ts +0 -1
  197. package/dist/packages/project-model/compiled-raw.js +0 -1
  198. package/dist/packages/project-model/compiled-reset.d.ts +0 -1
  199. package/dist/packages/project-model/compiled-reset.js +0 -1
  200. package/dist/packages/shared/index.d.ts +0 -7
  201. package/dist/packages/shared/index.js +0 -7
  202. package/dist/packages/shared/util.d.ts +0 -3
  203. package/dist/packages/shared/util.js +0 -3
  204. package/dist/packages/testing/test-matrices.d.ts +0 -90
  205. package/dist/packages/testing/test-matrices.js +0 -96
  206. package/dist/packages/workflow-authoring/index.d.ts +0 -4
  207. package/dist/packages/workflow-authoring/index.js +0 -4
  208. package/dist/packages/workflow-authoring/workflow-authoring.d.ts +0 -24
  209. package/dist/packages/workflow-authoring/workflow-authoring.js +0 -82
  210. package/dist/packages/workflow-authoring/workflow-edit-session.d.ts +0 -18
  211. package/dist/packages/workflow-authoring/workflow-edit-session.js +0 -91
  212. package/dist/packages/workflow-authoring/workflow-improvement.d.ts +0 -23
  213. package/dist/packages/workflow-package/index.d.ts +0 -11
  214. package/dist/packages/workflow-package/index.js +0 -11
  215. package/dist/packages/workflow-package/interf-workflow-package.d.ts +0 -31
  216. package/dist/packages/workflow-package/local-workflows.d.ts +0 -64
  217. package/dist/packages/workflow-package/local-workflows.js +0 -457
  218. package/dist/packages/workflow-package/workflow-definitions.d.ts +0 -82
  219. package/dist/packages/workflow-package/workflow-definitions.js +0 -211
  220. package/dist/packages/workflow-package/workflow-review-paths.d.ts +0 -10
  221. /package/{builtin-workflows/interf → builtin-methods/interf-default}/compile/stages/shape/SKILL.md +0 -0
  222. /package/{builtin-workflows/interf → builtin-methods/interf-default}/compile/stages/structure/SKILL.md +0 -0
  223. /package/{builtin-workflows/interf → builtin-methods/interf-default}/compile/stages/summarize/SKILL.md +0 -0
  224. /package/{builtin-workflows/interf → builtin-methods/interf-default}/use/query/SKILL.md +0 -0
  225. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/03~yq9q893hmn.js +0 -0
  226. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/06z~l3kwb891e.js +0 -0
  227. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/08g7lvje.te.u.js +0 -0
  228. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/08m7vf5asqlsm.js +0 -0
  229. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0_i-3_5l9t2qe.js +0 -0
  230. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0b-ywny_j0g~0.js +0 -0
  231. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0b52v41o1gixx.js +0 -0
  232. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0gpzgsv0w.q~m.js +0 -0
  233. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0ilwfezfvu6~-.js +0 -0
  234. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0n51hrfoufc7g.js +0 -0
  235. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0xxmf45eskdt~.css +0 -0
  236. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0y5z3t-z1c8ks.js.map +0 -0
  237. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/14wtz~vq25~qq.js +0 -0
  238. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/turbopack-10e~t1yzi4svj.js +0 -0
  239. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/turbopack-worker-0sjn--fhq~1cg.js +0 -0
  240. /package/{apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J → dist/compiler-ui/_next/static/j7pdoqWrl4YJrJUVnksbl}/_buildManifest.js +0 -0
  241. /package/{apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J → dist/compiler-ui/_next/static/j7pdoqWrl4YJrJUVnksbl}/_clientMiddlewareManifest.js +0 -0
  242. /package/{apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J → dist/compiler-ui/_next/static/j7pdoqWrl4YJrJUVnksbl}/_ssgManifest.js +0 -0
  243. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/media/GeistMono_Variable.p.17jn9btb_52pq.woff2 +0 -0
  244. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/media/Geist_Variable-s.p.0-te~ja_gpvcf.woff2 +0 -0
  245. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/media/worker.102zas1s52_pf.js +0 -0
  246. /package/dist/packages/compiler/{workflow-primitives.d.ts → method-primitives.d.ts} +0 -0
  247. /package/dist/packages/compiler/{workflow-primitives.js → method-primitives.js} +0 -0
  248. /package/dist/packages/{workflow-authoring/lib/workflow-edit-utils.js → method-authoring/lib/method-edit-utils.js} +0 -0
  249. /package/dist/packages/{workflow-package → method-package}/lib/package-root.d.ts +0 -0
  250. /package/dist/packages/{workflow-package/workflow-stage-policy.d.ts → method-package/method-stage-policy.d.ts} +0 -0
  251. /package/dist/packages/{workflow-package/workflow-stage-policy.js → method-package/method-stage-policy.js} +0 -0
@@ -25,141 +25,12 @@ export declare const LocalServiceInstancePointerSchema: z.ZodObject<{
25
25
  control_path: z.ZodString;
26
26
  started_at: z.ZodString;
27
27
  }, z.core.$strict>;
28
- export declare const DatasetResourceSchema: z.ZodObject<{
29
- dataset: z.ZodObject<{
30
- id: z.ZodOptional<z.ZodString>;
31
- name: z.ZodString;
32
- path: z.ZodString;
33
- about: z.ZodOptional<z.ZodString>;
34
- method: z.ZodOptional<z.ZodString>;
35
- workflow: z.ZodOptional<z.ZodString>;
36
- max_attempts: z.ZodOptional<z.ZodNumber>;
37
- max_loops: z.ZodOptional<z.ZodNumber>;
38
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
39
- id: z.ZodOptional<z.ZodString>;
40
- question: z.ZodString;
41
- answer: z.ZodOptional<z.ZodString>;
42
- expect: z.ZodOptional<z.ZodObject<{
43
- must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
44
- must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
45
- must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
46
- min_words: z.ZodOptional<z.ZodNumber>;
47
- max_words: z.ZodOptional<z.ZodNumber>;
48
- }, z.core.$strip>>;
49
- strictness: z.ZodOptional<z.ZodString>;
50
- }, z.core.$strict>>>;
51
- }, z.core.$strict>;
52
- portable_context_path: z.ZodNullable<z.ZodString>;
53
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
54
- kind: z.ZodLiteral<"interf-readiness-state">;
55
- version: z.ZodLiteral<1>;
56
- generated_at: z.ZodString;
57
- preparation: z.ZodString;
58
- status: z.ZodEnum<{
59
- stale: "stale";
60
- failed: "failed";
61
- "not-configured": "not-configured";
62
- "not-built": "not-built";
63
- building: "building";
64
- built: "built";
65
- checking: "checking";
66
- ready: "ready";
67
- "not-ready": "not-ready";
68
- }>;
69
- ready: z.ZodBoolean;
70
- summary: z.ZodString;
71
- portable_context_path: z.ZodNullable<z.ZodString>;
72
- latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73
- latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74
- compile: z.ZodNullable<z.ZodObject<{
75
- gate: z.ZodEnum<{
76
- "preparation-config": "preparation-config";
77
- "portable-context": "portable-context";
78
- "compile-run": "compile-run";
79
- "readiness-checks": "readiness-checks";
80
- "source-baseline": "source-baseline";
81
- "portable-context-check": "portable-context-check";
82
- "checks-current": "checks-current";
83
- }>;
84
- ok: z.ZodBoolean;
85
- status: z.ZodOptional<z.ZodEnum<{
86
- stale: "stale";
87
- failed: "failed";
88
- "not-configured": "not-configured";
89
- "not-built": "not-built";
90
- building: "building";
91
- built: "built";
92
- checking: "checking";
93
- ready: "ready";
94
- "not-ready": "not-ready";
95
- }>>;
96
- summary: z.ZodString;
97
- detail: z.ZodOptional<z.ZodString>;
98
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
99
- artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
100
- }, z.core.$strict>>;
101
- check_results: z.ZodObject<{
102
- configured: z.ZodNumber;
103
- fingerprint: z.ZodNullable<z.ZodString>;
104
- source_files: z.ZodNullable<z.ZodObject<{
105
- passed: z.ZodNumber;
106
- total: z.ZodNumber;
107
- pass_rate: z.ZodNullable<z.ZodNumber>;
108
- checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
109
- stale: z.ZodDefault<z.ZodBoolean>;
110
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
111
- run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
112
- }, z.core.$strict>>;
113
- portable_context: z.ZodNullable<z.ZodObject<{
114
- passed: z.ZodNumber;
115
- total: z.ZodNumber;
116
- pass_rate: z.ZodNullable<z.ZodNumber>;
117
- checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
118
- stale: z.ZodDefault<z.ZodBoolean>;
119
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
120
- run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
121
- }, z.core.$strict>>;
122
- delta: z.ZodNullable<z.ZodNumber>;
123
- }, z.core.$strict>;
124
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
125
- gate: z.ZodEnum<{
126
- "preparation-config": "preparation-config";
127
- "portable-context": "portable-context";
128
- "compile-run": "compile-run";
129
- "readiness-checks": "readiness-checks";
130
- "source-baseline": "source-baseline";
131
- "portable-context-check": "portable-context-check";
132
- "checks-current": "checks-current";
133
- }>;
134
- ok: z.ZodBoolean;
135
- status: z.ZodOptional<z.ZodEnum<{
136
- stale: "stale";
137
- failed: "failed";
138
- "not-configured": "not-configured";
139
- "not-built": "not-built";
140
- building: "building";
141
- built: "built";
142
- checking: "checking";
143
- ready: "ready";
144
- "not-ready": "not-ready";
145
- }>>;
146
- summary: z.ZodString;
147
- detail: z.ZodOptional<z.ZodString>;
148
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
149
- artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
150
- }, z.core.$strict>>>;
151
- }, z.core.$strict>>;
152
- latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
153
- latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
154
- }, z.core.$strict>;
155
- export declare const PreparationReadinessStateSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
28
+ export declare const PreparationReadinessStateSchema: z.ZodObject<{
156
29
  kind: z.ZodLiteral<"interf-readiness-state">;
157
30
  version: z.ZodLiteral<1>;
158
31
  generated_at: z.ZodString;
159
32
  preparation: z.ZodString;
160
33
  status: z.ZodEnum<{
161
- stale: "stale";
162
- failed: "failed";
163
34
  "not-configured": "not-configured";
164
35
  "not-built": "not-built";
165
36
  building: "building";
@@ -167,6 +38,8 @@ export declare const PreparationReadinessStateSchema: z.ZodPipe<z.ZodTransform<u
167
38
  checking: "checking";
168
39
  ready: "ready";
169
40
  "not-ready": "not-ready";
41
+ stale: "stale";
42
+ failed: "failed";
170
43
  }>;
171
44
  ready: z.ZodBoolean;
172
45
  summary: z.ZodString;
@@ -185,8 +58,6 @@ export declare const PreparationReadinessStateSchema: z.ZodPipe<z.ZodTransform<u
185
58
  }>;
186
59
  ok: z.ZodBoolean;
187
60
  status: z.ZodOptional<z.ZodEnum<{
188
- stale: "stale";
189
- failed: "failed";
190
61
  "not-configured": "not-configured";
191
62
  "not-built": "not-built";
192
63
  building: "building";
@@ -194,6 +65,8 @@ export declare const PreparationReadinessStateSchema: z.ZodPipe<z.ZodTransform<u
194
65
  checking: "checking";
195
66
  ready: "ready";
196
67
  "not-ready": "not-ready";
68
+ stale: "stale";
69
+ failed: "failed";
197
70
  }>>;
198
71
  summary: z.ZodString;
199
72
  detail: z.ZodOptional<z.ZodString>;
@@ -235,8 +108,6 @@ export declare const PreparationReadinessStateSchema: z.ZodPipe<z.ZodTransform<u
235
108
  }>;
236
109
  ok: z.ZodBoolean;
237
110
  status: z.ZodOptional<z.ZodEnum<{
238
- stale: "stale";
239
- failed: "failed";
240
111
  "not-configured": "not-configured";
241
112
  "not-built": "not-built";
242
113
  building: "building";
@@ -244,13 +115,15 @@ export declare const PreparationReadinessStateSchema: z.ZodPipe<z.ZodTransform<u
244
115
  checking: "checking";
245
116
  ready: "ready";
246
117
  "not-ready": "not-ready";
118
+ stale: "stale";
119
+ failed: "failed";
247
120
  }>>;
248
121
  summary: z.ZodString;
249
122
  detail: z.ZodOptional<z.ZodString>;
250
123
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
251
124
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
252
125
  }, z.core.$strict>>>;
253
- }, z.core.$strict>>;
126
+ }, z.core.$strict>;
254
127
  export declare const PortableContextMappingSchema: z.ZodObject<{
255
128
  preparation: z.ZodString;
256
129
  path: z.ZodNullable<z.ZodString>;
@@ -272,7 +145,6 @@ export declare const PreparationResourceSchema: z.ZodObject<{
272
145
  path: z.ZodString;
273
146
  about: z.ZodOptional<z.ZodString>;
274
147
  method: z.ZodOptional<z.ZodString>;
275
- workflow: z.ZodOptional<z.ZodString>;
276
148
  max_attempts: z.ZodOptional<z.ZodNumber>;
277
149
  max_loops: z.ZodOptional<z.ZodNumber>;
278
150
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -313,14 +185,12 @@ export declare const PreparationResourceSchema: z.ZodObject<{
313
185
  latest_test_run_id: z.ZodNullable<z.ZodString>;
314
186
  }, z.core.$strict>;
315
187
  portable_context_path: z.ZodNullable<z.ZodString>;
316
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
188
+ readiness: z.ZodObject<{
317
189
  kind: z.ZodLiteral<"interf-readiness-state">;
318
190
  version: z.ZodLiteral<1>;
319
191
  generated_at: z.ZodString;
320
192
  preparation: z.ZodString;
321
193
  status: z.ZodEnum<{
322
- stale: "stale";
323
- failed: "failed";
324
194
  "not-configured": "not-configured";
325
195
  "not-built": "not-built";
326
196
  building: "building";
@@ -328,6 +198,8 @@ export declare const PreparationResourceSchema: z.ZodObject<{
328
198
  checking: "checking";
329
199
  ready: "ready";
330
200
  "not-ready": "not-ready";
201
+ stale: "stale";
202
+ failed: "failed";
331
203
  }>;
332
204
  ready: z.ZodBoolean;
333
205
  summary: z.ZodString;
@@ -346,8 +218,6 @@ export declare const PreparationResourceSchema: z.ZodObject<{
346
218
  }>;
347
219
  ok: z.ZodBoolean;
348
220
  status: z.ZodOptional<z.ZodEnum<{
349
- stale: "stale";
350
- failed: "failed";
351
221
  "not-configured": "not-configured";
352
222
  "not-built": "not-built";
353
223
  building: "building";
@@ -355,6 +225,8 @@ export declare const PreparationResourceSchema: z.ZodObject<{
355
225
  checking: "checking";
356
226
  ready: "ready";
357
227
  "not-ready": "not-ready";
228
+ stale: "stale";
229
+ failed: "failed";
358
230
  }>>;
359
231
  summary: z.ZodString;
360
232
  detail: z.ZodOptional<z.ZodString>;
@@ -396,8 +268,6 @@ export declare const PreparationResourceSchema: z.ZodObject<{
396
268
  }>;
397
269
  ok: z.ZodBoolean;
398
270
  status: z.ZodOptional<z.ZodEnum<{
399
- stale: "stale";
400
- failed: "failed";
401
271
  "not-configured": "not-configured";
402
272
  "not-built": "not-built";
403
273
  building: "building";
@@ -405,13 +275,15 @@ export declare const PreparationResourceSchema: z.ZodObject<{
405
275
  checking: "checking";
406
276
  ready: "ready";
407
277
  "not-ready": "not-ready";
278
+ stale: "stale";
279
+ failed: "failed";
408
280
  }>>;
409
281
  summary: z.ZodString;
410
282
  detail: z.ZodOptional<z.ZodString>;
411
283
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
412
284
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
413
285
  }, z.core.$strict>>>;
414
- }, z.core.$strict>>;
286
+ }, z.core.$strict>;
415
287
  runs: z.ZodObject<{
416
288
  latest_compile_run_id: z.ZodNullable<z.ZodString>;
417
289
  latest_test_run_id: z.ZodNullable<z.ZodString>;
@@ -419,28 +291,6 @@ export declare const PreparationResourceSchema: z.ZodObject<{
419
291
  latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
420
292
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
421
293
  }, z.core.$strict>;
422
- export declare const WorkflowPackageResourceSchema: z.ZodObject<{
423
- id: z.ZodString;
424
- path: z.ZodString;
425
- label: z.ZodOptional<z.ZodString>;
426
- hint: z.ZodOptional<z.ZodString>;
427
- source_kind: z.ZodDefault<z.ZodEnum<{
428
- builtin: "builtin";
429
- local: "local";
430
- }>>;
431
- built_in: z.ZodDefault<z.ZodBoolean>;
432
- active_for_datasets: z.ZodDefault<z.ZodArray<z.ZodString>>;
433
- stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
434
- id: z.ZodString;
435
- label: z.ZodString;
436
- description: z.ZodOptional<z.ZodString>;
437
- contract_type: z.ZodString;
438
- skill_dir: z.ZodString;
439
- reads: z.ZodDefault<z.ZodArray<z.ZodString>>;
440
- writes: z.ZodDefault<z.ZodArray<z.ZodString>>;
441
- acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
442
- }, z.core.$strict>>>;
443
- }, z.core.$strict>;
444
294
  export declare const MethodResourceSchema: z.ZodObject<{
445
295
  id: z.ZodString;
446
296
  method_id: z.ZodString;
@@ -464,7 +314,7 @@ export declare const MethodResourceSchema: z.ZodObject<{
464
314
  acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
465
315
  }, z.core.$strict>>>;
466
316
  }, z.core.$strict>;
467
- export declare const CompileRunCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
317
+ export declare const CompileRunCreateRequestSchema: z.ZodObject<{
468
318
  preparation: z.ZodString;
469
319
  method: z.ZodOptional<z.ZodString>;
470
320
  max_attempts: z.ZodOptional<z.ZodNumber>;
@@ -473,12 +323,12 @@ export declare const CompileRunCreateRequestSchema: z.ZodPipe<z.ZodTransform<unk
473
323
  "on-failure": "on-failure";
474
324
  always: "always";
475
325
  }>>;
476
- }, z.core.$strict>>;
326
+ }, z.core.$strict>;
477
327
  export declare const CompileRunSummarySchema: z.ZodObject<{
478
328
  run_id: z.ZodString;
479
329
  status: z.ZodEnum<{
480
- running: "running";
481
330
  failed: "failed";
331
+ running: "running";
482
332
  succeeded: "succeeded";
483
333
  cancelled: "cancelled";
484
334
  queued: "queued";
@@ -488,7 +338,7 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
488
338
  portable_context_path: z.ZodString;
489
339
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
490
340
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
491
- latest_event: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
341
+ latest_event: z.ZodOptional<z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
492
342
  event_id: z.ZodString;
493
343
  run_id: z.ZodString;
494
344
  timestamp: z.ZodString;
@@ -625,14 +475,12 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
625
475
  timestamp: z.ZodString;
626
476
  type: z.ZodLiteral<"readiness.updated">;
627
477
  preparation: z.ZodString;
628
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
478
+ readiness: z.ZodObject<{
629
479
  kind: z.ZodLiteral<"interf-readiness-state">;
630
480
  version: z.ZodLiteral<1>;
631
481
  generated_at: z.ZodString;
632
482
  preparation: z.ZodString;
633
483
  status: z.ZodEnum<{
634
- stale: "stale";
635
- failed: "failed";
636
484
  "not-configured": "not-configured";
637
485
  "not-built": "not-built";
638
486
  building: "building";
@@ -640,6 +488,8 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
640
488
  checking: "checking";
641
489
  ready: "ready";
642
490
  "not-ready": "not-ready";
491
+ stale: "stale";
492
+ failed: "failed";
643
493
  }>;
644
494
  ready: z.ZodBoolean;
645
495
  summary: z.ZodString;
@@ -658,8 +508,6 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
658
508
  }>;
659
509
  ok: z.ZodBoolean;
660
510
  status: z.ZodOptional<z.ZodEnum<{
661
- stale: "stale";
662
- failed: "failed";
663
511
  "not-configured": "not-configured";
664
512
  "not-built": "not-built";
665
513
  building: "building";
@@ -667,6 +515,8 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
667
515
  checking: "checking";
668
516
  ready: "ready";
669
517
  "not-ready": "not-ready";
518
+ stale: "stale";
519
+ failed: "failed";
670
520
  }>>;
671
521
  summary: z.ZodString;
672
522
  detail: z.ZodOptional<z.ZodString>;
@@ -708,8 +558,6 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
708
558
  }>;
709
559
  ok: z.ZodBoolean;
710
560
  status: z.ZodOptional<z.ZodEnum<{
711
- stale: "stale";
712
- failed: "failed";
713
561
  "not-configured": "not-configured";
714
562
  "not-built": "not-built";
715
563
  building: "building";
@@ -717,14 +565,16 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
717
565
  checking: "checking";
718
566
  ready: "ready";
719
567
  "not-ready": "not-ready";
568
+ stale: "stale";
569
+ failed: "failed";
720
570
  }>>;
721
571
  summary: z.ZodString;
722
572
  detail: z.ZodOptional<z.ZodString>;
723
573
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
724
574
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
725
575
  }, z.core.$strict>>>;
726
- }, z.core.$strict>>;
727
- }, z.core.$strict>], "type">>>>;
576
+ }, z.core.$strict>;
577
+ }, z.core.$strict>], "type">>>;
728
578
  latest_proof: z.ZodOptional<z.ZodNullable<z.ZodObject<{
729
579
  id: z.ZodString;
730
580
  run_id: z.ZodString;
@@ -754,13 +604,13 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
754
604
  }, z.core.$strict>>>;
755
605
  }, z.core.$strict>;
756
606
  export declare const CompileRunResourceSchema: z.ZodObject<{
757
- run: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
607
+ run: z.ZodObject<{
758
608
  kind: z.ZodLiteral<"interf-compile-run">;
759
609
  version: z.ZodLiteral<1>;
760
610
  run_id: z.ZodString;
761
611
  status: z.ZodEnum<{
762
- running: "running";
763
612
  failed: "failed";
613
+ running: "running";
764
614
  succeeded: "succeeded";
765
615
  cancelled: "cancelled";
766
616
  queued: "queued";
@@ -783,11 +633,10 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
783
633
  stage_index: z.ZodOptional<z.ZodNumber>;
784
634
  stage_total: z.ZodOptional<z.ZodNumber>;
785
635
  status: z.ZodEnum<{
786
- running: "running";
787
636
  failed: "failed";
637
+ running: "running";
788
638
  succeeded: "succeeded";
789
639
  queued: "queued";
790
- skipped: "skipped";
791
640
  }>;
792
641
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
793
642
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -862,7 +711,7 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
862
711
  }, z.core.$strict>>>;
863
712
  failure: z.ZodOptional<z.ZodNullable<z.ZodString>>;
864
713
  }, z.core.$strict>>>;
865
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
714
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
866
715
  event_id: z.ZodString;
867
716
  run_id: z.ZodString;
868
717
  timestamp: z.ZodString;
@@ -999,14 +848,12 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
999
848
  timestamp: z.ZodString;
1000
849
  type: z.ZodLiteral<"readiness.updated">;
1001
850
  preparation: z.ZodString;
1002
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
851
+ readiness: z.ZodObject<{
1003
852
  kind: z.ZodLiteral<"interf-readiness-state">;
1004
853
  version: z.ZodLiteral<1>;
1005
854
  generated_at: z.ZodString;
1006
855
  preparation: z.ZodString;
1007
856
  status: z.ZodEnum<{
1008
- stale: "stale";
1009
- failed: "failed";
1010
857
  "not-configured": "not-configured";
1011
858
  "not-built": "not-built";
1012
859
  building: "building";
@@ -1014,6 +861,8 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1014
861
  checking: "checking";
1015
862
  ready: "ready";
1016
863
  "not-ready": "not-ready";
864
+ stale: "stale";
865
+ failed: "failed";
1017
866
  }>;
1018
867
  ready: z.ZodBoolean;
1019
868
  summary: z.ZodString;
@@ -1032,8 +881,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1032
881
  }>;
1033
882
  ok: z.ZodBoolean;
1034
883
  status: z.ZodOptional<z.ZodEnum<{
1035
- stale: "stale";
1036
- failed: "failed";
1037
884
  "not-configured": "not-configured";
1038
885
  "not-built": "not-built";
1039
886
  building: "building";
@@ -1041,6 +888,8 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1041
888
  checking: "checking";
1042
889
  ready: "ready";
1043
890
  "not-ready": "not-ready";
891
+ stale: "stale";
892
+ failed: "failed";
1044
893
  }>>;
1045
894
  summary: z.ZodString;
1046
895
  detail: z.ZodOptional<z.ZodString>;
@@ -1082,8 +931,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1082
931
  }>;
1083
932
  ok: z.ZodBoolean;
1084
933
  status: z.ZodOptional<z.ZodEnum<{
1085
- stale: "stale";
1086
- failed: "failed";
1087
934
  "not-configured": "not-configured";
1088
935
  "not-built": "not-built";
1089
936
  building: "building";
@@ -1091,14 +938,16 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1091
938
  checking: "checking";
1092
939
  ready: "ready";
1093
940
  "not-ready": "not-ready";
941
+ stale: "stale";
942
+ failed: "failed";
1094
943
  }>>;
1095
944
  summary: z.ZodString;
1096
945
  detail: z.ZodOptional<z.ZodString>;
1097
946
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1098
947
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1099
948
  }, z.core.$strict>>>;
1100
- }, z.core.$strict>>;
1101
- }, z.core.$strict>], "type">>>>;
949
+ }, z.core.$strict>;
950
+ }, z.core.$strict>], "type">>>;
1102
951
  latest_proof: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1103
952
  id: z.ZodString;
1104
953
  run_id: z.ZodString;
@@ -1126,14 +975,12 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1126
975
  detail: z.ZodOptional<z.ZodString>;
1127
976
  }, z.core.$strict>>>;
1128
977
  }, z.core.$strict>>>;
1129
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
978
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1130
979
  kind: z.ZodLiteral<"interf-readiness-state">;
1131
980
  version: z.ZodLiteral<1>;
1132
981
  generated_at: z.ZodString;
1133
982
  preparation: z.ZodString;
1134
983
  status: z.ZodEnum<{
1135
- stale: "stale";
1136
- failed: "failed";
1137
984
  "not-configured": "not-configured";
1138
985
  "not-built": "not-built";
1139
986
  building: "building";
@@ -1141,6 +988,8 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1141
988
  checking: "checking";
1142
989
  ready: "ready";
1143
990
  "not-ready": "not-ready";
991
+ stale: "stale";
992
+ failed: "failed";
1144
993
  }>;
1145
994
  ready: z.ZodBoolean;
1146
995
  summary: z.ZodString;
@@ -1159,8 +1008,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1159
1008
  }>;
1160
1009
  ok: z.ZodBoolean;
1161
1010
  status: z.ZodOptional<z.ZodEnum<{
1162
- stale: "stale";
1163
- failed: "failed";
1164
1011
  "not-configured": "not-configured";
1165
1012
  "not-built": "not-built";
1166
1013
  building: "building";
@@ -1168,6 +1015,8 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1168
1015
  checking: "checking";
1169
1016
  ready: "ready";
1170
1017
  "not-ready": "not-ready";
1018
+ stale: "stale";
1019
+ failed: "failed";
1171
1020
  }>>;
1172
1021
  summary: z.ZodString;
1173
1022
  detail: z.ZodOptional<z.ZodString>;
@@ -1209,8 +1058,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1209
1058
  }>;
1210
1059
  ok: z.ZodBoolean;
1211
1060
  status: z.ZodOptional<z.ZodEnum<{
1212
- stale: "stale";
1213
- failed: "failed";
1214
1061
  "not-configured": "not-configured";
1215
1062
  "not-built": "not-built";
1216
1063
  building: "building";
@@ -1218,26 +1065,28 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
1218
1065
  checking: "checking";
1219
1066
  ready: "ready";
1220
1067
  "not-ready": "not-ready";
1068
+ stale: "stale";
1069
+ failed: "failed";
1221
1070
  }>>;
1222
1071
  summary: z.ZodString;
1223
1072
  detail: z.ZodOptional<z.ZodString>;
1224
1073
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1225
1074
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1226
1075
  }, z.core.$strict>>>;
1227
- }, z.core.$strict>>>>;
1228
- }, z.core.$strict>>;
1076
+ }, z.core.$strict>>>;
1077
+ }, z.core.$strict>;
1229
1078
  }, z.core.$strict>;
1230
1079
  export declare const LocalJobTypeSchema: z.ZodEnum<{
1231
1080
  compile: "compile";
1081
+ "method-authoring": "method-authoring";
1082
+ "method-improvement": "method-improvement";
1232
1083
  "preparation-setup": "preparation-setup";
1233
1084
  test: "test";
1234
1085
  "readiness-check-draft": "readiness-check-draft";
1235
- "method-authoring": "method-authoring";
1236
- "method-improvement": "method-improvement";
1237
1086
  }>;
1238
1087
  export declare const LocalJobStatusSchema: z.ZodEnum<{
1239
- running: "running";
1240
1088
  failed: "failed";
1089
+ running: "running";
1241
1090
  succeeded: "succeeded";
1242
1091
  cancelled: "cancelled";
1243
1092
  queued: "queued";
@@ -1245,36 +1094,93 @@ export declare const LocalJobStatusSchema: z.ZodEnum<{
1245
1094
  export declare const LocalRunHandlerResultSchema: z.ZodObject<{
1246
1095
  ok: z.ZodBoolean;
1247
1096
  error: z.ZodOptional<z.ZodString>;
1248
- }, z.core.$strict>;
1249
- export declare const LocalJobAgentSchema: z.ZodObject<{
1250
- name: z.ZodString;
1251
- display_name: z.ZodString;
1252
- command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1253
- }, z.core.$strict>;
1254
- export declare const LocalExecutorOptionSchema: z.ZodObject<{
1255
- name: z.ZodString;
1256
- display_name: z.ZodString;
1257
- command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1258
- current: z.ZodBoolean;
1259
- }, z.core.$strict>;
1260
- export declare const LocalJobStepSchema: z.ZodObject<{
1261
- id: z.ZodString;
1262
- label: z.ZodString;
1263
- status: z.ZodEnum<{
1264
- running: "running";
1265
- failed: "failed";
1266
- succeeded: "succeeded";
1267
- cancelled: "cancelled";
1268
- queued: "queued";
1269
- }>;
1270
- started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1271
- finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1272
- summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1273
- input: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1274
- output: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1275
- }, z.core.$strict>;
1276
- export declare const LocalJobEventTypeSchema: z.ZodEnum<{
1277
- "artifact.written": "artifact.written";
1097
+ comparison: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1098
+ kind: z.ZodLiteral<"interf-readiness-check-run">;
1099
+ version: z.ZodLiteral<1>;
1100
+ generated_at: z.ZodString;
1101
+ mode: z.ZodEnum<{
1102
+ compiled: "compiled";
1103
+ raw: "raw";
1104
+ both: "both";
1105
+ }>;
1106
+ source_path: z.ZodString;
1107
+ checks_fingerprint: z.ZodOptional<z.ZodString>;
1108
+ preparation: z.ZodObject<{
1109
+ name: z.ZodString;
1110
+ portable_context_path: z.ZodNullable<z.ZodString>;
1111
+ }, z.core.$strip>;
1112
+ raw: z.ZodNullable<z.ZodObject<{
1113
+ label: z.ZodString;
1114
+ run_path: z.ZodString;
1115
+ ok: z.ZodBoolean;
1116
+ passed_cases: z.ZodNumber;
1117
+ total_cases: z.ZodNumber;
1118
+ passed_checks: z.ZodNumber;
1119
+ total_checks: z.ZodNumber;
1120
+ target: z.ZodObject<{
1121
+ type: z.ZodEnum<{
1122
+ compiled: "compiled";
1123
+ raw: "raw";
1124
+ }>;
1125
+ name: z.ZodString;
1126
+ path: z.ZodString;
1127
+ method: z.ZodString;
1128
+ }, z.core.$strip>;
1129
+ }, z.core.$strip>>;
1130
+ compiled: z.ZodNullable<z.ZodObject<{
1131
+ label: z.ZodString;
1132
+ run_path: z.ZodString;
1133
+ ok: z.ZodBoolean;
1134
+ passed_cases: z.ZodNumber;
1135
+ total_cases: z.ZodNumber;
1136
+ passed_checks: z.ZodNumber;
1137
+ total_checks: z.ZodNumber;
1138
+ target: z.ZodObject<{
1139
+ type: z.ZodEnum<{
1140
+ compiled: "compiled";
1141
+ raw: "raw";
1142
+ }>;
1143
+ name: z.ZodString;
1144
+ path: z.ZodString;
1145
+ method: z.ZodString;
1146
+ }, z.core.$strip>;
1147
+ }, z.core.$strip>>;
1148
+ 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>;
1152
+ }, z.core.$strip>;
1153
+ }, z.core.$strip>>>;
1154
+ }, z.core.$strict>;
1155
+ export declare const LocalJobAgentSchema: z.ZodObject<{
1156
+ name: z.ZodString;
1157
+ display_name: z.ZodString;
1158
+ command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1159
+ }, z.core.$strict>;
1160
+ export declare const LocalExecutorOptionSchema: z.ZodObject<{
1161
+ name: z.ZodString;
1162
+ display_name: z.ZodString;
1163
+ command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1164
+ current: z.ZodBoolean;
1165
+ }, z.core.$strict>;
1166
+ export declare const LocalJobStepSchema: z.ZodObject<{
1167
+ id: z.ZodString;
1168
+ label: z.ZodString;
1169
+ status: z.ZodEnum<{
1170
+ failed: "failed";
1171
+ running: "running";
1172
+ succeeded: "succeeded";
1173
+ cancelled: "cancelled";
1174
+ queued: "queued";
1175
+ }>;
1176
+ started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1177
+ finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1178
+ summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1179
+ input: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1180
+ output: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1181
+ }, z.core.$strict>;
1182
+ export declare const LocalJobEventTypeSchema: z.ZodEnum<{
1183
+ "artifact.written": "artifact.written";
1278
1184
  "log.appended": "log.appended";
1279
1185
  "job.started": "job.started";
1280
1186
  "step.started": "step.started";
@@ -1315,14 +1221,14 @@ export declare const LocalJobEventSchema: z.ZodObject<{
1315
1221
  input: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1316
1222
  output: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1317
1223
  }, z.core.$strict>;
1318
- export declare const LocalJobRunCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1224
+ export declare const LocalJobRunCreateRequestSchema: z.ZodObject<{
1319
1225
  job_type: z.ZodEnum<{
1320
1226
  compile: "compile";
1227
+ "method-authoring": "method-authoring";
1228
+ "method-improvement": "method-improvement";
1321
1229
  "preparation-setup": "preparation-setup";
1322
1230
  test: "test";
1323
1231
  "readiness-check-draft": "readiness-check-draft";
1324
- "method-authoring": "method-authoring";
1325
- "method-improvement": "method-improvement";
1326
1232
  }>;
1327
1233
  title: z.ZodString;
1328
1234
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1339,40 +1245,14 @@ export declare const LocalJobRunCreateRequestSchema: z.ZodPipe<z.ZodTransform<un
1339
1245
  label: z.ZodString;
1340
1246
  input: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1341
1247
  }, z.core.$strict>>>;
1342
- }, z.core.$strict>>;
1343
- export declare const PreparationSetupCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1344
- preparation: z.ZodObject<{
1345
- id: z.ZodOptional<z.ZodString>;
1346
- name: z.ZodString;
1347
- path: z.ZodString;
1348
- about: z.ZodOptional<z.ZodString>;
1349
- method: z.ZodOptional<z.ZodString>;
1350
- workflow: z.ZodOptional<z.ZodString>;
1351
- max_attempts: z.ZodOptional<z.ZodNumber>;
1352
- max_loops: z.ZodOptional<z.ZodNumber>;
1353
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
1354
- id: z.ZodOptional<z.ZodString>;
1355
- question: z.ZodString;
1356
- answer: z.ZodOptional<z.ZodString>;
1357
- expect: z.ZodOptional<z.ZodObject<{
1358
- must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
1359
- must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
1360
- must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
1361
- min_words: z.ZodOptional<z.ZodNumber>;
1362
- max_words: z.ZodOptional<z.ZodNumber>;
1363
- }, z.core.$strip>>;
1364
- strictness: z.ZodOptional<z.ZodString>;
1365
- }, z.core.$strict>>>;
1366
- }, z.core.$strict>;
1367
- }, z.core.$strict>>;
1368
- export declare const DatasetSetupCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1248
+ }, z.core.$strict>;
1249
+ export declare const PreparationSetupCreateRequestSchema: z.ZodObject<{
1369
1250
  preparation: z.ZodObject<{
1370
1251
  id: z.ZodOptional<z.ZodString>;
1371
1252
  name: z.ZodString;
1372
1253
  path: z.ZodString;
1373
1254
  about: z.ZodOptional<z.ZodString>;
1374
1255
  method: z.ZodOptional<z.ZodString>;
1375
- workflow: z.ZodOptional<z.ZodString>;
1376
1256
  max_attempts: z.ZodOptional<z.ZodNumber>;
1377
1257
  max_loops: z.ZodOptional<z.ZodNumber>;
1378
1258
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -1389,13 +1269,14 @@ export declare const DatasetSetupCreateRequestSchema: z.ZodPipe<z.ZodTransform<u
1389
1269
  strictness: z.ZodOptional<z.ZodString>;
1390
1270
  }, z.core.$strict>>>;
1391
1271
  }, z.core.$strict>;
1392
- }, z.core.$strict>>;
1393
- export declare const ReadinessCheckDraftCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1272
+ prepare_after_setup: z.ZodDefault<z.ZodBoolean>;
1273
+ }, z.core.$strict>;
1274
+ export declare const ReadinessCheckDraftCreateRequestSchema: z.ZodObject<{
1394
1275
  preparation: z.ZodString;
1395
1276
  source_folder_path: z.ZodString;
1396
1277
  about: z.ZodOptional<z.ZodString>;
1397
1278
  target_count: z.ZodDefault<z.ZodNumber>;
1398
- }, z.core.$strict>>;
1279
+ }, z.core.$strict>;
1399
1280
  export declare const ReadinessCheckDraftResultSchema: z.ZodObject<{
1400
1281
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
1401
1282
  id: z.ZodOptional<z.ZodString>;
@@ -1411,7 +1292,7 @@ export declare const ReadinessCheckDraftResultSchema: z.ZodObject<{
1411
1292
  strictness: z.ZodOptional<z.ZodString>;
1412
1293
  }, z.core.$strict>>>;
1413
1294
  }, z.core.$strict>;
1414
- export declare const WorkflowAuthoringCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1295
+ export declare const MethodAuthoringCreateRequestSchema: z.ZodObject<{
1415
1296
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1416
1297
  source_folder_path: z.ZodString;
1417
1298
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -1433,8 +1314,8 @@ export declare const WorkflowAuthoringCreateRequestSchema: z.ZodPipe<z.ZodTransf
1433
1314
  }, z.core.$strip>>;
1434
1315
  strictness: z.ZodOptional<z.ZodString>;
1435
1316
  }, z.core.$strict>>>;
1436
- }, z.core.$strict>>;
1437
- export declare const WorkflowAuthoringResultSchema: z.ZodObject<{
1317
+ }, z.core.$strict>;
1318
+ export declare const MethodAuthoringResultSchema: z.ZodObject<{
1438
1319
  status: z.ZodEnum<{
1439
1320
  updated: "updated";
1440
1321
  "no-change": "no-change";
@@ -1482,15 +1363,15 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
1482
1363
  run_id: z.ZodString;
1483
1364
  job_type: z.ZodEnum<{
1484
1365
  compile: "compile";
1366
+ "method-authoring": "method-authoring";
1367
+ "method-improvement": "method-improvement";
1485
1368
  "preparation-setup": "preparation-setup";
1486
1369
  test: "test";
1487
1370
  "readiness-check-draft": "readiness-check-draft";
1488
- "method-authoring": "method-authoring";
1489
- "method-improvement": "method-improvement";
1490
1371
  }>;
1491
1372
  status: z.ZodEnum<{
1492
- running: "running";
1493
1373
  failed: "failed";
1374
+ running: "running";
1494
1375
  succeeded: "succeeded";
1495
1376
  cancelled: "cancelled";
1496
1377
  queued: "queued";
@@ -1512,8 +1393,8 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
1512
1393
  id: z.ZodString;
1513
1394
  label: z.ZodString;
1514
1395
  status: z.ZodEnum<{
1515
- running: "running";
1516
1396
  failed: "failed";
1397
+ running: "running";
1517
1398
  succeeded: "succeeded";
1518
1399
  cancelled: "cancelled";
1519
1400
  queued: "queued";
@@ -1560,25 +1441,25 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
1560
1441
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1561
1442
  }, z.core.$strict>;
1562
1443
  export declare const TestRunStatusSchema: z.ZodEnum<{
1563
- running: "running";
1564
1444
  failed: "failed";
1445
+ running: "running";
1565
1446
  succeeded: "succeeded";
1566
1447
  cancelled: "cancelled";
1567
1448
  queued: "queued";
1568
1449
  }>;
1569
- export declare const TestRunCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1450
+ export declare const TestRunCreateRequestSchema: z.ZodObject<{
1570
1451
  preparation: z.ZodString;
1571
1452
  mode: z.ZodDefault<z.ZodEnum<{
1572
1453
  compiled: "compiled";
1573
1454
  raw: "raw";
1574
1455
  both: "both";
1575
1456
  }>>;
1576
- }, z.core.$strict>>;
1457
+ }, z.core.$strict>;
1577
1458
  export declare const TestRunResourceSchema: z.ZodObject<{
1578
1459
  run_id: z.ZodString;
1579
1460
  status: z.ZodEnum<{
1580
- running: "running";
1581
1461
  failed: "failed";
1462
+ running: "running";
1582
1463
  succeeded: "succeeded";
1583
1464
  cancelled: "cancelled";
1584
1465
  queued: "queued";
@@ -1594,7 +1475,7 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1594
1475
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1595
1476
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1596
1477
  comparison: z.ZodNullable<z.ZodObject<{
1597
- kind: z.ZodLiteral<"interf-test-run">;
1478
+ kind: z.ZodLiteral<"interf-readiness-check-run">;
1598
1479
  version: z.ZodLiteral<1>;
1599
1480
  generated_at: z.ZodString;
1600
1481
  mode: z.ZodEnum<{
@@ -1604,9 +1485,9 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1604
1485
  }>;
1605
1486
  source_path: z.ZodString;
1606
1487
  checks_fingerprint: z.ZodOptional<z.ZodString>;
1607
- dataset: z.ZodObject<{
1488
+ preparation: z.ZodObject<{
1608
1489
  name: z.ZodString;
1609
- compiled_path: z.ZodNullable<z.ZodString>;
1490
+ portable_context_path: z.ZodNullable<z.ZodString>;
1610
1491
  }, z.core.$strip>;
1611
1492
  raw: z.ZodNullable<z.ZodObject<{
1612
1493
  label: z.ZodString;
@@ -1623,7 +1504,7 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1623
1504
  }>;
1624
1505
  name: z.ZodString;
1625
1506
  path: z.ZodString;
1626
- workflow: z.ZodString;
1507
+ method: z.ZodString;
1627
1508
  }, z.core.$strip>;
1628
1509
  }, z.core.$strip>>;
1629
1510
  compiled: z.ZodNullable<z.ZodObject<{
@@ -1641,7 +1522,7 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1641
1522
  }>;
1642
1523
  name: z.ZodString;
1643
1524
  path: z.ZodString;
1644
- workflow: z.ZodString;
1525
+ method: z.ZodString;
1645
1526
  }, z.core.$strip>;
1646
1527
  }, z.core.$strip>>;
1647
1528
  summary: z.ZodObject<{
@@ -1650,14 +1531,12 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1650
1531
  pass_rate_delta: z.ZodNullable<z.ZodNumber>;
1651
1532
  }, z.core.$strip>;
1652
1533
  }, z.core.$strip>>;
1653
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1534
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1654
1535
  kind: z.ZodLiteral<"interf-readiness-state">;
1655
1536
  version: z.ZodLiteral<1>;
1656
1537
  generated_at: z.ZodString;
1657
1538
  preparation: z.ZodString;
1658
1539
  status: z.ZodEnum<{
1659
- stale: "stale";
1660
- failed: "failed";
1661
1540
  "not-configured": "not-configured";
1662
1541
  "not-built": "not-built";
1663
1542
  building: "building";
@@ -1665,6 +1544,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1665
1544
  checking: "checking";
1666
1545
  ready: "ready";
1667
1546
  "not-ready": "not-ready";
1547
+ stale: "stale";
1548
+ failed: "failed";
1668
1549
  }>;
1669
1550
  ready: z.ZodBoolean;
1670
1551
  summary: z.ZodString;
@@ -1683,8 +1564,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1683
1564
  }>;
1684
1565
  ok: z.ZodBoolean;
1685
1566
  status: z.ZodOptional<z.ZodEnum<{
1686
- stale: "stale";
1687
- failed: "failed";
1688
1567
  "not-configured": "not-configured";
1689
1568
  "not-built": "not-built";
1690
1569
  building: "building";
@@ -1692,6 +1571,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1692
1571
  checking: "checking";
1693
1572
  ready: "ready";
1694
1573
  "not-ready": "not-ready";
1574
+ stale: "stale";
1575
+ failed: "failed";
1695
1576
  }>>;
1696
1577
  summary: z.ZodString;
1697
1578
  detail: z.ZodOptional<z.ZodString>;
@@ -1733,8 +1614,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1733
1614
  }>;
1734
1615
  ok: z.ZodBoolean;
1735
1616
  status: z.ZodOptional<z.ZodEnum<{
1736
- stale: "stale";
1737
- failed: "failed";
1738
1617
  "not-configured": "not-configured";
1739
1618
  "not-built": "not-built";
1740
1619
  building: "building";
@@ -1742,14 +1621,16 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1742
1621
  checking: "checking";
1743
1622
  ready: "ready";
1744
1623
  "not-ready": "not-ready";
1624
+ stale: "stale";
1625
+ failed: "failed";
1745
1626
  }>>;
1746
1627
  summary: z.ZodString;
1747
1628
  detail: z.ZodOptional<z.ZodString>;
1748
1629
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1749
1630
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1750
1631
  }, z.core.$strict>>>;
1751
- }, z.core.$strict>>>>;
1752
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
1632
+ }, z.core.$strict>>>;
1633
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1753
1634
  event_id: z.ZodString;
1754
1635
  run_id: z.ZodString;
1755
1636
  timestamp: z.ZodString;
@@ -1886,14 +1767,12 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1886
1767
  timestamp: z.ZodString;
1887
1768
  type: z.ZodLiteral<"readiness.updated">;
1888
1769
  preparation: z.ZodString;
1889
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1770
+ readiness: z.ZodObject<{
1890
1771
  kind: z.ZodLiteral<"interf-readiness-state">;
1891
1772
  version: z.ZodLiteral<1>;
1892
1773
  generated_at: z.ZodString;
1893
1774
  preparation: z.ZodString;
1894
1775
  status: z.ZodEnum<{
1895
- stale: "stale";
1896
- failed: "failed";
1897
1776
  "not-configured": "not-configured";
1898
1777
  "not-built": "not-built";
1899
1778
  building: "building";
@@ -1901,6 +1780,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1901
1780
  checking: "checking";
1902
1781
  ready: "ready";
1903
1782
  "not-ready": "not-ready";
1783
+ stale: "stale";
1784
+ failed: "failed";
1904
1785
  }>;
1905
1786
  ready: z.ZodBoolean;
1906
1787
  summary: z.ZodString;
@@ -1919,8 +1800,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1919
1800
  }>;
1920
1801
  ok: z.ZodBoolean;
1921
1802
  status: z.ZodOptional<z.ZodEnum<{
1922
- stale: "stale";
1923
- failed: "failed";
1924
1803
  "not-configured": "not-configured";
1925
1804
  "not-built": "not-built";
1926
1805
  building: "building";
@@ -1928,6 +1807,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1928
1807
  checking: "checking";
1929
1808
  ready: "ready";
1930
1809
  "not-ready": "not-ready";
1810
+ stale: "stale";
1811
+ failed: "failed";
1931
1812
  }>>;
1932
1813
  summary: z.ZodString;
1933
1814
  detail: z.ZodOptional<z.ZodString>;
@@ -1969,8 +1850,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1969
1850
  }>;
1970
1851
  ok: z.ZodBoolean;
1971
1852
  status: z.ZodOptional<z.ZodEnum<{
1972
- stale: "stale";
1973
- failed: "failed";
1974
1853
  "not-configured": "not-configured";
1975
1854
  "not-built": "not-built";
1976
1855
  building: "building";
@@ -1978,33 +1857,35 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1978
1857
  checking: "checking";
1979
1858
  ready: "ready";
1980
1859
  "not-ready": "not-ready";
1860
+ stale: "stale";
1861
+ failed: "failed";
1981
1862
  }>>;
1982
1863
  summary: z.ZodString;
1983
1864
  detail: z.ZodOptional<z.ZodString>;
1984
1865
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1985
1866
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1986
1867
  }, z.core.$strict>>>;
1987
- }, z.core.$strict>>;
1988
- }, z.core.$strict>], "type">>>>;
1868
+ }, z.core.$strict>;
1869
+ }, z.core.$strict>], "type">>>;
1989
1870
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1990
1871
  }, z.core.$strict>;
1991
- export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1872
+ export declare const RunObservabilityResourceSchema: z.ZodObject<{
1992
1873
  kind: z.ZodLiteral<"interf-run-observability">;
1993
1874
  version: z.ZodLiteral<1>;
1994
1875
  run_id: z.ZodString;
1995
1876
  run_type: z.ZodEnum<{
1996
1877
  compile: "compile";
1878
+ "method-authoring": "method-authoring";
1879
+ "method-improvement": "method-improvement";
1997
1880
  "preparation-setup": "preparation-setup";
1998
1881
  test: "test";
1999
1882
  "readiness-check-draft": "readiness-check-draft";
2000
- "method-authoring": "method-authoring";
2001
- "method-improvement": "method-improvement";
2002
1883
  job: "job";
2003
1884
  }>;
2004
1885
  title: z.ZodString;
2005
1886
  status: z.ZodEnum<{
2006
- running: "running";
2007
1887
  failed: "failed";
1888
+ running: "running";
2008
1889
  succeeded: "succeeded";
2009
1890
  cancelled: "cancelled";
2010
1891
  queued: "queued";
@@ -2055,14 +1936,12 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2055
1936
  ok: z.ZodBoolean;
2056
1937
  detail: z.ZodOptional<z.ZodString>;
2057
1938
  }, z.core.$strict>>>;
2058
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1939
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2059
1940
  kind: z.ZodLiteral<"interf-readiness-state">;
2060
1941
  version: z.ZodLiteral<1>;
2061
1942
  generated_at: z.ZodString;
2062
1943
  preparation: z.ZodString;
2063
1944
  status: z.ZodEnum<{
2064
- stale: "stale";
2065
- failed: "failed";
2066
1945
  "not-configured": "not-configured";
2067
1946
  "not-built": "not-built";
2068
1947
  building: "building";
@@ -2070,6 +1949,8 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2070
1949
  checking: "checking";
2071
1950
  ready: "ready";
2072
1951
  "not-ready": "not-ready";
1952
+ stale: "stale";
1953
+ failed: "failed";
2073
1954
  }>;
2074
1955
  ready: z.ZodBoolean;
2075
1956
  summary: z.ZodString;
@@ -2088,8 +1969,6 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2088
1969
  }>;
2089
1970
  ok: z.ZodBoolean;
2090
1971
  status: z.ZodOptional<z.ZodEnum<{
2091
- stale: "stale";
2092
- failed: "failed";
2093
1972
  "not-configured": "not-configured";
2094
1973
  "not-built": "not-built";
2095
1974
  building: "building";
@@ -2097,6 +1976,8 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2097
1976
  checking: "checking";
2098
1977
  ready: "ready";
2099
1978
  "not-ready": "not-ready";
1979
+ stale: "stale";
1980
+ failed: "failed";
2100
1981
  }>>;
2101
1982
  summary: z.ZodString;
2102
1983
  detail: z.ZodOptional<z.ZodString>;
@@ -2138,8 +2019,6 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2138
2019
  }>;
2139
2020
  ok: z.ZodBoolean;
2140
2021
  status: z.ZodOptional<z.ZodEnum<{
2141
- stale: "stale";
2142
- failed: "failed";
2143
2022
  "not-configured": "not-configured";
2144
2023
  "not-built": "not-built";
2145
2024
  building: "building";
@@ -2147,25 +2026,27 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2147
2026
  checking: "checking";
2148
2027
  ready: "ready";
2149
2028
  "not-ready": "not-ready";
2029
+ stale: "stale";
2030
+ failed: "failed";
2150
2031
  }>>;
2151
2032
  summary: z.ZodString;
2152
2033
  detail: z.ZodOptional<z.ZodString>;
2153
2034
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2154
2035
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2155
2036
  }, z.core.$strict>>>;
2156
- }, z.core.$strict>>>>;
2037
+ }, z.core.$strict>>>;
2157
2038
  trace: z.ZodObject<{
2158
2039
  run: z.ZodObject<{
2159
2040
  runId: z.ZodString;
2160
2041
  status: z.ZodEnum<{
2161
- running: "running";
2162
2042
  failed: "failed";
2043
+ running: "running";
2163
2044
  pending: "pending";
2164
2045
  completed: "completed";
2165
2046
  cancelled: "cancelled";
2166
2047
  }>;
2167
2048
  deploymentId: z.ZodString;
2168
- workflowName: z.ZodString;
2049
+ methodName: z.ZodString;
2169
2050
  specVersion: z.ZodLiteral<1>;
2170
2051
  executionContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2171
2052
  input: z.ZodUnknown;
@@ -2216,8 +2097,8 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2216
2097
  data: z.ZodOptional<z.ZodUnknown>;
2217
2098
  }, z.core.$strict>>>;
2218
2099
  }, z.core.$strict>;
2219
- }, z.core.$strict>>;
2220
- export declare const RunCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
2100
+ }, z.core.$strict>;
2101
+ export declare const RunCreateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2221
2102
  run_type: z.ZodLiteral<"compile">;
2222
2103
  preparation: z.ZodString;
2223
2104
  method: z.ZodOptional<z.ZodString>;
@@ -2253,7 +2134,7 @@ export declare const RunCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, u
2253
2134
  raw: "raw";
2254
2135
  both: "both";
2255
2136
  }>>;
2256
- }, z.core.$strict>], "run_type">>;
2137
+ }, z.core.$strict>], "run_type">;
2257
2138
  export declare const LocalExecutorStatusSchema: z.ZodObject<{
2258
2139
  kind: z.ZodLiteral<"interf-local-executor-status">;
2259
2140
  version: z.ZodLiteral<1>;
@@ -2280,11 +2161,11 @@ export declare const LocalExecutorSelectRequestSchema: z.ZodObject<{
2280
2161
  }, z.core.$strict>;
2281
2162
  export declare const ActionProposalTypeSchema: z.ZodEnum<{
2282
2163
  compile: "compile";
2164
+ "method-authoring": "method-authoring";
2165
+ "method-improvement": "method-improvement";
2283
2166
  "preparation-setup": "preparation-setup";
2284
2167
  test: "test";
2285
2168
  "readiness-check-draft": "readiness-check-draft";
2286
- "method-authoring": "method-authoring";
2287
- "method-improvement": "method-improvement";
2288
2169
  clarification: "clarification";
2289
2170
  }>;
2290
2171
  export declare const ActionProposalStatusSchema: z.ZodEnum<{
@@ -2295,19 +2176,19 @@ export declare const ActionProposalStatusSchema: z.ZodEnum<{
2295
2176
  denied: "denied";
2296
2177
  submitted: "submitted";
2297
2178
  }>;
2298
- export declare const ActionProposalCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2179
+ export declare const ActionProposalCreateRequestSchema: z.ZodObject<{
2299
2180
  message: z.ZodString;
2300
2181
  preparation: z.ZodOptional<z.ZodString>;
2301
2182
  values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2302
- }, z.core.$strict>>;
2303
- export declare const ActionProposalPlanSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2183
+ }, z.core.$strict>;
2184
+ export declare const ActionProposalPlanSchema: z.ZodObject<{
2304
2185
  action_type: z.ZodEnum<{
2305
2186
  compile: "compile";
2187
+ "method-authoring": "method-authoring";
2188
+ "method-improvement": "method-improvement";
2306
2189
  "preparation-setup": "preparation-setup";
2307
2190
  test: "test";
2308
2191
  "readiness-check-draft": "readiness-check-draft";
2309
- "method-authoring": "method-authoring";
2310
- "method-improvement": "method-improvement";
2311
2192
  clarification: "clarification";
2312
2193
  }>;
2313
2194
  preparation: z.ZodOptional<z.ZodString>;
@@ -2317,7 +2198,7 @@ export declare const ActionProposalPlanSchema: z.ZodPipe<z.ZodTransform<unknown,
2317
2198
  summary: z.ZodOptional<z.ZodString>;
2318
2199
  assistant_message: z.ZodOptional<z.ZodString>;
2319
2200
  command_preview: z.ZodOptional<z.ZodString>;
2320
- }, z.core.$strict>>;
2201
+ }, z.core.$strict>;
2321
2202
  export declare const ActionProposalApprovalRequestSchema: z.ZodObject<{
2322
2203
  approved: z.ZodBoolean;
2323
2204
  note: z.ZodOptional<z.ZodString>;
@@ -2406,7 +2287,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2406
2287
  }>>>;
2407
2288
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2408
2289
  action_type: z.ZodLiteral<"compile">;
2409
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2290
+ request: z.ZodObject<{
2410
2291
  preparation: z.ZodString;
2411
2292
  method: z.ZodOptional<z.ZodString>;
2412
2293
  max_attempts: z.ZodOptional<z.ZodNumber>;
@@ -2415,7 +2296,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2415
2296
  "on-failure": "on-failure";
2416
2297
  always: "always";
2417
2298
  }>>;
2418
- }, z.core.$strict>>;
2299
+ }, z.core.$strict>;
2419
2300
  }, z.core.$strict>, z.ZodObject<{
2420
2301
  kind: z.ZodLiteral<"interf-action-proposal">;
2421
2302
  version: z.ZodLiteral<1>;
@@ -2455,14 +2336,13 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2455
2336
  }>>>;
2456
2337
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2457
2338
  action_type: z.ZodLiteral<"preparation-setup">;
2458
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2339
+ request: z.ZodObject<{
2459
2340
  preparation: z.ZodObject<{
2460
2341
  id: z.ZodOptional<z.ZodString>;
2461
2342
  name: z.ZodString;
2462
2343
  path: z.ZodString;
2463
2344
  about: z.ZodOptional<z.ZodString>;
2464
2345
  method: z.ZodOptional<z.ZodString>;
2465
- workflow: z.ZodOptional<z.ZodString>;
2466
2346
  max_attempts: z.ZodOptional<z.ZodNumber>;
2467
2347
  max_loops: z.ZodOptional<z.ZodNumber>;
2468
2348
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -2479,7 +2359,8 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2479
2359
  strictness: z.ZodOptional<z.ZodString>;
2480
2360
  }, z.core.$strict>>>;
2481
2361
  }, z.core.$strict>;
2482
- }, z.core.$strict>>;
2362
+ prepare_after_setup: z.ZodDefault<z.ZodBoolean>;
2363
+ }, z.core.$strict>;
2483
2364
  }, z.core.$strict>, z.ZodObject<{
2484
2365
  kind: z.ZodLiteral<"interf-action-proposal">;
2485
2366
  version: z.ZodLiteral<1>;
@@ -2519,14 +2400,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2519
2400
  }>>>;
2520
2401
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2521
2402
  action_type: z.ZodLiteral<"test">;
2522
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2403
+ request: z.ZodObject<{
2523
2404
  preparation: z.ZodString;
2524
2405
  mode: z.ZodDefault<z.ZodEnum<{
2525
2406
  compiled: "compiled";
2526
2407
  raw: "raw";
2527
2408
  both: "both";
2528
2409
  }>>;
2529
- }, z.core.$strict>>;
2410
+ }, z.core.$strict>;
2530
2411
  }, z.core.$strict>, z.ZodObject<{
2531
2412
  kind: z.ZodLiteral<"interf-action-proposal">;
2532
2413
  version: z.ZodLiteral<1>;
@@ -2566,12 +2447,12 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2566
2447
  }>>>;
2567
2448
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2568
2449
  action_type: z.ZodLiteral<"readiness-check-draft">;
2569
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2450
+ request: z.ZodObject<{
2570
2451
  preparation: z.ZodString;
2571
2452
  source_folder_path: z.ZodString;
2572
2453
  about: z.ZodOptional<z.ZodString>;
2573
2454
  target_count: z.ZodDefault<z.ZodNumber>;
2574
- }, z.core.$strict>>;
2455
+ }, z.core.$strict>;
2575
2456
  }, z.core.$strict>, z.ZodObject<{
2576
2457
  kind: z.ZodLiteral<"interf-action-proposal">;
2577
2458
  version: z.ZodLiteral<1>;
@@ -2611,7 +2492,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2611
2492
  }>>>;
2612
2493
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2613
2494
  action_type: z.ZodLiteral<"method-authoring">;
2614
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2495
+ request: z.ZodObject<{
2615
2496
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2616
2497
  source_folder_path: z.ZodString;
2617
2498
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -2633,7 +2514,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2633
2514
  }, z.core.$strip>>;
2634
2515
  strictness: z.ZodOptional<z.ZodString>;
2635
2516
  }, z.core.$strict>>>;
2636
- }, z.core.$strict>>;
2517
+ }, z.core.$strict>;
2637
2518
  }, z.core.$strict>, z.ZodObject<{
2638
2519
  kind: z.ZodLiteral<"interf-action-proposal">;
2639
2520
  version: z.ZodLiteral<1>;
@@ -2673,7 +2554,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2673
2554
  }>>>;
2674
2555
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2675
2556
  action_type: z.ZodLiteral<"method-improvement">;
2676
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2557
+ request: z.ZodObject<{
2677
2558
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2678
2559
  source_folder_path: z.ZodString;
2679
2560
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -2695,20 +2576,18 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2695
2576
  }, z.core.$strip>>;
2696
2577
  strictness: z.ZodOptional<z.ZodString>;
2697
2578
  }, z.core.$strict>>>;
2698
- }, z.core.$strict>>;
2579
+ }, z.core.$strict>;
2699
2580
  }, z.core.$strict>], "action_type">;
2700
2581
  export declare const PortableContextResourceSchema: z.ZodObject<{
2701
2582
  preparation: z.ZodString;
2702
2583
  path: z.ZodString;
2703
2584
  exists: z.ZodBoolean;
2704
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2585
+ readiness: z.ZodObject<{
2705
2586
  kind: z.ZodLiteral<"interf-readiness-state">;
2706
2587
  version: z.ZodLiteral<1>;
2707
2588
  generated_at: z.ZodString;
2708
2589
  preparation: z.ZodString;
2709
2590
  status: z.ZodEnum<{
2710
- stale: "stale";
2711
- failed: "failed";
2712
2591
  "not-configured": "not-configured";
2713
2592
  "not-built": "not-built";
2714
2593
  building: "building";
@@ -2716,6 +2595,8 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2716
2595
  checking: "checking";
2717
2596
  ready: "ready";
2718
2597
  "not-ready": "not-ready";
2598
+ stale: "stale";
2599
+ failed: "failed";
2719
2600
  }>;
2720
2601
  ready: z.ZodBoolean;
2721
2602
  summary: z.ZodString;
@@ -2734,8 +2615,6 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2734
2615
  }>;
2735
2616
  ok: z.ZodBoolean;
2736
2617
  status: z.ZodOptional<z.ZodEnum<{
2737
- stale: "stale";
2738
- failed: "failed";
2739
2618
  "not-configured": "not-configured";
2740
2619
  "not-built": "not-built";
2741
2620
  building: "building";
@@ -2743,6 +2622,8 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2743
2622
  checking: "checking";
2744
2623
  ready: "ready";
2745
2624
  "not-ready": "not-ready";
2625
+ stale: "stale";
2626
+ failed: "failed";
2746
2627
  }>>;
2747
2628
  summary: z.ZodString;
2748
2629
  detail: z.ZodOptional<z.ZodString>;
@@ -2784,8 +2665,6 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2784
2665
  }>;
2785
2666
  ok: z.ZodBoolean;
2786
2667
  status: z.ZodOptional<z.ZodEnum<{
2787
- stale: "stale";
2788
- failed: "failed";
2789
2668
  "not-configured": "not-configured";
2790
2669
  "not-built": "not-built";
2791
2670
  building: "building";
@@ -2793,13 +2672,15 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2793
2672
  checking: "checking";
2794
2673
  ready: "ready";
2795
2674
  "not-ready": "not-ready";
2675
+ stale: "stale";
2676
+ failed: "failed";
2796
2677
  }>>;
2797
2678
  summary: z.ZodString;
2798
2679
  detail: z.ZodOptional<z.ZodString>;
2799
2680
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2800
2681
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2801
2682
  }, z.core.$strict>>>;
2802
- }, z.core.$strict>>;
2683
+ }, z.core.$strict>;
2803
2684
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2804
2685
  latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2805
2686
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2817,14 +2698,12 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2817
2698
  sha256: z.ZodOptional<z.ZodString>;
2818
2699
  }, z.core.$strict>>>;
2819
2700
  }, z.core.$strict>;
2820
- export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2701
+ export declare const ReadinessResourceSchema: z.ZodObject<{
2821
2702
  kind: z.ZodLiteral<"interf-readiness-state">;
2822
2703
  version: z.ZodLiteral<1>;
2823
2704
  generated_at: z.ZodString;
2824
2705
  preparation: z.ZodString;
2825
2706
  status: z.ZodEnum<{
2826
- stale: "stale";
2827
- failed: "failed";
2828
2707
  "not-configured": "not-configured";
2829
2708
  "not-built": "not-built";
2830
2709
  building: "building";
@@ -2832,6 +2711,8 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2832
2711
  checking: "checking";
2833
2712
  ready: "ready";
2834
2713
  "not-ready": "not-ready";
2714
+ stale: "stale";
2715
+ failed: "failed";
2835
2716
  }>;
2836
2717
  ready: z.ZodBoolean;
2837
2718
  summary: z.ZodString;
@@ -2850,8 +2731,6 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2850
2731
  }>;
2851
2732
  ok: z.ZodBoolean;
2852
2733
  status: z.ZodOptional<z.ZodEnum<{
2853
- stale: "stale";
2854
- failed: "failed";
2855
2734
  "not-configured": "not-configured";
2856
2735
  "not-built": "not-built";
2857
2736
  building: "building";
@@ -2859,6 +2738,8 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2859
2738
  checking: "checking";
2860
2739
  ready: "ready";
2861
2740
  "not-ready": "not-ready";
2741
+ stale: "stale";
2742
+ failed: "failed";
2862
2743
  }>>;
2863
2744
  summary: z.ZodString;
2864
2745
  detail: z.ZodOptional<z.ZodString>;
@@ -2900,8 +2781,6 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2900
2781
  }>;
2901
2782
  ok: z.ZodBoolean;
2902
2783
  status: z.ZodOptional<z.ZodEnum<{
2903
- stale: "stale";
2904
- failed: "failed";
2905
2784
  "not-configured": "not-configured";
2906
2785
  "not-built": "not-built";
2907
2786
  building: "building";
@@ -2909,13 +2788,15 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2909
2788
  checking: "checking";
2910
2789
  ready: "ready";
2911
2790
  "not-ready": "not-ready";
2791
+ stale: "stale";
2792
+ failed: "failed";
2912
2793
  }>>;
2913
2794
  summary: z.ZodString;
2914
2795
  detail: z.ZodOptional<z.ZodString>;
2915
2796
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2916
2797
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2917
2798
  }, z.core.$strict>>>;
2918
- }, z.core.$strict>>;
2799
+ }, z.core.$strict>;
2919
2800
  export declare const SourceFileResourceSchema: z.ZodObject<{
2920
2801
  preparation: z.ZodString;
2921
2802
  path: z.ZodString;
@@ -2953,15 +2834,16 @@ export declare const OpenPathResponseSchema: z.ZodObject<{
2953
2834
  path: z.ZodString;
2954
2835
  }, z.core.$strict>;
2955
2836
  export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2956
- kind: z.ZodLiteral<"dataset">;
2837
+ kind: z.ZodLiteral<"preparation">;
2957
2838
  value: z.ZodObject<{
2958
- dataset: z.ZodObject<{
2839
+ id: z.ZodString;
2840
+ name: z.ZodString;
2841
+ preparation: z.ZodObject<{
2959
2842
  id: z.ZodOptional<z.ZodString>;
2960
2843
  name: z.ZodString;
2961
2844
  path: z.ZodString;
2962
2845
  about: z.ZodOptional<z.ZodString>;
2963
2846
  method: z.ZodOptional<z.ZodString>;
2964
- workflow: z.ZodOptional<z.ZodString>;
2965
2847
  max_attempts: z.ZodOptional<z.ZodNumber>;
2966
2848
  max_loops: z.ZodOptional<z.ZodNumber>;
2967
2849
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -2978,153 +2860,22 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
2978
2860
  strictness: z.ZodOptional<z.ZodString>;
2979
2861
  }, z.core.$strict>>>;
2980
2862
  }, z.core.$strict>;
2981
- portable_context_path: z.ZodNullable<z.ZodString>;
2982
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2983
- kind: z.ZodLiteral<"interf-readiness-state">;
2984
- version: z.ZodLiteral<1>;
2985
- generated_at: z.ZodString;
2986
- preparation: z.ZodString;
2987
- status: z.ZodEnum<{
2988
- stale: "stale";
2989
- failed: "failed";
2990
- "not-configured": "not-configured";
2991
- "not-built": "not-built";
2992
- building: "building";
2993
- built: "built";
2994
- checking: "checking";
2995
- ready: "ready";
2996
- "not-ready": "not-ready";
2997
- }>;
2998
- ready: z.ZodBoolean;
2999
- summary: z.ZodString;
3000
- portable_context_path: z.ZodNullable<z.ZodString>;
3001
- latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3002
- latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3003
- compile: z.ZodNullable<z.ZodObject<{
3004
- gate: z.ZodEnum<{
3005
- "preparation-config": "preparation-config";
3006
- "portable-context": "portable-context";
3007
- "compile-run": "compile-run";
3008
- "readiness-checks": "readiness-checks";
3009
- "source-baseline": "source-baseline";
3010
- "portable-context-check": "portable-context-check";
3011
- "checks-current": "checks-current";
3012
- }>;
3013
- ok: z.ZodBoolean;
3014
- status: z.ZodOptional<z.ZodEnum<{
3015
- stale: "stale";
3016
- failed: "failed";
3017
- "not-configured": "not-configured";
3018
- "not-built": "not-built";
3019
- building: "building";
3020
- built: "built";
3021
- checking: "checking";
3022
- ready: "ready";
3023
- "not-ready": "not-ready";
3024
- }>>;
3025
- summary: z.ZodString;
3026
- detail: z.ZodOptional<z.ZodString>;
3027
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3028
- artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3029
- }, z.core.$strict>>;
3030
- check_results: z.ZodObject<{
3031
- configured: z.ZodNumber;
3032
- fingerprint: z.ZodNullable<z.ZodString>;
3033
- source_files: z.ZodNullable<z.ZodObject<{
3034
- passed: z.ZodNumber;
3035
- total: z.ZodNumber;
3036
- pass_rate: z.ZodNullable<z.ZodNumber>;
3037
- checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3038
- stale: z.ZodDefault<z.ZodBoolean>;
3039
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3040
- run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3041
- }, z.core.$strict>>;
3042
- portable_context: z.ZodNullable<z.ZodObject<{
3043
- passed: z.ZodNumber;
3044
- total: z.ZodNumber;
3045
- pass_rate: z.ZodNullable<z.ZodNumber>;
3046
- checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3047
- stale: z.ZodDefault<z.ZodBoolean>;
3048
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3049
- run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3050
- }, z.core.$strict>>;
3051
- delta: z.ZodNullable<z.ZodNumber>;
3052
- }, z.core.$strict>;
3053
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
3054
- gate: z.ZodEnum<{
3055
- "preparation-config": "preparation-config";
3056
- "portable-context": "portable-context";
3057
- "compile-run": "compile-run";
3058
- "readiness-checks": "readiness-checks";
3059
- "source-baseline": "source-baseline";
3060
- "portable-context-check": "portable-context-check";
3061
- "checks-current": "checks-current";
3062
- }>;
3063
- ok: z.ZodBoolean;
3064
- status: z.ZodOptional<z.ZodEnum<{
3065
- stale: "stale";
3066
- failed: "failed";
3067
- "not-configured": "not-configured";
3068
- "not-built": "not-built";
3069
- building: "building";
3070
- built: "built";
3071
- checking: "checking";
3072
- ready: "ready";
3073
- "not-ready": "not-ready";
3074
- }>>;
3075
- summary: z.ZodString;
3076
- detail: z.ZodOptional<z.ZodString>;
3077
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3078
- artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3079
- }, z.core.$strict>>>;
3080
- }, z.core.$strict>>;
3081
- latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3082
- latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3083
- }, z.core.$strict>;
3084
- }, z.core.$strict>, z.ZodObject<{
3085
- kind: z.ZodLiteral<"preparation">;
3086
- value: z.ZodObject<{
3087
- id: z.ZodString;
3088
- name: z.ZodString;
3089
- preparation: z.ZodObject<{
3090
- id: z.ZodOptional<z.ZodString>;
3091
- name: z.ZodString;
3092
- path: z.ZodString;
3093
- about: z.ZodOptional<z.ZodString>;
3094
- method: z.ZodOptional<z.ZodString>;
3095
- workflow: z.ZodOptional<z.ZodString>;
3096
- max_attempts: z.ZodOptional<z.ZodNumber>;
3097
- max_loops: z.ZodOptional<z.ZodNumber>;
3098
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
3099
- id: z.ZodOptional<z.ZodString>;
3100
- question: z.ZodString;
3101
- answer: z.ZodOptional<z.ZodString>;
3102
- expect: z.ZodOptional<z.ZodObject<{
3103
- must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
3104
- must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
3105
- must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
3106
- min_words: z.ZodOptional<z.ZodNumber>;
3107
- max_words: z.ZodOptional<z.ZodNumber>;
3108
- }, z.core.$strip>>;
3109
- strictness: z.ZodOptional<z.ZodString>;
3110
- }, z.core.$strict>>>;
3111
- }, z.core.$strict>;
3112
- source_path: z.ZodString;
3113
- method_id: z.ZodNullable<z.ZodString>;
3114
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
3115
- id: z.ZodOptional<z.ZodString>;
3116
- question: z.ZodString;
3117
- answer: z.ZodOptional<z.ZodString>;
3118
- expect: z.ZodOptional<z.ZodObject<{
3119
- must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
3120
- must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
3121
- must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
3122
- min_words: z.ZodOptional<z.ZodNumber>;
3123
- max_words: z.ZodOptional<z.ZodNumber>;
3124
- }, z.core.$strip>>;
3125
- strictness: z.ZodOptional<z.ZodString>;
3126
- }, z.core.$strict>>>;
3127
- portable_context: z.ZodObject<{
2863
+ source_path: z.ZodString;
2864
+ method_id: z.ZodNullable<z.ZodString>;
2865
+ checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
2866
+ id: z.ZodOptional<z.ZodString>;
2867
+ question: z.ZodString;
2868
+ answer: z.ZodOptional<z.ZodString>;
2869
+ expect: z.ZodOptional<z.ZodObject<{
2870
+ must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
2871
+ must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
2872
+ must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
2873
+ min_words: z.ZodOptional<z.ZodNumber>;
2874
+ max_words: z.ZodOptional<z.ZodNumber>;
2875
+ }, z.core.$strip>>;
2876
+ strictness: z.ZodOptional<z.ZodString>;
2877
+ }, z.core.$strict>>>;
2878
+ portable_context: z.ZodObject<{
3128
2879
  preparation: z.ZodString;
3129
2880
  path: z.ZodNullable<z.ZodString>;
3130
2881
  exists: z.ZodBoolean;
@@ -3133,14 +2884,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3133
2884
  latest_test_run_id: z.ZodNullable<z.ZodString>;
3134
2885
  }, z.core.$strict>;
3135
2886
  portable_context_path: z.ZodNullable<z.ZodString>;
3136
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2887
+ readiness: z.ZodObject<{
3137
2888
  kind: z.ZodLiteral<"interf-readiness-state">;
3138
2889
  version: z.ZodLiteral<1>;
3139
2890
  generated_at: z.ZodString;
3140
2891
  preparation: z.ZodString;
3141
2892
  status: z.ZodEnum<{
3142
- stale: "stale";
3143
- failed: "failed";
3144
2893
  "not-configured": "not-configured";
3145
2894
  "not-built": "not-built";
3146
2895
  building: "building";
@@ -3148,6 +2897,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3148
2897
  checking: "checking";
3149
2898
  ready: "ready";
3150
2899
  "not-ready": "not-ready";
2900
+ stale: "stale";
2901
+ failed: "failed";
3151
2902
  }>;
3152
2903
  ready: z.ZodBoolean;
3153
2904
  summary: z.ZodString;
@@ -3166,8 +2917,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3166
2917
  }>;
3167
2918
  ok: z.ZodBoolean;
3168
2919
  status: z.ZodOptional<z.ZodEnum<{
3169
- stale: "stale";
3170
- failed: "failed";
3171
2920
  "not-configured": "not-configured";
3172
2921
  "not-built": "not-built";
3173
2922
  building: "building";
@@ -3175,6 +2924,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3175
2924
  checking: "checking";
3176
2925
  ready: "ready";
3177
2926
  "not-ready": "not-ready";
2927
+ stale: "stale";
2928
+ failed: "failed";
3178
2929
  }>>;
3179
2930
  summary: z.ZodString;
3180
2931
  detail: z.ZodOptional<z.ZodString>;
@@ -3216,8 +2967,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3216
2967
  }>;
3217
2968
  ok: z.ZodBoolean;
3218
2969
  status: z.ZodOptional<z.ZodEnum<{
3219
- stale: "stale";
3220
- failed: "failed";
3221
2970
  "not-configured": "not-configured";
3222
2971
  "not-built": "not-built";
3223
2972
  building: "building";
@@ -3225,13 +2974,15 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3225
2974
  checking: "checking";
3226
2975
  ready: "ready";
3227
2976
  "not-ready": "not-ready";
2977
+ stale: "stale";
2978
+ failed: "failed";
3228
2979
  }>>;
3229
2980
  summary: z.ZodString;
3230
2981
  detail: z.ZodOptional<z.ZodString>;
3231
2982
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3232
2983
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3233
2984
  }, z.core.$strict>>>;
3234
- }, z.core.$strict>>;
2985
+ }, z.core.$strict>;
3235
2986
  runs: z.ZodObject<{
3236
2987
  latest_compile_run_id: z.ZodNullable<z.ZodString>;
3237
2988
  latest_test_run_id: z.ZodNullable<z.ZodString>;
@@ -3239,30 +2990,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3239
2990
  latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3240
2991
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3241
2992
  }, z.core.$strict>;
3242
- }, z.core.$strict>, z.ZodObject<{
3243
- kind: z.ZodLiteral<"workflow-package">;
3244
- value: z.ZodObject<{
3245
- id: z.ZodString;
3246
- path: z.ZodString;
3247
- label: z.ZodOptional<z.ZodString>;
3248
- hint: z.ZodOptional<z.ZodString>;
3249
- source_kind: z.ZodDefault<z.ZodEnum<{
3250
- builtin: "builtin";
3251
- local: "local";
3252
- }>>;
3253
- built_in: z.ZodDefault<z.ZodBoolean>;
3254
- active_for_datasets: z.ZodDefault<z.ZodArray<z.ZodString>>;
3255
- stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
3256
- id: z.ZodString;
3257
- label: z.ZodString;
3258
- description: z.ZodOptional<z.ZodString>;
3259
- contract_type: z.ZodString;
3260
- skill_dir: z.ZodString;
3261
- reads: z.ZodDefault<z.ZodArray<z.ZodString>>;
3262
- writes: z.ZodDefault<z.ZodArray<z.ZodString>>;
3263
- acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3264
- }, z.core.$strict>>>;
3265
- }, z.core.$strict>;
3266
2993
  }, z.core.$strict>, z.ZodObject<{
3267
2994
  kind: z.ZodLiteral<"method">;
3268
2995
  value: z.ZodObject<{
@@ -3291,13 +3018,13 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3291
3018
  }, z.core.$strict>, z.ZodObject<{
3292
3019
  kind: z.ZodLiteral<"compile-run">;
3293
3020
  value: z.ZodObject<{
3294
- run: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3021
+ run: z.ZodObject<{
3295
3022
  kind: z.ZodLiteral<"interf-compile-run">;
3296
3023
  version: z.ZodLiteral<1>;
3297
3024
  run_id: z.ZodString;
3298
3025
  status: z.ZodEnum<{
3299
- running: "running";
3300
3026
  failed: "failed";
3027
+ running: "running";
3301
3028
  succeeded: "succeeded";
3302
3029
  cancelled: "cancelled";
3303
3030
  queued: "queued";
@@ -3320,11 +3047,10 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3320
3047
  stage_index: z.ZodOptional<z.ZodNumber>;
3321
3048
  stage_total: z.ZodOptional<z.ZodNumber>;
3322
3049
  status: z.ZodEnum<{
3323
- running: "running";
3324
3050
  failed: "failed";
3051
+ running: "running";
3325
3052
  succeeded: "succeeded";
3326
3053
  queued: "queued";
3327
- skipped: "skipped";
3328
3054
  }>;
3329
3055
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3330
3056
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3399,7 +3125,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3399
3125
  }, z.core.$strict>>>;
3400
3126
  failure: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3401
3127
  }, z.core.$strict>>>;
3402
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
3128
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
3403
3129
  event_id: z.ZodString;
3404
3130
  run_id: z.ZodString;
3405
3131
  timestamp: z.ZodString;
@@ -3536,14 +3262,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3536
3262
  timestamp: z.ZodString;
3537
3263
  type: z.ZodLiteral<"readiness.updated">;
3538
3264
  preparation: z.ZodString;
3539
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3265
+ readiness: z.ZodObject<{
3540
3266
  kind: z.ZodLiteral<"interf-readiness-state">;
3541
3267
  version: z.ZodLiteral<1>;
3542
3268
  generated_at: z.ZodString;
3543
3269
  preparation: z.ZodString;
3544
3270
  status: z.ZodEnum<{
3545
- stale: "stale";
3546
- failed: "failed";
3547
3271
  "not-configured": "not-configured";
3548
3272
  "not-built": "not-built";
3549
3273
  building: "building";
@@ -3551,6 +3275,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3551
3275
  checking: "checking";
3552
3276
  ready: "ready";
3553
3277
  "not-ready": "not-ready";
3278
+ stale: "stale";
3279
+ failed: "failed";
3554
3280
  }>;
3555
3281
  ready: z.ZodBoolean;
3556
3282
  summary: z.ZodString;
@@ -3569,8 +3295,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3569
3295
  }>;
3570
3296
  ok: z.ZodBoolean;
3571
3297
  status: z.ZodOptional<z.ZodEnum<{
3572
- stale: "stale";
3573
- failed: "failed";
3574
3298
  "not-configured": "not-configured";
3575
3299
  "not-built": "not-built";
3576
3300
  building: "building";
@@ -3578,6 +3302,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3578
3302
  checking: "checking";
3579
3303
  ready: "ready";
3580
3304
  "not-ready": "not-ready";
3305
+ stale: "stale";
3306
+ failed: "failed";
3581
3307
  }>>;
3582
3308
  summary: z.ZodString;
3583
3309
  detail: z.ZodOptional<z.ZodString>;
@@ -3619,8 +3345,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3619
3345
  }>;
3620
3346
  ok: z.ZodBoolean;
3621
3347
  status: z.ZodOptional<z.ZodEnum<{
3622
- stale: "stale";
3623
- failed: "failed";
3624
3348
  "not-configured": "not-configured";
3625
3349
  "not-built": "not-built";
3626
3350
  building: "building";
@@ -3628,14 +3352,16 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3628
3352
  checking: "checking";
3629
3353
  ready: "ready";
3630
3354
  "not-ready": "not-ready";
3355
+ stale: "stale";
3356
+ failed: "failed";
3631
3357
  }>>;
3632
3358
  summary: z.ZodString;
3633
3359
  detail: z.ZodOptional<z.ZodString>;
3634
3360
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3635
3361
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3636
3362
  }, z.core.$strict>>>;
3637
- }, z.core.$strict>>;
3638
- }, z.core.$strict>], "type">>>>;
3363
+ }, z.core.$strict>;
3364
+ }, z.core.$strict>], "type">>>;
3639
3365
  latest_proof: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3640
3366
  id: z.ZodString;
3641
3367
  run_id: z.ZodString;
@@ -3663,14 +3389,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3663
3389
  detail: z.ZodOptional<z.ZodString>;
3664
3390
  }, z.core.$strict>>>;
3665
3391
  }, z.core.$strict>>>;
3666
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3392
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3667
3393
  kind: z.ZodLiteral<"interf-readiness-state">;
3668
3394
  version: z.ZodLiteral<1>;
3669
3395
  generated_at: z.ZodString;
3670
3396
  preparation: z.ZodString;
3671
3397
  status: z.ZodEnum<{
3672
- stale: "stale";
3673
- failed: "failed";
3674
3398
  "not-configured": "not-configured";
3675
3399
  "not-built": "not-built";
3676
3400
  building: "building";
@@ -3678,6 +3402,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3678
3402
  checking: "checking";
3679
3403
  ready: "ready";
3680
3404
  "not-ready": "not-ready";
3405
+ stale: "stale";
3406
+ failed: "failed";
3681
3407
  }>;
3682
3408
  ready: z.ZodBoolean;
3683
3409
  summary: z.ZodString;
@@ -3696,8 +3422,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3696
3422
  }>;
3697
3423
  ok: z.ZodBoolean;
3698
3424
  status: z.ZodOptional<z.ZodEnum<{
3699
- stale: "stale";
3700
- failed: "failed";
3701
3425
  "not-configured": "not-configured";
3702
3426
  "not-built": "not-built";
3703
3427
  building: "building";
@@ -3705,6 +3429,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3705
3429
  checking: "checking";
3706
3430
  ready: "ready";
3707
3431
  "not-ready": "not-ready";
3432
+ stale: "stale";
3433
+ failed: "failed";
3708
3434
  }>>;
3709
3435
  summary: z.ZodString;
3710
3436
  detail: z.ZodOptional<z.ZodString>;
@@ -3746,8 +3472,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3746
3472
  }>;
3747
3473
  ok: z.ZodBoolean;
3748
3474
  status: z.ZodOptional<z.ZodEnum<{
3749
- stale: "stale";
3750
- failed: "failed";
3751
3475
  "not-configured": "not-configured";
3752
3476
  "not-built": "not-built";
3753
3477
  building: "building";
@@ -3755,14 +3479,16 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3755
3479
  checking: "checking";
3756
3480
  ready: "ready";
3757
3481
  "not-ready": "not-ready";
3482
+ stale: "stale";
3483
+ failed: "failed";
3758
3484
  }>>;
3759
3485
  summary: z.ZodString;
3760
3486
  detail: z.ZodOptional<z.ZodString>;
3761
3487
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3762
3488
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3763
3489
  }, z.core.$strict>>>;
3764
- }, z.core.$strict>>>>;
3765
- }, z.core.$strict>>;
3490
+ }, z.core.$strict>>>;
3491
+ }, z.core.$strict>;
3766
3492
  }, z.core.$strict>;
3767
3493
  }, z.core.$strict>, z.ZodObject<{
3768
3494
  kind: z.ZodLiteral<"job-run">;
@@ -3772,15 +3498,15 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3772
3498
  run_id: z.ZodString;
3773
3499
  job_type: z.ZodEnum<{
3774
3500
  compile: "compile";
3501
+ "method-authoring": "method-authoring";
3502
+ "method-improvement": "method-improvement";
3775
3503
  "preparation-setup": "preparation-setup";
3776
3504
  test: "test";
3777
3505
  "readiness-check-draft": "readiness-check-draft";
3778
- "method-authoring": "method-authoring";
3779
- "method-improvement": "method-improvement";
3780
3506
  }>;
3781
3507
  status: z.ZodEnum<{
3782
- running: "running";
3783
3508
  failed: "failed";
3509
+ running: "running";
3784
3510
  succeeded: "succeeded";
3785
3511
  cancelled: "cancelled";
3786
3512
  queued: "queued";
@@ -3802,8 +3528,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3802
3528
  id: z.ZodString;
3803
3529
  label: z.ZodString;
3804
3530
  status: z.ZodEnum<{
3805
- running: "running";
3806
3531
  failed: "failed";
3532
+ running: "running";
3807
3533
  succeeded: "succeeded";
3808
3534
  cancelled: "cancelled";
3809
3535
  queued: "queued";
@@ -3854,8 +3580,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3854
3580
  value: z.ZodObject<{
3855
3581
  run_id: z.ZodString;
3856
3582
  status: z.ZodEnum<{
3857
- running: "running";
3858
3583
  failed: "failed";
3584
+ running: "running";
3859
3585
  succeeded: "succeeded";
3860
3586
  cancelled: "cancelled";
3861
3587
  queued: "queued";
@@ -3871,7 +3597,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3871
3597
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3872
3598
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3873
3599
  comparison: z.ZodNullable<z.ZodObject<{
3874
- kind: z.ZodLiteral<"interf-test-run">;
3600
+ kind: z.ZodLiteral<"interf-readiness-check-run">;
3875
3601
  version: z.ZodLiteral<1>;
3876
3602
  generated_at: z.ZodString;
3877
3603
  mode: z.ZodEnum<{
@@ -3881,9 +3607,9 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3881
3607
  }>;
3882
3608
  source_path: z.ZodString;
3883
3609
  checks_fingerprint: z.ZodOptional<z.ZodString>;
3884
- dataset: z.ZodObject<{
3610
+ preparation: z.ZodObject<{
3885
3611
  name: z.ZodString;
3886
- compiled_path: z.ZodNullable<z.ZodString>;
3612
+ portable_context_path: z.ZodNullable<z.ZodString>;
3887
3613
  }, z.core.$strip>;
3888
3614
  raw: z.ZodNullable<z.ZodObject<{
3889
3615
  label: z.ZodString;
@@ -3900,7 +3626,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3900
3626
  }>;
3901
3627
  name: z.ZodString;
3902
3628
  path: z.ZodString;
3903
- workflow: z.ZodString;
3629
+ method: z.ZodString;
3904
3630
  }, z.core.$strip>;
3905
3631
  }, z.core.$strip>>;
3906
3632
  compiled: z.ZodNullable<z.ZodObject<{
@@ -3918,7 +3644,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3918
3644
  }>;
3919
3645
  name: z.ZodString;
3920
3646
  path: z.ZodString;
3921
- workflow: z.ZodString;
3647
+ method: z.ZodString;
3922
3648
  }, z.core.$strip>;
3923
3649
  }, z.core.$strip>>;
3924
3650
  summary: z.ZodObject<{
@@ -3927,14 +3653,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3927
3653
  pass_rate_delta: z.ZodNullable<z.ZodNumber>;
3928
3654
  }, z.core.$strip>;
3929
3655
  }, z.core.$strip>>;
3930
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3656
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3931
3657
  kind: z.ZodLiteral<"interf-readiness-state">;
3932
3658
  version: z.ZodLiteral<1>;
3933
3659
  generated_at: z.ZodString;
3934
3660
  preparation: z.ZodString;
3935
3661
  status: z.ZodEnum<{
3936
- stale: "stale";
3937
- failed: "failed";
3938
3662
  "not-configured": "not-configured";
3939
3663
  "not-built": "not-built";
3940
3664
  building: "building";
@@ -3942,6 +3666,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3942
3666
  checking: "checking";
3943
3667
  ready: "ready";
3944
3668
  "not-ready": "not-ready";
3669
+ stale: "stale";
3670
+ failed: "failed";
3945
3671
  }>;
3946
3672
  ready: z.ZodBoolean;
3947
3673
  summary: z.ZodString;
@@ -3960,8 +3686,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3960
3686
  }>;
3961
3687
  ok: z.ZodBoolean;
3962
3688
  status: z.ZodOptional<z.ZodEnum<{
3963
- stale: "stale";
3964
- failed: "failed";
3965
3689
  "not-configured": "not-configured";
3966
3690
  "not-built": "not-built";
3967
3691
  building: "building";
@@ -3969,6 +3693,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3969
3693
  checking: "checking";
3970
3694
  ready: "ready";
3971
3695
  "not-ready": "not-ready";
3696
+ stale: "stale";
3697
+ failed: "failed";
3972
3698
  }>>;
3973
3699
  summary: z.ZodString;
3974
3700
  detail: z.ZodOptional<z.ZodString>;
@@ -4010,8 +3736,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4010
3736
  }>;
4011
3737
  ok: z.ZodBoolean;
4012
3738
  status: z.ZodOptional<z.ZodEnum<{
4013
- stale: "stale";
4014
- failed: "failed";
4015
3739
  "not-configured": "not-configured";
4016
3740
  "not-built": "not-built";
4017
3741
  building: "building";
@@ -4019,14 +3743,16 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4019
3743
  checking: "checking";
4020
3744
  ready: "ready";
4021
3745
  "not-ready": "not-ready";
3746
+ stale: "stale";
3747
+ failed: "failed";
4022
3748
  }>>;
4023
3749
  summary: z.ZodString;
4024
3750
  detail: z.ZodOptional<z.ZodString>;
4025
3751
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4026
3752
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4027
3753
  }, z.core.$strict>>>;
4028
- }, z.core.$strict>>>>;
4029
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
3754
+ }, z.core.$strict>>>;
3755
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
4030
3756
  event_id: z.ZodString;
4031
3757
  run_id: z.ZodString;
4032
3758
  timestamp: z.ZodString;
@@ -4163,14 +3889,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4163
3889
  timestamp: z.ZodString;
4164
3890
  type: z.ZodLiteral<"readiness.updated">;
4165
3891
  preparation: z.ZodString;
4166
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3892
+ readiness: z.ZodObject<{
4167
3893
  kind: z.ZodLiteral<"interf-readiness-state">;
4168
3894
  version: z.ZodLiteral<1>;
4169
3895
  generated_at: z.ZodString;
4170
3896
  preparation: z.ZodString;
4171
3897
  status: z.ZodEnum<{
4172
- stale: "stale";
4173
- failed: "failed";
4174
3898
  "not-configured": "not-configured";
4175
3899
  "not-built": "not-built";
4176
3900
  building: "building";
@@ -4178,6 +3902,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4178
3902
  checking: "checking";
4179
3903
  ready: "ready";
4180
3904
  "not-ready": "not-ready";
3905
+ stale: "stale";
3906
+ failed: "failed";
4181
3907
  }>;
4182
3908
  ready: z.ZodBoolean;
4183
3909
  summary: z.ZodString;
@@ -4196,8 +3922,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4196
3922
  }>;
4197
3923
  ok: z.ZodBoolean;
4198
3924
  status: z.ZodOptional<z.ZodEnum<{
4199
- stale: "stale";
4200
- failed: "failed";
4201
3925
  "not-configured": "not-configured";
4202
3926
  "not-built": "not-built";
4203
3927
  building: "building";
@@ -4205,6 +3929,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4205
3929
  checking: "checking";
4206
3930
  ready: "ready";
4207
3931
  "not-ready": "not-ready";
3932
+ stale: "stale";
3933
+ failed: "failed";
4208
3934
  }>>;
4209
3935
  summary: z.ZodString;
4210
3936
  detail: z.ZodOptional<z.ZodString>;
@@ -4246,8 +3972,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4246
3972
  }>;
4247
3973
  ok: z.ZodBoolean;
4248
3974
  status: z.ZodOptional<z.ZodEnum<{
4249
- stale: "stale";
4250
- failed: "failed";
4251
3975
  "not-configured": "not-configured";
4252
3976
  "not-built": "not-built";
4253
3977
  building: "building";
@@ -4255,35 +3979,37 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4255
3979
  checking: "checking";
4256
3980
  ready: "ready";
4257
3981
  "not-ready": "not-ready";
3982
+ stale: "stale";
3983
+ failed: "failed";
4258
3984
  }>>;
4259
3985
  summary: z.ZodString;
4260
3986
  detail: z.ZodOptional<z.ZodString>;
4261
3987
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4262
3988
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4263
3989
  }, z.core.$strict>>>;
4264
- }, z.core.$strict>>;
4265
- }, z.core.$strict>], "type">>>>;
3990
+ }, z.core.$strict>;
3991
+ }, z.core.$strict>], "type">>>;
4266
3992
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4267
3993
  }, z.core.$strict>;
4268
3994
  }, z.core.$strict>, z.ZodObject<{
4269
3995
  kind: z.ZodLiteral<"run-observability">;
4270
- value: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3996
+ value: z.ZodObject<{
4271
3997
  kind: z.ZodLiteral<"interf-run-observability">;
4272
3998
  version: z.ZodLiteral<1>;
4273
3999
  run_id: z.ZodString;
4274
4000
  run_type: z.ZodEnum<{
4275
4001
  compile: "compile";
4002
+ "method-authoring": "method-authoring";
4003
+ "method-improvement": "method-improvement";
4276
4004
  "preparation-setup": "preparation-setup";
4277
4005
  test: "test";
4278
4006
  "readiness-check-draft": "readiness-check-draft";
4279
- "method-authoring": "method-authoring";
4280
- "method-improvement": "method-improvement";
4281
4007
  job: "job";
4282
4008
  }>;
4283
4009
  title: z.ZodString;
4284
4010
  status: z.ZodEnum<{
4285
- running: "running";
4286
4011
  failed: "failed";
4012
+ running: "running";
4287
4013
  succeeded: "succeeded";
4288
4014
  cancelled: "cancelled";
4289
4015
  queued: "queued";
@@ -4334,14 +4060,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4334
4060
  ok: z.ZodBoolean;
4335
4061
  detail: z.ZodOptional<z.ZodString>;
4336
4062
  }, z.core.$strict>>>;
4337
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4063
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4338
4064
  kind: z.ZodLiteral<"interf-readiness-state">;
4339
4065
  version: z.ZodLiteral<1>;
4340
4066
  generated_at: z.ZodString;
4341
4067
  preparation: z.ZodString;
4342
4068
  status: z.ZodEnum<{
4343
- stale: "stale";
4344
- failed: "failed";
4345
4069
  "not-configured": "not-configured";
4346
4070
  "not-built": "not-built";
4347
4071
  building: "building";
@@ -4349,6 +4073,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4349
4073
  checking: "checking";
4350
4074
  ready: "ready";
4351
4075
  "not-ready": "not-ready";
4076
+ stale: "stale";
4077
+ failed: "failed";
4352
4078
  }>;
4353
4079
  ready: z.ZodBoolean;
4354
4080
  summary: z.ZodString;
@@ -4367,8 +4093,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4367
4093
  }>;
4368
4094
  ok: z.ZodBoolean;
4369
4095
  status: z.ZodOptional<z.ZodEnum<{
4370
- stale: "stale";
4371
- failed: "failed";
4372
4096
  "not-configured": "not-configured";
4373
4097
  "not-built": "not-built";
4374
4098
  building: "building";
@@ -4376,6 +4100,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4376
4100
  checking: "checking";
4377
4101
  ready: "ready";
4378
4102
  "not-ready": "not-ready";
4103
+ stale: "stale";
4104
+ failed: "failed";
4379
4105
  }>>;
4380
4106
  summary: z.ZodString;
4381
4107
  detail: z.ZodOptional<z.ZodString>;
@@ -4417,8 +4143,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4417
4143
  }>;
4418
4144
  ok: z.ZodBoolean;
4419
4145
  status: z.ZodOptional<z.ZodEnum<{
4420
- stale: "stale";
4421
- failed: "failed";
4422
4146
  "not-configured": "not-configured";
4423
4147
  "not-built": "not-built";
4424
4148
  building: "building";
@@ -4426,25 +4150,27 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4426
4150
  checking: "checking";
4427
4151
  ready: "ready";
4428
4152
  "not-ready": "not-ready";
4153
+ stale: "stale";
4154
+ failed: "failed";
4429
4155
  }>>;
4430
4156
  summary: z.ZodString;
4431
4157
  detail: z.ZodOptional<z.ZodString>;
4432
4158
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4433
4159
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4434
4160
  }, z.core.$strict>>>;
4435
- }, z.core.$strict>>>>;
4161
+ }, z.core.$strict>>>;
4436
4162
  trace: z.ZodObject<{
4437
4163
  run: z.ZodObject<{
4438
4164
  runId: z.ZodString;
4439
4165
  status: z.ZodEnum<{
4440
- running: "running";
4441
4166
  failed: "failed";
4167
+ running: "running";
4442
4168
  pending: "pending";
4443
4169
  completed: "completed";
4444
4170
  cancelled: "cancelled";
4445
4171
  }>;
4446
4172
  deploymentId: z.ZodString;
4447
- workflowName: z.ZodString;
4173
+ methodName: z.ZodString;
4448
4174
  specVersion: z.ZodLiteral<1>;
4449
4175
  executionContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4450
4176
  input: z.ZodUnknown;
@@ -4495,7 +4221,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4495
4221
  data: z.ZodOptional<z.ZodUnknown>;
4496
4222
  }, z.core.$strict>>>;
4497
4223
  }, z.core.$strict>;
4498
- }, z.core.$strict>>;
4224
+ }, z.core.$strict>;
4499
4225
  }, z.core.$strict>, z.ZodObject<{
4500
4226
  kind: z.ZodLiteral<"executor-status">;
4501
4227
  value: z.ZodObject<{
@@ -4600,7 +4326,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4600
4326
  }>>>;
4601
4327
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4602
4328
  action_type: z.ZodLiteral<"compile">;
4603
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4329
+ request: z.ZodObject<{
4604
4330
  preparation: z.ZodString;
4605
4331
  method: z.ZodOptional<z.ZodString>;
4606
4332
  max_attempts: z.ZodOptional<z.ZodNumber>;
@@ -4609,7 +4335,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4609
4335
  "on-failure": "on-failure";
4610
4336
  always: "always";
4611
4337
  }>>;
4612
- }, z.core.$strict>>;
4338
+ }, z.core.$strict>;
4613
4339
  }, z.core.$strict>, z.ZodObject<{
4614
4340
  kind: z.ZodLiteral<"interf-action-proposal">;
4615
4341
  version: z.ZodLiteral<1>;
@@ -4649,14 +4375,13 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4649
4375
  }>>>;
4650
4376
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4651
4377
  action_type: z.ZodLiteral<"preparation-setup">;
4652
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4378
+ request: z.ZodObject<{
4653
4379
  preparation: z.ZodObject<{
4654
4380
  id: z.ZodOptional<z.ZodString>;
4655
4381
  name: z.ZodString;
4656
4382
  path: z.ZodString;
4657
4383
  about: z.ZodOptional<z.ZodString>;
4658
4384
  method: z.ZodOptional<z.ZodString>;
4659
- workflow: z.ZodOptional<z.ZodString>;
4660
4385
  max_attempts: z.ZodOptional<z.ZodNumber>;
4661
4386
  max_loops: z.ZodOptional<z.ZodNumber>;
4662
4387
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -4673,7 +4398,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4673
4398
  strictness: z.ZodOptional<z.ZodString>;
4674
4399
  }, z.core.$strict>>>;
4675
4400
  }, z.core.$strict>;
4676
- }, z.core.$strict>>;
4401
+ prepare_after_setup: z.ZodDefault<z.ZodBoolean>;
4402
+ }, z.core.$strict>;
4677
4403
  }, z.core.$strict>, z.ZodObject<{
4678
4404
  kind: z.ZodLiteral<"interf-action-proposal">;
4679
4405
  version: z.ZodLiteral<1>;
@@ -4713,14 +4439,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4713
4439
  }>>>;
4714
4440
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4715
4441
  action_type: z.ZodLiteral<"test">;
4716
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4442
+ request: z.ZodObject<{
4717
4443
  preparation: z.ZodString;
4718
4444
  mode: z.ZodDefault<z.ZodEnum<{
4719
4445
  compiled: "compiled";
4720
4446
  raw: "raw";
4721
4447
  both: "both";
4722
4448
  }>>;
4723
- }, z.core.$strict>>;
4449
+ }, z.core.$strict>;
4724
4450
  }, z.core.$strict>, z.ZodObject<{
4725
4451
  kind: z.ZodLiteral<"interf-action-proposal">;
4726
4452
  version: z.ZodLiteral<1>;
@@ -4760,12 +4486,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4760
4486
  }>>>;
4761
4487
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4762
4488
  action_type: z.ZodLiteral<"readiness-check-draft">;
4763
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4489
+ request: z.ZodObject<{
4764
4490
  preparation: z.ZodString;
4765
4491
  source_folder_path: z.ZodString;
4766
4492
  about: z.ZodOptional<z.ZodString>;
4767
4493
  target_count: z.ZodDefault<z.ZodNumber>;
4768
- }, z.core.$strict>>;
4494
+ }, z.core.$strict>;
4769
4495
  }, z.core.$strict>, z.ZodObject<{
4770
4496
  kind: z.ZodLiteral<"interf-action-proposal">;
4771
4497
  version: z.ZodLiteral<1>;
@@ -4805,7 +4531,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4805
4531
  }>>>;
4806
4532
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4807
4533
  action_type: z.ZodLiteral<"method-authoring">;
4808
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4534
+ request: z.ZodObject<{
4809
4535
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4810
4536
  source_folder_path: z.ZodString;
4811
4537
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -4827,7 +4553,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4827
4553
  }, z.core.$strip>>;
4828
4554
  strictness: z.ZodOptional<z.ZodString>;
4829
4555
  }, z.core.$strict>>>;
4830
- }, z.core.$strict>>;
4556
+ }, z.core.$strict>;
4831
4557
  }, z.core.$strict>, z.ZodObject<{
4832
4558
  kind: z.ZodLiteral<"interf-action-proposal">;
4833
4559
  version: z.ZodLiteral<1>;
@@ -4867,7 +4593,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4867
4593
  }>>>;
4868
4594
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4869
4595
  action_type: z.ZodLiteral<"method-improvement">;
4870
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4596
+ request: z.ZodObject<{
4871
4597
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4872
4598
  source_folder_path: z.ZodString;
4873
4599
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -4889,7 +4615,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4889
4615
  }, z.core.$strip>>;
4890
4616
  strictness: z.ZodOptional<z.ZodString>;
4891
4617
  }, z.core.$strict>>>;
4892
- }, z.core.$strict>>;
4618
+ }, z.core.$strict>;
4893
4619
  }, z.core.$strict>], "action_type">;
4894
4620
  }, z.core.$strict>, z.ZodObject<{
4895
4621
  kind: z.ZodLiteral<"portable-context">;
@@ -4897,14 +4623,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4897
4623
  preparation: z.ZodString;
4898
4624
  path: z.ZodString;
4899
4625
  exists: z.ZodBoolean;
4900
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4626
+ readiness: z.ZodObject<{
4901
4627
  kind: z.ZodLiteral<"interf-readiness-state">;
4902
4628
  version: z.ZodLiteral<1>;
4903
4629
  generated_at: z.ZodString;
4904
4630
  preparation: z.ZodString;
4905
4631
  status: z.ZodEnum<{
4906
- stale: "stale";
4907
- failed: "failed";
4908
4632
  "not-configured": "not-configured";
4909
4633
  "not-built": "not-built";
4910
4634
  building: "building";
@@ -4912,6 +4636,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4912
4636
  checking: "checking";
4913
4637
  ready: "ready";
4914
4638
  "not-ready": "not-ready";
4639
+ stale: "stale";
4640
+ failed: "failed";
4915
4641
  }>;
4916
4642
  ready: z.ZodBoolean;
4917
4643
  summary: z.ZodString;
@@ -4930,8 +4656,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4930
4656
  }>;
4931
4657
  ok: z.ZodBoolean;
4932
4658
  status: z.ZodOptional<z.ZodEnum<{
4933
- stale: "stale";
4934
- failed: "failed";
4935
4659
  "not-configured": "not-configured";
4936
4660
  "not-built": "not-built";
4937
4661
  building: "building";
@@ -4939,6 +4663,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4939
4663
  checking: "checking";
4940
4664
  ready: "ready";
4941
4665
  "not-ready": "not-ready";
4666
+ stale: "stale";
4667
+ failed: "failed";
4942
4668
  }>>;
4943
4669
  summary: z.ZodString;
4944
4670
  detail: z.ZodOptional<z.ZodString>;
@@ -4980,8 +4706,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4980
4706
  }>;
4981
4707
  ok: z.ZodBoolean;
4982
4708
  status: z.ZodOptional<z.ZodEnum<{
4983
- stale: "stale";
4984
- failed: "failed";
4985
4709
  "not-configured": "not-configured";
4986
4710
  "not-built": "not-built";
4987
4711
  building: "building";
@@ -4989,13 +4713,15 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4989
4713
  checking: "checking";
4990
4714
  ready: "ready";
4991
4715
  "not-ready": "not-ready";
4716
+ stale: "stale";
4717
+ failed: "failed";
4992
4718
  }>>;
4993
4719
  summary: z.ZodString;
4994
4720
  detail: z.ZodOptional<z.ZodString>;
4995
4721
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4996
4722
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4997
4723
  }, z.core.$strict>>>;
4998
- }, z.core.$strict>>;
4724
+ }, z.core.$strict>;
4999
4725
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5000
4726
  latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5001
4727
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5015,14 +4741,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
5015
4741
  }, z.core.$strict>;
5016
4742
  }, z.core.$strict>, z.ZodObject<{
5017
4743
  kind: z.ZodLiteral<"readiness">;
5018
- value: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4744
+ value: z.ZodObject<{
5019
4745
  kind: z.ZodLiteral<"interf-readiness-state">;
5020
4746
  version: z.ZodLiteral<1>;
5021
4747
  generated_at: z.ZodString;
5022
4748
  preparation: z.ZodString;
5023
4749
  status: z.ZodEnum<{
5024
- stale: "stale";
5025
- failed: "failed";
5026
4750
  "not-configured": "not-configured";
5027
4751
  "not-built": "not-built";
5028
4752
  building: "building";
@@ -5030,6 +4754,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
5030
4754
  checking: "checking";
5031
4755
  ready: "ready";
5032
4756
  "not-ready": "not-ready";
4757
+ stale: "stale";
4758
+ failed: "failed";
5033
4759
  }>;
5034
4760
  ready: z.ZodBoolean;
5035
4761
  summary: z.ZodString;
@@ -5048,220 +4774,91 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
5048
4774
  }>;
5049
4775
  ok: z.ZodBoolean;
5050
4776
  status: z.ZodOptional<z.ZodEnum<{
5051
- stale: "stale";
5052
- failed: "failed";
5053
- "not-configured": "not-configured";
5054
- "not-built": "not-built";
5055
- building: "building";
5056
- built: "built";
5057
- checking: "checking";
5058
- ready: "ready";
5059
- "not-ready": "not-ready";
5060
- }>>;
5061
- summary: z.ZodString;
5062
- detail: z.ZodOptional<z.ZodString>;
5063
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5064
- artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5065
- }, z.core.$strict>>;
5066
- check_results: z.ZodObject<{
5067
- configured: z.ZodNumber;
5068
- fingerprint: z.ZodNullable<z.ZodString>;
5069
- source_files: z.ZodNullable<z.ZodObject<{
5070
- passed: z.ZodNumber;
5071
- total: z.ZodNumber;
5072
- pass_rate: z.ZodNullable<z.ZodNumber>;
5073
- checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5074
- stale: z.ZodDefault<z.ZodBoolean>;
5075
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5076
- run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5077
- }, z.core.$strict>>;
5078
- portable_context: z.ZodNullable<z.ZodObject<{
5079
- passed: z.ZodNumber;
5080
- total: z.ZodNumber;
5081
- pass_rate: z.ZodNullable<z.ZodNumber>;
5082
- checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5083
- stale: z.ZodDefault<z.ZodBoolean>;
5084
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5085
- run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5086
- }, z.core.$strict>>;
5087
- delta: z.ZodNullable<z.ZodNumber>;
5088
- }, z.core.$strict>;
5089
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
5090
- gate: z.ZodEnum<{
5091
- "preparation-config": "preparation-config";
5092
- "portable-context": "portable-context";
5093
- "compile-run": "compile-run";
5094
- "readiness-checks": "readiness-checks";
5095
- "source-baseline": "source-baseline";
5096
- "portable-context-check": "portable-context-check";
5097
- "checks-current": "checks-current";
5098
- }>;
5099
- ok: z.ZodBoolean;
5100
- status: z.ZodOptional<z.ZodEnum<{
5101
- stale: "stale";
5102
- failed: "failed";
5103
- "not-configured": "not-configured";
5104
- "not-built": "not-built";
5105
- building: "building";
5106
- built: "built";
5107
- checking: "checking";
5108
- ready: "ready";
5109
- "not-ready": "not-ready";
5110
- }>>;
5111
- summary: z.ZodString;
5112
- detail: z.ZodOptional<z.ZodString>;
5113
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5114
- artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5115
- }, z.core.$strict>>>;
5116
- }, z.core.$strict>>;
5117
- }, z.core.$strict>, z.ZodObject<{
5118
- kind: z.ZodLiteral<"source-file">;
5119
- value: z.ZodObject<{
5120
- preparation: z.ZodString;
5121
- path: z.ZodString;
5122
- absolute_path: z.ZodString;
5123
- size_bytes: z.ZodNumber;
5124
- modified_at: z.ZodNullable<z.ZodString>;
5125
- source_folder_path: z.ZodString;
5126
- }, z.core.$strict>;
5127
- }, z.core.$strict>, z.ZodObject<{
5128
- kind: z.ZodLiteral<"workspace-file">;
5129
- value: z.ZodObject<{
5130
- path: z.ZodString;
5131
- absolute_path: z.ZodString;
5132
- size_bytes: z.ZodNumber;
5133
- modified_at: z.ZodNullable<z.ZodString>;
5134
- }, z.core.$strict>;
5135
- }, z.core.$strict>], "kind">;
5136
- export declare const DatasetListResponseSchema: z.ZodObject<{
5137
- datasets: z.ZodArray<z.ZodObject<{
5138
- dataset: z.ZodObject<{
5139
- id: z.ZodOptional<z.ZodString>;
5140
- name: z.ZodString;
5141
- path: z.ZodString;
5142
- about: z.ZodOptional<z.ZodString>;
5143
- method: z.ZodOptional<z.ZodString>;
5144
- workflow: z.ZodOptional<z.ZodString>;
5145
- max_attempts: z.ZodOptional<z.ZodNumber>;
5146
- max_loops: z.ZodOptional<z.ZodNumber>;
5147
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
5148
- id: z.ZodOptional<z.ZodString>;
5149
- question: z.ZodString;
5150
- answer: z.ZodOptional<z.ZodString>;
5151
- expect: z.ZodOptional<z.ZodObject<{
5152
- must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
5153
- must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
5154
- must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
5155
- min_words: z.ZodOptional<z.ZodNumber>;
5156
- max_words: z.ZodOptional<z.ZodNumber>;
5157
- }, z.core.$strip>>;
5158
- strictness: z.ZodOptional<z.ZodString>;
5159
- }, z.core.$strict>>>;
5160
- }, z.core.$strict>;
5161
- portable_context_path: z.ZodNullable<z.ZodString>;
5162
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5163
- kind: z.ZodLiteral<"interf-readiness-state">;
5164
- version: z.ZodLiteral<1>;
5165
- generated_at: z.ZodString;
5166
- preparation: z.ZodString;
5167
- status: z.ZodEnum<{
5168
- stale: "stale";
5169
- failed: "failed";
5170
4777
  "not-configured": "not-configured";
5171
4778
  "not-built": "not-built";
5172
4779
  building: "building";
5173
- built: "built";
5174
- checking: "checking";
5175
- ready: "ready";
5176
- "not-ready": "not-ready";
5177
- }>;
5178
- ready: z.ZodBoolean;
5179
- summary: z.ZodString;
5180
- portable_context_path: z.ZodNullable<z.ZodString>;
5181
- latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5182
- latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5183
- compile: z.ZodNullable<z.ZodObject<{
5184
- gate: z.ZodEnum<{
5185
- "preparation-config": "preparation-config";
5186
- "portable-context": "portable-context";
5187
- "compile-run": "compile-run";
5188
- "readiness-checks": "readiness-checks";
5189
- "source-baseline": "source-baseline";
5190
- "portable-context-check": "portable-context-check";
5191
- "checks-current": "checks-current";
5192
- }>;
5193
- ok: z.ZodBoolean;
5194
- status: z.ZodOptional<z.ZodEnum<{
5195
- stale: "stale";
5196
- failed: "failed";
5197
- "not-configured": "not-configured";
5198
- "not-built": "not-built";
5199
- building: "building";
5200
- built: "built";
5201
- checking: "checking";
5202
- ready: "ready";
5203
- "not-ready": "not-ready";
5204
- }>>;
5205
- summary: z.ZodString;
5206
- detail: z.ZodOptional<z.ZodString>;
5207
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5208
- artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5209
- }, z.core.$strict>>;
5210
- check_results: z.ZodObject<{
5211
- configured: z.ZodNumber;
5212
- fingerprint: z.ZodNullable<z.ZodString>;
5213
- source_files: z.ZodNullable<z.ZodObject<{
5214
- passed: z.ZodNumber;
5215
- total: z.ZodNumber;
5216
- pass_rate: z.ZodNullable<z.ZodNumber>;
5217
- checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5218
- stale: z.ZodDefault<z.ZodBoolean>;
5219
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5220
- run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5221
- }, z.core.$strict>>;
5222
- portable_context: z.ZodNullable<z.ZodObject<{
5223
- passed: z.ZodNumber;
5224
- total: z.ZodNumber;
5225
- pass_rate: z.ZodNullable<z.ZodNumber>;
5226
- checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5227
- stale: z.ZodDefault<z.ZodBoolean>;
5228
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5229
- run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5230
- }, z.core.$strict>>;
5231
- delta: z.ZodNullable<z.ZodNumber>;
5232
- }, z.core.$strict>;
5233
- checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
5234
- gate: z.ZodEnum<{
5235
- "preparation-config": "preparation-config";
5236
- "portable-context": "portable-context";
5237
- "compile-run": "compile-run";
5238
- "readiness-checks": "readiness-checks";
5239
- "source-baseline": "source-baseline";
5240
- "portable-context-check": "portable-context-check";
5241
- "checks-current": "checks-current";
5242
- }>;
5243
- ok: z.ZodBoolean;
5244
- status: z.ZodOptional<z.ZodEnum<{
5245
- stale: "stale";
5246
- failed: "failed";
5247
- "not-configured": "not-configured";
5248
- "not-built": "not-built";
5249
- building: "building";
5250
- built: "built";
5251
- checking: "checking";
5252
- ready: "ready";
5253
- "not-ready": "not-ready";
5254
- }>>;
5255
- summary: z.ZodString;
5256
- detail: z.ZodOptional<z.ZodString>;
5257
- run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5258
- artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5259
- }, z.core.$strict>>>;
4780
+ built: "built";
4781
+ checking: "checking";
4782
+ ready: "ready";
4783
+ "not-ready": "not-ready";
4784
+ stale: "stale";
4785
+ failed: "failed";
4786
+ }>>;
4787
+ summary: z.ZodString;
4788
+ detail: z.ZodOptional<z.ZodString>;
4789
+ run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4790
+ artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5260
4791
  }, z.core.$strict>>;
5261
- latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5262
- latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5263
- }, z.core.$strict>>;
5264
- }, z.core.$strict>;
4792
+ check_results: z.ZodObject<{
4793
+ configured: z.ZodNumber;
4794
+ fingerprint: z.ZodNullable<z.ZodString>;
4795
+ source_files: z.ZodNullable<z.ZodObject<{
4796
+ passed: z.ZodNumber;
4797
+ total: z.ZodNumber;
4798
+ pass_rate: z.ZodNullable<z.ZodNumber>;
4799
+ checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4800
+ stale: z.ZodDefault<z.ZodBoolean>;
4801
+ run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4802
+ run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4803
+ }, z.core.$strict>>;
4804
+ portable_context: z.ZodNullable<z.ZodObject<{
4805
+ passed: z.ZodNumber;
4806
+ total: z.ZodNumber;
4807
+ pass_rate: z.ZodNullable<z.ZodNumber>;
4808
+ checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4809
+ stale: z.ZodDefault<z.ZodBoolean>;
4810
+ run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4811
+ run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4812
+ }, z.core.$strict>>;
4813
+ delta: z.ZodNullable<z.ZodNumber>;
4814
+ }, z.core.$strict>;
4815
+ checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
4816
+ gate: z.ZodEnum<{
4817
+ "preparation-config": "preparation-config";
4818
+ "portable-context": "portable-context";
4819
+ "compile-run": "compile-run";
4820
+ "readiness-checks": "readiness-checks";
4821
+ "source-baseline": "source-baseline";
4822
+ "portable-context-check": "portable-context-check";
4823
+ "checks-current": "checks-current";
4824
+ }>;
4825
+ ok: z.ZodBoolean;
4826
+ status: z.ZodOptional<z.ZodEnum<{
4827
+ "not-configured": "not-configured";
4828
+ "not-built": "not-built";
4829
+ building: "building";
4830
+ built: "built";
4831
+ checking: "checking";
4832
+ ready: "ready";
4833
+ "not-ready": "not-ready";
4834
+ stale: "stale";
4835
+ failed: "failed";
4836
+ }>>;
4837
+ summary: z.ZodString;
4838
+ detail: z.ZodOptional<z.ZodString>;
4839
+ run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4840
+ artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4841
+ }, z.core.$strict>>>;
4842
+ }, z.core.$strict>;
4843
+ }, z.core.$strict>, z.ZodObject<{
4844
+ kind: z.ZodLiteral<"source-file">;
4845
+ value: z.ZodObject<{
4846
+ preparation: z.ZodString;
4847
+ path: z.ZodString;
4848
+ absolute_path: z.ZodString;
4849
+ size_bytes: z.ZodNumber;
4850
+ modified_at: z.ZodNullable<z.ZodString>;
4851
+ source_folder_path: z.ZodString;
4852
+ }, z.core.$strict>;
4853
+ }, z.core.$strict>, z.ZodObject<{
4854
+ kind: z.ZodLiteral<"workspace-file">;
4855
+ value: z.ZodObject<{
4856
+ path: z.ZodString;
4857
+ absolute_path: z.ZodString;
4858
+ size_bytes: z.ZodNumber;
4859
+ modified_at: z.ZodNullable<z.ZodString>;
4860
+ }, z.core.$strict>;
4861
+ }, z.core.$strict>], "kind">;
5265
4862
  export declare const PreparationListResponseSchema: z.ZodObject<{
5266
4863
  preparations: z.ZodArray<z.ZodObject<{
5267
4864
  id: z.ZodString;
@@ -5272,7 +4869,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5272
4869
  path: z.ZodString;
5273
4870
  about: z.ZodOptional<z.ZodString>;
5274
4871
  method: z.ZodOptional<z.ZodString>;
5275
- workflow: z.ZodOptional<z.ZodString>;
5276
4872
  max_attempts: z.ZodOptional<z.ZodNumber>;
5277
4873
  max_loops: z.ZodOptional<z.ZodNumber>;
5278
4874
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -5313,14 +4909,12 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5313
4909
  latest_test_run_id: z.ZodNullable<z.ZodString>;
5314
4910
  }, z.core.$strict>;
5315
4911
  portable_context_path: z.ZodNullable<z.ZodString>;
5316
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4912
+ readiness: z.ZodObject<{
5317
4913
  kind: z.ZodLiteral<"interf-readiness-state">;
5318
4914
  version: z.ZodLiteral<1>;
5319
4915
  generated_at: z.ZodString;
5320
4916
  preparation: z.ZodString;
5321
4917
  status: z.ZodEnum<{
5322
- stale: "stale";
5323
- failed: "failed";
5324
4918
  "not-configured": "not-configured";
5325
4919
  "not-built": "not-built";
5326
4920
  building: "building";
@@ -5328,6 +4922,8 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5328
4922
  checking: "checking";
5329
4923
  ready: "ready";
5330
4924
  "not-ready": "not-ready";
4925
+ stale: "stale";
4926
+ failed: "failed";
5331
4927
  }>;
5332
4928
  ready: z.ZodBoolean;
5333
4929
  summary: z.ZodString;
@@ -5346,8 +4942,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5346
4942
  }>;
5347
4943
  ok: z.ZodBoolean;
5348
4944
  status: z.ZodOptional<z.ZodEnum<{
5349
- stale: "stale";
5350
- failed: "failed";
5351
4945
  "not-configured": "not-configured";
5352
4946
  "not-built": "not-built";
5353
4947
  building: "building";
@@ -5355,6 +4949,8 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5355
4949
  checking: "checking";
5356
4950
  ready: "ready";
5357
4951
  "not-ready": "not-ready";
4952
+ stale: "stale";
4953
+ failed: "failed";
5358
4954
  }>>;
5359
4955
  summary: z.ZodString;
5360
4956
  detail: z.ZodOptional<z.ZodString>;
@@ -5396,8 +4992,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5396
4992
  }>;
5397
4993
  ok: z.ZodBoolean;
5398
4994
  status: z.ZodOptional<z.ZodEnum<{
5399
- stale: "stale";
5400
- failed: "failed";
5401
4995
  "not-configured": "not-configured";
5402
4996
  "not-built": "not-built";
5403
4997
  building: "building";
@@ -5405,13 +4999,15 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5405
4999
  checking: "checking";
5406
5000
  ready: "ready";
5407
5001
  "not-ready": "not-ready";
5002
+ stale: "stale";
5003
+ failed: "failed";
5408
5004
  }>>;
5409
5005
  summary: z.ZodString;
5410
5006
  detail: z.ZodOptional<z.ZodString>;
5411
5007
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5412
5008
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5413
5009
  }, z.core.$strict>>>;
5414
- }, z.core.$strict>>;
5010
+ }, z.core.$strict>;
5415
5011
  runs: z.ZodObject<{
5416
5012
  latest_compile_run_id: z.ZodNullable<z.ZodString>;
5417
5013
  latest_test_run_id: z.ZodNullable<z.ZodString>;
@@ -5420,30 +5016,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5420
5016
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5421
5017
  }, z.core.$strict>>;
5422
5018
  }, z.core.$strict>;
5423
- export declare const WorkflowPackageListResponseSchema: z.ZodObject<{
5424
- workflow_packages: z.ZodArray<z.ZodObject<{
5425
- id: z.ZodString;
5426
- path: z.ZodString;
5427
- label: z.ZodOptional<z.ZodString>;
5428
- hint: z.ZodOptional<z.ZodString>;
5429
- source_kind: z.ZodDefault<z.ZodEnum<{
5430
- builtin: "builtin";
5431
- local: "local";
5432
- }>>;
5433
- built_in: z.ZodDefault<z.ZodBoolean>;
5434
- active_for_datasets: z.ZodDefault<z.ZodArray<z.ZodString>>;
5435
- stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
5436
- id: z.ZodString;
5437
- label: z.ZodString;
5438
- description: z.ZodOptional<z.ZodString>;
5439
- contract_type: z.ZodString;
5440
- skill_dir: z.ZodString;
5441
- reads: z.ZodDefault<z.ZodArray<z.ZodString>>;
5442
- writes: z.ZodDefault<z.ZodArray<z.ZodString>>;
5443
- acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5444
- }, z.core.$strict>>>;
5445
- }, z.core.$strict>>;
5446
- }, z.core.$strict>;
5447
5019
  export declare const MethodListResponseSchema: z.ZodObject<{
5448
5020
  methods: z.ZodArray<z.ZodObject<{
5449
5021
  id: z.ZodString;
@@ -5471,13 +5043,13 @@ export declare const MethodListResponseSchema: z.ZodObject<{
5471
5043
  }, z.core.$strict>;
5472
5044
  export declare const CompileRunListResponseSchema: z.ZodObject<{
5473
5045
  compile_runs: z.ZodArray<z.ZodObject<{
5474
- run: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5046
+ run: z.ZodObject<{
5475
5047
  kind: z.ZodLiteral<"interf-compile-run">;
5476
5048
  version: z.ZodLiteral<1>;
5477
5049
  run_id: z.ZodString;
5478
5050
  status: z.ZodEnum<{
5479
- running: "running";
5480
5051
  failed: "failed";
5052
+ running: "running";
5481
5053
  succeeded: "succeeded";
5482
5054
  cancelled: "cancelled";
5483
5055
  queued: "queued";
@@ -5500,11 +5072,10 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5500
5072
  stage_index: z.ZodOptional<z.ZodNumber>;
5501
5073
  stage_total: z.ZodOptional<z.ZodNumber>;
5502
5074
  status: z.ZodEnum<{
5503
- running: "running";
5504
5075
  failed: "failed";
5076
+ running: "running";
5505
5077
  succeeded: "succeeded";
5506
5078
  queued: "queued";
5507
- skipped: "skipped";
5508
5079
  }>;
5509
5080
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5510
5081
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5579,7 +5150,7 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5579
5150
  }, z.core.$strict>>>;
5580
5151
  failure: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5581
5152
  }, z.core.$strict>>>;
5582
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
5153
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
5583
5154
  event_id: z.ZodString;
5584
5155
  run_id: z.ZodString;
5585
5156
  timestamp: z.ZodString;
@@ -5716,14 +5287,12 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5716
5287
  timestamp: z.ZodString;
5717
5288
  type: z.ZodLiteral<"readiness.updated">;
5718
5289
  preparation: z.ZodString;
5719
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5290
+ readiness: z.ZodObject<{
5720
5291
  kind: z.ZodLiteral<"interf-readiness-state">;
5721
5292
  version: z.ZodLiteral<1>;
5722
5293
  generated_at: z.ZodString;
5723
5294
  preparation: z.ZodString;
5724
5295
  status: z.ZodEnum<{
5725
- stale: "stale";
5726
- failed: "failed";
5727
5296
  "not-configured": "not-configured";
5728
5297
  "not-built": "not-built";
5729
5298
  building: "building";
@@ -5731,6 +5300,8 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5731
5300
  checking: "checking";
5732
5301
  ready: "ready";
5733
5302
  "not-ready": "not-ready";
5303
+ stale: "stale";
5304
+ failed: "failed";
5734
5305
  }>;
5735
5306
  ready: z.ZodBoolean;
5736
5307
  summary: z.ZodString;
@@ -5749,8 +5320,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5749
5320
  }>;
5750
5321
  ok: z.ZodBoolean;
5751
5322
  status: z.ZodOptional<z.ZodEnum<{
5752
- stale: "stale";
5753
- failed: "failed";
5754
5323
  "not-configured": "not-configured";
5755
5324
  "not-built": "not-built";
5756
5325
  building: "building";
@@ -5758,6 +5327,8 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5758
5327
  checking: "checking";
5759
5328
  ready: "ready";
5760
5329
  "not-ready": "not-ready";
5330
+ stale: "stale";
5331
+ failed: "failed";
5761
5332
  }>>;
5762
5333
  summary: z.ZodString;
5763
5334
  detail: z.ZodOptional<z.ZodString>;
@@ -5799,8 +5370,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5799
5370
  }>;
5800
5371
  ok: z.ZodBoolean;
5801
5372
  status: z.ZodOptional<z.ZodEnum<{
5802
- stale: "stale";
5803
- failed: "failed";
5804
5373
  "not-configured": "not-configured";
5805
5374
  "not-built": "not-built";
5806
5375
  building: "building";
@@ -5808,14 +5377,16 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5808
5377
  checking: "checking";
5809
5378
  ready: "ready";
5810
5379
  "not-ready": "not-ready";
5380
+ stale: "stale";
5381
+ failed: "failed";
5811
5382
  }>>;
5812
5383
  summary: z.ZodString;
5813
5384
  detail: z.ZodOptional<z.ZodString>;
5814
5385
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5815
5386
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5816
5387
  }, z.core.$strict>>>;
5817
- }, z.core.$strict>>;
5818
- }, z.core.$strict>], "type">>>>;
5388
+ }, z.core.$strict>;
5389
+ }, z.core.$strict>], "type">>>;
5819
5390
  latest_proof: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5820
5391
  id: z.ZodString;
5821
5392
  run_id: z.ZodString;
@@ -5843,14 +5414,12 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5843
5414
  detail: z.ZodOptional<z.ZodString>;
5844
5415
  }, z.core.$strict>>>;
5845
5416
  }, z.core.$strict>>>;
5846
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5417
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5847
5418
  kind: z.ZodLiteral<"interf-readiness-state">;
5848
5419
  version: z.ZodLiteral<1>;
5849
5420
  generated_at: z.ZodString;
5850
5421
  preparation: z.ZodString;
5851
5422
  status: z.ZodEnum<{
5852
- stale: "stale";
5853
- failed: "failed";
5854
5423
  "not-configured": "not-configured";
5855
5424
  "not-built": "not-built";
5856
5425
  building: "building";
@@ -5858,6 +5427,8 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5858
5427
  checking: "checking";
5859
5428
  ready: "ready";
5860
5429
  "not-ready": "not-ready";
5430
+ stale: "stale";
5431
+ failed: "failed";
5861
5432
  }>;
5862
5433
  ready: z.ZodBoolean;
5863
5434
  summary: z.ZodString;
@@ -5876,8 +5447,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5876
5447
  }>;
5877
5448
  ok: z.ZodBoolean;
5878
5449
  status: z.ZodOptional<z.ZodEnum<{
5879
- stale: "stale";
5880
- failed: "failed";
5881
5450
  "not-configured": "not-configured";
5882
5451
  "not-built": "not-built";
5883
5452
  building: "building";
@@ -5885,6 +5454,8 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5885
5454
  checking: "checking";
5886
5455
  ready: "ready";
5887
5456
  "not-ready": "not-ready";
5457
+ stale: "stale";
5458
+ failed: "failed";
5888
5459
  }>>;
5889
5460
  summary: z.ZodString;
5890
5461
  detail: z.ZodOptional<z.ZodString>;
@@ -5926,8 +5497,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5926
5497
  }>;
5927
5498
  ok: z.ZodBoolean;
5928
5499
  status: z.ZodOptional<z.ZodEnum<{
5929
- stale: "stale";
5930
- failed: "failed";
5931
5500
  "not-configured": "not-configured";
5932
5501
  "not-built": "not-built";
5933
5502
  building: "building";
@@ -5935,14 +5504,16 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5935
5504
  checking: "checking";
5936
5505
  ready: "ready";
5937
5506
  "not-ready": "not-ready";
5507
+ stale: "stale";
5508
+ failed: "failed";
5938
5509
  }>>;
5939
5510
  summary: z.ZodString;
5940
5511
  detail: z.ZodOptional<z.ZodString>;
5941
5512
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5942
5513
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5943
5514
  }, z.core.$strict>>>;
5944
- }, z.core.$strict>>>>;
5945
- }, z.core.$strict>>;
5515
+ }, z.core.$strict>>>;
5516
+ }, z.core.$strict>;
5946
5517
  }, z.core.$strict>>;
5947
5518
  }, z.core.$strict>;
5948
5519
  export declare const LocalJobRunListResponseSchema: z.ZodObject<{
@@ -5952,15 +5523,15 @@ export declare const LocalJobRunListResponseSchema: z.ZodObject<{
5952
5523
  run_id: z.ZodString;
5953
5524
  job_type: z.ZodEnum<{
5954
5525
  compile: "compile";
5526
+ "method-authoring": "method-authoring";
5527
+ "method-improvement": "method-improvement";
5955
5528
  "preparation-setup": "preparation-setup";
5956
5529
  test: "test";
5957
5530
  "readiness-check-draft": "readiness-check-draft";
5958
- "method-authoring": "method-authoring";
5959
- "method-improvement": "method-improvement";
5960
5531
  }>;
5961
5532
  status: z.ZodEnum<{
5962
- running: "running";
5963
5533
  failed: "failed";
5534
+ running: "running";
5964
5535
  succeeded: "succeeded";
5965
5536
  cancelled: "cancelled";
5966
5537
  queued: "queued";
@@ -5982,8 +5553,8 @@ export declare const LocalJobRunListResponseSchema: z.ZodObject<{
5982
5553
  id: z.ZodString;
5983
5554
  label: z.ZodString;
5984
5555
  status: z.ZodEnum<{
5985
- running: "running";
5986
5556
  failed: "failed";
5557
+ running: "running";
5987
5558
  succeeded: "succeeded";
5988
5559
  cancelled: "cancelled";
5989
5560
  queued: "queued";
@@ -6034,8 +5605,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6034
5605
  test_runs: z.ZodArray<z.ZodObject<{
6035
5606
  run_id: z.ZodString;
6036
5607
  status: z.ZodEnum<{
6037
- running: "running";
6038
5608
  failed: "failed";
5609
+ running: "running";
6039
5610
  succeeded: "succeeded";
6040
5611
  cancelled: "cancelled";
6041
5612
  queued: "queued";
@@ -6051,7 +5622,7 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6051
5622
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6052
5623
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6053
5624
  comparison: z.ZodNullable<z.ZodObject<{
6054
- kind: z.ZodLiteral<"interf-test-run">;
5625
+ kind: z.ZodLiteral<"interf-readiness-check-run">;
6055
5626
  version: z.ZodLiteral<1>;
6056
5627
  generated_at: z.ZodString;
6057
5628
  mode: z.ZodEnum<{
@@ -6061,9 +5632,9 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6061
5632
  }>;
6062
5633
  source_path: z.ZodString;
6063
5634
  checks_fingerprint: z.ZodOptional<z.ZodString>;
6064
- dataset: z.ZodObject<{
5635
+ preparation: z.ZodObject<{
6065
5636
  name: z.ZodString;
6066
- compiled_path: z.ZodNullable<z.ZodString>;
5637
+ portable_context_path: z.ZodNullable<z.ZodString>;
6067
5638
  }, z.core.$strip>;
6068
5639
  raw: z.ZodNullable<z.ZodObject<{
6069
5640
  label: z.ZodString;
@@ -6080,7 +5651,7 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6080
5651
  }>;
6081
5652
  name: z.ZodString;
6082
5653
  path: z.ZodString;
6083
- workflow: z.ZodString;
5654
+ method: z.ZodString;
6084
5655
  }, z.core.$strip>;
6085
5656
  }, z.core.$strip>>;
6086
5657
  compiled: z.ZodNullable<z.ZodObject<{
@@ -6098,7 +5669,7 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6098
5669
  }>;
6099
5670
  name: z.ZodString;
6100
5671
  path: z.ZodString;
6101
- workflow: z.ZodString;
5672
+ method: z.ZodString;
6102
5673
  }, z.core.$strip>;
6103
5674
  }, z.core.$strip>>;
6104
5675
  summary: z.ZodObject<{
@@ -6107,14 +5678,12 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6107
5678
  pass_rate_delta: z.ZodNullable<z.ZodNumber>;
6108
5679
  }, z.core.$strip>;
6109
5680
  }, z.core.$strip>>;
6110
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5681
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
6111
5682
  kind: z.ZodLiteral<"interf-readiness-state">;
6112
5683
  version: z.ZodLiteral<1>;
6113
5684
  generated_at: z.ZodString;
6114
5685
  preparation: z.ZodString;
6115
5686
  status: z.ZodEnum<{
6116
- stale: "stale";
6117
- failed: "failed";
6118
5687
  "not-configured": "not-configured";
6119
5688
  "not-built": "not-built";
6120
5689
  building: "building";
@@ -6122,6 +5691,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6122
5691
  checking: "checking";
6123
5692
  ready: "ready";
6124
5693
  "not-ready": "not-ready";
5694
+ stale: "stale";
5695
+ failed: "failed";
6125
5696
  }>;
6126
5697
  ready: z.ZodBoolean;
6127
5698
  summary: z.ZodString;
@@ -6140,8 +5711,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6140
5711
  }>;
6141
5712
  ok: z.ZodBoolean;
6142
5713
  status: z.ZodOptional<z.ZodEnum<{
6143
- stale: "stale";
6144
- failed: "failed";
6145
5714
  "not-configured": "not-configured";
6146
5715
  "not-built": "not-built";
6147
5716
  building: "building";
@@ -6149,6 +5718,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6149
5718
  checking: "checking";
6150
5719
  ready: "ready";
6151
5720
  "not-ready": "not-ready";
5721
+ stale: "stale";
5722
+ failed: "failed";
6152
5723
  }>>;
6153
5724
  summary: z.ZodString;
6154
5725
  detail: z.ZodOptional<z.ZodString>;
@@ -6190,8 +5761,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6190
5761
  }>;
6191
5762
  ok: z.ZodBoolean;
6192
5763
  status: z.ZodOptional<z.ZodEnum<{
6193
- stale: "stale";
6194
- failed: "failed";
6195
5764
  "not-configured": "not-configured";
6196
5765
  "not-built": "not-built";
6197
5766
  building: "building";
@@ -6199,14 +5768,16 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6199
5768
  checking: "checking";
6200
5769
  ready: "ready";
6201
5770
  "not-ready": "not-ready";
5771
+ stale: "stale";
5772
+ failed: "failed";
6202
5773
  }>>;
6203
5774
  summary: z.ZodString;
6204
5775
  detail: z.ZodOptional<z.ZodString>;
6205
5776
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6206
5777
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6207
5778
  }, z.core.$strict>>>;
6208
- }, z.core.$strict>>>>;
6209
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
5779
+ }, z.core.$strict>>>;
5780
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
6210
5781
  event_id: z.ZodString;
6211
5782
  run_id: z.ZodString;
6212
5783
  timestamp: z.ZodString;
@@ -6343,14 +5914,12 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6343
5914
  timestamp: z.ZodString;
6344
5915
  type: z.ZodLiteral<"readiness.updated">;
6345
5916
  preparation: z.ZodString;
6346
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5917
+ readiness: z.ZodObject<{
6347
5918
  kind: z.ZodLiteral<"interf-readiness-state">;
6348
5919
  version: z.ZodLiteral<1>;
6349
5920
  generated_at: z.ZodString;
6350
5921
  preparation: z.ZodString;
6351
5922
  status: z.ZodEnum<{
6352
- stale: "stale";
6353
- failed: "failed";
6354
5923
  "not-configured": "not-configured";
6355
5924
  "not-built": "not-built";
6356
5925
  building: "building";
@@ -6358,6 +5927,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6358
5927
  checking: "checking";
6359
5928
  ready: "ready";
6360
5929
  "not-ready": "not-ready";
5930
+ stale: "stale";
5931
+ failed: "failed";
6361
5932
  }>;
6362
5933
  ready: z.ZodBoolean;
6363
5934
  summary: z.ZodString;
@@ -6376,8 +5947,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6376
5947
  }>;
6377
5948
  ok: z.ZodBoolean;
6378
5949
  status: z.ZodOptional<z.ZodEnum<{
6379
- stale: "stale";
6380
- failed: "failed";
6381
5950
  "not-configured": "not-configured";
6382
5951
  "not-built": "not-built";
6383
5952
  building: "building";
@@ -6385,6 +5954,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6385
5954
  checking: "checking";
6386
5955
  ready: "ready";
6387
5956
  "not-ready": "not-ready";
5957
+ stale: "stale";
5958
+ failed: "failed";
6388
5959
  }>>;
6389
5960
  summary: z.ZodString;
6390
5961
  detail: z.ZodOptional<z.ZodString>;
@@ -6426,8 +5997,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6426
5997
  }>;
6427
5998
  ok: z.ZodBoolean;
6428
5999
  status: z.ZodOptional<z.ZodEnum<{
6429
- stale: "stale";
6430
- failed: "failed";
6431
6000
  "not-configured": "not-configured";
6432
6001
  "not-built": "not-built";
6433
6002
  building: "building";
@@ -6435,35 +6004,37 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6435
6004
  checking: "checking";
6436
6005
  ready: "ready";
6437
6006
  "not-ready": "not-ready";
6007
+ stale: "stale";
6008
+ failed: "failed";
6438
6009
  }>>;
6439
6010
  summary: z.ZodString;
6440
6011
  detail: z.ZodOptional<z.ZodString>;
6441
6012
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6442
6013
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6443
6014
  }, z.core.$strict>>>;
6444
- }, z.core.$strict>>;
6445
- }, z.core.$strict>], "type">>>>;
6015
+ }, z.core.$strict>;
6016
+ }, z.core.$strict>], "type">>>;
6446
6017
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6447
6018
  }, z.core.$strict>>;
6448
6019
  }, z.core.$strict>;
6449
6020
  export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6450
- runs: z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6021
+ runs: z.ZodArray<z.ZodObject<{
6451
6022
  kind: z.ZodLiteral<"interf-run-observability">;
6452
6023
  version: z.ZodLiteral<1>;
6453
6024
  run_id: z.ZodString;
6454
6025
  run_type: z.ZodEnum<{
6455
6026
  compile: "compile";
6027
+ "method-authoring": "method-authoring";
6028
+ "method-improvement": "method-improvement";
6456
6029
  "preparation-setup": "preparation-setup";
6457
6030
  test: "test";
6458
6031
  "readiness-check-draft": "readiness-check-draft";
6459
- "method-authoring": "method-authoring";
6460
- "method-improvement": "method-improvement";
6461
6032
  job: "job";
6462
6033
  }>;
6463
6034
  title: z.ZodString;
6464
6035
  status: z.ZodEnum<{
6465
- running: "running";
6466
6036
  failed: "failed";
6037
+ running: "running";
6467
6038
  succeeded: "succeeded";
6468
6039
  cancelled: "cancelled";
6469
6040
  queued: "queued";
@@ -6514,14 +6085,12 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6514
6085
  ok: z.ZodBoolean;
6515
6086
  detail: z.ZodOptional<z.ZodString>;
6516
6087
  }, z.core.$strict>>>;
6517
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6088
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
6518
6089
  kind: z.ZodLiteral<"interf-readiness-state">;
6519
6090
  version: z.ZodLiteral<1>;
6520
6091
  generated_at: z.ZodString;
6521
6092
  preparation: z.ZodString;
6522
6093
  status: z.ZodEnum<{
6523
- stale: "stale";
6524
- failed: "failed";
6525
6094
  "not-configured": "not-configured";
6526
6095
  "not-built": "not-built";
6527
6096
  building: "building";
@@ -6529,6 +6098,8 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6529
6098
  checking: "checking";
6530
6099
  ready: "ready";
6531
6100
  "not-ready": "not-ready";
6101
+ stale: "stale";
6102
+ failed: "failed";
6532
6103
  }>;
6533
6104
  ready: z.ZodBoolean;
6534
6105
  summary: z.ZodString;
@@ -6547,8 +6118,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6547
6118
  }>;
6548
6119
  ok: z.ZodBoolean;
6549
6120
  status: z.ZodOptional<z.ZodEnum<{
6550
- stale: "stale";
6551
- failed: "failed";
6552
6121
  "not-configured": "not-configured";
6553
6122
  "not-built": "not-built";
6554
6123
  building: "building";
@@ -6556,6 +6125,8 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6556
6125
  checking: "checking";
6557
6126
  ready: "ready";
6558
6127
  "not-ready": "not-ready";
6128
+ stale: "stale";
6129
+ failed: "failed";
6559
6130
  }>>;
6560
6131
  summary: z.ZodString;
6561
6132
  detail: z.ZodOptional<z.ZodString>;
@@ -6597,8 +6168,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6597
6168
  }>;
6598
6169
  ok: z.ZodBoolean;
6599
6170
  status: z.ZodOptional<z.ZodEnum<{
6600
- stale: "stale";
6601
- failed: "failed";
6602
6171
  "not-configured": "not-configured";
6603
6172
  "not-built": "not-built";
6604
6173
  building: "building";
@@ -6606,25 +6175,27 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6606
6175
  checking: "checking";
6607
6176
  ready: "ready";
6608
6177
  "not-ready": "not-ready";
6178
+ stale: "stale";
6179
+ failed: "failed";
6609
6180
  }>>;
6610
6181
  summary: z.ZodString;
6611
6182
  detail: z.ZodOptional<z.ZodString>;
6612
6183
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6613
6184
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6614
6185
  }, z.core.$strict>>>;
6615
- }, z.core.$strict>>>>;
6186
+ }, z.core.$strict>>>;
6616
6187
  trace: z.ZodObject<{
6617
6188
  run: z.ZodObject<{
6618
6189
  runId: z.ZodString;
6619
6190
  status: z.ZodEnum<{
6620
- running: "running";
6621
6191
  failed: "failed";
6192
+ running: "running";
6622
6193
  pending: "pending";
6623
6194
  completed: "completed";
6624
6195
  cancelled: "cancelled";
6625
6196
  }>;
6626
6197
  deploymentId: z.ZodString;
6627
- workflowName: z.ZodString;
6198
+ methodName: z.ZodString;
6628
6199
  specVersion: z.ZodLiteral<1>;
6629
6200
  executionContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6630
6201
  input: z.ZodUnknown;
@@ -6675,7 +6246,7 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6675
6246
  data: z.ZodOptional<z.ZodUnknown>;
6676
6247
  }, z.core.$strict>>>;
6677
6248
  }, z.core.$strict>;
6678
- }, z.core.$strict>>>;
6249
+ }, z.core.$strict>>;
6679
6250
  }, z.core.$strict>;
6680
6251
  export declare const ActionProposalListResponseSchema: z.ZodObject<{
6681
6252
  action_proposals: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -6757,7 +6328,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6757
6328
  }>>>;
6758
6329
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6759
6330
  action_type: z.ZodLiteral<"compile">;
6760
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6331
+ request: z.ZodObject<{
6761
6332
  preparation: z.ZodString;
6762
6333
  method: z.ZodOptional<z.ZodString>;
6763
6334
  max_attempts: z.ZodOptional<z.ZodNumber>;
@@ -6766,7 +6337,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6766
6337
  "on-failure": "on-failure";
6767
6338
  always: "always";
6768
6339
  }>>;
6769
- }, z.core.$strict>>;
6340
+ }, z.core.$strict>;
6770
6341
  }, z.core.$strict>, z.ZodObject<{
6771
6342
  kind: z.ZodLiteral<"interf-action-proposal">;
6772
6343
  version: z.ZodLiteral<1>;
@@ -6806,14 +6377,13 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6806
6377
  }>>>;
6807
6378
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6808
6379
  action_type: z.ZodLiteral<"preparation-setup">;
6809
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6380
+ request: z.ZodObject<{
6810
6381
  preparation: z.ZodObject<{
6811
6382
  id: z.ZodOptional<z.ZodString>;
6812
6383
  name: z.ZodString;
6813
6384
  path: z.ZodString;
6814
6385
  about: z.ZodOptional<z.ZodString>;
6815
6386
  method: z.ZodOptional<z.ZodString>;
6816
- workflow: z.ZodOptional<z.ZodString>;
6817
6387
  max_attempts: z.ZodOptional<z.ZodNumber>;
6818
6388
  max_loops: z.ZodOptional<z.ZodNumber>;
6819
6389
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -6830,7 +6400,8 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6830
6400
  strictness: z.ZodOptional<z.ZodString>;
6831
6401
  }, z.core.$strict>>>;
6832
6402
  }, z.core.$strict>;
6833
- }, z.core.$strict>>;
6403
+ prepare_after_setup: z.ZodDefault<z.ZodBoolean>;
6404
+ }, z.core.$strict>;
6834
6405
  }, z.core.$strict>, z.ZodObject<{
6835
6406
  kind: z.ZodLiteral<"interf-action-proposal">;
6836
6407
  version: z.ZodLiteral<1>;
@@ -6870,14 +6441,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6870
6441
  }>>>;
6871
6442
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6872
6443
  action_type: z.ZodLiteral<"test">;
6873
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6444
+ request: z.ZodObject<{
6874
6445
  preparation: z.ZodString;
6875
6446
  mode: z.ZodDefault<z.ZodEnum<{
6876
6447
  compiled: "compiled";
6877
6448
  raw: "raw";
6878
6449
  both: "both";
6879
6450
  }>>;
6880
- }, z.core.$strict>>;
6451
+ }, z.core.$strict>;
6881
6452
  }, z.core.$strict>, z.ZodObject<{
6882
6453
  kind: z.ZodLiteral<"interf-action-proposal">;
6883
6454
  version: z.ZodLiteral<1>;
@@ -6917,12 +6488,12 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6917
6488
  }>>>;
6918
6489
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6919
6490
  action_type: z.ZodLiteral<"readiness-check-draft">;
6920
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6491
+ request: z.ZodObject<{
6921
6492
  preparation: z.ZodString;
6922
6493
  source_folder_path: z.ZodString;
6923
6494
  about: z.ZodOptional<z.ZodString>;
6924
6495
  target_count: z.ZodDefault<z.ZodNumber>;
6925
- }, z.core.$strict>>;
6496
+ }, z.core.$strict>;
6926
6497
  }, z.core.$strict>, z.ZodObject<{
6927
6498
  kind: z.ZodLiteral<"interf-action-proposal">;
6928
6499
  version: z.ZodLiteral<1>;
@@ -6962,7 +6533,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6962
6533
  }>>>;
6963
6534
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6964
6535
  action_type: z.ZodLiteral<"method-authoring">;
6965
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6536
+ request: z.ZodObject<{
6966
6537
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6967
6538
  source_folder_path: z.ZodString;
6968
6539
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -6984,7 +6555,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6984
6555
  }, z.core.$strip>>;
6985
6556
  strictness: z.ZodOptional<z.ZodString>;
6986
6557
  }, z.core.$strict>>>;
6987
- }, z.core.$strict>>;
6558
+ }, z.core.$strict>;
6988
6559
  }, z.core.$strict>, z.ZodObject<{
6989
6560
  kind: z.ZodLiteral<"interf-action-proposal">;
6990
6561
  version: z.ZodLiteral<1>;
@@ -7024,7 +6595,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
7024
6595
  }>>>;
7025
6596
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7026
6597
  action_type: z.ZodLiteral<"method-improvement">;
7027
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6598
+ request: z.ZodObject<{
7028
6599
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7029
6600
  source_folder_path: z.ZodString;
7030
6601
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -7046,7 +6617,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
7046
6617
  }, z.core.$strip>>;
7047
6618
  strictness: z.ZodOptional<z.ZodString>;
7048
6619
  }, z.core.$strict>>>;
7049
- }, z.core.$strict>>;
6620
+ }, z.core.$strict>;
7050
6621
  }, z.core.$strict>], "action_type">>;
7051
6622
  }, z.core.$strict>;
7052
6623
  export declare const PortableContextListResponseSchema: z.ZodObject<{
@@ -7054,14 +6625,12 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7054
6625
  preparation: z.ZodString;
7055
6626
  path: z.ZodString;
7056
6627
  exists: z.ZodBoolean;
7057
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6628
+ readiness: z.ZodObject<{
7058
6629
  kind: z.ZodLiteral<"interf-readiness-state">;
7059
6630
  version: z.ZodLiteral<1>;
7060
6631
  generated_at: z.ZodString;
7061
6632
  preparation: z.ZodString;
7062
6633
  status: z.ZodEnum<{
7063
- stale: "stale";
7064
- failed: "failed";
7065
6634
  "not-configured": "not-configured";
7066
6635
  "not-built": "not-built";
7067
6636
  building: "building";
@@ -7069,6 +6638,8 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7069
6638
  checking: "checking";
7070
6639
  ready: "ready";
7071
6640
  "not-ready": "not-ready";
6641
+ stale: "stale";
6642
+ failed: "failed";
7072
6643
  }>;
7073
6644
  ready: z.ZodBoolean;
7074
6645
  summary: z.ZodString;
@@ -7087,8 +6658,6 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7087
6658
  }>;
7088
6659
  ok: z.ZodBoolean;
7089
6660
  status: z.ZodOptional<z.ZodEnum<{
7090
- stale: "stale";
7091
- failed: "failed";
7092
6661
  "not-configured": "not-configured";
7093
6662
  "not-built": "not-built";
7094
6663
  building: "building";
@@ -7096,6 +6665,8 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7096
6665
  checking: "checking";
7097
6666
  ready: "ready";
7098
6667
  "not-ready": "not-ready";
6668
+ stale: "stale";
6669
+ failed: "failed";
7099
6670
  }>>;
7100
6671
  summary: z.ZodString;
7101
6672
  detail: z.ZodOptional<z.ZodString>;
@@ -7137,8 +6708,6 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7137
6708
  }>;
7138
6709
  ok: z.ZodBoolean;
7139
6710
  status: z.ZodOptional<z.ZodEnum<{
7140
- stale: "stale";
7141
- failed: "failed";
7142
6711
  "not-configured": "not-configured";
7143
6712
  "not-built": "not-built";
7144
6713
  building: "building";
@@ -7146,13 +6715,15 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7146
6715
  checking: "checking";
7147
6716
  ready: "ready";
7148
6717
  "not-ready": "not-ready";
6718
+ stale: "stale";
6719
+ failed: "failed";
7149
6720
  }>>;
7150
6721
  summary: z.ZodString;
7151
6722
  detail: z.ZodOptional<z.ZodString>;
7152
6723
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7153
6724
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7154
6725
  }, z.core.$strict>>>;
7155
- }, z.core.$strict>>;
6726
+ }, z.core.$strict>;
7156
6727
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7157
6728
  latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7158
6729
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7172,14 +6743,12 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7172
6743
  }, z.core.$strict>>;
7173
6744
  }, z.core.$strict>;
7174
6745
  export declare const ReadinessListResponseSchema: z.ZodObject<{
7175
- readiness: z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6746
+ readiness: z.ZodArray<z.ZodObject<{
7176
6747
  kind: z.ZodLiteral<"interf-readiness-state">;
7177
6748
  version: z.ZodLiteral<1>;
7178
6749
  generated_at: z.ZodString;
7179
6750
  preparation: z.ZodString;
7180
6751
  status: z.ZodEnum<{
7181
- stale: "stale";
7182
- failed: "failed";
7183
6752
  "not-configured": "not-configured";
7184
6753
  "not-built": "not-built";
7185
6754
  building: "building";
@@ -7187,6 +6756,8 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7187
6756
  checking: "checking";
7188
6757
  ready: "ready";
7189
6758
  "not-ready": "not-ready";
6759
+ stale: "stale";
6760
+ failed: "failed";
7190
6761
  }>;
7191
6762
  ready: z.ZodBoolean;
7192
6763
  summary: z.ZodString;
@@ -7205,8 +6776,6 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7205
6776
  }>;
7206
6777
  ok: z.ZodBoolean;
7207
6778
  status: z.ZodOptional<z.ZodEnum<{
7208
- stale: "stale";
7209
- failed: "failed";
7210
6779
  "not-configured": "not-configured";
7211
6780
  "not-built": "not-built";
7212
6781
  building: "building";
@@ -7214,6 +6783,8 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7214
6783
  checking: "checking";
7215
6784
  ready: "ready";
7216
6785
  "not-ready": "not-ready";
6786
+ stale: "stale";
6787
+ failed: "failed";
7217
6788
  }>>;
7218
6789
  summary: z.ZodString;
7219
6790
  detail: z.ZodOptional<z.ZodString>;
@@ -7255,8 +6826,6 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7255
6826
  }>;
7256
6827
  ok: z.ZodBoolean;
7257
6828
  status: z.ZodOptional<z.ZodEnum<{
7258
- stale: "stale";
7259
- failed: "failed";
7260
6829
  "not-configured": "not-configured";
7261
6830
  "not-built": "not-built";
7262
6831
  building: "building";
@@ -7264,13 +6833,15 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7264
6833
  checking: "checking";
7265
6834
  ready: "ready";
7266
6835
  "not-ready": "not-ready";
6836
+ stale: "stale";
6837
+ failed: "failed";
7267
6838
  }>>;
7268
6839
  summary: z.ZodString;
7269
6840
  detail: z.ZodOptional<z.ZodString>;
7270
6841
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7271
6842
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7272
6843
  }, z.core.$strict>>>;
7273
- }, z.core.$strict>>>;
6844
+ }, z.core.$strict>>;
7274
6845
  }, z.core.$strict>;
7275
6846
  export declare const SourceFileListResponseSchema: z.ZodObject<{
7276
6847
  source_files: z.ZodArray<z.ZodObject<{
@@ -7293,12 +6864,10 @@ export declare const WorkspaceFileListResponseSchema: z.ZodObject<{
7293
6864
  export type LocalServiceConfig = z.infer<typeof LocalServiceConfigSchema>;
7294
6865
  export type LocalServiceHealth = z.infer<typeof LocalServiceHealthSchema>;
7295
6866
  export type LocalServiceInstancePointer = z.infer<typeof LocalServiceInstancePointerSchema>;
7296
- export type DatasetResource = z.infer<typeof DatasetResourceSchema>;
7297
6867
  export type PreparationReadinessState = z.infer<typeof PreparationReadinessStateSchema>;
7298
6868
  export type PortableContextMapping = z.infer<typeof PortableContextMappingSchema>;
7299
6869
  export type PreparationRunLinkage = z.infer<typeof PreparationRunLinkageSchema>;
7300
6870
  export type PreparationResource = z.infer<typeof PreparationResourceSchema>;
7301
- export type WorkflowPackageResource = z.infer<typeof WorkflowPackageResourceSchema>;
7302
6871
  export type MethodResource = z.infer<typeof MethodResourceSchema>;
7303
6872
  export type SourceFileResource = z.infer<typeof SourceFileResourceSchema>;
7304
6873
  export type WorkspaceFileResource = z.infer<typeof WorkspaceFileResourceSchema>;
@@ -7314,11 +6883,10 @@ export type LocalJobEventType = z.infer<typeof LocalJobEventTypeSchema>;
7314
6883
  export type LocalJobEvent = z.infer<typeof LocalJobEventSchema>;
7315
6884
  export type LocalJobRunCreateRequest = z.infer<typeof LocalJobRunCreateRequestSchema>;
7316
6885
  export type PreparationSetupCreateRequest = z.infer<typeof PreparationSetupCreateRequestSchema>;
7317
- export type DatasetSetupCreateRequest = z.infer<typeof DatasetSetupCreateRequestSchema>;
7318
6886
  export type ReadinessCheckDraftCreateRequest = z.infer<typeof ReadinessCheckDraftCreateRequestSchema>;
7319
6887
  export type ReadinessCheckDraftResult = z.infer<typeof ReadinessCheckDraftResultSchema>;
7320
- export type WorkflowAuthoringCreateRequest = z.infer<typeof WorkflowAuthoringCreateRequestSchema>;
7321
- export type WorkflowAuthoringResult = z.infer<typeof WorkflowAuthoringResultSchema>;
6888
+ export type MethodAuthoringCreateRequest = z.infer<typeof MethodAuthoringCreateRequestSchema>;
6889
+ export type MethodAuthoringResult = z.infer<typeof MethodAuthoringResultSchema>;
7322
6890
  export type LocalJobEventAppendRequest = z.infer<typeof LocalJobEventAppendRequestSchema>;
7323
6891
  export type LocalJobRunResource = z.infer<typeof LocalJobRunResourceSchema>;
7324
6892
  export type TestRunStatus = z.infer<typeof TestRunStatusSchema>;
@@ -7340,9 +6908,7 @@ export type OpenPathRequest = z.infer<typeof OpenPathRequestSchema>;
7340
6908
  export type OpenPathResponse = z.infer<typeof OpenPathResponseSchema>;
7341
6909
  export type LocalServiceDiscovery = z.infer<typeof LocalServiceDiscoverySchema>;
7342
6910
  export type LocalServiceResource = z.infer<typeof LocalServiceResourceSchema>;
7343
- export type DatasetListResponse = z.infer<typeof DatasetListResponseSchema>;
7344
6911
  export type PreparationListResponse = z.infer<typeof PreparationListResponseSchema>;
7345
- export type WorkflowPackageListResponse = z.infer<typeof WorkflowPackageListResponseSchema>;
7346
6912
  export type MethodListResponse = z.infer<typeof MethodListResponseSchema>;
7347
6913
  export type CompileRunListResponse = z.infer<typeof CompileRunListResponseSchema>;
7348
6914
  export type LocalJobRunListResponse = z.infer<typeof LocalJobRunListResponseSchema>;