@interf/compiler 0.9.1 → 0.9.3

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 (250) 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/13g~4mamjft.c.css → dist/compiler-ui/_next/static/chunks/0c9mu7yldxyyg.css} +1 -1
  44. package/{apps/compiler-ui/.next/static/chunks/0fgt_8knmicoz.js → dist/compiler-ui/_next/static/chunks/15mks7ry_cupt.js} +15 -21
  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 +0 -1
  114. package/dist/packages/local-service/action-values.js +0 -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 +536 -974
  120. package/dist/packages/local-service/lib/schema.js +43 -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 +302 -880
  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/builtin-workflows/interf/improve/SKILL.md +0 -18
  192. package/dist/cli/commands/create-workflow-wizard.d.ts +0 -76
  193. package/dist/packages/project-model/compiled-paths.d.ts +0 -1
  194. package/dist/packages/project-model/compiled-paths.js +0 -1
  195. package/dist/packages/project-model/compiled-raw.d.ts +0 -1
  196. package/dist/packages/project-model/compiled-raw.js +0 -1
  197. package/dist/packages/project-model/compiled-reset.d.ts +0 -1
  198. package/dist/packages/project-model/compiled-reset.js +0 -1
  199. package/dist/packages/shared/index.d.ts +0 -7
  200. package/dist/packages/shared/index.js +0 -7
  201. package/dist/packages/shared/util.d.ts +0 -3
  202. package/dist/packages/shared/util.js +0 -3
  203. package/dist/packages/testing/test-matrices.d.ts +0 -90
  204. package/dist/packages/testing/test-matrices.js +0 -96
  205. package/dist/packages/workflow-authoring/index.d.ts +0 -4
  206. package/dist/packages/workflow-authoring/index.js +0 -4
  207. package/dist/packages/workflow-authoring/workflow-authoring.d.ts +0 -24
  208. package/dist/packages/workflow-authoring/workflow-authoring.js +0 -82
  209. package/dist/packages/workflow-authoring/workflow-edit-session.d.ts +0 -18
  210. package/dist/packages/workflow-authoring/workflow-edit-session.js +0 -91
  211. package/dist/packages/workflow-authoring/workflow-improvement.d.ts +0 -23
  212. package/dist/packages/workflow-package/index.d.ts +0 -11
  213. package/dist/packages/workflow-package/index.js +0 -11
  214. package/dist/packages/workflow-package/interf-workflow-package.d.ts +0 -31
  215. package/dist/packages/workflow-package/local-workflows.d.ts +0 -64
  216. package/dist/packages/workflow-package/local-workflows.js +0 -457
  217. package/dist/packages/workflow-package/workflow-definitions.d.ts +0 -82
  218. package/dist/packages/workflow-package/workflow-definitions.js +0 -211
  219. package/dist/packages/workflow-package/workflow-review-paths.d.ts +0 -10
  220. /package/{builtin-workflows/interf → builtin-methods/interf-default}/compile/stages/shape/SKILL.md +0 -0
  221. /package/{builtin-workflows/interf → builtin-methods/interf-default}/compile/stages/structure/SKILL.md +0 -0
  222. /package/{builtin-workflows/interf → builtin-methods/interf-default}/compile/stages/summarize/SKILL.md +0 -0
  223. /package/{builtin-workflows/interf → builtin-methods/interf-default}/use/query/SKILL.md +0 -0
  224. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/03~yq9q893hmn.js +0 -0
  225. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/06z~l3kwb891e.js +0 -0
  226. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/08g7lvje.te.u.js +0 -0
  227. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/08m7vf5asqlsm.js +0 -0
  228. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0_i-3_5l9t2qe.js +0 -0
  229. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0b-ywny_j0g~0.js +0 -0
  230. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0b52v41o1gixx.js +0 -0
  231. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0gpzgsv0w.q~m.js +0 -0
  232. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0ilwfezfvu6~-.js +0 -0
  233. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0n51hrfoufc7g.js +0 -0
  234. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0xxmf45eskdt~.css +0 -0
  235. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0y5z3t-z1c8ks.js.map +0 -0
  236. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/14wtz~vq25~qq.js +0 -0
  237. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/turbopack-10e~t1yzi4svj.js +0 -0
  238. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/turbopack-worker-0sjn--fhq~1cg.js +0 -0
  239. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/media/GeistMono_Variable.p.17jn9btb_52pq.woff2 +0 -0
  240. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/media/Geist_Variable-s.p.0-te~ja_gpvcf.woff2 +0 -0
  241. /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/media/worker.102zas1s52_pf.js +0 -0
  242. /package/{apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J → dist/compiler-ui/_next/static/pIZnDsV3Je6hdC3cOsGdK}/_buildManifest.js +0 -0
  243. /package/{apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J → dist/compiler-ui/_next/static/pIZnDsV3Je6hdC3cOsGdK}/_clientMiddlewareManifest.js +0 -0
  244. /package/{apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J → dist/compiler-ui/_next/static/pIZnDsV3Je6hdC3cOsGdK}/_ssgManifest.js +0 -0
  245. /package/dist/packages/compiler/{workflow-primitives.d.ts → method-primitives.d.ts} +0 -0
  246. /package/dist/packages/compiler/{workflow-primitives.js → method-primitives.js} +0 -0
  247. /package/dist/packages/{workflow-authoring/lib/workflow-edit-utils.js → method-authoring/lib/method-edit-utils.js} +0 -0
  248. /package/dist/packages/{workflow-package → method-package}/lib/package-root.d.ts +0 -0
  249. /package/dist/packages/{workflow-package/workflow-stage-policy.d.ts → method-package/method-stage-policy.d.ts} +0 -0
  250. /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,13 @@ 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
+ }, z.core.$strict>;
1273
+ export declare const ReadinessCheckDraftCreateRequestSchema: z.ZodObject<{
1394
1274
  preparation: z.ZodString;
1395
1275
  source_folder_path: z.ZodString;
1396
1276
  about: z.ZodOptional<z.ZodString>;
1397
1277
  target_count: z.ZodDefault<z.ZodNumber>;
1398
- }, z.core.$strict>>;
1278
+ }, z.core.$strict>;
1399
1279
  export declare const ReadinessCheckDraftResultSchema: z.ZodObject<{
1400
1280
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
1401
1281
  id: z.ZodOptional<z.ZodString>;
@@ -1411,7 +1291,7 @@ export declare const ReadinessCheckDraftResultSchema: z.ZodObject<{
1411
1291
  strictness: z.ZodOptional<z.ZodString>;
1412
1292
  }, z.core.$strict>>>;
1413
1293
  }, z.core.$strict>;
1414
- export declare const WorkflowAuthoringCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1294
+ export declare const MethodAuthoringCreateRequestSchema: z.ZodObject<{
1415
1295
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1416
1296
  source_folder_path: z.ZodString;
1417
1297
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -1433,8 +1313,8 @@ export declare const WorkflowAuthoringCreateRequestSchema: z.ZodPipe<z.ZodTransf
1433
1313
  }, z.core.$strip>>;
1434
1314
  strictness: z.ZodOptional<z.ZodString>;
1435
1315
  }, z.core.$strict>>>;
1436
- }, z.core.$strict>>;
1437
- export declare const WorkflowAuthoringResultSchema: z.ZodObject<{
1316
+ }, z.core.$strict>;
1317
+ export declare const MethodAuthoringResultSchema: z.ZodObject<{
1438
1318
  status: z.ZodEnum<{
1439
1319
  updated: "updated";
1440
1320
  "no-change": "no-change";
@@ -1482,15 +1362,15 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
1482
1362
  run_id: z.ZodString;
1483
1363
  job_type: z.ZodEnum<{
1484
1364
  compile: "compile";
1365
+ "method-authoring": "method-authoring";
1366
+ "method-improvement": "method-improvement";
1485
1367
  "preparation-setup": "preparation-setup";
1486
1368
  test: "test";
1487
1369
  "readiness-check-draft": "readiness-check-draft";
1488
- "method-authoring": "method-authoring";
1489
- "method-improvement": "method-improvement";
1490
1370
  }>;
1491
1371
  status: z.ZodEnum<{
1492
- running: "running";
1493
1372
  failed: "failed";
1373
+ running: "running";
1494
1374
  succeeded: "succeeded";
1495
1375
  cancelled: "cancelled";
1496
1376
  queued: "queued";
@@ -1512,8 +1392,8 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
1512
1392
  id: z.ZodString;
1513
1393
  label: z.ZodString;
1514
1394
  status: z.ZodEnum<{
1515
- running: "running";
1516
1395
  failed: "failed";
1396
+ running: "running";
1517
1397
  succeeded: "succeeded";
1518
1398
  cancelled: "cancelled";
1519
1399
  queued: "queued";
@@ -1560,25 +1440,25 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
1560
1440
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1561
1441
  }, z.core.$strict>;
1562
1442
  export declare const TestRunStatusSchema: z.ZodEnum<{
1563
- running: "running";
1564
1443
  failed: "failed";
1444
+ running: "running";
1565
1445
  succeeded: "succeeded";
1566
1446
  cancelled: "cancelled";
1567
1447
  queued: "queued";
1568
1448
  }>;
1569
- export declare const TestRunCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1449
+ export declare const TestRunCreateRequestSchema: z.ZodObject<{
1570
1450
  preparation: z.ZodString;
1571
1451
  mode: z.ZodDefault<z.ZodEnum<{
1572
1452
  compiled: "compiled";
1573
1453
  raw: "raw";
1574
1454
  both: "both";
1575
1455
  }>>;
1576
- }, z.core.$strict>>;
1456
+ }, z.core.$strict>;
1577
1457
  export declare const TestRunResourceSchema: z.ZodObject<{
1578
1458
  run_id: z.ZodString;
1579
1459
  status: z.ZodEnum<{
1580
- running: "running";
1581
1460
  failed: "failed";
1461
+ running: "running";
1582
1462
  succeeded: "succeeded";
1583
1463
  cancelled: "cancelled";
1584
1464
  queued: "queued";
@@ -1594,7 +1474,7 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1594
1474
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1595
1475
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1596
1476
  comparison: z.ZodNullable<z.ZodObject<{
1597
- kind: z.ZodLiteral<"interf-test-run">;
1477
+ kind: z.ZodLiteral<"interf-readiness-check-run">;
1598
1478
  version: z.ZodLiteral<1>;
1599
1479
  generated_at: z.ZodString;
1600
1480
  mode: z.ZodEnum<{
@@ -1604,9 +1484,9 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1604
1484
  }>;
1605
1485
  source_path: z.ZodString;
1606
1486
  checks_fingerprint: z.ZodOptional<z.ZodString>;
1607
- dataset: z.ZodObject<{
1487
+ preparation: z.ZodObject<{
1608
1488
  name: z.ZodString;
1609
- compiled_path: z.ZodNullable<z.ZodString>;
1489
+ portable_context_path: z.ZodNullable<z.ZodString>;
1610
1490
  }, z.core.$strip>;
1611
1491
  raw: z.ZodNullable<z.ZodObject<{
1612
1492
  label: z.ZodString;
@@ -1623,7 +1503,7 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1623
1503
  }>;
1624
1504
  name: z.ZodString;
1625
1505
  path: z.ZodString;
1626
- workflow: z.ZodString;
1506
+ method: z.ZodString;
1627
1507
  }, z.core.$strip>;
1628
1508
  }, z.core.$strip>>;
1629
1509
  compiled: z.ZodNullable<z.ZodObject<{
@@ -1641,7 +1521,7 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1641
1521
  }>;
1642
1522
  name: z.ZodString;
1643
1523
  path: z.ZodString;
1644
- workflow: z.ZodString;
1524
+ method: z.ZodString;
1645
1525
  }, z.core.$strip>;
1646
1526
  }, z.core.$strip>>;
1647
1527
  summary: z.ZodObject<{
@@ -1650,14 +1530,12 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1650
1530
  pass_rate_delta: z.ZodNullable<z.ZodNumber>;
1651
1531
  }, z.core.$strip>;
1652
1532
  }, z.core.$strip>>;
1653
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1533
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1654
1534
  kind: z.ZodLiteral<"interf-readiness-state">;
1655
1535
  version: z.ZodLiteral<1>;
1656
1536
  generated_at: z.ZodString;
1657
1537
  preparation: z.ZodString;
1658
1538
  status: z.ZodEnum<{
1659
- stale: "stale";
1660
- failed: "failed";
1661
1539
  "not-configured": "not-configured";
1662
1540
  "not-built": "not-built";
1663
1541
  building: "building";
@@ -1665,6 +1543,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1665
1543
  checking: "checking";
1666
1544
  ready: "ready";
1667
1545
  "not-ready": "not-ready";
1546
+ stale: "stale";
1547
+ failed: "failed";
1668
1548
  }>;
1669
1549
  ready: z.ZodBoolean;
1670
1550
  summary: z.ZodString;
@@ -1683,8 +1563,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1683
1563
  }>;
1684
1564
  ok: z.ZodBoolean;
1685
1565
  status: z.ZodOptional<z.ZodEnum<{
1686
- stale: "stale";
1687
- failed: "failed";
1688
1566
  "not-configured": "not-configured";
1689
1567
  "not-built": "not-built";
1690
1568
  building: "building";
@@ -1692,6 +1570,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1692
1570
  checking: "checking";
1693
1571
  ready: "ready";
1694
1572
  "not-ready": "not-ready";
1573
+ stale: "stale";
1574
+ failed: "failed";
1695
1575
  }>>;
1696
1576
  summary: z.ZodString;
1697
1577
  detail: z.ZodOptional<z.ZodString>;
@@ -1733,8 +1613,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1733
1613
  }>;
1734
1614
  ok: z.ZodBoolean;
1735
1615
  status: z.ZodOptional<z.ZodEnum<{
1736
- stale: "stale";
1737
- failed: "failed";
1738
1616
  "not-configured": "not-configured";
1739
1617
  "not-built": "not-built";
1740
1618
  building: "building";
@@ -1742,14 +1620,16 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1742
1620
  checking: "checking";
1743
1621
  ready: "ready";
1744
1622
  "not-ready": "not-ready";
1623
+ stale: "stale";
1624
+ failed: "failed";
1745
1625
  }>>;
1746
1626
  summary: z.ZodString;
1747
1627
  detail: z.ZodOptional<z.ZodString>;
1748
1628
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1749
1629
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1750
1630
  }, z.core.$strict>>>;
1751
- }, z.core.$strict>>>>;
1752
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
1631
+ }, z.core.$strict>>>;
1632
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1753
1633
  event_id: z.ZodString;
1754
1634
  run_id: z.ZodString;
1755
1635
  timestamp: z.ZodString;
@@ -1886,14 +1766,12 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1886
1766
  timestamp: z.ZodString;
1887
1767
  type: z.ZodLiteral<"readiness.updated">;
1888
1768
  preparation: z.ZodString;
1889
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1769
+ readiness: z.ZodObject<{
1890
1770
  kind: z.ZodLiteral<"interf-readiness-state">;
1891
1771
  version: z.ZodLiteral<1>;
1892
1772
  generated_at: z.ZodString;
1893
1773
  preparation: z.ZodString;
1894
1774
  status: z.ZodEnum<{
1895
- stale: "stale";
1896
- failed: "failed";
1897
1775
  "not-configured": "not-configured";
1898
1776
  "not-built": "not-built";
1899
1777
  building: "building";
@@ -1901,6 +1779,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1901
1779
  checking: "checking";
1902
1780
  ready: "ready";
1903
1781
  "not-ready": "not-ready";
1782
+ stale: "stale";
1783
+ failed: "failed";
1904
1784
  }>;
1905
1785
  ready: z.ZodBoolean;
1906
1786
  summary: z.ZodString;
@@ -1919,8 +1799,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1919
1799
  }>;
1920
1800
  ok: z.ZodBoolean;
1921
1801
  status: z.ZodOptional<z.ZodEnum<{
1922
- stale: "stale";
1923
- failed: "failed";
1924
1802
  "not-configured": "not-configured";
1925
1803
  "not-built": "not-built";
1926
1804
  building: "building";
@@ -1928,6 +1806,8 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1928
1806
  checking: "checking";
1929
1807
  ready: "ready";
1930
1808
  "not-ready": "not-ready";
1809
+ stale: "stale";
1810
+ failed: "failed";
1931
1811
  }>>;
1932
1812
  summary: z.ZodString;
1933
1813
  detail: z.ZodOptional<z.ZodString>;
@@ -1969,8 +1849,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1969
1849
  }>;
1970
1850
  ok: z.ZodBoolean;
1971
1851
  status: z.ZodOptional<z.ZodEnum<{
1972
- stale: "stale";
1973
- failed: "failed";
1974
1852
  "not-configured": "not-configured";
1975
1853
  "not-built": "not-built";
1976
1854
  building: "building";
@@ -1978,33 +1856,35 @@ export declare const TestRunResourceSchema: z.ZodObject<{
1978
1856
  checking: "checking";
1979
1857
  ready: "ready";
1980
1858
  "not-ready": "not-ready";
1859
+ stale: "stale";
1860
+ failed: "failed";
1981
1861
  }>>;
1982
1862
  summary: z.ZodString;
1983
1863
  detail: z.ZodOptional<z.ZodString>;
1984
1864
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1985
1865
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1986
1866
  }, z.core.$strict>>>;
1987
- }, z.core.$strict>>;
1988
- }, z.core.$strict>], "type">>>>;
1867
+ }, z.core.$strict>;
1868
+ }, z.core.$strict>], "type">>>;
1989
1869
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1990
1870
  }, z.core.$strict>;
1991
- export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1871
+ export declare const RunObservabilityResourceSchema: z.ZodObject<{
1992
1872
  kind: z.ZodLiteral<"interf-run-observability">;
1993
1873
  version: z.ZodLiteral<1>;
1994
1874
  run_id: z.ZodString;
1995
1875
  run_type: z.ZodEnum<{
1996
1876
  compile: "compile";
1877
+ "method-authoring": "method-authoring";
1878
+ "method-improvement": "method-improvement";
1997
1879
  "preparation-setup": "preparation-setup";
1998
1880
  test: "test";
1999
1881
  "readiness-check-draft": "readiness-check-draft";
2000
- "method-authoring": "method-authoring";
2001
- "method-improvement": "method-improvement";
2002
1882
  job: "job";
2003
1883
  }>;
2004
1884
  title: z.ZodString;
2005
1885
  status: z.ZodEnum<{
2006
- running: "running";
2007
1886
  failed: "failed";
1887
+ running: "running";
2008
1888
  succeeded: "succeeded";
2009
1889
  cancelled: "cancelled";
2010
1890
  queued: "queued";
@@ -2055,14 +1935,12 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2055
1935
  ok: z.ZodBoolean;
2056
1936
  detail: z.ZodOptional<z.ZodString>;
2057
1937
  }, z.core.$strict>>>;
2058
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
1938
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2059
1939
  kind: z.ZodLiteral<"interf-readiness-state">;
2060
1940
  version: z.ZodLiteral<1>;
2061
1941
  generated_at: z.ZodString;
2062
1942
  preparation: z.ZodString;
2063
1943
  status: z.ZodEnum<{
2064
- stale: "stale";
2065
- failed: "failed";
2066
1944
  "not-configured": "not-configured";
2067
1945
  "not-built": "not-built";
2068
1946
  building: "building";
@@ -2070,6 +1948,8 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2070
1948
  checking: "checking";
2071
1949
  ready: "ready";
2072
1950
  "not-ready": "not-ready";
1951
+ stale: "stale";
1952
+ failed: "failed";
2073
1953
  }>;
2074
1954
  ready: z.ZodBoolean;
2075
1955
  summary: z.ZodString;
@@ -2088,8 +1968,6 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2088
1968
  }>;
2089
1969
  ok: z.ZodBoolean;
2090
1970
  status: z.ZodOptional<z.ZodEnum<{
2091
- stale: "stale";
2092
- failed: "failed";
2093
1971
  "not-configured": "not-configured";
2094
1972
  "not-built": "not-built";
2095
1973
  building: "building";
@@ -2097,6 +1975,8 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2097
1975
  checking: "checking";
2098
1976
  ready: "ready";
2099
1977
  "not-ready": "not-ready";
1978
+ stale: "stale";
1979
+ failed: "failed";
2100
1980
  }>>;
2101
1981
  summary: z.ZodString;
2102
1982
  detail: z.ZodOptional<z.ZodString>;
@@ -2138,8 +2018,6 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2138
2018
  }>;
2139
2019
  ok: z.ZodBoolean;
2140
2020
  status: z.ZodOptional<z.ZodEnum<{
2141
- stale: "stale";
2142
- failed: "failed";
2143
2021
  "not-configured": "not-configured";
2144
2022
  "not-built": "not-built";
2145
2023
  building: "building";
@@ -2147,25 +2025,27 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2147
2025
  checking: "checking";
2148
2026
  ready: "ready";
2149
2027
  "not-ready": "not-ready";
2028
+ stale: "stale";
2029
+ failed: "failed";
2150
2030
  }>>;
2151
2031
  summary: z.ZodString;
2152
2032
  detail: z.ZodOptional<z.ZodString>;
2153
2033
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2154
2034
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2155
2035
  }, z.core.$strict>>>;
2156
- }, z.core.$strict>>>>;
2036
+ }, z.core.$strict>>>;
2157
2037
  trace: z.ZodObject<{
2158
2038
  run: z.ZodObject<{
2159
2039
  runId: z.ZodString;
2160
2040
  status: z.ZodEnum<{
2161
- running: "running";
2162
2041
  failed: "failed";
2042
+ running: "running";
2163
2043
  pending: "pending";
2164
2044
  completed: "completed";
2165
2045
  cancelled: "cancelled";
2166
2046
  }>;
2167
2047
  deploymentId: z.ZodString;
2168
- workflowName: z.ZodString;
2048
+ methodName: z.ZodString;
2169
2049
  specVersion: z.ZodLiteral<1>;
2170
2050
  executionContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2171
2051
  input: z.ZodUnknown;
@@ -2216,8 +2096,8 @@ export declare const RunObservabilityResourceSchema: z.ZodPipe<z.ZodTransform<un
2216
2096
  data: z.ZodOptional<z.ZodUnknown>;
2217
2097
  }, z.core.$strict>>>;
2218
2098
  }, z.core.$strict>;
2219
- }, z.core.$strict>>;
2220
- export declare const RunCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
2099
+ }, z.core.$strict>;
2100
+ export declare const RunCreateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2221
2101
  run_type: z.ZodLiteral<"compile">;
2222
2102
  preparation: z.ZodString;
2223
2103
  method: z.ZodOptional<z.ZodString>;
@@ -2253,7 +2133,7 @@ export declare const RunCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, u
2253
2133
  raw: "raw";
2254
2134
  both: "both";
2255
2135
  }>>;
2256
- }, z.core.$strict>], "run_type">>;
2136
+ }, z.core.$strict>], "run_type">;
2257
2137
  export declare const LocalExecutorStatusSchema: z.ZodObject<{
2258
2138
  kind: z.ZodLiteral<"interf-local-executor-status">;
2259
2139
  version: z.ZodLiteral<1>;
@@ -2280,11 +2160,11 @@ export declare const LocalExecutorSelectRequestSchema: z.ZodObject<{
2280
2160
  }, z.core.$strict>;
2281
2161
  export declare const ActionProposalTypeSchema: z.ZodEnum<{
2282
2162
  compile: "compile";
2163
+ "method-authoring": "method-authoring";
2164
+ "method-improvement": "method-improvement";
2283
2165
  "preparation-setup": "preparation-setup";
2284
2166
  test: "test";
2285
2167
  "readiness-check-draft": "readiness-check-draft";
2286
- "method-authoring": "method-authoring";
2287
- "method-improvement": "method-improvement";
2288
2168
  clarification: "clarification";
2289
2169
  }>;
2290
2170
  export declare const ActionProposalStatusSchema: z.ZodEnum<{
@@ -2295,19 +2175,19 @@ export declare const ActionProposalStatusSchema: z.ZodEnum<{
2295
2175
  denied: "denied";
2296
2176
  submitted: "submitted";
2297
2177
  }>;
2298
- export declare const ActionProposalCreateRequestSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2178
+ export declare const ActionProposalCreateRequestSchema: z.ZodObject<{
2299
2179
  message: z.ZodString;
2300
2180
  preparation: z.ZodOptional<z.ZodString>;
2301
2181
  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<{
2182
+ }, z.core.$strict>;
2183
+ export declare const ActionProposalPlanSchema: z.ZodObject<{
2304
2184
  action_type: z.ZodEnum<{
2305
2185
  compile: "compile";
2186
+ "method-authoring": "method-authoring";
2187
+ "method-improvement": "method-improvement";
2306
2188
  "preparation-setup": "preparation-setup";
2307
2189
  test: "test";
2308
2190
  "readiness-check-draft": "readiness-check-draft";
2309
- "method-authoring": "method-authoring";
2310
- "method-improvement": "method-improvement";
2311
2191
  clarification: "clarification";
2312
2192
  }>;
2313
2193
  preparation: z.ZodOptional<z.ZodString>;
@@ -2317,7 +2197,7 @@ export declare const ActionProposalPlanSchema: z.ZodPipe<z.ZodTransform<unknown,
2317
2197
  summary: z.ZodOptional<z.ZodString>;
2318
2198
  assistant_message: z.ZodOptional<z.ZodString>;
2319
2199
  command_preview: z.ZodOptional<z.ZodString>;
2320
- }, z.core.$strict>>;
2200
+ }, z.core.$strict>;
2321
2201
  export declare const ActionProposalApprovalRequestSchema: z.ZodObject<{
2322
2202
  approved: z.ZodBoolean;
2323
2203
  note: z.ZodOptional<z.ZodString>;
@@ -2406,7 +2286,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2406
2286
  }>>>;
2407
2287
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2408
2288
  action_type: z.ZodLiteral<"compile">;
2409
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2289
+ request: z.ZodObject<{
2410
2290
  preparation: z.ZodString;
2411
2291
  method: z.ZodOptional<z.ZodString>;
2412
2292
  max_attempts: z.ZodOptional<z.ZodNumber>;
@@ -2415,7 +2295,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2415
2295
  "on-failure": "on-failure";
2416
2296
  always: "always";
2417
2297
  }>>;
2418
- }, z.core.$strict>>;
2298
+ }, z.core.$strict>;
2419
2299
  }, z.core.$strict>, z.ZodObject<{
2420
2300
  kind: z.ZodLiteral<"interf-action-proposal">;
2421
2301
  version: z.ZodLiteral<1>;
@@ -2455,14 +2335,13 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2455
2335
  }>>>;
2456
2336
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2457
2337
  action_type: z.ZodLiteral<"preparation-setup">;
2458
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2338
+ request: z.ZodObject<{
2459
2339
  preparation: z.ZodObject<{
2460
2340
  id: z.ZodOptional<z.ZodString>;
2461
2341
  name: z.ZodString;
2462
2342
  path: z.ZodString;
2463
2343
  about: z.ZodOptional<z.ZodString>;
2464
2344
  method: z.ZodOptional<z.ZodString>;
2465
- workflow: z.ZodOptional<z.ZodString>;
2466
2345
  max_attempts: z.ZodOptional<z.ZodNumber>;
2467
2346
  max_loops: z.ZodOptional<z.ZodNumber>;
2468
2347
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -2479,7 +2358,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2479
2358
  strictness: z.ZodOptional<z.ZodString>;
2480
2359
  }, z.core.$strict>>>;
2481
2360
  }, z.core.$strict>;
2482
- }, z.core.$strict>>;
2361
+ }, z.core.$strict>;
2483
2362
  }, z.core.$strict>, z.ZodObject<{
2484
2363
  kind: z.ZodLiteral<"interf-action-proposal">;
2485
2364
  version: z.ZodLiteral<1>;
@@ -2519,14 +2398,14 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2519
2398
  }>>>;
2520
2399
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2521
2400
  action_type: z.ZodLiteral<"test">;
2522
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2401
+ request: z.ZodObject<{
2523
2402
  preparation: z.ZodString;
2524
2403
  mode: z.ZodDefault<z.ZodEnum<{
2525
2404
  compiled: "compiled";
2526
2405
  raw: "raw";
2527
2406
  both: "both";
2528
2407
  }>>;
2529
- }, z.core.$strict>>;
2408
+ }, z.core.$strict>;
2530
2409
  }, z.core.$strict>, z.ZodObject<{
2531
2410
  kind: z.ZodLiteral<"interf-action-proposal">;
2532
2411
  version: z.ZodLiteral<1>;
@@ -2566,12 +2445,12 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2566
2445
  }>>>;
2567
2446
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2568
2447
  action_type: z.ZodLiteral<"readiness-check-draft">;
2569
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2448
+ request: z.ZodObject<{
2570
2449
  preparation: z.ZodString;
2571
2450
  source_folder_path: z.ZodString;
2572
2451
  about: z.ZodOptional<z.ZodString>;
2573
2452
  target_count: z.ZodDefault<z.ZodNumber>;
2574
- }, z.core.$strict>>;
2453
+ }, z.core.$strict>;
2575
2454
  }, z.core.$strict>, z.ZodObject<{
2576
2455
  kind: z.ZodLiteral<"interf-action-proposal">;
2577
2456
  version: z.ZodLiteral<1>;
@@ -2611,7 +2490,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2611
2490
  }>>>;
2612
2491
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2613
2492
  action_type: z.ZodLiteral<"method-authoring">;
2614
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2493
+ request: z.ZodObject<{
2615
2494
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2616
2495
  source_folder_path: z.ZodString;
2617
2496
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -2633,7 +2512,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2633
2512
  }, z.core.$strip>>;
2634
2513
  strictness: z.ZodOptional<z.ZodString>;
2635
2514
  }, z.core.$strict>>>;
2636
- }, z.core.$strict>>;
2515
+ }, z.core.$strict>;
2637
2516
  }, z.core.$strict>, z.ZodObject<{
2638
2517
  kind: z.ZodLiteral<"interf-action-proposal">;
2639
2518
  version: z.ZodLiteral<1>;
@@ -2673,7 +2552,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2673
2552
  }>>>;
2674
2553
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2675
2554
  action_type: z.ZodLiteral<"method-improvement">;
2676
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2555
+ request: z.ZodObject<{
2677
2556
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2678
2557
  source_folder_path: z.ZodString;
2679
2558
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -2695,20 +2574,18 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
2695
2574
  }, z.core.$strip>>;
2696
2575
  strictness: z.ZodOptional<z.ZodString>;
2697
2576
  }, z.core.$strict>>>;
2698
- }, z.core.$strict>>;
2577
+ }, z.core.$strict>;
2699
2578
  }, z.core.$strict>], "action_type">;
2700
2579
  export declare const PortableContextResourceSchema: z.ZodObject<{
2701
2580
  preparation: z.ZodString;
2702
2581
  path: z.ZodString;
2703
2582
  exists: z.ZodBoolean;
2704
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2583
+ readiness: z.ZodObject<{
2705
2584
  kind: z.ZodLiteral<"interf-readiness-state">;
2706
2585
  version: z.ZodLiteral<1>;
2707
2586
  generated_at: z.ZodString;
2708
2587
  preparation: z.ZodString;
2709
2588
  status: z.ZodEnum<{
2710
- stale: "stale";
2711
- failed: "failed";
2712
2589
  "not-configured": "not-configured";
2713
2590
  "not-built": "not-built";
2714
2591
  building: "building";
@@ -2716,6 +2593,8 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2716
2593
  checking: "checking";
2717
2594
  ready: "ready";
2718
2595
  "not-ready": "not-ready";
2596
+ stale: "stale";
2597
+ failed: "failed";
2719
2598
  }>;
2720
2599
  ready: z.ZodBoolean;
2721
2600
  summary: z.ZodString;
@@ -2734,8 +2613,6 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2734
2613
  }>;
2735
2614
  ok: z.ZodBoolean;
2736
2615
  status: z.ZodOptional<z.ZodEnum<{
2737
- stale: "stale";
2738
- failed: "failed";
2739
2616
  "not-configured": "not-configured";
2740
2617
  "not-built": "not-built";
2741
2618
  building: "building";
@@ -2743,6 +2620,8 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2743
2620
  checking: "checking";
2744
2621
  ready: "ready";
2745
2622
  "not-ready": "not-ready";
2623
+ stale: "stale";
2624
+ failed: "failed";
2746
2625
  }>>;
2747
2626
  summary: z.ZodString;
2748
2627
  detail: z.ZodOptional<z.ZodString>;
@@ -2784,8 +2663,6 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2784
2663
  }>;
2785
2664
  ok: z.ZodBoolean;
2786
2665
  status: z.ZodOptional<z.ZodEnum<{
2787
- stale: "stale";
2788
- failed: "failed";
2789
2666
  "not-configured": "not-configured";
2790
2667
  "not-built": "not-built";
2791
2668
  building: "building";
@@ -2793,13 +2670,15 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2793
2670
  checking: "checking";
2794
2671
  ready: "ready";
2795
2672
  "not-ready": "not-ready";
2673
+ stale: "stale";
2674
+ failed: "failed";
2796
2675
  }>>;
2797
2676
  summary: z.ZodString;
2798
2677
  detail: z.ZodOptional<z.ZodString>;
2799
2678
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2800
2679
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2801
2680
  }, z.core.$strict>>>;
2802
- }, z.core.$strict>>;
2681
+ }, z.core.$strict>;
2803
2682
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2804
2683
  latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2805
2684
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2817,14 +2696,12 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
2817
2696
  sha256: z.ZodOptional<z.ZodString>;
2818
2697
  }, z.core.$strict>>>;
2819
2698
  }, z.core.$strict>;
2820
- export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2699
+ export declare const ReadinessResourceSchema: z.ZodObject<{
2821
2700
  kind: z.ZodLiteral<"interf-readiness-state">;
2822
2701
  version: z.ZodLiteral<1>;
2823
2702
  generated_at: z.ZodString;
2824
2703
  preparation: z.ZodString;
2825
2704
  status: z.ZodEnum<{
2826
- stale: "stale";
2827
- failed: "failed";
2828
2705
  "not-configured": "not-configured";
2829
2706
  "not-built": "not-built";
2830
2707
  building: "building";
@@ -2832,6 +2709,8 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2832
2709
  checking: "checking";
2833
2710
  ready: "ready";
2834
2711
  "not-ready": "not-ready";
2712
+ stale: "stale";
2713
+ failed: "failed";
2835
2714
  }>;
2836
2715
  ready: z.ZodBoolean;
2837
2716
  summary: z.ZodString;
@@ -2850,8 +2729,6 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2850
2729
  }>;
2851
2730
  ok: z.ZodBoolean;
2852
2731
  status: z.ZodOptional<z.ZodEnum<{
2853
- stale: "stale";
2854
- failed: "failed";
2855
2732
  "not-configured": "not-configured";
2856
2733
  "not-built": "not-built";
2857
2734
  building: "building";
@@ -2859,6 +2736,8 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2859
2736
  checking: "checking";
2860
2737
  ready: "ready";
2861
2738
  "not-ready": "not-ready";
2739
+ stale: "stale";
2740
+ failed: "failed";
2862
2741
  }>>;
2863
2742
  summary: z.ZodString;
2864
2743
  detail: z.ZodOptional<z.ZodString>;
@@ -2900,8 +2779,6 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2900
2779
  }>;
2901
2780
  ok: z.ZodBoolean;
2902
2781
  status: z.ZodOptional<z.ZodEnum<{
2903
- stale: "stale";
2904
- failed: "failed";
2905
2782
  "not-configured": "not-configured";
2906
2783
  "not-built": "not-built";
2907
2784
  building: "building";
@@ -2909,13 +2786,15 @@ export declare const ReadinessResourceSchema: z.ZodPipe<z.ZodTransform<unknown,
2909
2786
  checking: "checking";
2910
2787
  ready: "ready";
2911
2788
  "not-ready": "not-ready";
2789
+ stale: "stale";
2790
+ failed: "failed";
2912
2791
  }>>;
2913
2792
  summary: z.ZodString;
2914
2793
  detail: z.ZodOptional<z.ZodString>;
2915
2794
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2916
2795
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2917
2796
  }, z.core.$strict>>>;
2918
- }, z.core.$strict>>;
2797
+ }, z.core.$strict>;
2919
2798
  export declare const SourceFileResourceSchema: z.ZodObject<{
2920
2799
  preparation: z.ZodString;
2921
2800
  path: z.ZodString;
@@ -2953,15 +2832,16 @@ export declare const OpenPathResponseSchema: z.ZodObject<{
2953
2832
  path: z.ZodString;
2954
2833
  }, z.core.$strict>;
2955
2834
  export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2956
- kind: z.ZodLiteral<"dataset">;
2835
+ kind: z.ZodLiteral<"preparation">;
2957
2836
  value: z.ZodObject<{
2958
- dataset: z.ZodObject<{
2837
+ id: z.ZodString;
2838
+ name: z.ZodString;
2839
+ preparation: z.ZodObject<{
2959
2840
  id: z.ZodOptional<z.ZodString>;
2960
2841
  name: z.ZodString;
2961
2842
  path: z.ZodString;
2962
2843
  about: z.ZodOptional<z.ZodString>;
2963
2844
  method: z.ZodOptional<z.ZodString>;
2964
- workflow: z.ZodOptional<z.ZodString>;
2965
2845
  max_attempts: z.ZodOptional<z.ZodNumber>;
2966
2846
  max_loops: z.ZodOptional<z.ZodNumber>;
2967
2847
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -2978,153 +2858,22 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
2978
2858
  strictness: z.ZodOptional<z.ZodString>;
2979
2859
  }, z.core.$strict>>>;
2980
2860
  }, 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<{
2861
+ source_path: z.ZodString;
2862
+ method_id: z.ZodNullable<z.ZodString>;
2863
+ checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
2864
+ id: z.ZodOptional<z.ZodString>;
2865
+ question: z.ZodString;
2866
+ answer: z.ZodOptional<z.ZodString>;
2867
+ expect: z.ZodOptional<z.ZodObject<{
2868
+ must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
2869
+ must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
2870
+ must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
2871
+ min_words: z.ZodOptional<z.ZodNumber>;
2872
+ max_words: z.ZodOptional<z.ZodNumber>;
2873
+ }, z.core.$strip>>;
2874
+ strictness: z.ZodOptional<z.ZodString>;
2875
+ }, z.core.$strict>>>;
2876
+ portable_context: z.ZodObject<{
3128
2877
  preparation: z.ZodString;
3129
2878
  path: z.ZodNullable<z.ZodString>;
3130
2879
  exists: z.ZodBoolean;
@@ -3133,14 +2882,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3133
2882
  latest_test_run_id: z.ZodNullable<z.ZodString>;
3134
2883
  }, z.core.$strict>;
3135
2884
  portable_context_path: z.ZodNullable<z.ZodString>;
3136
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
2885
+ readiness: z.ZodObject<{
3137
2886
  kind: z.ZodLiteral<"interf-readiness-state">;
3138
2887
  version: z.ZodLiteral<1>;
3139
2888
  generated_at: z.ZodString;
3140
2889
  preparation: z.ZodString;
3141
2890
  status: z.ZodEnum<{
3142
- stale: "stale";
3143
- failed: "failed";
3144
2891
  "not-configured": "not-configured";
3145
2892
  "not-built": "not-built";
3146
2893
  building: "building";
@@ -3148,6 +2895,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3148
2895
  checking: "checking";
3149
2896
  ready: "ready";
3150
2897
  "not-ready": "not-ready";
2898
+ stale: "stale";
2899
+ failed: "failed";
3151
2900
  }>;
3152
2901
  ready: z.ZodBoolean;
3153
2902
  summary: z.ZodString;
@@ -3166,8 +2915,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3166
2915
  }>;
3167
2916
  ok: z.ZodBoolean;
3168
2917
  status: z.ZodOptional<z.ZodEnum<{
3169
- stale: "stale";
3170
- failed: "failed";
3171
2918
  "not-configured": "not-configured";
3172
2919
  "not-built": "not-built";
3173
2920
  building: "building";
@@ -3175,6 +2922,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3175
2922
  checking: "checking";
3176
2923
  ready: "ready";
3177
2924
  "not-ready": "not-ready";
2925
+ stale: "stale";
2926
+ failed: "failed";
3178
2927
  }>>;
3179
2928
  summary: z.ZodString;
3180
2929
  detail: z.ZodOptional<z.ZodString>;
@@ -3216,8 +2965,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3216
2965
  }>;
3217
2966
  ok: z.ZodBoolean;
3218
2967
  status: z.ZodOptional<z.ZodEnum<{
3219
- stale: "stale";
3220
- failed: "failed";
3221
2968
  "not-configured": "not-configured";
3222
2969
  "not-built": "not-built";
3223
2970
  building: "building";
@@ -3225,13 +2972,15 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3225
2972
  checking: "checking";
3226
2973
  ready: "ready";
3227
2974
  "not-ready": "not-ready";
2975
+ stale: "stale";
2976
+ failed: "failed";
3228
2977
  }>>;
3229
2978
  summary: z.ZodString;
3230
2979
  detail: z.ZodOptional<z.ZodString>;
3231
2980
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3232
2981
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3233
2982
  }, z.core.$strict>>>;
3234
- }, z.core.$strict>>;
2983
+ }, z.core.$strict>;
3235
2984
  runs: z.ZodObject<{
3236
2985
  latest_compile_run_id: z.ZodNullable<z.ZodString>;
3237
2986
  latest_test_run_id: z.ZodNullable<z.ZodString>;
@@ -3239,30 +2988,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3239
2988
  latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3240
2989
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3241
2990
  }, 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
2991
  }, z.core.$strict>, z.ZodObject<{
3267
2992
  kind: z.ZodLiteral<"method">;
3268
2993
  value: z.ZodObject<{
@@ -3291,13 +3016,13 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3291
3016
  }, z.core.$strict>, z.ZodObject<{
3292
3017
  kind: z.ZodLiteral<"compile-run">;
3293
3018
  value: z.ZodObject<{
3294
- run: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3019
+ run: z.ZodObject<{
3295
3020
  kind: z.ZodLiteral<"interf-compile-run">;
3296
3021
  version: z.ZodLiteral<1>;
3297
3022
  run_id: z.ZodString;
3298
3023
  status: z.ZodEnum<{
3299
- running: "running";
3300
3024
  failed: "failed";
3025
+ running: "running";
3301
3026
  succeeded: "succeeded";
3302
3027
  cancelled: "cancelled";
3303
3028
  queued: "queued";
@@ -3320,11 +3045,10 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3320
3045
  stage_index: z.ZodOptional<z.ZodNumber>;
3321
3046
  stage_total: z.ZodOptional<z.ZodNumber>;
3322
3047
  status: z.ZodEnum<{
3323
- running: "running";
3324
3048
  failed: "failed";
3049
+ running: "running";
3325
3050
  succeeded: "succeeded";
3326
3051
  queued: "queued";
3327
- skipped: "skipped";
3328
3052
  }>;
3329
3053
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3330
3054
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3399,7 +3123,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3399
3123
  }, z.core.$strict>>>;
3400
3124
  failure: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3401
3125
  }, z.core.$strict>>>;
3402
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
3126
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
3403
3127
  event_id: z.ZodString;
3404
3128
  run_id: z.ZodString;
3405
3129
  timestamp: z.ZodString;
@@ -3536,14 +3260,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3536
3260
  timestamp: z.ZodString;
3537
3261
  type: z.ZodLiteral<"readiness.updated">;
3538
3262
  preparation: z.ZodString;
3539
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3263
+ readiness: z.ZodObject<{
3540
3264
  kind: z.ZodLiteral<"interf-readiness-state">;
3541
3265
  version: z.ZodLiteral<1>;
3542
3266
  generated_at: z.ZodString;
3543
3267
  preparation: z.ZodString;
3544
3268
  status: z.ZodEnum<{
3545
- stale: "stale";
3546
- failed: "failed";
3547
3269
  "not-configured": "not-configured";
3548
3270
  "not-built": "not-built";
3549
3271
  building: "building";
@@ -3551,6 +3273,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3551
3273
  checking: "checking";
3552
3274
  ready: "ready";
3553
3275
  "not-ready": "not-ready";
3276
+ stale: "stale";
3277
+ failed: "failed";
3554
3278
  }>;
3555
3279
  ready: z.ZodBoolean;
3556
3280
  summary: z.ZodString;
@@ -3569,8 +3293,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3569
3293
  }>;
3570
3294
  ok: z.ZodBoolean;
3571
3295
  status: z.ZodOptional<z.ZodEnum<{
3572
- stale: "stale";
3573
- failed: "failed";
3574
3296
  "not-configured": "not-configured";
3575
3297
  "not-built": "not-built";
3576
3298
  building: "building";
@@ -3578,6 +3300,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3578
3300
  checking: "checking";
3579
3301
  ready: "ready";
3580
3302
  "not-ready": "not-ready";
3303
+ stale: "stale";
3304
+ failed: "failed";
3581
3305
  }>>;
3582
3306
  summary: z.ZodString;
3583
3307
  detail: z.ZodOptional<z.ZodString>;
@@ -3619,8 +3343,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3619
3343
  }>;
3620
3344
  ok: z.ZodBoolean;
3621
3345
  status: z.ZodOptional<z.ZodEnum<{
3622
- stale: "stale";
3623
- failed: "failed";
3624
3346
  "not-configured": "not-configured";
3625
3347
  "not-built": "not-built";
3626
3348
  building: "building";
@@ -3628,14 +3350,16 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3628
3350
  checking: "checking";
3629
3351
  ready: "ready";
3630
3352
  "not-ready": "not-ready";
3353
+ stale: "stale";
3354
+ failed: "failed";
3631
3355
  }>>;
3632
3356
  summary: z.ZodString;
3633
3357
  detail: z.ZodOptional<z.ZodString>;
3634
3358
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3635
3359
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3636
3360
  }, z.core.$strict>>>;
3637
- }, z.core.$strict>>;
3638
- }, z.core.$strict>], "type">>>>;
3361
+ }, z.core.$strict>;
3362
+ }, z.core.$strict>], "type">>>;
3639
3363
  latest_proof: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3640
3364
  id: z.ZodString;
3641
3365
  run_id: z.ZodString;
@@ -3663,14 +3387,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3663
3387
  detail: z.ZodOptional<z.ZodString>;
3664
3388
  }, z.core.$strict>>>;
3665
3389
  }, z.core.$strict>>>;
3666
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3390
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3667
3391
  kind: z.ZodLiteral<"interf-readiness-state">;
3668
3392
  version: z.ZodLiteral<1>;
3669
3393
  generated_at: z.ZodString;
3670
3394
  preparation: z.ZodString;
3671
3395
  status: z.ZodEnum<{
3672
- stale: "stale";
3673
- failed: "failed";
3674
3396
  "not-configured": "not-configured";
3675
3397
  "not-built": "not-built";
3676
3398
  building: "building";
@@ -3678,6 +3400,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3678
3400
  checking: "checking";
3679
3401
  ready: "ready";
3680
3402
  "not-ready": "not-ready";
3403
+ stale: "stale";
3404
+ failed: "failed";
3681
3405
  }>;
3682
3406
  ready: z.ZodBoolean;
3683
3407
  summary: z.ZodString;
@@ -3696,8 +3420,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3696
3420
  }>;
3697
3421
  ok: z.ZodBoolean;
3698
3422
  status: z.ZodOptional<z.ZodEnum<{
3699
- stale: "stale";
3700
- failed: "failed";
3701
3423
  "not-configured": "not-configured";
3702
3424
  "not-built": "not-built";
3703
3425
  building: "building";
@@ -3705,6 +3427,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3705
3427
  checking: "checking";
3706
3428
  ready: "ready";
3707
3429
  "not-ready": "not-ready";
3430
+ stale: "stale";
3431
+ failed: "failed";
3708
3432
  }>>;
3709
3433
  summary: z.ZodString;
3710
3434
  detail: z.ZodOptional<z.ZodString>;
@@ -3746,8 +3470,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3746
3470
  }>;
3747
3471
  ok: z.ZodBoolean;
3748
3472
  status: z.ZodOptional<z.ZodEnum<{
3749
- stale: "stale";
3750
- failed: "failed";
3751
3473
  "not-configured": "not-configured";
3752
3474
  "not-built": "not-built";
3753
3475
  building: "building";
@@ -3755,14 +3477,16 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3755
3477
  checking: "checking";
3756
3478
  ready: "ready";
3757
3479
  "not-ready": "not-ready";
3480
+ stale: "stale";
3481
+ failed: "failed";
3758
3482
  }>>;
3759
3483
  summary: z.ZodString;
3760
3484
  detail: z.ZodOptional<z.ZodString>;
3761
3485
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3762
3486
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3763
3487
  }, z.core.$strict>>>;
3764
- }, z.core.$strict>>>>;
3765
- }, z.core.$strict>>;
3488
+ }, z.core.$strict>>>;
3489
+ }, z.core.$strict>;
3766
3490
  }, z.core.$strict>;
3767
3491
  }, z.core.$strict>, z.ZodObject<{
3768
3492
  kind: z.ZodLiteral<"job-run">;
@@ -3772,15 +3496,15 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3772
3496
  run_id: z.ZodString;
3773
3497
  job_type: z.ZodEnum<{
3774
3498
  compile: "compile";
3499
+ "method-authoring": "method-authoring";
3500
+ "method-improvement": "method-improvement";
3775
3501
  "preparation-setup": "preparation-setup";
3776
3502
  test: "test";
3777
3503
  "readiness-check-draft": "readiness-check-draft";
3778
- "method-authoring": "method-authoring";
3779
- "method-improvement": "method-improvement";
3780
3504
  }>;
3781
3505
  status: z.ZodEnum<{
3782
- running: "running";
3783
3506
  failed: "failed";
3507
+ running: "running";
3784
3508
  succeeded: "succeeded";
3785
3509
  cancelled: "cancelled";
3786
3510
  queued: "queued";
@@ -3802,8 +3526,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3802
3526
  id: z.ZodString;
3803
3527
  label: z.ZodString;
3804
3528
  status: z.ZodEnum<{
3805
- running: "running";
3806
3529
  failed: "failed";
3530
+ running: "running";
3807
3531
  succeeded: "succeeded";
3808
3532
  cancelled: "cancelled";
3809
3533
  queued: "queued";
@@ -3854,8 +3578,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3854
3578
  value: z.ZodObject<{
3855
3579
  run_id: z.ZodString;
3856
3580
  status: z.ZodEnum<{
3857
- running: "running";
3858
3581
  failed: "failed";
3582
+ running: "running";
3859
3583
  succeeded: "succeeded";
3860
3584
  cancelled: "cancelled";
3861
3585
  queued: "queued";
@@ -3871,7 +3595,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3871
3595
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3872
3596
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3873
3597
  comparison: z.ZodNullable<z.ZodObject<{
3874
- kind: z.ZodLiteral<"interf-test-run">;
3598
+ kind: z.ZodLiteral<"interf-readiness-check-run">;
3875
3599
  version: z.ZodLiteral<1>;
3876
3600
  generated_at: z.ZodString;
3877
3601
  mode: z.ZodEnum<{
@@ -3881,9 +3605,9 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3881
3605
  }>;
3882
3606
  source_path: z.ZodString;
3883
3607
  checks_fingerprint: z.ZodOptional<z.ZodString>;
3884
- dataset: z.ZodObject<{
3608
+ preparation: z.ZodObject<{
3885
3609
  name: z.ZodString;
3886
- compiled_path: z.ZodNullable<z.ZodString>;
3610
+ portable_context_path: z.ZodNullable<z.ZodString>;
3887
3611
  }, z.core.$strip>;
3888
3612
  raw: z.ZodNullable<z.ZodObject<{
3889
3613
  label: z.ZodString;
@@ -3900,7 +3624,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3900
3624
  }>;
3901
3625
  name: z.ZodString;
3902
3626
  path: z.ZodString;
3903
- workflow: z.ZodString;
3627
+ method: z.ZodString;
3904
3628
  }, z.core.$strip>;
3905
3629
  }, z.core.$strip>>;
3906
3630
  compiled: z.ZodNullable<z.ZodObject<{
@@ -3918,7 +3642,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3918
3642
  }>;
3919
3643
  name: z.ZodString;
3920
3644
  path: z.ZodString;
3921
- workflow: z.ZodString;
3645
+ method: z.ZodString;
3922
3646
  }, z.core.$strip>;
3923
3647
  }, z.core.$strip>>;
3924
3648
  summary: z.ZodObject<{
@@ -3927,14 +3651,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3927
3651
  pass_rate_delta: z.ZodNullable<z.ZodNumber>;
3928
3652
  }, z.core.$strip>;
3929
3653
  }, z.core.$strip>>;
3930
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3654
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3931
3655
  kind: z.ZodLiteral<"interf-readiness-state">;
3932
3656
  version: z.ZodLiteral<1>;
3933
3657
  generated_at: z.ZodString;
3934
3658
  preparation: z.ZodString;
3935
3659
  status: z.ZodEnum<{
3936
- stale: "stale";
3937
- failed: "failed";
3938
3660
  "not-configured": "not-configured";
3939
3661
  "not-built": "not-built";
3940
3662
  building: "building";
@@ -3942,6 +3664,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3942
3664
  checking: "checking";
3943
3665
  ready: "ready";
3944
3666
  "not-ready": "not-ready";
3667
+ stale: "stale";
3668
+ failed: "failed";
3945
3669
  }>;
3946
3670
  ready: z.ZodBoolean;
3947
3671
  summary: z.ZodString;
@@ -3960,8 +3684,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3960
3684
  }>;
3961
3685
  ok: z.ZodBoolean;
3962
3686
  status: z.ZodOptional<z.ZodEnum<{
3963
- stale: "stale";
3964
- failed: "failed";
3965
3687
  "not-configured": "not-configured";
3966
3688
  "not-built": "not-built";
3967
3689
  building: "building";
@@ -3969,6 +3691,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
3969
3691
  checking: "checking";
3970
3692
  ready: "ready";
3971
3693
  "not-ready": "not-ready";
3694
+ stale: "stale";
3695
+ failed: "failed";
3972
3696
  }>>;
3973
3697
  summary: z.ZodString;
3974
3698
  detail: z.ZodOptional<z.ZodString>;
@@ -4010,8 +3734,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4010
3734
  }>;
4011
3735
  ok: z.ZodBoolean;
4012
3736
  status: z.ZodOptional<z.ZodEnum<{
4013
- stale: "stale";
4014
- failed: "failed";
4015
3737
  "not-configured": "not-configured";
4016
3738
  "not-built": "not-built";
4017
3739
  building: "building";
@@ -4019,14 +3741,16 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4019
3741
  checking: "checking";
4020
3742
  ready: "ready";
4021
3743
  "not-ready": "not-ready";
3744
+ stale: "stale";
3745
+ failed: "failed";
4022
3746
  }>>;
4023
3747
  summary: z.ZodString;
4024
3748
  detail: z.ZodOptional<z.ZodString>;
4025
3749
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4026
3750
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4027
3751
  }, z.core.$strict>>>;
4028
- }, z.core.$strict>>>>;
4029
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
3752
+ }, z.core.$strict>>>;
3753
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
4030
3754
  event_id: z.ZodString;
4031
3755
  run_id: z.ZodString;
4032
3756
  timestamp: z.ZodString;
@@ -4163,14 +3887,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4163
3887
  timestamp: z.ZodString;
4164
3888
  type: z.ZodLiteral<"readiness.updated">;
4165
3889
  preparation: z.ZodString;
4166
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3890
+ readiness: z.ZodObject<{
4167
3891
  kind: z.ZodLiteral<"interf-readiness-state">;
4168
3892
  version: z.ZodLiteral<1>;
4169
3893
  generated_at: z.ZodString;
4170
3894
  preparation: z.ZodString;
4171
3895
  status: z.ZodEnum<{
4172
- stale: "stale";
4173
- failed: "failed";
4174
3896
  "not-configured": "not-configured";
4175
3897
  "not-built": "not-built";
4176
3898
  building: "building";
@@ -4178,6 +3900,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4178
3900
  checking: "checking";
4179
3901
  ready: "ready";
4180
3902
  "not-ready": "not-ready";
3903
+ stale: "stale";
3904
+ failed: "failed";
4181
3905
  }>;
4182
3906
  ready: z.ZodBoolean;
4183
3907
  summary: z.ZodString;
@@ -4196,8 +3920,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4196
3920
  }>;
4197
3921
  ok: z.ZodBoolean;
4198
3922
  status: z.ZodOptional<z.ZodEnum<{
4199
- stale: "stale";
4200
- failed: "failed";
4201
3923
  "not-configured": "not-configured";
4202
3924
  "not-built": "not-built";
4203
3925
  building: "building";
@@ -4205,6 +3927,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4205
3927
  checking: "checking";
4206
3928
  ready: "ready";
4207
3929
  "not-ready": "not-ready";
3930
+ stale: "stale";
3931
+ failed: "failed";
4208
3932
  }>>;
4209
3933
  summary: z.ZodString;
4210
3934
  detail: z.ZodOptional<z.ZodString>;
@@ -4246,8 +3970,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4246
3970
  }>;
4247
3971
  ok: z.ZodBoolean;
4248
3972
  status: z.ZodOptional<z.ZodEnum<{
4249
- stale: "stale";
4250
- failed: "failed";
4251
3973
  "not-configured": "not-configured";
4252
3974
  "not-built": "not-built";
4253
3975
  building: "building";
@@ -4255,35 +3977,37 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4255
3977
  checking: "checking";
4256
3978
  ready: "ready";
4257
3979
  "not-ready": "not-ready";
3980
+ stale: "stale";
3981
+ failed: "failed";
4258
3982
  }>>;
4259
3983
  summary: z.ZodString;
4260
3984
  detail: z.ZodOptional<z.ZodString>;
4261
3985
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4262
3986
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4263
3987
  }, z.core.$strict>>>;
4264
- }, z.core.$strict>>;
4265
- }, z.core.$strict>], "type">>>>;
3988
+ }, z.core.$strict>;
3989
+ }, z.core.$strict>], "type">>>;
4266
3990
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4267
3991
  }, z.core.$strict>;
4268
3992
  }, z.core.$strict>, z.ZodObject<{
4269
3993
  kind: z.ZodLiteral<"run-observability">;
4270
- value: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3994
+ value: z.ZodObject<{
4271
3995
  kind: z.ZodLiteral<"interf-run-observability">;
4272
3996
  version: z.ZodLiteral<1>;
4273
3997
  run_id: z.ZodString;
4274
3998
  run_type: z.ZodEnum<{
4275
3999
  compile: "compile";
4000
+ "method-authoring": "method-authoring";
4001
+ "method-improvement": "method-improvement";
4276
4002
  "preparation-setup": "preparation-setup";
4277
4003
  test: "test";
4278
4004
  "readiness-check-draft": "readiness-check-draft";
4279
- "method-authoring": "method-authoring";
4280
- "method-improvement": "method-improvement";
4281
4005
  job: "job";
4282
4006
  }>;
4283
4007
  title: z.ZodString;
4284
4008
  status: z.ZodEnum<{
4285
- running: "running";
4286
4009
  failed: "failed";
4010
+ running: "running";
4287
4011
  succeeded: "succeeded";
4288
4012
  cancelled: "cancelled";
4289
4013
  queued: "queued";
@@ -4334,14 +4058,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4334
4058
  ok: z.ZodBoolean;
4335
4059
  detail: z.ZodOptional<z.ZodString>;
4336
4060
  }, z.core.$strict>>>;
4337
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4061
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4338
4062
  kind: z.ZodLiteral<"interf-readiness-state">;
4339
4063
  version: z.ZodLiteral<1>;
4340
4064
  generated_at: z.ZodString;
4341
4065
  preparation: z.ZodString;
4342
4066
  status: z.ZodEnum<{
4343
- stale: "stale";
4344
- failed: "failed";
4345
4067
  "not-configured": "not-configured";
4346
4068
  "not-built": "not-built";
4347
4069
  building: "building";
@@ -4349,6 +4071,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4349
4071
  checking: "checking";
4350
4072
  ready: "ready";
4351
4073
  "not-ready": "not-ready";
4074
+ stale: "stale";
4075
+ failed: "failed";
4352
4076
  }>;
4353
4077
  ready: z.ZodBoolean;
4354
4078
  summary: z.ZodString;
@@ -4367,8 +4091,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4367
4091
  }>;
4368
4092
  ok: z.ZodBoolean;
4369
4093
  status: z.ZodOptional<z.ZodEnum<{
4370
- stale: "stale";
4371
- failed: "failed";
4372
4094
  "not-configured": "not-configured";
4373
4095
  "not-built": "not-built";
4374
4096
  building: "building";
@@ -4376,6 +4098,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4376
4098
  checking: "checking";
4377
4099
  ready: "ready";
4378
4100
  "not-ready": "not-ready";
4101
+ stale: "stale";
4102
+ failed: "failed";
4379
4103
  }>>;
4380
4104
  summary: z.ZodString;
4381
4105
  detail: z.ZodOptional<z.ZodString>;
@@ -4417,8 +4141,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4417
4141
  }>;
4418
4142
  ok: z.ZodBoolean;
4419
4143
  status: z.ZodOptional<z.ZodEnum<{
4420
- stale: "stale";
4421
- failed: "failed";
4422
4144
  "not-configured": "not-configured";
4423
4145
  "not-built": "not-built";
4424
4146
  building: "building";
@@ -4426,25 +4148,27 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4426
4148
  checking: "checking";
4427
4149
  ready: "ready";
4428
4150
  "not-ready": "not-ready";
4151
+ stale: "stale";
4152
+ failed: "failed";
4429
4153
  }>>;
4430
4154
  summary: z.ZodString;
4431
4155
  detail: z.ZodOptional<z.ZodString>;
4432
4156
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4433
4157
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4434
4158
  }, z.core.$strict>>>;
4435
- }, z.core.$strict>>>>;
4159
+ }, z.core.$strict>>>;
4436
4160
  trace: z.ZodObject<{
4437
4161
  run: z.ZodObject<{
4438
4162
  runId: z.ZodString;
4439
4163
  status: z.ZodEnum<{
4440
- running: "running";
4441
4164
  failed: "failed";
4165
+ running: "running";
4442
4166
  pending: "pending";
4443
4167
  completed: "completed";
4444
4168
  cancelled: "cancelled";
4445
4169
  }>;
4446
4170
  deploymentId: z.ZodString;
4447
- workflowName: z.ZodString;
4171
+ methodName: z.ZodString;
4448
4172
  specVersion: z.ZodLiteral<1>;
4449
4173
  executionContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4450
4174
  input: z.ZodUnknown;
@@ -4495,7 +4219,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4495
4219
  data: z.ZodOptional<z.ZodUnknown>;
4496
4220
  }, z.core.$strict>>>;
4497
4221
  }, z.core.$strict>;
4498
- }, z.core.$strict>>;
4222
+ }, z.core.$strict>;
4499
4223
  }, z.core.$strict>, z.ZodObject<{
4500
4224
  kind: z.ZodLiteral<"executor-status">;
4501
4225
  value: z.ZodObject<{
@@ -4600,7 +4324,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4600
4324
  }>>>;
4601
4325
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4602
4326
  action_type: z.ZodLiteral<"compile">;
4603
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4327
+ request: z.ZodObject<{
4604
4328
  preparation: z.ZodString;
4605
4329
  method: z.ZodOptional<z.ZodString>;
4606
4330
  max_attempts: z.ZodOptional<z.ZodNumber>;
@@ -4609,7 +4333,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4609
4333
  "on-failure": "on-failure";
4610
4334
  always: "always";
4611
4335
  }>>;
4612
- }, z.core.$strict>>;
4336
+ }, z.core.$strict>;
4613
4337
  }, z.core.$strict>, z.ZodObject<{
4614
4338
  kind: z.ZodLiteral<"interf-action-proposal">;
4615
4339
  version: z.ZodLiteral<1>;
@@ -4649,14 +4373,13 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4649
4373
  }>>>;
4650
4374
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4651
4375
  action_type: z.ZodLiteral<"preparation-setup">;
4652
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4376
+ request: z.ZodObject<{
4653
4377
  preparation: z.ZodObject<{
4654
4378
  id: z.ZodOptional<z.ZodString>;
4655
4379
  name: z.ZodString;
4656
4380
  path: z.ZodString;
4657
4381
  about: z.ZodOptional<z.ZodString>;
4658
4382
  method: z.ZodOptional<z.ZodString>;
4659
- workflow: z.ZodOptional<z.ZodString>;
4660
4383
  max_attempts: z.ZodOptional<z.ZodNumber>;
4661
4384
  max_loops: z.ZodOptional<z.ZodNumber>;
4662
4385
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -4673,7 +4396,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4673
4396
  strictness: z.ZodOptional<z.ZodString>;
4674
4397
  }, z.core.$strict>>>;
4675
4398
  }, z.core.$strict>;
4676
- }, z.core.$strict>>;
4399
+ }, z.core.$strict>;
4677
4400
  }, z.core.$strict>, z.ZodObject<{
4678
4401
  kind: z.ZodLiteral<"interf-action-proposal">;
4679
4402
  version: z.ZodLiteral<1>;
@@ -4713,14 +4436,14 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4713
4436
  }>>>;
4714
4437
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4715
4438
  action_type: z.ZodLiteral<"test">;
4716
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4439
+ request: z.ZodObject<{
4717
4440
  preparation: z.ZodString;
4718
4441
  mode: z.ZodDefault<z.ZodEnum<{
4719
4442
  compiled: "compiled";
4720
4443
  raw: "raw";
4721
4444
  both: "both";
4722
4445
  }>>;
4723
- }, z.core.$strict>>;
4446
+ }, z.core.$strict>;
4724
4447
  }, z.core.$strict>, z.ZodObject<{
4725
4448
  kind: z.ZodLiteral<"interf-action-proposal">;
4726
4449
  version: z.ZodLiteral<1>;
@@ -4760,12 +4483,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4760
4483
  }>>>;
4761
4484
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4762
4485
  action_type: z.ZodLiteral<"readiness-check-draft">;
4763
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4486
+ request: z.ZodObject<{
4764
4487
  preparation: z.ZodString;
4765
4488
  source_folder_path: z.ZodString;
4766
4489
  about: z.ZodOptional<z.ZodString>;
4767
4490
  target_count: z.ZodDefault<z.ZodNumber>;
4768
- }, z.core.$strict>>;
4491
+ }, z.core.$strict>;
4769
4492
  }, z.core.$strict>, z.ZodObject<{
4770
4493
  kind: z.ZodLiteral<"interf-action-proposal">;
4771
4494
  version: z.ZodLiteral<1>;
@@ -4805,7 +4528,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4805
4528
  }>>>;
4806
4529
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4807
4530
  action_type: z.ZodLiteral<"method-authoring">;
4808
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4531
+ request: z.ZodObject<{
4809
4532
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4810
4533
  source_folder_path: z.ZodString;
4811
4534
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -4827,7 +4550,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4827
4550
  }, z.core.$strip>>;
4828
4551
  strictness: z.ZodOptional<z.ZodString>;
4829
4552
  }, z.core.$strict>>>;
4830
- }, z.core.$strict>>;
4553
+ }, z.core.$strict>;
4831
4554
  }, z.core.$strict>, z.ZodObject<{
4832
4555
  kind: z.ZodLiteral<"interf-action-proposal">;
4833
4556
  version: z.ZodLiteral<1>;
@@ -4867,7 +4590,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4867
4590
  }>>>;
4868
4591
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4869
4592
  action_type: z.ZodLiteral<"method-improvement">;
4870
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4593
+ request: z.ZodObject<{
4871
4594
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4872
4595
  source_folder_path: z.ZodString;
4873
4596
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -4889,7 +4612,7 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4889
4612
  }, z.core.$strip>>;
4890
4613
  strictness: z.ZodOptional<z.ZodString>;
4891
4614
  }, z.core.$strict>>>;
4892
- }, z.core.$strict>>;
4615
+ }, z.core.$strict>;
4893
4616
  }, z.core.$strict>], "action_type">;
4894
4617
  }, z.core.$strict>, z.ZodObject<{
4895
4618
  kind: z.ZodLiteral<"portable-context">;
@@ -4897,14 +4620,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4897
4620
  preparation: z.ZodString;
4898
4621
  path: z.ZodString;
4899
4622
  exists: z.ZodBoolean;
4900
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4623
+ readiness: z.ZodObject<{
4901
4624
  kind: z.ZodLiteral<"interf-readiness-state">;
4902
4625
  version: z.ZodLiteral<1>;
4903
4626
  generated_at: z.ZodString;
4904
4627
  preparation: z.ZodString;
4905
4628
  status: z.ZodEnum<{
4906
- stale: "stale";
4907
- failed: "failed";
4908
4629
  "not-configured": "not-configured";
4909
4630
  "not-built": "not-built";
4910
4631
  building: "building";
@@ -4912,6 +4633,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4912
4633
  checking: "checking";
4913
4634
  ready: "ready";
4914
4635
  "not-ready": "not-ready";
4636
+ stale: "stale";
4637
+ failed: "failed";
4915
4638
  }>;
4916
4639
  ready: z.ZodBoolean;
4917
4640
  summary: z.ZodString;
@@ -4930,8 +4653,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4930
4653
  }>;
4931
4654
  ok: z.ZodBoolean;
4932
4655
  status: z.ZodOptional<z.ZodEnum<{
4933
- stale: "stale";
4934
- failed: "failed";
4935
4656
  "not-configured": "not-configured";
4936
4657
  "not-built": "not-built";
4937
4658
  building: "building";
@@ -4939,6 +4660,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4939
4660
  checking: "checking";
4940
4661
  ready: "ready";
4941
4662
  "not-ready": "not-ready";
4663
+ stale: "stale";
4664
+ failed: "failed";
4942
4665
  }>>;
4943
4666
  summary: z.ZodString;
4944
4667
  detail: z.ZodOptional<z.ZodString>;
@@ -4980,8 +4703,6 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4980
4703
  }>;
4981
4704
  ok: z.ZodBoolean;
4982
4705
  status: z.ZodOptional<z.ZodEnum<{
4983
- stale: "stale";
4984
- failed: "failed";
4985
4706
  "not-configured": "not-configured";
4986
4707
  "not-built": "not-built";
4987
4708
  building: "building";
@@ -4989,13 +4710,15 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
4989
4710
  checking: "checking";
4990
4711
  ready: "ready";
4991
4712
  "not-ready": "not-ready";
4713
+ stale: "stale";
4714
+ failed: "failed";
4992
4715
  }>>;
4993
4716
  summary: z.ZodString;
4994
4717
  detail: z.ZodOptional<z.ZodString>;
4995
4718
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4996
4719
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4997
4720
  }, z.core.$strict>>>;
4998
- }, z.core.$strict>>;
4721
+ }, z.core.$strict>;
4999
4722
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5000
4723
  latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5001
4724
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5015,14 +4738,12 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
5015
4738
  }, z.core.$strict>;
5016
4739
  }, z.core.$strict>, z.ZodObject<{
5017
4740
  kind: z.ZodLiteral<"readiness">;
5018
- value: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4741
+ value: z.ZodObject<{
5019
4742
  kind: z.ZodLiteral<"interf-readiness-state">;
5020
4743
  version: z.ZodLiteral<1>;
5021
4744
  generated_at: z.ZodString;
5022
4745
  preparation: z.ZodString;
5023
4746
  status: z.ZodEnum<{
5024
- stale: "stale";
5025
- failed: "failed";
5026
4747
  "not-configured": "not-configured";
5027
4748
  "not-built": "not-built";
5028
4749
  building: "building";
@@ -5030,6 +4751,8 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
5030
4751
  checking: "checking";
5031
4752
  ready: "ready";
5032
4753
  "not-ready": "not-ready";
4754
+ stale: "stale";
4755
+ failed: "failed";
5033
4756
  }>;
5034
4757
  ready: z.ZodBoolean;
5035
4758
  summary: z.ZodString;
@@ -5048,220 +4771,91 @@ export declare const LocalServiceResourceSchema: z.ZodDiscriminatedUnion<[z.ZodO
5048
4771
  }>;
5049
4772
  ok: z.ZodBoolean;
5050
4773
  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
4774
  "not-configured": "not-configured";
5171
4775
  "not-built": "not-built";
5172
4776
  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>>>;
4777
+ built: "built";
4778
+ checking: "checking";
4779
+ ready: "ready";
4780
+ "not-ready": "not-ready";
4781
+ stale: "stale";
4782
+ failed: "failed";
4783
+ }>>;
4784
+ summary: z.ZodString;
4785
+ detail: z.ZodOptional<z.ZodString>;
4786
+ run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4787
+ artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5260
4788
  }, 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>;
4789
+ check_results: z.ZodObject<{
4790
+ configured: z.ZodNumber;
4791
+ fingerprint: z.ZodNullable<z.ZodString>;
4792
+ source_files: z.ZodNullable<z.ZodObject<{
4793
+ passed: z.ZodNumber;
4794
+ total: z.ZodNumber;
4795
+ pass_rate: z.ZodNullable<z.ZodNumber>;
4796
+ checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4797
+ stale: z.ZodDefault<z.ZodBoolean>;
4798
+ run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4799
+ run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4800
+ }, z.core.$strict>>;
4801
+ portable_context: z.ZodNullable<z.ZodObject<{
4802
+ passed: z.ZodNumber;
4803
+ total: z.ZodNumber;
4804
+ pass_rate: z.ZodNullable<z.ZodNumber>;
4805
+ checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4806
+ stale: z.ZodDefault<z.ZodBoolean>;
4807
+ run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4808
+ run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4809
+ }, z.core.$strict>>;
4810
+ delta: z.ZodNullable<z.ZodNumber>;
4811
+ }, z.core.$strict>;
4812
+ checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
4813
+ gate: z.ZodEnum<{
4814
+ "preparation-config": "preparation-config";
4815
+ "portable-context": "portable-context";
4816
+ "compile-run": "compile-run";
4817
+ "readiness-checks": "readiness-checks";
4818
+ "source-baseline": "source-baseline";
4819
+ "portable-context-check": "portable-context-check";
4820
+ "checks-current": "checks-current";
4821
+ }>;
4822
+ ok: z.ZodBoolean;
4823
+ status: z.ZodOptional<z.ZodEnum<{
4824
+ "not-configured": "not-configured";
4825
+ "not-built": "not-built";
4826
+ building: "building";
4827
+ built: "built";
4828
+ checking: "checking";
4829
+ ready: "ready";
4830
+ "not-ready": "not-ready";
4831
+ stale: "stale";
4832
+ failed: "failed";
4833
+ }>>;
4834
+ summary: z.ZodString;
4835
+ detail: z.ZodOptional<z.ZodString>;
4836
+ run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4837
+ artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4838
+ }, z.core.$strict>>>;
4839
+ }, z.core.$strict>;
4840
+ }, z.core.$strict>, z.ZodObject<{
4841
+ kind: z.ZodLiteral<"source-file">;
4842
+ value: z.ZodObject<{
4843
+ preparation: z.ZodString;
4844
+ path: z.ZodString;
4845
+ absolute_path: z.ZodString;
4846
+ size_bytes: z.ZodNumber;
4847
+ modified_at: z.ZodNullable<z.ZodString>;
4848
+ source_folder_path: z.ZodString;
4849
+ }, z.core.$strict>;
4850
+ }, z.core.$strict>, z.ZodObject<{
4851
+ kind: z.ZodLiteral<"workspace-file">;
4852
+ value: z.ZodObject<{
4853
+ path: z.ZodString;
4854
+ absolute_path: z.ZodString;
4855
+ size_bytes: z.ZodNumber;
4856
+ modified_at: z.ZodNullable<z.ZodString>;
4857
+ }, z.core.$strict>;
4858
+ }, z.core.$strict>], "kind">;
5265
4859
  export declare const PreparationListResponseSchema: z.ZodObject<{
5266
4860
  preparations: z.ZodArray<z.ZodObject<{
5267
4861
  id: z.ZodString;
@@ -5272,7 +4866,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5272
4866
  path: z.ZodString;
5273
4867
  about: z.ZodOptional<z.ZodString>;
5274
4868
  method: z.ZodOptional<z.ZodString>;
5275
- workflow: z.ZodOptional<z.ZodString>;
5276
4869
  max_attempts: z.ZodOptional<z.ZodNumber>;
5277
4870
  max_loops: z.ZodOptional<z.ZodNumber>;
5278
4871
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -5313,14 +4906,12 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5313
4906
  latest_test_run_id: z.ZodNullable<z.ZodString>;
5314
4907
  }, z.core.$strict>;
5315
4908
  portable_context_path: z.ZodNullable<z.ZodString>;
5316
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
4909
+ readiness: z.ZodObject<{
5317
4910
  kind: z.ZodLiteral<"interf-readiness-state">;
5318
4911
  version: z.ZodLiteral<1>;
5319
4912
  generated_at: z.ZodString;
5320
4913
  preparation: z.ZodString;
5321
4914
  status: z.ZodEnum<{
5322
- stale: "stale";
5323
- failed: "failed";
5324
4915
  "not-configured": "not-configured";
5325
4916
  "not-built": "not-built";
5326
4917
  building: "building";
@@ -5328,6 +4919,8 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5328
4919
  checking: "checking";
5329
4920
  ready: "ready";
5330
4921
  "not-ready": "not-ready";
4922
+ stale: "stale";
4923
+ failed: "failed";
5331
4924
  }>;
5332
4925
  ready: z.ZodBoolean;
5333
4926
  summary: z.ZodString;
@@ -5346,8 +4939,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5346
4939
  }>;
5347
4940
  ok: z.ZodBoolean;
5348
4941
  status: z.ZodOptional<z.ZodEnum<{
5349
- stale: "stale";
5350
- failed: "failed";
5351
4942
  "not-configured": "not-configured";
5352
4943
  "not-built": "not-built";
5353
4944
  building: "building";
@@ -5355,6 +4946,8 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5355
4946
  checking: "checking";
5356
4947
  ready: "ready";
5357
4948
  "not-ready": "not-ready";
4949
+ stale: "stale";
4950
+ failed: "failed";
5358
4951
  }>>;
5359
4952
  summary: z.ZodString;
5360
4953
  detail: z.ZodOptional<z.ZodString>;
@@ -5396,8 +4989,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5396
4989
  }>;
5397
4990
  ok: z.ZodBoolean;
5398
4991
  status: z.ZodOptional<z.ZodEnum<{
5399
- stale: "stale";
5400
- failed: "failed";
5401
4992
  "not-configured": "not-configured";
5402
4993
  "not-built": "not-built";
5403
4994
  building: "building";
@@ -5405,13 +4996,15 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5405
4996
  checking: "checking";
5406
4997
  ready: "ready";
5407
4998
  "not-ready": "not-ready";
4999
+ stale: "stale";
5000
+ failed: "failed";
5408
5001
  }>>;
5409
5002
  summary: z.ZodString;
5410
5003
  detail: z.ZodOptional<z.ZodString>;
5411
5004
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5412
5005
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5413
5006
  }, z.core.$strict>>>;
5414
- }, z.core.$strict>>;
5007
+ }, z.core.$strict>;
5415
5008
  runs: z.ZodObject<{
5416
5009
  latest_compile_run_id: z.ZodNullable<z.ZodString>;
5417
5010
  latest_test_run_id: z.ZodNullable<z.ZodString>;
@@ -5420,30 +5013,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
5420
5013
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5421
5014
  }, z.core.$strict>>;
5422
5015
  }, 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
5016
  export declare const MethodListResponseSchema: z.ZodObject<{
5448
5017
  methods: z.ZodArray<z.ZodObject<{
5449
5018
  id: z.ZodString;
@@ -5471,13 +5040,13 @@ export declare const MethodListResponseSchema: z.ZodObject<{
5471
5040
  }, z.core.$strict>;
5472
5041
  export declare const CompileRunListResponseSchema: z.ZodObject<{
5473
5042
  compile_runs: z.ZodArray<z.ZodObject<{
5474
- run: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5043
+ run: z.ZodObject<{
5475
5044
  kind: z.ZodLiteral<"interf-compile-run">;
5476
5045
  version: z.ZodLiteral<1>;
5477
5046
  run_id: z.ZodString;
5478
5047
  status: z.ZodEnum<{
5479
- running: "running";
5480
5048
  failed: "failed";
5049
+ running: "running";
5481
5050
  succeeded: "succeeded";
5482
5051
  cancelled: "cancelled";
5483
5052
  queued: "queued";
@@ -5500,11 +5069,10 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5500
5069
  stage_index: z.ZodOptional<z.ZodNumber>;
5501
5070
  stage_total: z.ZodOptional<z.ZodNumber>;
5502
5071
  status: z.ZodEnum<{
5503
- running: "running";
5504
5072
  failed: "failed";
5073
+ running: "running";
5505
5074
  succeeded: "succeeded";
5506
5075
  queued: "queued";
5507
- skipped: "skipped";
5508
5076
  }>;
5509
5077
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5510
5078
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5579,7 +5147,7 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5579
5147
  }, z.core.$strict>>>;
5580
5148
  failure: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5581
5149
  }, z.core.$strict>>>;
5582
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
5150
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
5583
5151
  event_id: z.ZodString;
5584
5152
  run_id: z.ZodString;
5585
5153
  timestamp: z.ZodString;
@@ -5716,14 +5284,12 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5716
5284
  timestamp: z.ZodString;
5717
5285
  type: z.ZodLiteral<"readiness.updated">;
5718
5286
  preparation: z.ZodString;
5719
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5287
+ readiness: z.ZodObject<{
5720
5288
  kind: z.ZodLiteral<"interf-readiness-state">;
5721
5289
  version: z.ZodLiteral<1>;
5722
5290
  generated_at: z.ZodString;
5723
5291
  preparation: z.ZodString;
5724
5292
  status: z.ZodEnum<{
5725
- stale: "stale";
5726
- failed: "failed";
5727
5293
  "not-configured": "not-configured";
5728
5294
  "not-built": "not-built";
5729
5295
  building: "building";
@@ -5731,6 +5297,8 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5731
5297
  checking: "checking";
5732
5298
  ready: "ready";
5733
5299
  "not-ready": "not-ready";
5300
+ stale: "stale";
5301
+ failed: "failed";
5734
5302
  }>;
5735
5303
  ready: z.ZodBoolean;
5736
5304
  summary: z.ZodString;
@@ -5749,8 +5317,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5749
5317
  }>;
5750
5318
  ok: z.ZodBoolean;
5751
5319
  status: z.ZodOptional<z.ZodEnum<{
5752
- stale: "stale";
5753
- failed: "failed";
5754
5320
  "not-configured": "not-configured";
5755
5321
  "not-built": "not-built";
5756
5322
  building: "building";
@@ -5758,6 +5324,8 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5758
5324
  checking: "checking";
5759
5325
  ready: "ready";
5760
5326
  "not-ready": "not-ready";
5327
+ stale: "stale";
5328
+ failed: "failed";
5761
5329
  }>>;
5762
5330
  summary: z.ZodString;
5763
5331
  detail: z.ZodOptional<z.ZodString>;
@@ -5799,8 +5367,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5799
5367
  }>;
5800
5368
  ok: z.ZodBoolean;
5801
5369
  status: z.ZodOptional<z.ZodEnum<{
5802
- stale: "stale";
5803
- failed: "failed";
5804
5370
  "not-configured": "not-configured";
5805
5371
  "not-built": "not-built";
5806
5372
  building: "building";
@@ -5808,14 +5374,16 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5808
5374
  checking: "checking";
5809
5375
  ready: "ready";
5810
5376
  "not-ready": "not-ready";
5377
+ stale: "stale";
5378
+ failed: "failed";
5811
5379
  }>>;
5812
5380
  summary: z.ZodString;
5813
5381
  detail: z.ZodOptional<z.ZodString>;
5814
5382
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5815
5383
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5816
5384
  }, z.core.$strict>>>;
5817
- }, z.core.$strict>>;
5818
- }, z.core.$strict>], "type">>>>;
5385
+ }, z.core.$strict>;
5386
+ }, z.core.$strict>], "type">>>;
5819
5387
  latest_proof: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5820
5388
  id: z.ZodString;
5821
5389
  run_id: z.ZodString;
@@ -5843,14 +5411,12 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5843
5411
  detail: z.ZodOptional<z.ZodString>;
5844
5412
  }, z.core.$strict>>>;
5845
5413
  }, z.core.$strict>>>;
5846
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5414
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5847
5415
  kind: z.ZodLiteral<"interf-readiness-state">;
5848
5416
  version: z.ZodLiteral<1>;
5849
5417
  generated_at: z.ZodString;
5850
5418
  preparation: z.ZodString;
5851
5419
  status: z.ZodEnum<{
5852
- stale: "stale";
5853
- failed: "failed";
5854
5420
  "not-configured": "not-configured";
5855
5421
  "not-built": "not-built";
5856
5422
  building: "building";
@@ -5858,6 +5424,8 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5858
5424
  checking: "checking";
5859
5425
  ready: "ready";
5860
5426
  "not-ready": "not-ready";
5427
+ stale: "stale";
5428
+ failed: "failed";
5861
5429
  }>;
5862
5430
  ready: z.ZodBoolean;
5863
5431
  summary: z.ZodString;
@@ -5876,8 +5444,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5876
5444
  }>;
5877
5445
  ok: z.ZodBoolean;
5878
5446
  status: z.ZodOptional<z.ZodEnum<{
5879
- stale: "stale";
5880
- failed: "failed";
5881
5447
  "not-configured": "not-configured";
5882
5448
  "not-built": "not-built";
5883
5449
  building: "building";
@@ -5885,6 +5451,8 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5885
5451
  checking: "checking";
5886
5452
  ready: "ready";
5887
5453
  "not-ready": "not-ready";
5454
+ stale: "stale";
5455
+ failed: "failed";
5888
5456
  }>>;
5889
5457
  summary: z.ZodString;
5890
5458
  detail: z.ZodOptional<z.ZodString>;
@@ -5926,8 +5494,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5926
5494
  }>;
5927
5495
  ok: z.ZodBoolean;
5928
5496
  status: z.ZodOptional<z.ZodEnum<{
5929
- stale: "stale";
5930
- failed: "failed";
5931
5497
  "not-configured": "not-configured";
5932
5498
  "not-built": "not-built";
5933
5499
  building: "building";
@@ -5935,14 +5501,16 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
5935
5501
  checking: "checking";
5936
5502
  ready: "ready";
5937
5503
  "not-ready": "not-ready";
5504
+ stale: "stale";
5505
+ failed: "failed";
5938
5506
  }>>;
5939
5507
  summary: z.ZodString;
5940
5508
  detail: z.ZodOptional<z.ZodString>;
5941
5509
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5942
5510
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5943
5511
  }, z.core.$strict>>>;
5944
- }, z.core.$strict>>>>;
5945
- }, z.core.$strict>>;
5512
+ }, z.core.$strict>>>;
5513
+ }, z.core.$strict>;
5946
5514
  }, z.core.$strict>>;
5947
5515
  }, z.core.$strict>;
5948
5516
  export declare const LocalJobRunListResponseSchema: z.ZodObject<{
@@ -5952,15 +5520,15 @@ export declare const LocalJobRunListResponseSchema: z.ZodObject<{
5952
5520
  run_id: z.ZodString;
5953
5521
  job_type: z.ZodEnum<{
5954
5522
  compile: "compile";
5523
+ "method-authoring": "method-authoring";
5524
+ "method-improvement": "method-improvement";
5955
5525
  "preparation-setup": "preparation-setup";
5956
5526
  test: "test";
5957
5527
  "readiness-check-draft": "readiness-check-draft";
5958
- "method-authoring": "method-authoring";
5959
- "method-improvement": "method-improvement";
5960
5528
  }>;
5961
5529
  status: z.ZodEnum<{
5962
- running: "running";
5963
5530
  failed: "failed";
5531
+ running: "running";
5964
5532
  succeeded: "succeeded";
5965
5533
  cancelled: "cancelled";
5966
5534
  queued: "queued";
@@ -5982,8 +5550,8 @@ export declare const LocalJobRunListResponseSchema: z.ZodObject<{
5982
5550
  id: z.ZodString;
5983
5551
  label: z.ZodString;
5984
5552
  status: z.ZodEnum<{
5985
- running: "running";
5986
5553
  failed: "failed";
5554
+ running: "running";
5987
5555
  succeeded: "succeeded";
5988
5556
  cancelled: "cancelled";
5989
5557
  queued: "queued";
@@ -6034,8 +5602,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6034
5602
  test_runs: z.ZodArray<z.ZodObject<{
6035
5603
  run_id: z.ZodString;
6036
5604
  status: z.ZodEnum<{
6037
- running: "running";
6038
5605
  failed: "failed";
5606
+ running: "running";
6039
5607
  succeeded: "succeeded";
6040
5608
  cancelled: "cancelled";
6041
5609
  queued: "queued";
@@ -6051,7 +5619,7 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6051
5619
  started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6052
5620
  finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6053
5621
  comparison: z.ZodNullable<z.ZodObject<{
6054
- kind: z.ZodLiteral<"interf-test-run">;
5622
+ kind: z.ZodLiteral<"interf-readiness-check-run">;
6055
5623
  version: z.ZodLiteral<1>;
6056
5624
  generated_at: z.ZodString;
6057
5625
  mode: z.ZodEnum<{
@@ -6061,9 +5629,9 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6061
5629
  }>;
6062
5630
  source_path: z.ZodString;
6063
5631
  checks_fingerprint: z.ZodOptional<z.ZodString>;
6064
- dataset: z.ZodObject<{
5632
+ preparation: z.ZodObject<{
6065
5633
  name: z.ZodString;
6066
- compiled_path: z.ZodNullable<z.ZodString>;
5634
+ portable_context_path: z.ZodNullable<z.ZodString>;
6067
5635
  }, z.core.$strip>;
6068
5636
  raw: z.ZodNullable<z.ZodObject<{
6069
5637
  label: z.ZodString;
@@ -6080,7 +5648,7 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6080
5648
  }>;
6081
5649
  name: z.ZodString;
6082
5650
  path: z.ZodString;
6083
- workflow: z.ZodString;
5651
+ method: z.ZodString;
6084
5652
  }, z.core.$strip>;
6085
5653
  }, z.core.$strip>>;
6086
5654
  compiled: z.ZodNullable<z.ZodObject<{
@@ -6098,7 +5666,7 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6098
5666
  }>;
6099
5667
  name: z.ZodString;
6100
5668
  path: z.ZodString;
6101
- workflow: z.ZodString;
5669
+ method: z.ZodString;
6102
5670
  }, z.core.$strip>;
6103
5671
  }, z.core.$strip>>;
6104
5672
  summary: z.ZodObject<{
@@ -6107,14 +5675,12 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6107
5675
  pass_rate_delta: z.ZodNullable<z.ZodNumber>;
6108
5676
  }, z.core.$strip>;
6109
5677
  }, z.core.$strip>>;
6110
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5678
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
6111
5679
  kind: z.ZodLiteral<"interf-readiness-state">;
6112
5680
  version: z.ZodLiteral<1>;
6113
5681
  generated_at: z.ZodString;
6114
5682
  preparation: z.ZodString;
6115
5683
  status: z.ZodEnum<{
6116
- stale: "stale";
6117
- failed: "failed";
6118
5684
  "not-configured": "not-configured";
6119
5685
  "not-built": "not-built";
6120
5686
  building: "building";
@@ -6122,6 +5688,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6122
5688
  checking: "checking";
6123
5689
  ready: "ready";
6124
5690
  "not-ready": "not-ready";
5691
+ stale: "stale";
5692
+ failed: "failed";
6125
5693
  }>;
6126
5694
  ready: z.ZodBoolean;
6127
5695
  summary: z.ZodString;
@@ -6140,8 +5708,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6140
5708
  }>;
6141
5709
  ok: z.ZodBoolean;
6142
5710
  status: z.ZodOptional<z.ZodEnum<{
6143
- stale: "stale";
6144
- failed: "failed";
6145
5711
  "not-configured": "not-configured";
6146
5712
  "not-built": "not-built";
6147
5713
  building: "building";
@@ -6149,6 +5715,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6149
5715
  checking: "checking";
6150
5716
  ready: "ready";
6151
5717
  "not-ready": "not-ready";
5718
+ stale: "stale";
5719
+ failed: "failed";
6152
5720
  }>>;
6153
5721
  summary: z.ZodString;
6154
5722
  detail: z.ZodOptional<z.ZodString>;
@@ -6190,8 +5758,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6190
5758
  }>;
6191
5759
  ok: z.ZodBoolean;
6192
5760
  status: z.ZodOptional<z.ZodEnum<{
6193
- stale: "stale";
6194
- failed: "failed";
6195
5761
  "not-configured": "not-configured";
6196
5762
  "not-built": "not-built";
6197
5763
  building: "building";
@@ -6199,14 +5765,16 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6199
5765
  checking: "checking";
6200
5766
  ready: "ready";
6201
5767
  "not-ready": "not-ready";
5768
+ stale: "stale";
5769
+ failed: "failed";
6202
5770
  }>>;
6203
5771
  summary: z.ZodString;
6204
5772
  detail: z.ZodOptional<z.ZodString>;
6205
5773
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6206
5774
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6207
5775
  }, z.core.$strict>>>;
6208
- }, z.core.$strict>>>>;
6209
- events: z.ZodDefault<z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodDiscriminatedUnion<[z.ZodObject<{
5776
+ }, z.core.$strict>>>;
5777
+ events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
6210
5778
  event_id: z.ZodString;
6211
5779
  run_id: z.ZodString;
6212
5780
  timestamp: z.ZodString;
@@ -6343,14 +5911,12 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6343
5911
  timestamp: z.ZodString;
6344
5912
  type: z.ZodLiteral<"readiness.updated">;
6345
5913
  preparation: z.ZodString;
6346
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
5914
+ readiness: z.ZodObject<{
6347
5915
  kind: z.ZodLiteral<"interf-readiness-state">;
6348
5916
  version: z.ZodLiteral<1>;
6349
5917
  generated_at: z.ZodString;
6350
5918
  preparation: z.ZodString;
6351
5919
  status: z.ZodEnum<{
6352
- stale: "stale";
6353
- failed: "failed";
6354
5920
  "not-configured": "not-configured";
6355
5921
  "not-built": "not-built";
6356
5922
  building: "building";
@@ -6358,6 +5924,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6358
5924
  checking: "checking";
6359
5925
  ready: "ready";
6360
5926
  "not-ready": "not-ready";
5927
+ stale: "stale";
5928
+ failed: "failed";
6361
5929
  }>;
6362
5930
  ready: z.ZodBoolean;
6363
5931
  summary: z.ZodString;
@@ -6376,8 +5944,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6376
5944
  }>;
6377
5945
  ok: z.ZodBoolean;
6378
5946
  status: z.ZodOptional<z.ZodEnum<{
6379
- stale: "stale";
6380
- failed: "failed";
6381
5947
  "not-configured": "not-configured";
6382
5948
  "not-built": "not-built";
6383
5949
  building: "building";
@@ -6385,6 +5951,8 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6385
5951
  checking: "checking";
6386
5952
  ready: "ready";
6387
5953
  "not-ready": "not-ready";
5954
+ stale: "stale";
5955
+ failed: "failed";
6388
5956
  }>>;
6389
5957
  summary: z.ZodString;
6390
5958
  detail: z.ZodOptional<z.ZodString>;
@@ -6426,8 +5994,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6426
5994
  }>;
6427
5995
  ok: z.ZodBoolean;
6428
5996
  status: z.ZodOptional<z.ZodEnum<{
6429
- stale: "stale";
6430
- failed: "failed";
6431
5997
  "not-configured": "not-configured";
6432
5998
  "not-built": "not-built";
6433
5999
  building: "building";
@@ -6435,35 +6001,37 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
6435
6001
  checking: "checking";
6436
6002
  ready: "ready";
6437
6003
  "not-ready": "not-ready";
6004
+ stale: "stale";
6005
+ failed: "failed";
6438
6006
  }>>;
6439
6007
  summary: z.ZodString;
6440
6008
  detail: z.ZodOptional<z.ZodString>;
6441
6009
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6442
6010
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6443
6011
  }, z.core.$strict>>>;
6444
- }, z.core.$strict>>;
6445
- }, z.core.$strict>], "type">>>>;
6012
+ }, z.core.$strict>;
6013
+ }, z.core.$strict>], "type">>>;
6446
6014
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6447
6015
  }, z.core.$strict>>;
6448
6016
  }, z.core.$strict>;
6449
6017
  export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6450
- runs: z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6018
+ runs: z.ZodArray<z.ZodObject<{
6451
6019
  kind: z.ZodLiteral<"interf-run-observability">;
6452
6020
  version: z.ZodLiteral<1>;
6453
6021
  run_id: z.ZodString;
6454
6022
  run_type: z.ZodEnum<{
6455
6023
  compile: "compile";
6024
+ "method-authoring": "method-authoring";
6025
+ "method-improvement": "method-improvement";
6456
6026
  "preparation-setup": "preparation-setup";
6457
6027
  test: "test";
6458
6028
  "readiness-check-draft": "readiness-check-draft";
6459
- "method-authoring": "method-authoring";
6460
- "method-improvement": "method-improvement";
6461
6029
  job: "job";
6462
6030
  }>;
6463
6031
  title: z.ZodString;
6464
6032
  status: z.ZodEnum<{
6465
- running: "running";
6466
6033
  failed: "failed";
6034
+ running: "running";
6467
6035
  succeeded: "succeeded";
6468
6036
  cancelled: "cancelled";
6469
6037
  queued: "queued";
@@ -6514,14 +6082,12 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6514
6082
  ok: z.ZodBoolean;
6515
6083
  detail: z.ZodOptional<z.ZodString>;
6516
6084
  }, z.core.$strict>>>;
6517
- readiness: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6085
+ readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
6518
6086
  kind: z.ZodLiteral<"interf-readiness-state">;
6519
6087
  version: z.ZodLiteral<1>;
6520
6088
  generated_at: z.ZodString;
6521
6089
  preparation: z.ZodString;
6522
6090
  status: z.ZodEnum<{
6523
- stale: "stale";
6524
- failed: "failed";
6525
6091
  "not-configured": "not-configured";
6526
6092
  "not-built": "not-built";
6527
6093
  building: "building";
@@ -6529,6 +6095,8 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6529
6095
  checking: "checking";
6530
6096
  ready: "ready";
6531
6097
  "not-ready": "not-ready";
6098
+ stale: "stale";
6099
+ failed: "failed";
6532
6100
  }>;
6533
6101
  ready: z.ZodBoolean;
6534
6102
  summary: z.ZodString;
@@ -6547,8 +6115,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6547
6115
  }>;
6548
6116
  ok: z.ZodBoolean;
6549
6117
  status: z.ZodOptional<z.ZodEnum<{
6550
- stale: "stale";
6551
- failed: "failed";
6552
6118
  "not-configured": "not-configured";
6553
6119
  "not-built": "not-built";
6554
6120
  building: "building";
@@ -6556,6 +6122,8 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6556
6122
  checking: "checking";
6557
6123
  ready: "ready";
6558
6124
  "not-ready": "not-ready";
6125
+ stale: "stale";
6126
+ failed: "failed";
6559
6127
  }>>;
6560
6128
  summary: z.ZodString;
6561
6129
  detail: z.ZodOptional<z.ZodString>;
@@ -6597,8 +6165,6 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6597
6165
  }>;
6598
6166
  ok: z.ZodBoolean;
6599
6167
  status: z.ZodOptional<z.ZodEnum<{
6600
- stale: "stale";
6601
- failed: "failed";
6602
6168
  "not-configured": "not-configured";
6603
6169
  "not-built": "not-built";
6604
6170
  building: "building";
@@ -6606,25 +6172,27 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6606
6172
  checking: "checking";
6607
6173
  ready: "ready";
6608
6174
  "not-ready": "not-ready";
6175
+ stale: "stale";
6176
+ failed: "failed";
6609
6177
  }>>;
6610
6178
  summary: z.ZodString;
6611
6179
  detail: z.ZodOptional<z.ZodString>;
6612
6180
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6613
6181
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6614
6182
  }, z.core.$strict>>>;
6615
- }, z.core.$strict>>>>;
6183
+ }, z.core.$strict>>>;
6616
6184
  trace: z.ZodObject<{
6617
6185
  run: z.ZodObject<{
6618
6186
  runId: z.ZodString;
6619
6187
  status: z.ZodEnum<{
6620
- running: "running";
6621
6188
  failed: "failed";
6189
+ running: "running";
6622
6190
  pending: "pending";
6623
6191
  completed: "completed";
6624
6192
  cancelled: "cancelled";
6625
6193
  }>;
6626
6194
  deploymentId: z.ZodString;
6627
- workflowName: z.ZodString;
6195
+ methodName: z.ZodString;
6628
6196
  specVersion: z.ZodLiteral<1>;
6629
6197
  executionContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6630
6198
  input: z.ZodUnknown;
@@ -6675,7 +6243,7 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
6675
6243
  data: z.ZodOptional<z.ZodUnknown>;
6676
6244
  }, z.core.$strict>>>;
6677
6245
  }, z.core.$strict>;
6678
- }, z.core.$strict>>>;
6246
+ }, z.core.$strict>>;
6679
6247
  }, z.core.$strict>;
6680
6248
  export declare const ActionProposalListResponseSchema: z.ZodObject<{
6681
6249
  action_proposals: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -6757,7 +6325,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6757
6325
  }>>>;
6758
6326
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6759
6327
  action_type: z.ZodLiteral<"compile">;
6760
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6328
+ request: z.ZodObject<{
6761
6329
  preparation: z.ZodString;
6762
6330
  method: z.ZodOptional<z.ZodString>;
6763
6331
  max_attempts: z.ZodOptional<z.ZodNumber>;
@@ -6766,7 +6334,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6766
6334
  "on-failure": "on-failure";
6767
6335
  always: "always";
6768
6336
  }>>;
6769
- }, z.core.$strict>>;
6337
+ }, z.core.$strict>;
6770
6338
  }, z.core.$strict>, z.ZodObject<{
6771
6339
  kind: z.ZodLiteral<"interf-action-proposal">;
6772
6340
  version: z.ZodLiteral<1>;
@@ -6806,14 +6374,13 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6806
6374
  }>>>;
6807
6375
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6808
6376
  action_type: z.ZodLiteral<"preparation-setup">;
6809
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6377
+ request: z.ZodObject<{
6810
6378
  preparation: z.ZodObject<{
6811
6379
  id: z.ZodOptional<z.ZodString>;
6812
6380
  name: z.ZodString;
6813
6381
  path: z.ZodString;
6814
6382
  about: z.ZodOptional<z.ZodString>;
6815
6383
  method: z.ZodOptional<z.ZodString>;
6816
- workflow: z.ZodOptional<z.ZodString>;
6817
6384
  max_attempts: z.ZodOptional<z.ZodNumber>;
6818
6385
  max_loops: z.ZodOptional<z.ZodNumber>;
6819
6386
  checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -6830,7 +6397,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6830
6397
  strictness: z.ZodOptional<z.ZodString>;
6831
6398
  }, z.core.$strict>>>;
6832
6399
  }, z.core.$strict>;
6833
- }, z.core.$strict>>;
6400
+ }, z.core.$strict>;
6834
6401
  }, z.core.$strict>, z.ZodObject<{
6835
6402
  kind: z.ZodLiteral<"interf-action-proposal">;
6836
6403
  version: z.ZodLiteral<1>;
@@ -6870,14 +6437,14 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6870
6437
  }>>>;
6871
6438
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6872
6439
  action_type: z.ZodLiteral<"test">;
6873
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6440
+ request: z.ZodObject<{
6874
6441
  preparation: z.ZodString;
6875
6442
  mode: z.ZodDefault<z.ZodEnum<{
6876
6443
  compiled: "compiled";
6877
6444
  raw: "raw";
6878
6445
  both: "both";
6879
6446
  }>>;
6880
- }, z.core.$strict>>;
6447
+ }, z.core.$strict>;
6881
6448
  }, z.core.$strict>, z.ZodObject<{
6882
6449
  kind: z.ZodLiteral<"interf-action-proposal">;
6883
6450
  version: z.ZodLiteral<1>;
@@ -6917,12 +6484,12 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6917
6484
  }>>>;
6918
6485
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6919
6486
  action_type: z.ZodLiteral<"readiness-check-draft">;
6920
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6487
+ request: z.ZodObject<{
6921
6488
  preparation: z.ZodString;
6922
6489
  source_folder_path: z.ZodString;
6923
6490
  about: z.ZodOptional<z.ZodString>;
6924
6491
  target_count: z.ZodDefault<z.ZodNumber>;
6925
- }, z.core.$strict>>;
6492
+ }, z.core.$strict>;
6926
6493
  }, z.core.$strict>, z.ZodObject<{
6927
6494
  kind: z.ZodLiteral<"interf-action-proposal">;
6928
6495
  version: z.ZodLiteral<1>;
@@ -6962,7 +6529,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6962
6529
  }>>>;
6963
6530
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6964
6531
  action_type: z.ZodLiteral<"method-authoring">;
6965
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6532
+ request: z.ZodObject<{
6966
6533
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6967
6534
  source_folder_path: z.ZodString;
6968
6535
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -6984,7 +6551,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
6984
6551
  }, z.core.$strip>>;
6985
6552
  strictness: z.ZodOptional<z.ZodString>;
6986
6553
  }, z.core.$strict>>>;
6987
- }, z.core.$strict>>;
6554
+ }, z.core.$strict>;
6988
6555
  }, z.core.$strict>, z.ZodObject<{
6989
6556
  kind: z.ZodLiteral<"interf-action-proposal">;
6990
6557
  version: z.ZodLiteral<1>;
@@ -7024,7 +6591,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
7024
6591
  }>>>;
7025
6592
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7026
6593
  action_type: z.ZodLiteral<"method-improvement">;
7027
- request: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6594
+ request: z.ZodObject<{
7028
6595
  preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7029
6596
  source_folder_path: z.ZodString;
7030
6597
  base_method_id: z.ZodOptional<z.ZodString>;
@@ -7046,7 +6613,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
7046
6613
  }, z.core.$strip>>;
7047
6614
  strictness: z.ZodOptional<z.ZodString>;
7048
6615
  }, z.core.$strict>>>;
7049
- }, z.core.$strict>>;
6616
+ }, z.core.$strict>;
7050
6617
  }, z.core.$strict>], "action_type">>;
7051
6618
  }, z.core.$strict>;
7052
6619
  export declare const PortableContextListResponseSchema: z.ZodObject<{
@@ -7054,14 +6621,12 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7054
6621
  preparation: z.ZodString;
7055
6622
  path: z.ZodString;
7056
6623
  exists: z.ZodBoolean;
7057
- readiness: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6624
+ readiness: z.ZodObject<{
7058
6625
  kind: z.ZodLiteral<"interf-readiness-state">;
7059
6626
  version: z.ZodLiteral<1>;
7060
6627
  generated_at: z.ZodString;
7061
6628
  preparation: z.ZodString;
7062
6629
  status: z.ZodEnum<{
7063
- stale: "stale";
7064
- failed: "failed";
7065
6630
  "not-configured": "not-configured";
7066
6631
  "not-built": "not-built";
7067
6632
  building: "building";
@@ -7069,6 +6634,8 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7069
6634
  checking: "checking";
7070
6635
  ready: "ready";
7071
6636
  "not-ready": "not-ready";
6637
+ stale: "stale";
6638
+ failed: "failed";
7072
6639
  }>;
7073
6640
  ready: z.ZodBoolean;
7074
6641
  summary: z.ZodString;
@@ -7087,8 +6654,6 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7087
6654
  }>;
7088
6655
  ok: z.ZodBoolean;
7089
6656
  status: z.ZodOptional<z.ZodEnum<{
7090
- stale: "stale";
7091
- failed: "failed";
7092
6657
  "not-configured": "not-configured";
7093
6658
  "not-built": "not-built";
7094
6659
  building: "building";
@@ -7096,6 +6661,8 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7096
6661
  checking: "checking";
7097
6662
  ready: "ready";
7098
6663
  "not-ready": "not-ready";
6664
+ stale: "stale";
6665
+ failed: "failed";
7099
6666
  }>>;
7100
6667
  summary: z.ZodString;
7101
6668
  detail: z.ZodOptional<z.ZodString>;
@@ -7137,8 +6704,6 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7137
6704
  }>;
7138
6705
  ok: z.ZodBoolean;
7139
6706
  status: z.ZodOptional<z.ZodEnum<{
7140
- stale: "stale";
7141
- failed: "failed";
7142
6707
  "not-configured": "not-configured";
7143
6708
  "not-built": "not-built";
7144
6709
  building: "building";
@@ -7146,13 +6711,15 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7146
6711
  checking: "checking";
7147
6712
  ready: "ready";
7148
6713
  "not-ready": "not-ready";
6714
+ stale: "stale";
6715
+ failed: "failed";
7149
6716
  }>>;
7150
6717
  summary: z.ZodString;
7151
6718
  detail: z.ZodOptional<z.ZodString>;
7152
6719
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7153
6720
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7154
6721
  }, z.core.$strict>>>;
7155
- }, z.core.$strict>>;
6722
+ }, z.core.$strict>;
7156
6723
  method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7157
6724
  latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7158
6725
  latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7172,14 +6739,12 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
7172
6739
  }, z.core.$strict>>;
7173
6740
  }, z.core.$strict>;
7174
6741
  export declare const ReadinessListResponseSchema: z.ZodObject<{
7175
- readiness: z.ZodArray<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
6742
+ readiness: z.ZodArray<z.ZodObject<{
7176
6743
  kind: z.ZodLiteral<"interf-readiness-state">;
7177
6744
  version: z.ZodLiteral<1>;
7178
6745
  generated_at: z.ZodString;
7179
6746
  preparation: z.ZodString;
7180
6747
  status: z.ZodEnum<{
7181
- stale: "stale";
7182
- failed: "failed";
7183
6748
  "not-configured": "not-configured";
7184
6749
  "not-built": "not-built";
7185
6750
  building: "building";
@@ -7187,6 +6752,8 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7187
6752
  checking: "checking";
7188
6753
  ready: "ready";
7189
6754
  "not-ready": "not-ready";
6755
+ stale: "stale";
6756
+ failed: "failed";
7190
6757
  }>;
7191
6758
  ready: z.ZodBoolean;
7192
6759
  summary: z.ZodString;
@@ -7205,8 +6772,6 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7205
6772
  }>;
7206
6773
  ok: z.ZodBoolean;
7207
6774
  status: z.ZodOptional<z.ZodEnum<{
7208
- stale: "stale";
7209
- failed: "failed";
7210
6775
  "not-configured": "not-configured";
7211
6776
  "not-built": "not-built";
7212
6777
  building: "building";
@@ -7214,6 +6779,8 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7214
6779
  checking: "checking";
7215
6780
  ready: "ready";
7216
6781
  "not-ready": "not-ready";
6782
+ stale: "stale";
6783
+ failed: "failed";
7217
6784
  }>>;
7218
6785
  summary: z.ZodString;
7219
6786
  detail: z.ZodOptional<z.ZodString>;
@@ -7255,8 +6822,6 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7255
6822
  }>;
7256
6823
  ok: z.ZodBoolean;
7257
6824
  status: z.ZodOptional<z.ZodEnum<{
7258
- stale: "stale";
7259
- failed: "failed";
7260
6825
  "not-configured": "not-configured";
7261
6826
  "not-built": "not-built";
7262
6827
  building: "building";
@@ -7264,13 +6829,15 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
7264
6829
  checking: "checking";
7265
6830
  ready: "ready";
7266
6831
  "not-ready": "not-ready";
6832
+ stale: "stale";
6833
+ failed: "failed";
7267
6834
  }>>;
7268
6835
  summary: z.ZodString;
7269
6836
  detail: z.ZodOptional<z.ZodString>;
7270
6837
  run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7271
6838
  artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7272
6839
  }, z.core.$strict>>>;
7273
- }, z.core.$strict>>>;
6840
+ }, z.core.$strict>>;
7274
6841
  }, z.core.$strict>;
7275
6842
  export declare const SourceFileListResponseSchema: z.ZodObject<{
7276
6843
  source_files: z.ZodArray<z.ZodObject<{
@@ -7293,12 +6860,10 @@ export declare const WorkspaceFileListResponseSchema: z.ZodObject<{
7293
6860
  export type LocalServiceConfig = z.infer<typeof LocalServiceConfigSchema>;
7294
6861
  export type LocalServiceHealth = z.infer<typeof LocalServiceHealthSchema>;
7295
6862
  export type LocalServiceInstancePointer = z.infer<typeof LocalServiceInstancePointerSchema>;
7296
- export type DatasetResource = z.infer<typeof DatasetResourceSchema>;
7297
6863
  export type PreparationReadinessState = z.infer<typeof PreparationReadinessStateSchema>;
7298
6864
  export type PortableContextMapping = z.infer<typeof PortableContextMappingSchema>;
7299
6865
  export type PreparationRunLinkage = z.infer<typeof PreparationRunLinkageSchema>;
7300
6866
  export type PreparationResource = z.infer<typeof PreparationResourceSchema>;
7301
- export type WorkflowPackageResource = z.infer<typeof WorkflowPackageResourceSchema>;
7302
6867
  export type MethodResource = z.infer<typeof MethodResourceSchema>;
7303
6868
  export type SourceFileResource = z.infer<typeof SourceFileResourceSchema>;
7304
6869
  export type WorkspaceFileResource = z.infer<typeof WorkspaceFileResourceSchema>;
@@ -7314,11 +6879,10 @@ export type LocalJobEventType = z.infer<typeof LocalJobEventTypeSchema>;
7314
6879
  export type LocalJobEvent = z.infer<typeof LocalJobEventSchema>;
7315
6880
  export type LocalJobRunCreateRequest = z.infer<typeof LocalJobRunCreateRequestSchema>;
7316
6881
  export type PreparationSetupCreateRequest = z.infer<typeof PreparationSetupCreateRequestSchema>;
7317
- export type DatasetSetupCreateRequest = z.infer<typeof DatasetSetupCreateRequestSchema>;
7318
6882
  export type ReadinessCheckDraftCreateRequest = z.infer<typeof ReadinessCheckDraftCreateRequestSchema>;
7319
6883
  export type ReadinessCheckDraftResult = z.infer<typeof ReadinessCheckDraftResultSchema>;
7320
- export type WorkflowAuthoringCreateRequest = z.infer<typeof WorkflowAuthoringCreateRequestSchema>;
7321
- export type WorkflowAuthoringResult = z.infer<typeof WorkflowAuthoringResultSchema>;
6884
+ export type MethodAuthoringCreateRequest = z.infer<typeof MethodAuthoringCreateRequestSchema>;
6885
+ export type MethodAuthoringResult = z.infer<typeof MethodAuthoringResultSchema>;
7322
6886
  export type LocalJobEventAppendRequest = z.infer<typeof LocalJobEventAppendRequestSchema>;
7323
6887
  export type LocalJobRunResource = z.infer<typeof LocalJobRunResourceSchema>;
7324
6888
  export type TestRunStatus = z.infer<typeof TestRunStatusSchema>;
@@ -7340,9 +6904,7 @@ export type OpenPathRequest = z.infer<typeof OpenPathRequestSchema>;
7340
6904
  export type OpenPathResponse = z.infer<typeof OpenPathResponseSchema>;
7341
6905
  export type LocalServiceDiscovery = z.infer<typeof LocalServiceDiscoverySchema>;
7342
6906
  export type LocalServiceResource = z.infer<typeof LocalServiceResourceSchema>;
7343
- export type DatasetListResponse = z.infer<typeof DatasetListResponseSchema>;
7344
6907
  export type PreparationListResponse = z.infer<typeof PreparationListResponseSchema>;
7345
- export type WorkflowPackageListResponse = z.infer<typeof WorkflowPackageListResponseSchema>;
7346
6908
  export type MethodListResponse = z.infer<typeof MethodListResponseSchema>;
7347
6909
  export type CompileRunListResponse = z.infer<typeof CompileRunListResponseSchema>;
7348
6910
  export type LocalJobRunListResponse = z.infer<typeof LocalJobRunListResponseSchema>;