@interf/compiler 0.13.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -0
- package/README.md +50 -7
- package/TRADEMARKS.md +4 -4
- package/agent-skills/interf-actions/SKILL.md +51 -5
- package/agent-skills/interf-actions/references/cli.md +82 -82
- package/builtin-methods/interf-default/README.md +6 -7
- package/builtin-methods/interf-default/method.json +7 -68
- package/builtin-methods/interf-default/method.schema.json +52 -50
- package/dist/cli/commands/agents.d.ts +2 -0
- package/dist/cli/commands/agents.js +213 -0
- package/dist/cli/commands/compile.js +10 -1
- package/dist/cli/commands/doctor.js +1 -1
- package/dist/cli/commands/login.js +1 -1
- package/dist/cli/commands/logout.js +1 -1
- package/dist/cli/commands/mcp.d.ts +42 -0
- package/dist/cli/commands/mcp.js +239 -0
- package/dist/cli/commands/method.js +1 -1
- package/dist/cli/commands/prep.js +81 -7
- package/dist/cli/commands/reset.js +1 -1
- package/dist/cli/commands/runs.js +1 -1
- package/dist/cli/commands/status.js +1 -1
- package/dist/cli/commands/verify.d.ts +10 -0
- package/dist/cli/commands/{test.js → verify.js} +30 -15
- package/dist/cli/commands/web.js +71 -18
- package/dist/cli/commands/wizard.js +462 -107
- package/dist/cli/index.d.ts +4 -2
- package/dist/cli/index.js +7 -3
- package/dist/compiler-ui/404.html +1 -1
- package/dist/compiler-ui/__next.__PAGE__.txt +2 -2
- package/dist/compiler-ui/__next._full.txt +3 -3
- package/dist/compiler-ui/__next._head.txt +1 -1
- package/dist/compiler-ui/__next._index.txt +2 -2
- package/dist/compiler-ui/__next._tree.txt +2 -2
- package/dist/compiler-ui/_next/static/chunks/{045gole2ojo3g.css → 0_c_tvh-cukjz.css} +1 -1
- package/dist/compiler-ui/_next/static/chunks/0f_geuwdesg_c.js +114 -0
- package/dist/compiler-ui/_not-found/__next._full.txt +2 -2
- package/dist/compiler-ui/_not-found/__next._head.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._index.txt +2 -2
- package/dist/compiler-ui/_not-found/__next._not-found.__PAGE__.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._not-found.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._tree.txt +2 -2
- package/dist/compiler-ui/_not-found.html +1 -1
- package/dist/compiler-ui/_not-found.txt +2 -2
- package/dist/compiler-ui/index.html +1 -1
- package/dist/compiler-ui/index.txt +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/packages/contracts/index.d.ts +2 -1
- package/dist/packages/contracts/index.js +1 -0
- package/dist/packages/contracts/lib/schema.d.ts +324 -31
- package/dist/packages/contracts/lib/schema.js +281 -21
- package/dist/packages/{local-service → engine}/action-definitions.js +9 -2
- package/dist/packages/{local-service → engine}/action-planner.d.ts +1 -1
- package/dist/packages/{local-service → engine}/action-planner.js +1 -1
- package/dist/packages/{agents → engine/agents}/index.d.ts +3 -0
- package/dist/packages/{agents → engine/agents}/index.js +3 -0
- package/dist/packages/{agents → engine/agents}/lib/compiled-bootstrap.js +2 -2
- package/dist/packages/engine/agents/lib/detection.d.ts +13 -0
- package/dist/packages/{agents → engine/agents}/lib/detection.js +11 -0
- package/dist/packages/{agents → engine/agents}/lib/executors.d.ts +2 -2
- package/dist/packages/{agents → engine/agents}/lib/shells.d.ts +14 -6
- package/dist/packages/{agents → engine/agents}/lib/shells.js +133 -126
- package/dist/packages/{agents → engine/agents}/lib/user-config.js +2 -2
- package/dist/packages/engine/agents/registry.d.ts +91 -0
- package/dist/packages/engine/agents/registry.js +321 -0
- package/dist/packages/engine/agents/role-executors.d.ts +35 -0
- package/dist/packages/engine/agents/role-executors.js +88 -0
- package/dist/packages/engine/agents/role-router.d.ts +66 -0
- package/dist/packages/engine/agents/role-router.js +73 -0
- package/dist/packages/{local-service → engine}/client.d.ts +9 -9
- package/dist/packages/{local-service → engine}/client.js +11 -11
- package/dist/packages/engine/cloud-seams.d.ts +115 -0
- package/dist/packages/engine/cloud-seams.js +84 -0
- package/dist/packages/engine/compile/artifact-counts.d.ts +1 -0
- package/dist/packages/{compiler → engine/compile}/artifact-counts.js +4 -4
- package/dist/packages/engine/compile/artifact-status.d.ts +41 -0
- package/dist/packages/engine/compile/artifact-status.js +166 -0
- package/dist/packages/engine/compile/billing-events.d.ts +89 -0
- package/dist/packages/engine/compile/billing-events.js +74 -0
- package/dist/packages/engine/compile/check-evaluator.d.ts +66 -0
- package/dist/packages/engine/compile/check-evaluator.js +298 -0
- package/dist/packages/{compiler → engine/compile}/compiled-pipeline.d.ts +12 -1
- package/dist/packages/{compiler → engine/compile}/compiled-pipeline.js +16 -6
- package/dist/packages/engine/compile/compiled-schema.d.ts +21 -0
- package/dist/packages/engine/compile/compiled-schema.js +126 -0
- package/dist/packages/{compiler → engine/compile}/compiled-stage-plan.d.ts +2 -1
- package/dist/packages/{compiler → engine/compile}/compiled-stage-plan.js +35 -18
- package/dist/packages/{compiler → engine/compile}/compiled-stage-runner.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/compiled-stage-runner.js +4 -4
- package/dist/packages/{compiler → engine/compile}/compiled-target.d.ts +2 -2
- package/dist/packages/{compiler → engine/compile}/compiled-target.js +2 -2
- package/dist/packages/{compiler → engine/compile}/discovery.js +1 -1
- package/dist/packages/{compiler → engine/compile}/index.d.ts +0 -1
- package/dist/packages/{compiler → engine/compile}/index.js +0 -1
- package/dist/packages/{compiler → engine/compile}/lib/schema.d.ts +113 -94
- package/dist/packages/{compiler → engine/compile}/lib/schema.js +35 -39
- package/dist/packages/engine/compile/method-primitives.d.ts +2 -0
- package/dist/packages/{compiler → engine/compile}/method-primitives.js +1 -1
- package/dist/packages/{compiler → engine/compile}/method-runs.d.ts +3 -3
- package/dist/packages/{compiler → engine/compile}/method-runs.js +3 -3
- package/dist/packages/{compiler → engine/compile}/reset.js +4 -4
- package/dist/packages/{compiler → engine/compile}/runtime-contracts.js +2 -1
- package/dist/packages/{compiler → engine/compile}/runtime-prompt.js +3 -2
- package/dist/packages/{compiler → engine/compile}/runtime-reconcile.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/runtime-reconcile.js +47 -45
- package/dist/packages/{compiler → engine/compile}/runtime-runs.d.ts +1 -2
- package/dist/packages/{compiler → engine/compile}/runtime-runs.js +3 -44
- package/dist/packages/{compiler → engine/compile}/runtime-types.d.ts +7 -12
- package/dist/packages/engine/compile/runtime.d.ts +5 -0
- package/dist/packages/{compiler → engine/compile}/runtime.js +1 -2
- package/dist/packages/{compiler → engine/compile}/source-files.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/source-files.js +3 -3
- package/dist/packages/{compiler → engine/compile}/state-health.js +8 -8
- package/dist/packages/{compiler → engine/compile}/state-io.js +2 -2
- package/dist/packages/{compiler → engine/compile}/state-view.js +9 -8
- package/dist/packages/{compiler → engine/compile}/validate-compiled.js +63 -32
- package/dist/packages/{compiler → engine/compile}/validate.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/validate.js +29 -27
- package/dist/packages/{execution → engine/execution}/lib/schema.d.ts +81 -55
- package/dist/packages/{execution → engine/execution}/lib/schema.js +14 -6
- package/dist/packages/engine/index.d.ts +22 -0
- package/dist/packages/engine/index.js +15 -0
- package/dist/packages/{local-service → engine}/lib/schema.d.ts +620 -435
- package/dist/packages/{local-service → engine}/lib/schema.js +103 -63
- package/dist/packages/{local-service → engine}/native-run-handlers.d.ts +7 -5
- package/dist/packages/{local-service → engine}/native-run-handlers.js +81 -29
- package/dist/packages/{local-service → engine}/preparation-store.d.ts +22 -4
- package/dist/packages/{local-service → engine}/preparation-store.js +56 -25
- package/dist/packages/{local-service → engine}/readiness-check-draft.d.ts +2 -2
- package/dist/packages/{local-service → engine}/routes.d.ts +36 -1
- package/dist/packages/{local-service → engine}/routes.js +38 -1
- package/dist/packages/{local-service → engine}/run-observability.d.ts +3 -3
- package/dist/packages/{local-service → engine}/run-observability.js +15 -15
- package/dist/packages/{local-service → engine}/runtime-event-applier.d.ts +1 -1
- package/dist/packages/{local-service → engine}/runtime-event-applier.js +7 -0
- package/dist/packages/{local-service → engine}/runtime-persistence.d.ts +6 -6
- package/dist/packages/{local-service → engine}/runtime-persistence.js +9 -9
- package/dist/packages/{local-service → engine}/runtime-proposal-helpers.d.ts +1 -1
- package/dist/packages/{local-service → engine}/runtime-proposal-helpers.js +5 -5
- package/dist/packages/{local-service → engine}/runtime-resource-builders.d.ts +12 -12
- package/dist/packages/{local-service → engine}/runtime-resource-builders.js +6 -5
- package/dist/packages/{local-service → engine}/runtime.d.ts +147 -56
- package/dist/packages/{local-service → engine}/runtime.js +333 -205
- package/dist/packages/{local-service → engine}/server.d.ts +25 -0
- package/dist/packages/{local-service → engine}/server.js +338 -17
- package/dist/packages/engine/verify/index.d.ts +13 -0
- package/dist/packages/engine/verify/index.js +10 -0
- package/dist/packages/{testing → engine/verify}/lib/schema.d.ts +1 -1
- package/dist/packages/{testing → engine/verify}/lib/schema.js +1 -1
- package/dist/packages/{testing → engine/verify}/readiness-check-run.d.ts +27 -11
- package/dist/packages/{testing → engine/verify}/readiness-check-run.js +72 -60
- package/dist/packages/{testing/test-execution.d.ts → engine/verify/verify-execution.d.ts} +2 -2
- package/dist/packages/{testing/test-execution.js → engine/verify/verify-execution.js} +2 -2
- package/dist/packages/{testing/test-paths.d.ts → engine/verify/verify-paths.d.ts} +1 -1
- package/dist/packages/{testing/test-paths.js → engine/verify/verify-paths.js} +2 -2
- package/dist/packages/{testing/test-sandbox.d.ts → engine/verify/verify-sandbox.d.ts} +1 -1
- package/dist/packages/{testing/test-sandbox.js → engine/verify/verify-sandbox.js} +6 -6
- package/dist/packages/{testing/test-specs.d.ts → engine/verify/verify-specs.d.ts} +1 -1
- package/dist/packages/{testing/test-specs.js → engine/verify/verify-specs.js} +2 -2
- package/dist/packages/{testing/test-targets.d.ts → engine/verify/verify-targets.d.ts} +1 -1
- package/dist/packages/{testing/test-targets.js → engine/verify/verify-targets.js} +3 -3
- package/dist/packages/{testing/test.d.ts → engine/verify/verify.d.ts} +4 -4
- package/dist/packages/{testing/test.js → engine/verify/verify.js} +3 -3
- package/dist/packages/engine/wire-schemas.d.ts +545 -0
- package/dist/packages/engine/wire-schemas.js +59 -0
- package/dist/packages/methods/authoring/method-authoring.d.ts +34 -0
- package/dist/packages/methods/authoring/method-authoring.js +260 -0
- package/dist/packages/{method-authoring → methods/authoring}/method-edit-session.d.ts +2 -2
- package/dist/packages/{method-authoring → methods/authoring}/method-edit-session.js +5 -5
- package/dist/packages/{method-authoring → methods/authoring}/method-improvement.d.ts +4 -4
- package/dist/packages/{method-authoring → methods/authoring}/method-improvement.js +16 -10
- package/dist/packages/{method-package → methods/package}/builtin-compiled-method.d.ts +12 -12
- package/dist/packages/{method-package → methods/package}/builtin-compiled-method.js +27 -24
- package/dist/packages/methods/package/context-interface.d.ts +73 -0
- package/dist/packages/{method-package → methods/package}/context-interface.js +50 -41
- package/dist/packages/{method-package → methods/package}/interf-method-package.js +31 -49
- package/dist/packages/{method-package → methods/package}/lib/package-root.js +2 -2
- package/dist/packages/{method-package → methods/package}/local-methods.d.ts +10 -5
- package/dist/packages/{method-package → methods/package}/local-methods.js +41 -68
- package/dist/packages/{method-package → methods/package}/method-definitions.d.ts +11 -7
- package/dist/packages/{method-package → methods/package}/method-definitions.js +5 -8
- package/dist/packages/{method-package → methods/package}/method-helpers.d.ts +1 -3
- package/dist/packages/{method-package → methods/package}/method-helpers.js +4 -8
- package/dist/packages/{method-package → methods/package}/method-review-paths.d.ts +1 -1
- package/dist/packages/{method-package → methods/package}/method-review-paths.js +1 -1
- package/dist/packages/{method-package → methods/package}/method-stage-runner.d.ts +4 -9
- package/dist/packages/{method-package → methods/package}/method-stage-runner.js +1 -29
- package/dist/packages/{method-package → methods/package}/user-methods.js +2 -2
- package/dist/packages/{project-model → project}/interf-bootstrap.d.ts +1 -1
- package/dist/packages/{project-model → project}/interf-bootstrap.js +1 -1
- package/dist/packages/{project-model → project}/interf-detect.js +4 -4
- package/dist/packages/{project-model → project}/interf-scaffold.js +18 -18
- package/dist/packages/{project-model → project}/lib/schema.d.ts +2 -2
- package/dist/packages/{project-model → project}/lib/schema.js +1 -1
- package/dist/packages/{project-model → project}/source-config.d.ts +1 -1
- package/dist/packages/{project-model → project}/source-config.js +9 -8
- package/dist/packages/{project-model → project}/source-folders.js +2 -2
- package/package.json +7 -16
- package/dist/cli/commands/test.d.ts +0 -9
- package/dist/compiler-ui/_next/static/chunks/17t-lulmyawg5.js +0 -89
- package/dist/packages/agents/lib/detection.d.ts +0 -7
- package/dist/packages/compiler/artifact-counts.d.ts +0 -1
- package/dist/packages/compiler/compiled-schema.d.ts +0 -31
- package/dist/packages/compiler/compiled-schema.js +0 -141
- package/dist/packages/compiler/method-primitives.d.ts +0 -2
- package/dist/packages/compiler/runtime-acceptance.d.ts +0 -9
- package/dist/packages/compiler/runtime-acceptance.js +0 -262
- package/dist/packages/compiler/runtime.d.ts +0 -6
- package/dist/packages/local-service/index.d.ts +0 -22
- package/dist/packages/local-service/index.js +0 -15
- package/dist/packages/method-authoring/method-authoring.d.ts +0 -24
- package/dist/packages/method-authoring/method-authoring.js +0 -116
- package/dist/packages/method-package/context-interface.d.ts +0 -60
- package/dist/packages/testing/index.d.ts +0 -13
- package/dist/packages/testing/index.js +0 -10
- /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → 6qyE1u9m_oBUkvAhhoCmO}/_buildManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → 6qyE1u9m_oBUkvAhhoCmO}/_clientMiddlewareManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → 6qyE1u9m_oBUkvAhhoCmO}/_ssgManifest.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/file-types.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/file-types.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/filesystem.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/filesystem.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/logger.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/logger.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/naming.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/naming.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/parse.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/parse.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/path-guards.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/path-guards.js +0 -0
- /package/dist/packages/{local-service → engine}/action-definitions.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/action-values.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/action-values.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/agents.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/agents.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/args.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/args.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/chart-guidance.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/chart-guidance.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/compiled-bootstrap.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/constants.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/constants.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution-profile.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution-profile.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/executors.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/logs.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/logs.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/preflight.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/preflight.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/render.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/render.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/schema.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/schema.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/status.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/status.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/types.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/types.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/user-config.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-compile.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-compile.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-paths.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-paths.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/discovery.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/reset.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-contracts.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-inventory.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-inventory.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-paths.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-paths.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-prompt.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-types.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-artifacts.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-artifacts.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-health.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-io.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-paths.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-paths.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-view.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/validate-compiled.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/validate-helpers.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/validate-helpers.js +0 -0
- /package/dist/packages/{local-service → engine}/connection-config.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/connection-config.js +0 -0
- /package/dist/packages/{execution → engine/execution}/adapters.d.ts +0 -0
- /package/dist/packages/{execution → engine/execution}/adapters.js +0 -0
- /package/dist/packages/{execution → engine/execution}/events.d.ts +0 -0
- /package/dist/packages/{execution → engine/execution}/events.js +0 -0
- /package/dist/packages/{execution → engine/execution}/index.d.ts +0 -0
- /package/dist/packages/{execution → engine/execution}/index.js +0 -0
- /package/dist/packages/{local-service → engine}/instance-paths.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/instance-paths.js +0 -0
- /package/dist/packages/{local-service → engine}/readiness-check-draft.js +0 -0
- /package/dist/packages/{local-service → engine}/runtime-caches.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/runtime-caches.js +0 -0
- /package/dist/packages/{local-service → engine}/service-registry.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/service-registry.js +0 -0
- /package/dist/packages/{testing/test-profile-presets.d.ts → engine/verify/verify-profile-presets.d.ts} +0 -0
- /package/dist/packages/{testing/test-profile-presets.js → engine/verify/verify-profile-presets.js} +0 -0
- /package/dist/packages/{testing/test-types.d.ts → engine/verify/verify-types.d.ts} +0 -0
- /package/dist/packages/{testing/test-types.js → engine/verify/verify-types.js} +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/index.d.ts +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/index.js +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/lib/method-edit-utils.d.ts +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/lib/method-edit-utils.js +0 -0
- /package/dist/packages/{method-package → methods/package}/interf-method-package.d.ts +0 -0
- /package/dist/packages/{method-package → methods/package}/lib/package-root.d.ts +0 -0
- /package/dist/packages/{method-package → methods/package}/user-methods.d.ts +0 -0
- /package/dist/packages/{project-model → project}/index.d.ts +0 -0
- /package/dist/packages/{project-model → project}/index.js +0 -0
- /package/dist/packages/{project-model → project}/interf-detect.d.ts +0 -0
- /package/dist/packages/{project-model → project}/interf-scaffold.d.ts +0 -0
- /package/dist/packages/{project-model → project}/interf.d.ts +0 -0
- /package/dist/packages/{project-model → project}/interf.js +0 -0
- /package/dist/packages/{project-model → project}/preparation-entries.d.ts +0 -0
- /package/dist/packages/{project-model → project}/preparation-entries.js +0 -0
- /package/dist/packages/{project-model → project}/source-folders.d.ts +0 -0
|
@@ -1,16 +1,29 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
/**
|
|
2
|
+
/**
|
|
3
|
+
* Source binding shape on the API. `local-folder` is the only kind the
|
|
4
|
+
* local binary accepts in 0.17; `remote-folder` rides in the type
|
|
5
|
+
* plumbing for the future cloud variant (B4.4 cloud-variant seam) and
|
|
6
|
+
* is rejected at the validator branch in server.ts. See `TODO(cloud)`
|
|
7
|
+
* marker there.
|
|
8
|
+
*/
|
|
3
9
|
export declare const SourceBindingSchema: z.ZodObject<{
|
|
4
10
|
kind: z.ZodEnum<{
|
|
5
11
|
"local-folder": "local-folder";
|
|
12
|
+
"remote-folder": "remote-folder";
|
|
6
13
|
}>;
|
|
7
14
|
locator: z.ZodString;
|
|
8
15
|
}, z.core.$strict>;
|
|
9
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* Discriminated locator for an artifact returned by the API. Aliases the
|
|
18
|
+
* canonical `LocatorSchema` from contracts so all three kinds —
|
|
19
|
+
* `local-path`, `remote-url`, `api-served` — flow through the same
|
|
20
|
+
* resource-access pattern.
|
|
21
|
+
*/
|
|
10
22
|
export declare const ArtifactLocatorSchema: z.ZodObject<{
|
|
11
23
|
kind: z.ZodEnum<{
|
|
12
24
|
"local-path": "local-path";
|
|
13
25
|
"remote-url": "remote-url";
|
|
26
|
+
"api-served": "api-served";
|
|
14
27
|
}>;
|
|
15
28
|
value: z.ZodString;
|
|
16
29
|
}, z.core.$strict>;
|
|
@@ -27,6 +40,10 @@ export declare const InstanceResourceSchema: z.ZodObject<{
|
|
|
27
40
|
active_run_count: z.ZodNumber;
|
|
28
41
|
idle_for_seconds: z.ZodNumber;
|
|
29
42
|
auth_required: z.ZodBoolean;
|
|
43
|
+
connection_kind: z.ZodOptional<z.ZodEnum<{
|
|
44
|
+
local: "local";
|
|
45
|
+
remote: "remote";
|
|
46
|
+
}>>;
|
|
30
47
|
}, z.core.$strict>;
|
|
31
48
|
/** Body of `POST /v1/preparations` — the 0.13 preparation create request. */
|
|
32
49
|
export declare const PreparationCreateRequestSchema: z.ZodObject<{
|
|
@@ -34,10 +51,11 @@ export declare const PreparationCreateRequestSchema: z.ZodObject<{
|
|
|
34
51
|
source: z.ZodObject<{
|
|
35
52
|
kind: z.ZodEnum<{
|
|
36
53
|
"local-folder": "local-folder";
|
|
54
|
+
"remote-folder": "remote-folder";
|
|
37
55
|
}>;
|
|
38
56
|
locator: z.ZodString;
|
|
39
57
|
}, z.core.$strict>;
|
|
40
|
-
method_id: z.ZodString
|
|
58
|
+
method_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41
59
|
about: z.ZodOptional<z.ZodString>;
|
|
42
60
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
43
61
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -55,6 +73,24 @@ export declare const PreparationCreateRequestSchema: z.ZodObject<{
|
|
|
55
73
|
max_attempts: z.ZodOptional<z.ZodNumber>;
|
|
56
74
|
max_loops: z.ZodOptional<z.ZodNumber>;
|
|
57
75
|
}, z.core.$strict>;
|
|
76
|
+
/** Body of `PATCH /v1/preparations/<id>` — update mutable preparation fields. */
|
|
77
|
+
export declare const PreparationUpdateRequestSchema: z.ZodObject<{
|
|
78
|
+
method_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
79
|
+
about: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
80
|
+
checks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
81
|
+
id: z.ZodOptional<z.ZodString>;
|
|
82
|
+
question: z.ZodString;
|
|
83
|
+
answer: z.ZodOptional<z.ZodString>;
|
|
84
|
+
expect: z.ZodOptional<z.ZodObject<{
|
|
85
|
+
must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
86
|
+
must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
87
|
+
must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
88
|
+
min_words: z.ZodOptional<z.ZodNumber>;
|
|
89
|
+
max_words: z.ZodOptional<z.ZodNumber>;
|
|
90
|
+
}, z.core.$strip>>;
|
|
91
|
+
strictness: z.ZodOptional<z.ZodString>;
|
|
92
|
+
}, z.core.$strict>>>;
|
|
93
|
+
}, z.core.$strict>;
|
|
58
94
|
/** Body of `POST /v1/methods` — install a Method package by path. */
|
|
59
95
|
export declare const MethodInstallRequestSchema: z.ZodObject<{
|
|
60
96
|
source_path: z.ZodString;
|
|
@@ -69,13 +105,49 @@ export declare const PreparationDeleteResponseSchema: z.ZodObject<{
|
|
|
69
105
|
deleted: z.ZodBoolean;
|
|
70
106
|
id: z.ZodString;
|
|
71
107
|
}, z.core.$strict>;
|
|
108
|
+
export declare const PreparationWireShapeSchema: z.ZodObject<{
|
|
109
|
+
id: z.ZodString;
|
|
110
|
+
source: z.ZodObject<{
|
|
111
|
+
kind: z.ZodEnum<{
|
|
112
|
+
"local-folder": "local-folder";
|
|
113
|
+
"remote-folder": "remote-folder";
|
|
114
|
+
}>;
|
|
115
|
+
locator: z.ZodString;
|
|
116
|
+
}, z.core.$strict>;
|
|
117
|
+
method_id: z.ZodNullable<z.ZodString>;
|
|
118
|
+
about: z.ZodNullable<z.ZodString>;
|
|
119
|
+
config_path: z.ZodString;
|
|
120
|
+
portable_context: z.ZodObject<{
|
|
121
|
+
kind: z.ZodEnum<{
|
|
122
|
+
"local-path": "local-path";
|
|
123
|
+
"remote-url": "remote-url";
|
|
124
|
+
"api-served": "api-served";
|
|
125
|
+
}>;
|
|
126
|
+
value: z.ZodString;
|
|
127
|
+
}, z.core.$strict>;
|
|
128
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
129
|
+
id: z.ZodOptional<z.ZodString>;
|
|
130
|
+
question: z.ZodString;
|
|
131
|
+
answer: z.ZodOptional<z.ZodString>;
|
|
132
|
+
expect: z.ZodOptional<z.ZodObject<{
|
|
133
|
+
must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
134
|
+
must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
135
|
+
must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
136
|
+
min_words: z.ZodOptional<z.ZodNumber>;
|
|
137
|
+
max_words: z.ZodOptional<z.ZodNumber>;
|
|
138
|
+
}, z.core.$strip>>;
|
|
139
|
+
strictness: z.ZodOptional<z.ZodString>;
|
|
140
|
+
}, z.core.$strict>>>;
|
|
141
|
+
}, z.core.$strict>;
|
|
72
142
|
export type SourceBinding = z.infer<typeof SourceBindingSchema>;
|
|
73
143
|
export type ArtifactLocator = z.infer<typeof ArtifactLocatorSchema>;
|
|
74
144
|
export type InstanceResource = z.infer<typeof InstanceResourceSchema>;
|
|
75
145
|
export type PreparationCreateRequest = z.infer<typeof PreparationCreateRequestSchema>;
|
|
146
|
+
export type PreparationUpdateRequest = z.infer<typeof PreparationUpdateRequestSchema>;
|
|
76
147
|
export type MethodInstallRequest = z.infer<typeof MethodInstallRequestSchema>;
|
|
77
148
|
export type MethodInstallResult = z.infer<typeof MethodInstallResultSchema>;
|
|
78
149
|
export type PreparationDeleteResponse = z.infer<typeof PreparationDeleteResponseSchema>;
|
|
150
|
+
export type PreparationWireShape = z.infer<typeof PreparationWireShapeSchema>;
|
|
79
151
|
/**
|
|
80
152
|
* The local service must only ever bind to a loopback interface. Any other
|
|
81
153
|
* host (LAN IP, 0.0.0.0, public address) lets a remote browser tab POST at
|
|
@@ -129,41 +201,6 @@ export declare const ServiceRegistrySchema: z.ZodObject<{
|
|
|
129
201
|
}, z.core.$strict>>>;
|
|
130
202
|
}, z.core.$strict>>>;
|
|
131
203
|
}, z.core.$strict>;
|
|
132
|
-
export declare const WorkspaceRegistrationRequestSchema: z.ZodObject<{
|
|
133
|
-
control_path: z.ZodString;
|
|
134
|
-
}, z.core.$strict>;
|
|
135
|
-
export declare const WorkspaceRegistrationResponseSchema: z.ZodObject<{
|
|
136
|
-
workspace: z.ZodObject<{
|
|
137
|
-
control_path: z.ZodString;
|
|
138
|
-
registered_at: z.ZodString;
|
|
139
|
-
last_activity: z.ZodString;
|
|
140
|
-
}, z.core.$strict>;
|
|
141
|
-
service: z.ZodObject<{
|
|
142
|
-
pid: z.ZodNumber;
|
|
143
|
-
host: z.ZodString;
|
|
144
|
-
port: z.ZodNumber;
|
|
145
|
-
url: z.ZodString;
|
|
146
|
-
started_at: z.ZodString;
|
|
147
|
-
auth_token: z.ZodOptional<z.ZodString>;
|
|
148
|
-
workspaces: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
149
|
-
control_path: z.ZodString;
|
|
150
|
-
registered_at: z.ZodString;
|
|
151
|
-
last_activity: z.ZodString;
|
|
152
|
-
}, z.core.$strict>>>;
|
|
153
|
-
}, z.core.$strict>;
|
|
154
|
-
}, z.core.$strict>;
|
|
155
|
-
export declare const WorkspaceListResponseSchema: z.ZodObject<{
|
|
156
|
-
workspaces: z.ZodArray<z.ZodObject<{
|
|
157
|
-
control_path: z.ZodString;
|
|
158
|
-
registered_at: z.ZodString;
|
|
159
|
-
last_activity: z.ZodString;
|
|
160
|
-
}, z.core.$strict>>;
|
|
161
|
-
}, z.core.$strict>;
|
|
162
|
-
export declare const WorkspaceDeregisterResponseSchema: z.ZodObject<{
|
|
163
|
-
deregistered: z.ZodBoolean;
|
|
164
|
-
control_path: z.ZodString;
|
|
165
|
-
remaining_workspaces: z.ZodNumber;
|
|
166
|
-
}, z.core.$strict>;
|
|
167
204
|
export declare const LocalServiceHealthSchema: z.ZodObject<{
|
|
168
205
|
kind: z.ZodLiteral<"interf-local-service-health">;
|
|
169
206
|
version: z.ZodLiteral<1>;
|
|
@@ -266,15 +303,15 @@ export declare const PreparationResourceSchema: z.ZodObject<{
|
|
|
266
303
|
generated_at: z.ZodString;
|
|
267
304
|
preparation: z.ZodString;
|
|
268
305
|
status: z.ZodEnum<{
|
|
306
|
+
ready: "ready";
|
|
307
|
+
failed: "failed";
|
|
269
308
|
"not-configured": "not-configured";
|
|
270
309
|
"not-built": "not-built";
|
|
271
310
|
building: "building";
|
|
272
311
|
built: "built";
|
|
273
312
|
checking: "checking";
|
|
274
|
-
ready: "ready";
|
|
275
313
|
"not-ready": "not-ready";
|
|
276
314
|
stale: "stale";
|
|
277
|
-
failed: "failed";
|
|
278
315
|
}>;
|
|
279
316
|
ready: z.ZodBoolean;
|
|
280
317
|
summary: z.ZodString;
|
|
@@ -287,21 +324,19 @@ export declare const PreparationResourceSchema: z.ZodObject<{
|
|
|
287
324
|
"preparation-config": "preparation-config";
|
|
288
325
|
"compile-run": "compile-run";
|
|
289
326
|
"readiness-checks": "readiness-checks";
|
|
290
|
-
"source-baseline": "source-baseline";
|
|
291
|
-
"portable-context-check": "portable-context-check";
|
|
292
327
|
"checks-current": "checks-current";
|
|
293
328
|
}>;
|
|
294
329
|
ok: z.ZodBoolean;
|
|
295
330
|
status: z.ZodOptional<z.ZodEnum<{
|
|
331
|
+
ready: "ready";
|
|
332
|
+
failed: "failed";
|
|
296
333
|
"not-configured": "not-configured";
|
|
297
334
|
"not-built": "not-built";
|
|
298
335
|
building: "building";
|
|
299
336
|
built: "built";
|
|
300
337
|
checking: "checking";
|
|
301
|
-
ready: "ready";
|
|
302
338
|
"not-ready": "not-ready";
|
|
303
339
|
stale: "stale";
|
|
304
|
-
failed: "failed";
|
|
305
340
|
}>>;
|
|
306
341
|
summary: z.ZodString;
|
|
307
342
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -336,21 +371,19 @@ export declare const PreparationResourceSchema: z.ZodObject<{
|
|
|
336
371
|
"preparation-config": "preparation-config";
|
|
337
372
|
"compile-run": "compile-run";
|
|
338
373
|
"readiness-checks": "readiness-checks";
|
|
339
|
-
"source-baseline": "source-baseline";
|
|
340
|
-
"portable-context-check": "portable-context-check";
|
|
341
374
|
"checks-current": "checks-current";
|
|
342
375
|
}>;
|
|
343
376
|
ok: z.ZodBoolean;
|
|
344
377
|
status: z.ZodOptional<z.ZodEnum<{
|
|
378
|
+
ready: "ready";
|
|
379
|
+
failed: "failed";
|
|
345
380
|
"not-configured": "not-configured";
|
|
346
381
|
"not-built": "not-built";
|
|
347
382
|
building: "building";
|
|
348
383
|
built: "built";
|
|
349
384
|
checking: "checking";
|
|
350
|
-
ready: "ready";
|
|
351
385
|
"not-ready": "not-ready";
|
|
352
386
|
stale: "stale";
|
|
353
|
-
failed: "failed";
|
|
354
387
|
}>>;
|
|
355
388
|
summary: z.ZodString;
|
|
356
389
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -364,6 +397,36 @@ export declare const PreparationResourceSchema: z.ZodObject<{
|
|
|
364
397
|
}, z.core.$strict>;
|
|
365
398
|
latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
366
399
|
latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
400
|
+
artifacts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
401
|
+
artifact_id: z.ZodString;
|
|
402
|
+
status: z.ZodEnum<{
|
|
403
|
+
ready: "ready";
|
|
404
|
+
not_ready: "not_ready";
|
|
405
|
+
failed: "failed";
|
|
406
|
+
skipped: "skipped";
|
|
407
|
+
}>;
|
|
408
|
+
built_by_stages: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
409
|
+
proofs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
410
|
+
check_id: z.ZodString;
|
|
411
|
+
kind: z.ZodEnum<{
|
|
412
|
+
file_exists: "file_exists";
|
|
413
|
+
min_file_count: "min_file_count";
|
|
414
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
415
|
+
frontmatter_valid: "frontmatter_valid";
|
|
416
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
417
|
+
wikilinks_valid: "wikilinks_valid";
|
|
418
|
+
must_not_contain: "must_not_contain";
|
|
419
|
+
must_contain: "must_contain";
|
|
420
|
+
qa_match: "qa_match";
|
|
421
|
+
}>;
|
|
422
|
+
passed: z.ZodBoolean;
|
|
423
|
+
required: z.ZodBoolean;
|
|
424
|
+
summary: z.ZodString;
|
|
425
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
426
|
+
evaluated_at: z.ZodString;
|
|
427
|
+
}, z.core.$strict>>>;
|
|
428
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
429
|
+
}, z.core.$strict>>>;
|
|
367
430
|
}, z.core.$strict>;
|
|
368
431
|
export declare const MethodResourceSchema: z.ZodObject<{
|
|
369
432
|
id: z.ZodString;
|
|
@@ -377,16 +440,45 @@ export declare const MethodResourceSchema: z.ZodObject<{
|
|
|
377
440
|
}>>;
|
|
378
441
|
built_in: z.ZodDefault<z.ZodBoolean>;
|
|
379
442
|
active_for_preparations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
380
|
-
|
|
443
|
+
artifacts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
444
|
+
id: z.ZodString;
|
|
445
|
+
description: z.ZodString;
|
|
446
|
+
shape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
447
|
+
kind: z.ZodLiteral<"path">;
|
|
448
|
+
path: z.ZodString;
|
|
449
|
+
artifact_kind: z.ZodEnum<{
|
|
450
|
+
file: "file";
|
|
451
|
+
directory: "directory";
|
|
452
|
+
}>;
|
|
453
|
+
}, z.core.$strict>], "kind">;
|
|
454
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
455
|
+
id: z.ZodString;
|
|
456
|
+
kind: z.ZodEnum<{
|
|
457
|
+
file_exists: "file_exists";
|
|
458
|
+
min_file_count: "min_file_count";
|
|
459
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
460
|
+
frontmatter_valid: "frontmatter_valid";
|
|
461
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
462
|
+
wikilinks_valid: "wikilinks_valid";
|
|
463
|
+
must_not_contain: "must_not_contain";
|
|
464
|
+
must_contain: "must_contain";
|
|
465
|
+
qa_match: "qa_match";
|
|
466
|
+
}>;
|
|
467
|
+
description: z.ZodOptional<z.ZodString>;
|
|
468
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
469
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
470
|
+
}, z.core.$strict>>>;
|
|
471
|
+
built_by_stages: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
472
|
+
}, z.core.$strict>>>;
|
|
381
473
|
stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
382
474
|
id: z.ZodString;
|
|
383
475
|
label: z.ZodString;
|
|
384
476
|
description: z.ZodOptional<z.ZodString>;
|
|
385
477
|
contract_type: z.ZodString;
|
|
386
478
|
skill_dir: z.ZodString;
|
|
479
|
+
role: z.ZodDefault<z.ZodString>;
|
|
387
480
|
reads: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
388
481
|
writes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
389
|
-
acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
390
482
|
}, z.core.$strict>>>;
|
|
391
483
|
}, z.core.$strict>;
|
|
392
484
|
export declare const CompileRunCreateRequestSchema: z.ZodObject<{
|
|
@@ -530,6 +622,12 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
|
|
|
530
622
|
timestamp: z.ZodString;
|
|
531
623
|
type: z.ZodLiteral<"run.failed">;
|
|
532
624
|
error: z.ZodString;
|
|
625
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
626
|
+
event_id: z.ZodString;
|
|
627
|
+
run_id: z.ZodString;
|
|
628
|
+
timestamp: z.ZodString;
|
|
629
|
+
type: z.ZodLiteral<"run.cancelled">;
|
|
630
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
533
631
|
}, z.core.$strict>, z.ZodObject<{
|
|
534
632
|
event_id: z.ZodString;
|
|
535
633
|
run_id: z.ZodString;
|
|
@@ -556,15 +654,15 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
|
|
|
556
654
|
generated_at: z.ZodString;
|
|
557
655
|
preparation: z.ZodString;
|
|
558
656
|
status: z.ZodEnum<{
|
|
657
|
+
ready: "ready";
|
|
658
|
+
failed: "failed";
|
|
559
659
|
"not-configured": "not-configured";
|
|
560
660
|
"not-built": "not-built";
|
|
561
661
|
building: "building";
|
|
562
662
|
built: "built";
|
|
563
663
|
checking: "checking";
|
|
564
|
-
ready: "ready";
|
|
565
664
|
"not-ready": "not-ready";
|
|
566
665
|
stale: "stale";
|
|
567
|
-
failed: "failed";
|
|
568
666
|
}>;
|
|
569
667
|
ready: z.ZodBoolean;
|
|
570
668
|
summary: z.ZodString;
|
|
@@ -577,21 +675,19 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
|
|
|
577
675
|
"preparation-config": "preparation-config";
|
|
578
676
|
"compile-run": "compile-run";
|
|
579
677
|
"readiness-checks": "readiness-checks";
|
|
580
|
-
"source-baseline": "source-baseline";
|
|
581
|
-
"portable-context-check": "portable-context-check";
|
|
582
678
|
"checks-current": "checks-current";
|
|
583
679
|
}>;
|
|
584
680
|
ok: z.ZodBoolean;
|
|
585
681
|
status: z.ZodOptional<z.ZodEnum<{
|
|
682
|
+
ready: "ready";
|
|
683
|
+
failed: "failed";
|
|
586
684
|
"not-configured": "not-configured";
|
|
587
685
|
"not-built": "not-built";
|
|
588
686
|
building: "building";
|
|
589
687
|
built: "built";
|
|
590
688
|
checking: "checking";
|
|
591
|
-
ready: "ready";
|
|
592
689
|
"not-ready": "not-ready";
|
|
593
690
|
stale: "stale";
|
|
594
|
-
failed: "failed";
|
|
595
691
|
}>>;
|
|
596
692
|
summary: z.ZodString;
|
|
597
693
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -626,21 +722,19 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
|
|
|
626
722
|
"preparation-config": "preparation-config";
|
|
627
723
|
"compile-run": "compile-run";
|
|
628
724
|
"readiness-checks": "readiness-checks";
|
|
629
|
-
"source-baseline": "source-baseline";
|
|
630
|
-
"portable-context-check": "portable-context-check";
|
|
631
725
|
"checks-current": "checks-current";
|
|
632
726
|
}>;
|
|
633
727
|
ok: z.ZodBoolean;
|
|
634
728
|
status: z.ZodOptional<z.ZodEnum<{
|
|
729
|
+
ready: "ready";
|
|
730
|
+
failed: "failed";
|
|
635
731
|
"not-configured": "not-configured";
|
|
636
732
|
"not-built": "not-built";
|
|
637
733
|
building: "building";
|
|
638
734
|
built: "built";
|
|
639
735
|
checking: "checking";
|
|
640
|
-
ready: "ready";
|
|
641
736
|
"not-ready": "not-ready";
|
|
642
737
|
stale: "stale";
|
|
643
|
-
failed: "failed";
|
|
644
738
|
}>>;
|
|
645
739
|
summary: z.ZodString;
|
|
646
740
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -721,7 +815,6 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
721
815
|
stage_total: z.ZodOptional<z.ZodNumber>;
|
|
722
816
|
reads: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
723
817
|
writes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
724
|
-
acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
725
818
|
}, z.core.$strict>>;
|
|
726
819
|
executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
727
820
|
kind: z.ZodEnum<{
|
|
@@ -902,6 +995,12 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
902
995
|
timestamp: z.ZodString;
|
|
903
996
|
type: z.ZodLiteral<"run.failed">;
|
|
904
997
|
error: z.ZodString;
|
|
998
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
999
|
+
event_id: z.ZodString;
|
|
1000
|
+
run_id: z.ZodString;
|
|
1001
|
+
timestamp: z.ZodString;
|
|
1002
|
+
type: z.ZodLiteral<"run.cancelled">;
|
|
1003
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
905
1004
|
}, z.core.$strict>, z.ZodObject<{
|
|
906
1005
|
event_id: z.ZodString;
|
|
907
1006
|
run_id: z.ZodString;
|
|
@@ -928,15 +1027,15 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
928
1027
|
generated_at: z.ZodString;
|
|
929
1028
|
preparation: z.ZodString;
|
|
930
1029
|
status: z.ZodEnum<{
|
|
1030
|
+
ready: "ready";
|
|
1031
|
+
failed: "failed";
|
|
931
1032
|
"not-configured": "not-configured";
|
|
932
1033
|
"not-built": "not-built";
|
|
933
1034
|
building: "building";
|
|
934
1035
|
built: "built";
|
|
935
1036
|
checking: "checking";
|
|
936
|
-
ready: "ready";
|
|
937
1037
|
"not-ready": "not-ready";
|
|
938
1038
|
stale: "stale";
|
|
939
|
-
failed: "failed";
|
|
940
1039
|
}>;
|
|
941
1040
|
ready: z.ZodBoolean;
|
|
942
1041
|
summary: z.ZodString;
|
|
@@ -949,21 +1048,19 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
949
1048
|
"preparation-config": "preparation-config";
|
|
950
1049
|
"compile-run": "compile-run";
|
|
951
1050
|
"readiness-checks": "readiness-checks";
|
|
952
|
-
"source-baseline": "source-baseline";
|
|
953
|
-
"portable-context-check": "portable-context-check";
|
|
954
1051
|
"checks-current": "checks-current";
|
|
955
1052
|
}>;
|
|
956
1053
|
ok: z.ZodBoolean;
|
|
957
1054
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1055
|
+
ready: "ready";
|
|
1056
|
+
failed: "failed";
|
|
958
1057
|
"not-configured": "not-configured";
|
|
959
1058
|
"not-built": "not-built";
|
|
960
1059
|
building: "building";
|
|
961
1060
|
built: "built";
|
|
962
1061
|
checking: "checking";
|
|
963
|
-
ready: "ready";
|
|
964
1062
|
"not-ready": "not-ready";
|
|
965
1063
|
stale: "stale";
|
|
966
|
-
failed: "failed";
|
|
967
1064
|
}>>;
|
|
968
1065
|
summary: z.ZodString;
|
|
969
1066
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -998,21 +1095,19 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
998
1095
|
"preparation-config": "preparation-config";
|
|
999
1096
|
"compile-run": "compile-run";
|
|
1000
1097
|
"readiness-checks": "readiness-checks";
|
|
1001
|
-
"source-baseline": "source-baseline";
|
|
1002
|
-
"portable-context-check": "portable-context-check";
|
|
1003
1098
|
"checks-current": "checks-current";
|
|
1004
1099
|
}>;
|
|
1005
1100
|
ok: z.ZodBoolean;
|
|
1006
1101
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1102
|
+
ready: "ready";
|
|
1103
|
+
failed: "failed";
|
|
1007
1104
|
"not-configured": "not-configured";
|
|
1008
1105
|
"not-built": "not-built";
|
|
1009
1106
|
building: "building";
|
|
1010
1107
|
built: "built";
|
|
1011
1108
|
checking: "checking";
|
|
1012
|
-
ready: "ready";
|
|
1013
1109
|
"not-ready": "not-ready";
|
|
1014
1110
|
stale: "stale";
|
|
1015
|
-
failed: "failed";
|
|
1016
1111
|
}>>;
|
|
1017
1112
|
summary: z.ZodString;
|
|
1018
1113
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -1054,15 +1149,15 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1054
1149
|
generated_at: z.ZodString;
|
|
1055
1150
|
preparation: z.ZodString;
|
|
1056
1151
|
status: z.ZodEnum<{
|
|
1152
|
+
ready: "ready";
|
|
1153
|
+
failed: "failed";
|
|
1057
1154
|
"not-configured": "not-configured";
|
|
1058
1155
|
"not-built": "not-built";
|
|
1059
1156
|
building: "building";
|
|
1060
1157
|
built: "built";
|
|
1061
1158
|
checking: "checking";
|
|
1062
|
-
ready: "ready";
|
|
1063
1159
|
"not-ready": "not-ready";
|
|
1064
1160
|
stale: "stale";
|
|
1065
|
-
failed: "failed";
|
|
1066
1161
|
}>;
|
|
1067
1162
|
ready: z.ZodBoolean;
|
|
1068
1163
|
summary: z.ZodString;
|
|
@@ -1075,21 +1170,19 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1075
1170
|
"preparation-config": "preparation-config";
|
|
1076
1171
|
"compile-run": "compile-run";
|
|
1077
1172
|
"readiness-checks": "readiness-checks";
|
|
1078
|
-
"source-baseline": "source-baseline";
|
|
1079
|
-
"portable-context-check": "portable-context-check";
|
|
1080
1173
|
"checks-current": "checks-current";
|
|
1081
1174
|
}>;
|
|
1082
1175
|
ok: z.ZodBoolean;
|
|
1083
1176
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1177
|
+
ready: "ready";
|
|
1178
|
+
failed: "failed";
|
|
1084
1179
|
"not-configured": "not-configured";
|
|
1085
1180
|
"not-built": "not-built";
|
|
1086
1181
|
building: "building";
|
|
1087
1182
|
built: "built";
|
|
1088
1183
|
checking: "checking";
|
|
1089
|
-
ready: "ready";
|
|
1090
1184
|
"not-ready": "not-ready";
|
|
1091
1185
|
stale: "stale";
|
|
1092
|
-
failed: "failed";
|
|
1093
1186
|
}>>;
|
|
1094
1187
|
summary: z.ZodString;
|
|
1095
1188
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -1124,21 +1217,19 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1124
1217
|
"preparation-config": "preparation-config";
|
|
1125
1218
|
"compile-run": "compile-run";
|
|
1126
1219
|
"readiness-checks": "readiness-checks";
|
|
1127
|
-
"source-baseline": "source-baseline";
|
|
1128
|
-
"portable-context-check": "portable-context-check";
|
|
1129
1220
|
"checks-current": "checks-current";
|
|
1130
1221
|
}>;
|
|
1131
1222
|
ok: z.ZodBoolean;
|
|
1132
1223
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1224
|
+
ready: "ready";
|
|
1225
|
+
failed: "failed";
|
|
1133
1226
|
"not-configured": "not-configured";
|
|
1134
1227
|
"not-built": "not-built";
|
|
1135
1228
|
building: "building";
|
|
1136
1229
|
built: "built";
|
|
1137
1230
|
checking: "checking";
|
|
1138
|
-
ready: "ready";
|
|
1139
1231
|
"not-ready": "not-ready";
|
|
1140
1232
|
stale: "stale";
|
|
1141
|
-
failed: "failed";
|
|
1142
1233
|
}>>;
|
|
1143
1234
|
summary: z.ZodString;
|
|
1144
1235
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -1146,6 +1237,36 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1146
1237
|
artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1147
1238
|
}, z.core.$strict>>>;
|
|
1148
1239
|
}, z.core.$strict>>>;
|
|
1240
|
+
artifacts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1241
|
+
artifact_id: z.ZodString;
|
|
1242
|
+
status: z.ZodEnum<{
|
|
1243
|
+
ready: "ready";
|
|
1244
|
+
not_ready: "not_ready";
|
|
1245
|
+
failed: "failed";
|
|
1246
|
+
skipped: "skipped";
|
|
1247
|
+
}>;
|
|
1248
|
+
built_by_stages: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1249
|
+
proofs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1250
|
+
check_id: z.ZodString;
|
|
1251
|
+
kind: z.ZodEnum<{
|
|
1252
|
+
file_exists: "file_exists";
|
|
1253
|
+
min_file_count: "min_file_count";
|
|
1254
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
1255
|
+
frontmatter_valid: "frontmatter_valid";
|
|
1256
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
1257
|
+
wikilinks_valid: "wikilinks_valid";
|
|
1258
|
+
must_not_contain: "must_not_contain";
|
|
1259
|
+
must_contain: "must_contain";
|
|
1260
|
+
qa_match: "qa_match";
|
|
1261
|
+
}>;
|
|
1262
|
+
passed: z.ZodBoolean;
|
|
1263
|
+
required: z.ZodBoolean;
|
|
1264
|
+
summary: z.ZodString;
|
|
1265
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1266
|
+
evaluated_at: z.ZodString;
|
|
1267
|
+
}, z.core.$strict>>>;
|
|
1268
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
}, z.core.$strict>>>;
|
|
1149
1270
|
}, z.core.$strict>;
|
|
1150
1271
|
}, z.core.$strict>;
|
|
1151
1272
|
export declare const LocalJobTypeSchema: z.ZodEnum<{
|
|
@@ -1364,24 +1485,6 @@ export declare const PreparationSetupResultSchema: z.ZodObject<{
|
|
|
1364
1485
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1365
1486
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodLiteral<"compile-run">>>;
|
|
1366
1487
|
}, z.core.$strict>;
|
|
1367
|
-
export declare const WorkspaceBootstrapCreateRequestSchema: z.ZodObject<{
|
|
1368
|
-
source_folder: z.ZodOptional<z.ZodObject<{
|
|
1369
|
-
path: z.ZodString;
|
|
1370
|
-
}, z.core.$strict>>;
|
|
1371
|
-
seed_default_method: z.ZodDefault<z.ZodBoolean>;
|
|
1372
|
-
}, z.core.$strict>;
|
|
1373
|
-
export declare const WorkspaceBootstrapResultSchema: z.ZodObject<{
|
|
1374
|
-
kind: z.ZodLiteral<"interf-workspace-bootstrap-result">;
|
|
1375
|
-
version: z.ZodLiteral<1>;
|
|
1376
|
-
control_path: z.ZodString;
|
|
1377
|
-
config_path: z.ZodString;
|
|
1378
|
-
source_folder_path: z.ZodNullable<z.ZodString>;
|
|
1379
|
-
preparations: z.ZodNumber;
|
|
1380
|
-
seeded_default_method: z.ZodBoolean;
|
|
1381
|
-
default_method_id: z.ZodNullable<z.ZodString>;
|
|
1382
|
-
changed: z.ZodBoolean;
|
|
1383
|
-
message: z.ZodString;
|
|
1384
|
-
}, z.core.$strict>;
|
|
1385
1488
|
export declare const MethodChangeCreateRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1386
1489
|
action_type: z.ZodOptional<z.ZodLiteral<"method-change">>;
|
|
1387
1490
|
operation: z.ZodLiteral<"duplicate">;
|
|
@@ -1466,6 +1569,36 @@ export declare const ReadinessCheckDraftResultSchema: z.ZodObject<{
|
|
|
1466
1569
|
strictness: z.ZodOptional<z.ZodString>;
|
|
1467
1570
|
}, z.core.$strict>>>;
|
|
1468
1571
|
}, z.core.$strict>;
|
|
1572
|
+
export declare const MethodAuthoringArtifactRequirementSchema: z.ZodObject<{
|
|
1573
|
+
id: z.ZodString;
|
|
1574
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1575
|
+
shape: z.ZodObject<{
|
|
1576
|
+
kind: z.ZodLiteral<"path">;
|
|
1577
|
+
path: z.ZodString;
|
|
1578
|
+
artifact_kind: z.ZodEnum<{
|
|
1579
|
+
file: "file";
|
|
1580
|
+
directory: "directory";
|
|
1581
|
+
}>;
|
|
1582
|
+
}, z.core.$strict>;
|
|
1583
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1584
|
+
id: z.ZodString;
|
|
1585
|
+
kind: z.ZodEnum<{
|
|
1586
|
+
file_exists: "file_exists";
|
|
1587
|
+
min_file_count: "min_file_count";
|
|
1588
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
1589
|
+
frontmatter_valid: "frontmatter_valid";
|
|
1590
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
1591
|
+
wikilinks_valid: "wikilinks_valid";
|
|
1592
|
+
must_not_contain: "must_not_contain";
|
|
1593
|
+
must_contain: "must_contain";
|
|
1594
|
+
qa_match: "qa_match";
|
|
1595
|
+
}>;
|
|
1596
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1597
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1598
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
1599
|
+
}, z.core.$strict>>>;
|
|
1600
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
1601
|
+
}, z.core.$strict>;
|
|
1469
1602
|
export declare const MethodAuthoringCreateRequestSchema: z.ZodObject<{
|
|
1470
1603
|
preparation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1471
1604
|
source_folder_path: z.ZodString;
|
|
@@ -1488,6 +1621,36 @@ export declare const MethodAuthoringCreateRequestSchema: z.ZodObject<{
|
|
|
1488
1621
|
}, z.core.$strip>>;
|
|
1489
1622
|
strictness: z.ZodOptional<z.ZodString>;
|
|
1490
1623
|
}, z.core.$strict>>>;
|
|
1624
|
+
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1625
|
+
id: z.ZodString;
|
|
1626
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
shape: z.ZodObject<{
|
|
1628
|
+
kind: z.ZodLiteral<"path">;
|
|
1629
|
+
path: z.ZodString;
|
|
1630
|
+
artifact_kind: z.ZodEnum<{
|
|
1631
|
+
file: "file";
|
|
1632
|
+
directory: "directory";
|
|
1633
|
+
}>;
|
|
1634
|
+
}, z.core.$strict>;
|
|
1635
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1636
|
+
id: z.ZodString;
|
|
1637
|
+
kind: z.ZodEnum<{
|
|
1638
|
+
file_exists: "file_exists";
|
|
1639
|
+
min_file_count: "min_file_count";
|
|
1640
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
1641
|
+
frontmatter_valid: "frontmatter_valid";
|
|
1642
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
1643
|
+
wikilinks_valid: "wikilinks_valid";
|
|
1644
|
+
must_not_contain: "must_not_contain";
|
|
1645
|
+
must_contain: "must_contain";
|
|
1646
|
+
qa_match: "qa_match";
|
|
1647
|
+
}>;
|
|
1648
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1649
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1650
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
1651
|
+
}, z.core.$strict>>>;
|
|
1652
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
1653
|
+
}, z.core.$strict>>>;
|
|
1491
1654
|
}, z.core.$strict>;
|
|
1492
1655
|
export declare const MethodAuthoringResultSchema: z.ZodObject<{
|
|
1493
1656
|
status: z.ZodEnum<{
|
|
@@ -1611,22 +1774,32 @@ export declare const LocalJobRunResourceSchema: z.ZodObject<{
|
|
|
1611
1774
|
result: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1612
1775
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1613
1776
|
}, z.core.$strict>;
|
|
1614
|
-
export declare const
|
|
1777
|
+
export declare const VerifyRunStatusSchema: z.ZodEnum<{
|
|
1615
1778
|
succeeded: "succeeded";
|
|
1616
1779
|
failed: "failed";
|
|
1617
1780
|
running: "running";
|
|
1618
1781
|
cancelled: "cancelled";
|
|
1619
1782
|
queued: "queued";
|
|
1620
1783
|
}>;
|
|
1621
|
-
|
|
1784
|
+
/**
|
|
1785
|
+
* 0.17 — verify runs choose their judge target. `compiled` (default)
|
|
1786
|
+
* judges against the latest portable-context output; `source-files`
|
|
1787
|
+
* judges against the raw source folder for a baseline that reveals
|
|
1788
|
+
* how much value the Method actually adds. The 0.15 cleanup made
|
|
1789
|
+
* verify compiled-only on the wire because the source-files branch
|
|
1790
|
+
* had been retired in 0.13.1; 0.17 restores it because the QA tab and
|
|
1791
|
+
* `verify/README.md` have always claimed the option exists, and the
|
|
1792
|
+
* sandbox + spec builders for source-files have remained in tree
|
|
1793
|
+
* since 0.13.
|
|
1794
|
+
*/
|
|
1795
|
+
export declare const VerifyRunCreateRequestSchema: z.ZodObject<{
|
|
1622
1796
|
preparation: z.ZodString;
|
|
1623
|
-
|
|
1797
|
+
target: z.ZodDefault<z.ZodEnum<{
|
|
1624
1798
|
"source-files": "source-files";
|
|
1625
1799
|
compiled: "compiled";
|
|
1626
|
-
both: "both";
|
|
1627
1800
|
}>>;
|
|
1628
1801
|
}, z.core.$strict>;
|
|
1629
|
-
export declare const
|
|
1802
|
+
export declare const VerifyRunResourceSchema: z.ZodObject<{
|
|
1630
1803
|
run_id: z.ZodString;
|
|
1631
1804
|
status: z.ZodEnum<{
|
|
1632
1805
|
succeeded: "succeeded";
|
|
@@ -1636,11 +1809,6 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1636
1809
|
queued: "queued";
|
|
1637
1810
|
}>;
|
|
1638
1811
|
preparation: z.ZodString;
|
|
1639
|
-
mode: z.ZodEnum<{
|
|
1640
|
-
"source-files": "source-files";
|
|
1641
|
-
compiled: "compiled";
|
|
1642
|
-
both: "both";
|
|
1643
|
-
}>;
|
|
1644
1812
|
source_path: z.ZodString;
|
|
1645
1813
|
portable_context_path: z.ZodNullable<z.ZodString>;
|
|
1646
1814
|
started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1707,15 +1875,15 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1707
1875
|
generated_at: z.ZodString;
|
|
1708
1876
|
preparation: z.ZodString;
|
|
1709
1877
|
status: z.ZodEnum<{
|
|
1878
|
+
ready: "ready";
|
|
1879
|
+
failed: "failed";
|
|
1710
1880
|
"not-configured": "not-configured";
|
|
1711
1881
|
"not-built": "not-built";
|
|
1712
1882
|
building: "building";
|
|
1713
1883
|
built: "built";
|
|
1714
1884
|
checking: "checking";
|
|
1715
|
-
ready: "ready";
|
|
1716
1885
|
"not-ready": "not-ready";
|
|
1717
1886
|
stale: "stale";
|
|
1718
|
-
failed: "failed";
|
|
1719
1887
|
}>;
|
|
1720
1888
|
ready: z.ZodBoolean;
|
|
1721
1889
|
summary: z.ZodString;
|
|
@@ -1728,21 +1896,19 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1728
1896
|
"preparation-config": "preparation-config";
|
|
1729
1897
|
"compile-run": "compile-run";
|
|
1730
1898
|
"readiness-checks": "readiness-checks";
|
|
1731
|
-
"source-baseline": "source-baseline";
|
|
1732
|
-
"portable-context-check": "portable-context-check";
|
|
1733
1899
|
"checks-current": "checks-current";
|
|
1734
1900
|
}>;
|
|
1735
1901
|
ok: z.ZodBoolean;
|
|
1736
1902
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1903
|
+
ready: "ready";
|
|
1904
|
+
failed: "failed";
|
|
1737
1905
|
"not-configured": "not-configured";
|
|
1738
1906
|
"not-built": "not-built";
|
|
1739
1907
|
building: "building";
|
|
1740
1908
|
built: "built";
|
|
1741
1909
|
checking: "checking";
|
|
1742
|
-
ready: "ready";
|
|
1743
1910
|
"not-ready": "not-ready";
|
|
1744
1911
|
stale: "stale";
|
|
1745
|
-
failed: "failed";
|
|
1746
1912
|
}>>;
|
|
1747
1913
|
summary: z.ZodString;
|
|
1748
1914
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -1777,21 +1943,19 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1777
1943
|
"preparation-config": "preparation-config";
|
|
1778
1944
|
"compile-run": "compile-run";
|
|
1779
1945
|
"readiness-checks": "readiness-checks";
|
|
1780
|
-
"source-baseline": "source-baseline";
|
|
1781
|
-
"portable-context-check": "portable-context-check";
|
|
1782
1946
|
"checks-current": "checks-current";
|
|
1783
1947
|
}>;
|
|
1784
1948
|
ok: z.ZodBoolean;
|
|
1785
1949
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1950
|
+
ready: "ready";
|
|
1951
|
+
failed: "failed";
|
|
1786
1952
|
"not-configured": "not-configured";
|
|
1787
1953
|
"not-built": "not-built";
|
|
1788
1954
|
building: "building";
|
|
1789
1955
|
built: "built";
|
|
1790
1956
|
checking: "checking";
|
|
1791
|
-
ready: "ready";
|
|
1792
1957
|
"not-ready": "not-ready";
|
|
1793
1958
|
stale: "stale";
|
|
1794
|
-
failed: "failed";
|
|
1795
1959
|
}>>;
|
|
1796
1960
|
summary: z.ZodString;
|
|
1797
1961
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -1916,6 +2080,12 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1916
2080
|
timestamp: z.ZodString;
|
|
1917
2081
|
type: z.ZodLiteral<"run.failed">;
|
|
1918
2082
|
error: z.ZodString;
|
|
2083
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2084
|
+
event_id: z.ZodString;
|
|
2085
|
+
run_id: z.ZodString;
|
|
2086
|
+
timestamp: z.ZodString;
|
|
2087
|
+
type: z.ZodLiteral<"run.cancelled">;
|
|
2088
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
1919
2089
|
}, z.core.$strict>, z.ZodObject<{
|
|
1920
2090
|
event_id: z.ZodString;
|
|
1921
2091
|
run_id: z.ZodString;
|
|
@@ -1942,15 +2112,15 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1942
2112
|
generated_at: z.ZodString;
|
|
1943
2113
|
preparation: z.ZodString;
|
|
1944
2114
|
status: z.ZodEnum<{
|
|
2115
|
+
ready: "ready";
|
|
2116
|
+
failed: "failed";
|
|
1945
2117
|
"not-configured": "not-configured";
|
|
1946
2118
|
"not-built": "not-built";
|
|
1947
2119
|
building: "building";
|
|
1948
2120
|
built: "built";
|
|
1949
2121
|
checking: "checking";
|
|
1950
|
-
ready: "ready";
|
|
1951
2122
|
"not-ready": "not-ready";
|
|
1952
2123
|
stale: "stale";
|
|
1953
|
-
failed: "failed";
|
|
1954
2124
|
}>;
|
|
1955
2125
|
ready: z.ZodBoolean;
|
|
1956
2126
|
summary: z.ZodString;
|
|
@@ -1963,21 +2133,19 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
1963
2133
|
"preparation-config": "preparation-config";
|
|
1964
2134
|
"compile-run": "compile-run";
|
|
1965
2135
|
"readiness-checks": "readiness-checks";
|
|
1966
|
-
"source-baseline": "source-baseline";
|
|
1967
|
-
"portable-context-check": "portable-context-check";
|
|
1968
2136
|
"checks-current": "checks-current";
|
|
1969
2137
|
}>;
|
|
1970
2138
|
ok: z.ZodBoolean;
|
|
1971
2139
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2140
|
+
ready: "ready";
|
|
2141
|
+
failed: "failed";
|
|
1972
2142
|
"not-configured": "not-configured";
|
|
1973
2143
|
"not-built": "not-built";
|
|
1974
2144
|
building: "building";
|
|
1975
2145
|
built: "built";
|
|
1976
2146
|
checking: "checking";
|
|
1977
|
-
ready: "ready";
|
|
1978
2147
|
"not-ready": "not-ready";
|
|
1979
2148
|
stale: "stale";
|
|
1980
|
-
failed: "failed";
|
|
1981
2149
|
}>>;
|
|
1982
2150
|
summary: z.ZodString;
|
|
1983
2151
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -2012,21 +2180,19 @@ export declare const TestRunResourceSchema: z.ZodObject<{
|
|
|
2012
2180
|
"preparation-config": "preparation-config";
|
|
2013
2181
|
"compile-run": "compile-run";
|
|
2014
2182
|
"readiness-checks": "readiness-checks";
|
|
2015
|
-
"source-baseline": "source-baseline";
|
|
2016
|
-
"portable-context-check": "portable-context-check";
|
|
2017
2183
|
"checks-current": "checks-current";
|
|
2018
2184
|
}>;
|
|
2019
2185
|
ok: z.ZodBoolean;
|
|
2020
2186
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2187
|
+
ready: "ready";
|
|
2188
|
+
failed: "failed";
|
|
2021
2189
|
"not-configured": "not-configured";
|
|
2022
2190
|
"not-built": "not-built";
|
|
2023
2191
|
building: "building";
|
|
2024
2192
|
built: "built";
|
|
2025
2193
|
checking: "checking";
|
|
2026
|
-
ready: "ready";
|
|
2027
2194
|
"not-ready": "not-ready";
|
|
2028
2195
|
stale: "stale";
|
|
2029
|
-
failed: "failed";
|
|
2030
2196
|
}>>;
|
|
2031
2197
|
summary: z.ZodString;
|
|
2032
2198
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -2045,7 +2211,7 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
|
|
|
2045
2211
|
compile: "compile";
|
|
2046
2212
|
"method-authoring": "method-authoring";
|
|
2047
2213
|
"method-improvement": "method-improvement";
|
|
2048
|
-
|
|
2214
|
+
verify: "verify";
|
|
2049
2215
|
"readiness-check-draft": "readiness-check-draft";
|
|
2050
2216
|
job: "job";
|
|
2051
2217
|
}>;
|
|
@@ -2109,15 +2275,15 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
|
|
|
2109
2275
|
generated_at: z.ZodString;
|
|
2110
2276
|
preparation: z.ZodString;
|
|
2111
2277
|
status: z.ZodEnum<{
|
|
2278
|
+
ready: "ready";
|
|
2279
|
+
failed: "failed";
|
|
2112
2280
|
"not-configured": "not-configured";
|
|
2113
2281
|
"not-built": "not-built";
|
|
2114
2282
|
building: "building";
|
|
2115
2283
|
built: "built";
|
|
2116
2284
|
checking: "checking";
|
|
2117
|
-
ready: "ready";
|
|
2118
2285
|
"not-ready": "not-ready";
|
|
2119
2286
|
stale: "stale";
|
|
2120
|
-
failed: "failed";
|
|
2121
2287
|
}>;
|
|
2122
2288
|
ready: z.ZodBoolean;
|
|
2123
2289
|
summary: z.ZodString;
|
|
@@ -2130,21 +2296,19 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
|
|
|
2130
2296
|
"preparation-config": "preparation-config";
|
|
2131
2297
|
"compile-run": "compile-run";
|
|
2132
2298
|
"readiness-checks": "readiness-checks";
|
|
2133
|
-
"source-baseline": "source-baseline";
|
|
2134
|
-
"portable-context-check": "portable-context-check";
|
|
2135
2299
|
"checks-current": "checks-current";
|
|
2136
2300
|
}>;
|
|
2137
2301
|
ok: z.ZodBoolean;
|
|
2138
2302
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2303
|
+
ready: "ready";
|
|
2304
|
+
failed: "failed";
|
|
2139
2305
|
"not-configured": "not-configured";
|
|
2140
2306
|
"not-built": "not-built";
|
|
2141
2307
|
building: "building";
|
|
2142
2308
|
built: "built";
|
|
2143
2309
|
checking: "checking";
|
|
2144
|
-
ready: "ready";
|
|
2145
2310
|
"not-ready": "not-ready";
|
|
2146
2311
|
stale: "stale";
|
|
2147
|
-
failed: "failed";
|
|
2148
2312
|
}>>;
|
|
2149
2313
|
summary: z.ZodString;
|
|
2150
2314
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -2179,21 +2343,19 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
|
|
|
2179
2343
|
"preparation-config": "preparation-config";
|
|
2180
2344
|
"compile-run": "compile-run";
|
|
2181
2345
|
"readiness-checks": "readiness-checks";
|
|
2182
|
-
"source-baseline": "source-baseline";
|
|
2183
|
-
"portable-context-check": "portable-context-check";
|
|
2184
2346
|
"checks-current": "checks-current";
|
|
2185
2347
|
}>;
|
|
2186
2348
|
ok: z.ZodBoolean;
|
|
2187
2349
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2350
|
+
ready: "ready";
|
|
2351
|
+
failed: "failed";
|
|
2188
2352
|
"not-configured": "not-configured";
|
|
2189
2353
|
"not-built": "not-built";
|
|
2190
2354
|
building: "building";
|
|
2191
2355
|
built: "built";
|
|
2192
2356
|
checking: "checking";
|
|
2193
|
-
ready: "ready";
|
|
2194
2357
|
"not-ready": "not-ready";
|
|
2195
2358
|
stale: "stale";
|
|
2196
|
-
failed: "failed";
|
|
2197
2359
|
}>>;
|
|
2198
2360
|
summary: z.ZodString;
|
|
2199
2361
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -2292,16 +2454,16 @@ export declare const ActionProposalTypeSchema: z.ZodEnum<{
|
|
|
2292
2454
|
compile: "compile";
|
|
2293
2455
|
"method-authoring": "method-authoring";
|
|
2294
2456
|
"method-improvement": "method-improvement";
|
|
2295
|
-
test: "test";
|
|
2296
2457
|
"readiness-check-draft": "readiness-check-draft";
|
|
2458
|
+
test: "test";
|
|
2297
2459
|
clarification: "clarification";
|
|
2298
2460
|
}>;
|
|
2299
2461
|
export declare const ActionProposalPlanActionTypeSchema: z.ZodEnum<{
|
|
2300
2462
|
compile: "compile";
|
|
2301
2463
|
"method-authoring": "method-authoring";
|
|
2302
2464
|
"method-improvement": "method-improvement";
|
|
2303
|
-
test: "test";
|
|
2304
2465
|
"readiness-check-draft": "readiness-check-draft";
|
|
2466
|
+
test: "test";
|
|
2305
2467
|
"method-change": "method-change";
|
|
2306
2468
|
"preparation-change": "preparation-change";
|
|
2307
2469
|
clarification: "clarification";
|
|
@@ -2317,22 +2479,22 @@ export declare const ActionProposalStatusSchema: z.ZodEnum<{
|
|
|
2317
2479
|
}>;
|
|
2318
2480
|
export declare const ActionClientOriginSchema: z.ZodEnum<{
|
|
2319
2481
|
unknown: "unknown";
|
|
2320
|
-
|
|
2482
|
+
mcp: "mcp";
|
|
2321
2483
|
"ui-chat": "ui-chat";
|
|
2322
2484
|
cli: "cli";
|
|
2323
2485
|
"agent-cli": "agent-cli";
|
|
2324
|
-
|
|
2486
|
+
service: "service";
|
|
2325
2487
|
}>;
|
|
2326
2488
|
export declare const ActionProposalCreateRequestSchema: z.ZodObject<{
|
|
2327
2489
|
message: z.ZodString;
|
|
2328
2490
|
preparation: z.ZodOptional<z.ZodString>;
|
|
2329
2491
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2330
2492
|
unknown: "unknown";
|
|
2331
|
-
|
|
2493
|
+
mcp: "mcp";
|
|
2332
2494
|
"ui-chat": "ui-chat";
|
|
2333
2495
|
cli: "cli";
|
|
2334
2496
|
"agent-cli": "agent-cli";
|
|
2335
|
-
|
|
2497
|
+
service: "service";
|
|
2336
2498
|
}>>;
|
|
2337
2499
|
values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2338
2500
|
}, z.core.$strict>;
|
|
@@ -2341,8 +2503,8 @@ export declare const ActionProposalPlanSchema: z.ZodObject<{
|
|
|
2341
2503
|
compile: "compile";
|
|
2342
2504
|
"method-authoring": "method-authoring";
|
|
2343
2505
|
"method-improvement": "method-improvement";
|
|
2344
|
-
test: "test";
|
|
2345
2506
|
"readiness-check-draft": "readiness-check-draft";
|
|
2507
|
+
test: "test";
|
|
2346
2508
|
"method-change": "method-change";
|
|
2347
2509
|
"preparation-change": "preparation-change";
|
|
2348
2510
|
clarification: "clarification";
|
|
@@ -2386,11 +2548,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2386
2548
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2387
2549
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2388
2550
|
unknown: "unknown";
|
|
2389
|
-
|
|
2551
|
+
mcp: "mcp";
|
|
2390
2552
|
"ui-chat": "ui-chat";
|
|
2391
2553
|
cli: "cli";
|
|
2392
2554
|
"agent-cli": "agent-cli";
|
|
2393
|
-
|
|
2555
|
+
service: "service";
|
|
2394
2556
|
}>>;
|
|
2395
2557
|
created_at: z.ZodString;
|
|
2396
2558
|
updated_at: z.ZodString;
|
|
@@ -2407,7 +2569,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2407
2569
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2408
2570
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2409
2571
|
"compile-run": "compile-run";
|
|
2410
|
-
"
|
|
2572
|
+
"verify-run": "verify-run";
|
|
2411
2573
|
"job-run": "job-run";
|
|
2412
2574
|
}>>>;
|
|
2413
2575
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2434,11 +2596,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2434
2596
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2435
2597
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2436
2598
|
unknown: "unknown";
|
|
2437
|
-
|
|
2599
|
+
mcp: "mcp";
|
|
2438
2600
|
"ui-chat": "ui-chat";
|
|
2439
2601
|
cli: "cli";
|
|
2440
2602
|
"agent-cli": "agent-cli";
|
|
2441
|
-
|
|
2603
|
+
service: "service";
|
|
2442
2604
|
}>>;
|
|
2443
2605
|
created_at: z.ZodString;
|
|
2444
2606
|
updated_at: z.ZodString;
|
|
@@ -2455,7 +2617,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2455
2617
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2456
2618
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2457
2619
|
"compile-run": "compile-run";
|
|
2458
|
-
"
|
|
2620
|
+
"verify-run": "verify-run";
|
|
2459
2621
|
"job-run": "job-run";
|
|
2460
2622
|
}>>>;
|
|
2461
2623
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2491,11 +2653,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2491
2653
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2492
2654
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2493
2655
|
unknown: "unknown";
|
|
2494
|
-
|
|
2656
|
+
mcp: "mcp";
|
|
2495
2657
|
"ui-chat": "ui-chat";
|
|
2496
2658
|
cli: "cli";
|
|
2497
2659
|
"agent-cli": "agent-cli";
|
|
2498
|
-
|
|
2660
|
+
service: "service";
|
|
2499
2661
|
}>>;
|
|
2500
2662
|
created_at: z.ZodString;
|
|
2501
2663
|
updated_at: z.ZodString;
|
|
@@ -2512,17 +2674,16 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2512
2674
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2513
2675
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2514
2676
|
"compile-run": "compile-run";
|
|
2515
|
-
"
|
|
2677
|
+
"verify-run": "verify-run";
|
|
2516
2678
|
"job-run": "job-run";
|
|
2517
2679
|
}>>>;
|
|
2518
2680
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2519
2681
|
action_type: z.ZodLiteral<"test">;
|
|
2520
2682
|
request: z.ZodObject<{
|
|
2521
2683
|
preparation: z.ZodString;
|
|
2522
|
-
|
|
2684
|
+
target: z.ZodDefault<z.ZodEnum<{
|
|
2523
2685
|
"source-files": "source-files";
|
|
2524
2686
|
compiled: "compiled";
|
|
2525
|
-
both: "both";
|
|
2526
2687
|
}>>;
|
|
2527
2688
|
}, z.core.$strict>;
|
|
2528
2689
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2546,11 +2707,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2546
2707
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2547
2708
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2548
2709
|
unknown: "unknown";
|
|
2549
|
-
|
|
2710
|
+
mcp: "mcp";
|
|
2550
2711
|
"ui-chat": "ui-chat";
|
|
2551
2712
|
cli: "cli";
|
|
2552
2713
|
"agent-cli": "agent-cli";
|
|
2553
|
-
|
|
2714
|
+
service: "service";
|
|
2554
2715
|
}>>;
|
|
2555
2716
|
created_at: z.ZodString;
|
|
2556
2717
|
updated_at: z.ZodString;
|
|
@@ -2567,7 +2728,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2567
2728
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2568
2729
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2569
2730
|
"compile-run": "compile-run";
|
|
2570
|
-
"
|
|
2731
|
+
"verify-run": "verify-run";
|
|
2571
2732
|
"job-run": "job-run";
|
|
2572
2733
|
}>>>;
|
|
2573
2734
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2599,11 +2760,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2599
2760
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2600
2761
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2601
2762
|
unknown: "unknown";
|
|
2602
|
-
|
|
2763
|
+
mcp: "mcp";
|
|
2603
2764
|
"ui-chat": "ui-chat";
|
|
2604
2765
|
cli: "cli";
|
|
2605
2766
|
"agent-cli": "agent-cli";
|
|
2606
|
-
|
|
2767
|
+
service: "service";
|
|
2607
2768
|
}>>;
|
|
2608
2769
|
created_at: z.ZodString;
|
|
2609
2770
|
updated_at: z.ZodString;
|
|
@@ -2620,7 +2781,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2620
2781
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2621
2782
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2622
2783
|
"compile-run": "compile-run";
|
|
2623
|
-
"
|
|
2784
|
+
"verify-run": "verify-run";
|
|
2624
2785
|
"job-run": "job-run";
|
|
2625
2786
|
}>>>;
|
|
2626
2787
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2647,6 +2808,36 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2647
2808
|
}, z.core.$strip>>;
|
|
2648
2809
|
strictness: z.ZodOptional<z.ZodString>;
|
|
2649
2810
|
}, z.core.$strict>>>;
|
|
2811
|
+
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2812
|
+
id: z.ZodString;
|
|
2813
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2814
|
+
shape: z.ZodObject<{
|
|
2815
|
+
kind: z.ZodLiteral<"path">;
|
|
2816
|
+
path: z.ZodString;
|
|
2817
|
+
artifact_kind: z.ZodEnum<{
|
|
2818
|
+
file: "file";
|
|
2819
|
+
directory: "directory";
|
|
2820
|
+
}>;
|
|
2821
|
+
}, z.core.$strict>;
|
|
2822
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2823
|
+
id: z.ZodString;
|
|
2824
|
+
kind: z.ZodEnum<{
|
|
2825
|
+
file_exists: "file_exists";
|
|
2826
|
+
min_file_count: "min_file_count";
|
|
2827
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
2828
|
+
frontmatter_valid: "frontmatter_valid";
|
|
2829
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
2830
|
+
wikilinks_valid: "wikilinks_valid";
|
|
2831
|
+
must_not_contain: "must_not_contain";
|
|
2832
|
+
must_contain: "must_contain";
|
|
2833
|
+
qa_match: "qa_match";
|
|
2834
|
+
}>;
|
|
2835
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2836
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2837
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2838
|
+
}, z.core.$strict>>>;
|
|
2839
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
2840
|
+
}, z.core.$strict>>>;
|
|
2650
2841
|
}, z.core.$strict>;
|
|
2651
2842
|
}, z.core.$strict>, z.ZodObject<{
|
|
2652
2843
|
kind: z.ZodLiteral<"interf-action-proposal">;
|
|
@@ -2669,11 +2860,11 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2669
2860
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2670
2861
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2671
2862
|
unknown: "unknown";
|
|
2672
|
-
|
|
2863
|
+
mcp: "mcp";
|
|
2673
2864
|
"ui-chat": "ui-chat";
|
|
2674
2865
|
cli: "cli";
|
|
2675
2866
|
"agent-cli": "agent-cli";
|
|
2676
|
-
|
|
2867
|
+
service: "service";
|
|
2677
2868
|
}>>;
|
|
2678
2869
|
created_at: z.ZodString;
|
|
2679
2870
|
updated_at: z.ZodString;
|
|
@@ -2690,7 +2881,7 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2690
2881
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2691
2882
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2692
2883
|
"compile-run": "compile-run";
|
|
2693
|
-
"
|
|
2884
|
+
"verify-run": "verify-run";
|
|
2694
2885
|
"job-run": "job-run";
|
|
2695
2886
|
}>>>;
|
|
2696
2887
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2717,6 +2908,36 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2717
2908
|
}, z.core.$strip>>;
|
|
2718
2909
|
strictness: z.ZodOptional<z.ZodString>;
|
|
2719
2910
|
}, z.core.$strict>>>;
|
|
2911
|
+
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2912
|
+
id: z.ZodString;
|
|
2913
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2914
|
+
shape: z.ZodObject<{
|
|
2915
|
+
kind: z.ZodLiteral<"path">;
|
|
2916
|
+
path: z.ZodString;
|
|
2917
|
+
artifact_kind: z.ZodEnum<{
|
|
2918
|
+
file: "file";
|
|
2919
|
+
directory: "directory";
|
|
2920
|
+
}>;
|
|
2921
|
+
}, z.core.$strict>;
|
|
2922
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2923
|
+
id: z.ZodString;
|
|
2924
|
+
kind: z.ZodEnum<{
|
|
2925
|
+
file_exists: "file_exists";
|
|
2926
|
+
min_file_count: "min_file_count";
|
|
2927
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
2928
|
+
frontmatter_valid: "frontmatter_valid";
|
|
2929
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
2930
|
+
wikilinks_valid: "wikilinks_valid";
|
|
2931
|
+
must_not_contain: "must_not_contain";
|
|
2932
|
+
must_contain: "must_contain";
|
|
2933
|
+
qa_match: "qa_match";
|
|
2934
|
+
}>;
|
|
2935
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2936
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2937
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2938
|
+
}, z.core.$strict>>>;
|
|
2939
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
2940
|
+
}, z.core.$strict>>>;
|
|
2720
2941
|
}, z.core.$strict>;
|
|
2721
2942
|
}, z.core.$strict>], "action_type">;
|
|
2722
2943
|
export declare const PortableContextResourceSchema: z.ZodObject<{
|
|
@@ -2729,15 +2950,15 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
|
|
|
2729
2950
|
generated_at: z.ZodString;
|
|
2730
2951
|
preparation: z.ZodString;
|
|
2731
2952
|
status: z.ZodEnum<{
|
|
2953
|
+
ready: "ready";
|
|
2954
|
+
failed: "failed";
|
|
2732
2955
|
"not-configured": "not-configured";
|
|
2733
2956
|
"not-built": "not-built";
|
|
2734
2957
|
building: "building";
|
|
2735
2958
|
built: "built";
|
|
2736
2959
|
checking: "checking";
|
|
2737
|
-
ready: "ready";
|
|
2738
2960
|
"not-ready": "not-ready";
|
|
2739
2961
|
stale: "stale";
|
|
2740
|
-
failed: "failed";
|
|
2741
2962
|
}>;
|
|
2742
2963
|
ready: z.ZodBoolean;
|
|
2743
2964
|
summary: z.ZodString;
|
|
@@ -2750,21 +2971,19 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
|
|
|
2750
2971
|
"preparation-config": "preparation-config";
|
|
2751
2972
|
"compile-run": "compile-run";
|
|
2752
2973
|
"readiness-checks": "readiness-checks";
|
|
2753
|
-
"source-baseline": "source-baseline";
|
|
2754
|
-
"portable-context-check": "portable-context-check";
|
|
2755
2974
|
"checks-current": "checks-current";
|
|
2756
2975
|
}>;
|
|
2757
2976
|
ok: z.ZodBoolean;
|
|
2758
2977
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2978
|
+
ready: "ready";
|
|
2979
|
+
failed: "failed";
|
|
2759
2980
|
"not-configured": "not-configured";
|
|
2760
2981
|
"not-built": "not-built";
|
|
2761
2982
|
building: "building";
|
|
2762
2983
|
built: "built";
|
|
2763
2984
|
checking: "checking";
|
|
2764
|
-
ready: "ready";
|
|
2765
2985
|
"not-ready": "not-ready";
|
|
2766
2986
|
stale: "stale";
|
|
2767
|
-
failed: "failed";
|
|
2768
2987
|
}>>;
|
|
2769
2988
|
summary: z.ZodString;
|
|
2770
2989
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -2799,21 +3018,19 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
|
|
|
2799
3018
|
"preparation-config": "preparation-config";
|
|
2800
3019
|
"compile-run": "compile-run";
|
|
2801
3020
|
"readiness-checks": "readiness-checks";
|
|
2802
|
-
"source-baseline": "source-baseline";
|
|
2803
|
-
"portable-context-check": "portable-context-check";
|
|
2804
3021
|
"checks-current": "checks-current";
|
|
2805
3022
|
}>;
|
|
2806
3023
|
ok: z.ZodBoolean;
|
|
2807
3024
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3025
|
+
ready: "ready";
|
|
3026
|
+
failed: "failed";
|
|
2808
3027
|
"not-configured": "not-configured";
|
|
2809
3028
|
"not-built": "not-built";
|
|
2810
3029
|
building: "building";
|
|
2811
3030
|
built: "built";
|
|
2812
3031
|
checking: "checking";
|
|
2813
|
-
ready: "ready";
|
|
2814
3032
|
"not-ready": "not-ready";
|
|
2815
3033
|
stale: "stale";
|
|
2816
|
-
failed: "failed";
|
|
2817
3034
|
}>>;
|
|
2818
3035
|
summary: z.ZodString;
|
|
2819
3036
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -2844,15 +3061,15 @@ export declare const ReadinessResourceSchema: z.ZodObject<{
|
|
|
2844
3061
|
generated_at: z.ZodString;
|
|
2845
3062
|
preparation: z.ZodString;
|
|
2846
3063
|
status: z.ZodEnum<{
|
|
3064
|
+
ready: "ready";
|
|
3065
|
+
failed: "failed";
|
|
2847
3066
|
"not-configured": "not-configured";
|
|
2848
3067
|
"not-built": "not-built";
|
|
2849
3068
|
building: "building";
|
|
2850
3069
|
built: "built";
|
|
2851
3070
|
checking: "checking";
|
|
2852
|
-
ready: "ready";
|
|
2853
3071
|
"not-ready": "not-ready";
|
|
2854
3072
|
stale: "stale";
|
|
2855
|
-
failed: "failed";
|
|
2856
3073
|
}>;
|
|
2857
3074
|
ready: z.ZodBoolean;
|
|
2858
3075
|
summary: z.ZodString;
|
|
@@ -2865,21 +3082,19 @@ export declare const ReadinessResourceSchema: z.ZodObject<{
|
|
|
2865
3082
|
"preparation-config": "preparation-config";
|
|
2866
3083
|
"compile-run": "compile-run";
|
|
2867
3084
|
"readiness-checks": "readiness-checks";
|
|
2868
|
-
"source-baseline": "source-baseline";
|
|
2869
|
-
"portable-context-check": "portable-context-check";
|
|
2870
3085
|
"checks-current": "checks-current";
|
|
2871
3086
|
}>;
|
|
2872
3087
|
ok: z.ZodBoolean;
|
|
2873
3088
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3089
|
+
ready: "ready";
|
|
3090
|
+
failed: "failed";
|
|
2874
3091
|
"not-configured": "not-configured";
|
|
2875
3092
|
"not-built": "not-built";
|
|
2876
3093
|
building: "building";
|
|
2877
3094
|
built: "built";
|
|
2878
3095
|
checking: "checking";
|
|
2879
|
-
ready: "ready";
|
|
2880
3096
|
"not-ready": "not-ready";
|
|
2881
3097
|
stale: "stale";
|
|
2882
|
-
failed: "failed";
|
|
2883
3098
|
}>>;
|
|
2884
3099
|
summary: z.ZodString;
|
|
2885
3100
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -2914,21 +3129,19 @@ export declare const ReadinessResourceSchema: z.ZodObject<{
|
|
|
2914
3129
|
"preparation-config": "preparation-config";
|
|
2915
3130
|
"compile-run": "compile-run";
|
|
2916
3131
|
"readiness-checks": "readiness-checks";
|
|
2917
|
-
"source-baseline": "source-baseline";
|
|
2918
|
-
"portable-context-check": "portable-context-check";
|
|
2919
3132
|
"checks-current": "checks-current";
|
|
2920
3133
|
}>;
|
|
2921
3134
|
ok: z.ZodBoolean;
|
|
2922
3135
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3136
|
+
ready: "ready";
|
|
3137
|
+
failed: "failed";
|
|
2923
3138
|
"not-configured": "not-configured";
|
|
2924
3139
|
"not-built": "not-built";
|
|
2925
3140
|
building: "building";
|
|
2926
3141
|
built: "built";
|
|
2927
3142
|
checking: "checking";
|
|
2928
|
-
ready: "ready";
|
|
2929
3143
|
"not-ready": "not-ready";
|
|
2930
3144
|
stale: "stale";
|
|
2931
|
-
failed: "failed";
|
|
2932
3145
|
}>>;
|
|
2933
3146
|
summary: z.ZodString;
|
|
2934
3147
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -2970,9 +3183,10 @@ export declare const LocalServiceDiscoverySchema: z.ZodObject<{
|
|
|
2970
3183
|
method_authoring_runs: z.ZodString;
|
|
2971
3184
|
method_improvement_runs: z.ZodString;
|
|
2972
3185
|
compile_runs: z.ZodString;
|
|
2973
|
-
|
|
3186
|
+
verify_runs: z.ZodString;
|
|
2974
3187
|
reset: z.ZodString;
|
|
2975
3188
|
executor: z.ZodString;
|
|
3189
|
+
agents: z.ZodOptional<z.ZodString>;
|
|
2976
3190
|
workspaces: z.ZodOptional<z.ZodString>;
|
|
2977
3191
|
status: z.ZodOptional<z.ZodString>;
|
|
2978
3192
|
}, z.core.$strict>;
|
|
@@ -2987,31 +3201,24 @@ export declare const OpenPathResponseSchema: z.ZodObject<{
|
|
|
2987
3201
|
export declare const PreparationListResponseSchema: z.ZodObject<{
|
|
2988
3202
|
preparations: z.ZodArray<z.ZodObject<{
|
|
2989
3203
|
id: z.ZodString;
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
method: z.ZodOptional<z.ZodString>;
|
|
2997
|
-
max_attempts: z.ZodOptional<z.ZodNumber>;
|
|
2998
|
-
max_loops: z.ZodOptional<z.ZodNumber>;
|
|
2999
|
-
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3000
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3001
|
-
question: z.ZodString;
|
|
3002
|
-
answer: z.ZodOptional<z.ZodString>;
|
|
3003
|
-
expect: z.ZodOptional<z.ZodObject<{
|
|
3004
|
-
must_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3005
|
-
must_include_one_of: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString>>>;
|
|
3006
|
-
must_not_include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3007
|
-
min_words: z.ZodOptional<z.ZodNumber>;
|
|
3008
|
-
max_words: z.ZodOptional<z.ZodNumber>;
|
|
3009
|
-
}, z.core.$strip>>;
|
|
3010
|
-
strictness: z.ZodOptional<z.ZodString>;
|
|
3011
|
-
}, z.core.$strict>>>;
|
|
3204
|
+
source: z.ZodObject<{
|
|
3205
|
+
kind: z.ZodEnum<{
|
|
3206
|
+
"local-folder": "local-folder";
|
|
3207
|
+
"remote-folder": "remote-folder";
|
|
3208
|
+
}>;
|
|
3209
|
+
locator: z.ZodString;
|
|
3012
3210
|
}, z.core.$strict>;
|
|
3013
|
-
source_path: z.ZodString;
|
|
3014
3211
|
method_id: z.ZodNullable<z.ZodString>;
|
|
3212
|
+
about: z.ZodNullable<z.ZodString>;
|
|
3213
|
+
config_path: z.ZodString;
|
|
3214
|
+
portable_context: z.ZodObject<{
|
|
3215
|
+
kind: z.ZodEnum<{
|
|
3216
|
+
"local-path": "local-path";
|
|
3217
|
+
"remote-url": "remote-url";
|
|
3218
|
+
"api-served": "api-served";
|
|
3219
|
+
}>;
|
|
3220
|
+
value: z.ZodString;
|
|
3221
|
+
}, z.core.$strict>;
|
|
3015
3222
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3016
3223
|
id: z.ZodOptional<z.ZodString>;
|
|
3017
3224
|
question: z.ZodString;
|
|
@@ -3025,119 +3232,6 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
|
|
|
3025
3232
|
}, z.core.$strip>>;
|
|
3026
3233
|
strictness: z.ZodOptional<z.ZodString>;
|
|
3027
3234
|
}, z.core.$strict>>>;
|
|
3028
|
-
portable_context: z.ZodObject<{
|
|
3029
|
-
preparation: z.ZodString;
|
|
3030
|
-
path: z.ZodNullable<z.ZodString>;
|
|
3031
|
-
exists: z.ZodBoolean;
|
|
3032
|
-
method_id: z.ZodNullable<z.ZodString>;
|
|
3033
|
-
latest_compile_run_id: z.ZodNullable<z.ZodString>;
|
|
3034
|
-
latest_test_run_id: z.ZodNullable<z.ZodString>;
|
|
3035
|
-
}, z.core.$strict>;
|
|
3036
|
-
portable_context_path: z.ZodNullable<z.ZodString>;
|
|
3037
|
-
readiness: z.ZodObject<{
|
|
3038
|
-
kind: z.ZodLiteral<"interf-readiness-state">;
|
|
3039
|
-
version: z.ZodLiteral<1>;
|
|
3040
|
-
generated_at: z.ZodString;
|
|
3041
|
-
preparation: z.ZodString;
|
|
3042
|
-
status: z.ZodEnum<{
|
|
3043
|
-
"not-configured": "not-configured";
|
|
3044
|
-
"not-built": "not-built";
|
|
3045
|
-
building: "building";
|
|
3046
|
-
built: "built";
|
|
3047
|
-
checking: "checking";
|
|
3048
|
-
ready: "ready";
|
|
3049
|
-
"not-ready": "not-ready";
|
|
3050
|
-
stale: "stale";
|
|
3051
|
-
failed: "failed";
|
|
3052
|
-
}>;
|
|
3053
|
-
ready: z.ZodBoolean;
|
|
3054
|
-
summary: z.ZodString;
|
|
3055
|
-
portable_context_path: z.ZodNullable<z.ZodString>;
|
|
3056
|
-
latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3057
|
-
latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3058
|
-
compile: z.ZodNullable<z.ZodObject<{
|
|
3059
|
-
gate: z.ZodEnum<{
|
|
3060
|
-
"portable-context": "portable-context";
|
|
3061
|
-
"preparation-config": "preparation-config";
|
|
3062
|
-
"compile-run": "compile-run";
|
|
3063
|
-
"readiness-checks": "readiness-checks";
|
|
3064
|
-
"source-baseline": "source-baseline";
|
|
3065
|
-
"portable-context-check": "portable-context-check";
|
|
3066
|
-
"checks-current": "checks-current";
|
|
3067
|
-
}>;
|
|
3068
|
-
ok: z.ZodBoolean;
|
|
3069
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
3070
|
-
"not-configured": "not-configured";
|
|
3071
|
-
"not-built": "not-built";
|
|
3072
|
-
building: "building";
|
|
3073
|
-
built: "built";
|
|
3074
|
-
checking: "checking";
|
|
3075
|
-
ready: "ready";
|
|
3076
|
-
"not-ready": "not-ready";
|
|
3077
|
-
stale: "stale";
|
|
3078
|
-
failed: "failed";
|
|
3079
|
-
}>>;
|
|
3080
|
-
summary: z.ZodString;
|
|
3081
|
-
detail: z.ZodOptional<z.ZodString>;
|
|
3082
|
-
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3083
|
-
artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3084
|
-
}, z.core.$strict>>;
|
|
3085
|
-
check_results: z.ZodObject<{
|
|
3086
|
-
configured: z.ZodNumber;
|
|
3087
|
-
fingerprint: z.ZodNullable<z.ZodString>;
|
|
3088
|
-
source_files: z.ZodNullable<z.ZodObject<{
|
|
3089
|
-
passed: z.ZodNumber;
|
|
3090
|
-
total: z.ZodNumber;
|
|
3091
|
-
pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
3092
|
-
checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3093
|
-
stale: z.ZodDefault<z.ZodBoolean>;
|
|
3094
|
-
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3095
|
-
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3096
|
-
}, z.core.$strict>>;
|
|
3097
|
-
portable_context: z.ZodNullable<z.ZodObject<{
|
|
3098
|
-
passed: z.ZodNumber;
|
|
3099
|
-
total: z.ZodNumber;
|
|
3100
|
-
pass_rate: z.ZodNullable<z.ZodNumber>;
|
|
3101
|
-
checks_fingerprint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3102
|
-
stale: z.ZodDefault<z.ZodBoolean>;
|
|
3103
|
-
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3104
|
-
run_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3105
|
-
}, z.core.$strict>>;
|
|
3106
|
-
}, z.core.$strict>;
|
|
3107
|
-
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3108
|
-
gate: z.ZodEnum<{
|
|
3109
|
-
"portable-context": "portable-context";
|
|
3110
|
-
"preparation-config": "preparation-config";
|
|
3111
|
-
"compile-run": "compile-run";
|
|
3112
|
-
"readiness-checks": "readiness-checks";
|
|
3113
|
-
"source-baseline": "source-baseline";
|
|
3114
|
-
"portable-context-check": "portable-context-check";
|
|
3115
|
-
"checks-current": "checks-current";
|
|
3116
|
-
}>;
|
|
3117
|
-
ok: z.ZodBoolean;
|
|
3118
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
3119
|
-
"not-configured": "not-configured";
|
|
3120
|
-
"not-built": "not-built";
|
|
3121
|
-
building: "building";
|
|
3122
|
-
built: "built";
|
|
3123
|
-
checking: "checking";
|
|
3124
|
-
ready: "ready";
|
|
3125
|
-
"not-ready": "not-ready";
|
|
3126
|
-
stale: "stale";
|
|
3127
|
-
failed: "failed";
|
|
3128
|
-
}>>;
|
|
3129
|
-
summary: z.ZodString;
|
|
3130
|
-
detail: z.ZodOptional<z.ZodString>;
|
|
3131
|
-
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3132
|
-
artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3133
|
-
}, z.core.$strict>>>;
|
|
3134
|
-
}, z.core.$strict>;
|
|
3135
|
-
runs: z.ZodObject<{
|
|
3136
|
-
latest_compile_run_id: z.ZodNullable<z.ZodString>;
|
|
3137
|
-
latest_test_run_id: z.ZodNullable<z.ZodString>;
|
|
3138
|
-
}, z.core.$strict>;
|
|
3139
|
-
latest_compile_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3140
|
-
latest_test_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3141
3235
|
}, z.core.$strict>>;
|
|
3142
3236
|
}, z.core.$strict>;
|
|
3143
3237
|
export declare const MethodListResponseSchema: z.ZodObject<{
|
|
@@ -3153,16 +3247,45 @@ export declare const MethodListResponseSchema: z.ZodObject<{
|
|
|
3153
3247
|
}>>;
|
|
3154
3248
|
built_in: z.ZodDefault<z.ZodBoolean>;
|
|
3155
3249
|
active_for_preparations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3156
|
-
|
|
3250
|
+
artifacts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3251
|
+
id: z.ZodString;
|
|
3252
|
+
description: z.ZodString;
|
|
3253
|
+
shape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3254
|
+
kind: z.ZodLiteral<"path">;
|
|
3255
|
+
path: z.ZodString;
|
|
3256
|
+
artifact_kind: z.ZodEnum<{
|
|
3257
|
+
file: "file";
|
|
3258
|
+
directory: "directory";
|
|
3259
|
+
}>;
|
|
3260
|
+
}, z.core.$strict>], "kind">;
|
|
3261
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3262
|
+
id: z.ZodString;
|
|
3263
|
+
kind: z.ZodEnum<{
|
|
3264
|
+
file_exists: "file_exists";
|
|
3265
|
+
min_file_count: "min_file_count";
|
|
3266
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
3267
|
+
frontmatter_valid: "frontmatter_valid";
|
|
3268
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
3269
|
+
wikilinks_valid: "wikilinks_valid";
|
|
3270
|
+
must_not_contain: "must_not_contain";
|
|
3271
|
+
must_contain: "must_contain";
|
|
3272
|
+
qa_match: "qa_match";
|
|
3273
|
+
}>;
|
|
3274
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3275
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3276
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
3277
|
+
}, z.core.$strict>>>;
|
|
3278
|
+
built_by_stages: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3279
|
+
}, z.core.$strict>>>;
|
|
3157
3280
|
stages: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3158
3281
|
id: z.ZodString;
|
|
3159
3282
|
label: z.ZodString;
|
|
3160
3283
|
description: z.ZodOptional<z.ZodString>;
|
|
3161
3284
|
contract_type: z.ZodString;
|
|
3162
3285
|
skill_dir: z.ZodString;
|
|
3286
|
+
role: z.ZodDefault<z.ZodString>;
|
|
3163
3287
|
reads: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3164
3288
|
writes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3165
|
-
acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3166
3289
|
}, z.core.$strict>>>;
|
|
3167
3290
|
}, z.core.$strict>>;
|
|
3168
3291
|
}, z.core.$strict>;
|
|
@@ -3211,7 +3334,6 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3211
3334
|
stage_total: z.ZodOptional<z.ZodNumber>;
|
|
3212
3335
|
reads: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3213
3336
|
writes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3214
|
-
acceptance: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3215
3337
|
}, z.core.$strict>>;
|
|
3216
3338
|
executor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3217
3339
|
kind: z.ZodEnum<{
|
|
@@ -3392,6 +3514,12 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3392
3514
|
timestamp: z.ZodString;
|
|
3393
3515
|
type: z.ZodLiteral<"run.failed">;
|
|
3394
3516
|
error: z.ZodString;
|
|
3517
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3518
|
+
event_id: z.ZodString;
|
|
3519
|
+
run_id: z.ZodString;
|
|
3520
|
+
timestamp: z.ZodString;
|
|
3521
|
+
type: z.ZodLiteral<"run.cancelled">;
|
|
3522
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
3395
3523
|
}, z.core.$strict>, z.ZodObject<{
|
|
3396
3524
|
event_id: z.ZodString;
|
|
3397
3525
|
run_id: z.ZodString;
|
|
@@ -3418,15 +3546,15 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3418
3546
|
generated_at: z.ZodString;
|
|
3419
3547
|
preparation: z.ZodString;
|
|
3420
3548
|
status: z.ZodEnum<{
|
|
3549
|
+
ready: "ready";
|
|
3550
|
+
failed: "failed";
|
|
3421
3551
|
"not-configured": "not-configured";
|
|
3422
3552
|
"not-built": "not-built";
|
|
3423
3553
|
building: "building";
|
|
3424
3554
|
built: "built";
|
|
3425
3555
|
checking: "checking";
|
|
3426
|
-
ready: "ready";
|
|
3427
3556
|
"not-ready": "not-ready";
|
|
3428
3557
|
stale: "stale";
|
|
3429
|
-
failed: "failed";
|
|
3430
3558
|
}>;
|
|
3431
3559
|
ready: z.ZodBoolean;
|
|
3432
3560
|
summary: z.ZodString;
|
|
@@ -3439,21 +3567,19 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3439
3567
|
"preparation-config": "preparation-config";
|
|
3440
3568
|
"compile-run": "compile-run";
|
|
3441
3569
|
"readiness-checks": "readiness-checks";
|
|
3442
|
-
"source-baseline": "source-baseline";
|
|
3443
|
-
"portable-context-check": "portable-context-check";
|
|
3444
3570
|
"checks-current": "checks-current";
|
|
3445
3571
|
}>;
|
|
3446
3572
|
ok: z.ZodBoolean;
|
|
3447
3573
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3574
|
+
ready: "ready";
|
|
3575
|
+
failed: "failed";
|
|
3448
3576
|
"not-configured": "not-configured";
|
|
3449
3577
|
"not-built": "not-built";
|
|
3450
3578
|
building: "building";
|
|
3451
3579
|
built: "built";
|
|
3452
3580
|
checking: "checking";
|
|
3453
|
-
ready: "ready";
|
|
3454
3581
|
"not-ready": "not-ready";
|
|
3455
3582
|
stale: "stale";
|
|
3456
|
-
failed: "failed";
|
|
3457
3583
|
}>>;
|
|
3458
3584
|
summary: z.ZodString;
|
|
3459
3585
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -3488,21 +3614,19 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3488
3614
|
"preparation-config": "preparation-config";
|
|
3489
3615
|
"compile-run": "compile-run";
|
|
3490
3616
|
"readiness-checks": "readiness-checks";
|
|
3491
|
-
"source-baseline": "source-baseline";
|
|
3492
|
-
"portable-context-check": "portable-context-check";
|
|
3493
3617
|
"checks-current": "checks-current";
|
|
3494
3618
|
}>;
|
|
3495
3619
|
ok: z.ZodBoolean;
|
|
3496
3620
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3621
|
+
ready: "ready";
|
|
3622
|
+
failed: "failed";
|
|
3497
3623
|
"not-configured": "not-configured";
|
|
3498
3624
|
"not-built": "not-built";
|
|
3499
3625
|
building: "building";
|
|
3500
3626
|
built: "built";
|
|
3501
3627
|
checking: "checking";
|
|
3502
|
-
ready: "ready";
|
|
3503
3628
|
"not-ready": "not-ready";
|
|
3504
3629
|
stale: "stale";
|
|
3505
|
-
failed: "failed";
|
|
3506
3630
|
}>>;
|
|
3507
3631
|
summary: z.ZodString;
|
|
3508
3632
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -3544,15 +3668,15 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3544
3668
|
generated_at: z.ZodString;
|
|
3545
3669
|
preparation: z.ZodString;
|
|
3546
3670
|
status: z.ZodEnum<{
|
|
3671
|
+
ready: "ready";
|
|
3672
|
+
failed: "failed";
|
|
3547
3673
|
"not-configured": "not-configured";
|
|
3548
3674
|
"not-built": "not-built";
|
|
3549
3675
|
building: "building";
|
|
3550
3676
|
built: "built";
|
|
3551
3677
|
checking: "checking";
|
|
3552
|
-
ready: "ready";
|
|
3553
3678
|
"not-ready": "not-ready";
|
|
3554
3679
|
stale: "stale";
|
|
3555
|
-
failed: "failed";
|
|
3556
3680
|
}>;
|
|
3557
3681
|
ready: z.ZodBoolean;
|
|
3558
3682
|
summary: z.ZodString;
|
|
@@ -3565,21 +3689,19 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3565
3689
|
"preparation-config": "preparation-config";
|
|
3566
3690
|
"compile-run": "compile-run";
|
|
3567
3691
|
"readiness-checks": "readiness-checks";
|
|
3568
|
-
"source-baseline": "source-baseline";
|
|
3569
|
-
"portable-context-check": "portable-context-check";
|
|
3570
3692
|
"checks-current": "checks-current";
|
|
3571
3693
|
}>;
|
|
3572
3694
|
ok: z.ZodBoolean;
|
|
3573
3695
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3696
|
+
ready: "ready";
|
|
3697
|
+
failed: "failed";
|
|
3574
3698
|
"not-configured": "not-configured";
|
|
3575
3699
|
"not-built": "not-built";
|
|
3576
3700
|
building: "building";
|
|
3577
3701
|
built: "built";
|
|
3578
3702
|
checking: "checking";
|
|
3579
|
-
ready: "ready";
|
|
3580
3703
|
"not-ready": "not-ready";
|
|
3581
3704
|
stale: "stale";
|
|
3582
|
-
failed: "failed";
|
|
3583
3705
|
}>>;
|
|
3584
3706
|
summary: z.ZodString;
|
|
3585
3707
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -3614,21 +3736,19 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3614
3736
|
"preparation-config": "preparation-config";
|
|
3615
3737
|
"compile-run": "compile-run";
|
|
3616
3738
|
"readiness-checks": "readiness-checks";
|
|
3617
|
-
"source-baseline": "source-baseline";
|
|
3618
|
-
"portable-context-check": "portable-context-check";
|
|
3619
3739
|
"checks-current": "checks-current";
|
|
3620
3740
|
}>;
|
|
3621
3741
|
ok: z.ZodBoolean;
|
|
3622
3742
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3743
|
+
ready: "ready";
|
|
3744
|
+
failed: "failed";
|
|
3623
3745
|
"not-configured": "not-configured";
|
|
3624
3746
|
"not-built": "not-built";
|
|
3625
3747
|
building: "building";
|
|
3626
3748
|
built: "built";
|
|
3627
3749
|
checking: "checking";
|
|
3628
|
-
ready: "ready";
|
|
3629
3750
|
"not-ready": "not-ready";
|
|
3630
3751
|
stale: "stale";
|
|
3631
|
-
failed: "failed";
|
|
3632
3752
|
}>>;
|
|
3633
3753
|
summary: z.ZodString;
|
|
3634
3754
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -3636,6 +3756,36 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3636
3756
|
artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3637
3757
|
}, z.core.$strict>>>;
|
|
3638
3758
|
}, z.core.$strict>>>;
|
|
3759
|
+
artifacts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3760
|
+
artifact_id: z.ZodString;
|
|
3761
|
+
status: z.ZodEnum<{
|
|
3762
|
+
ready: "ready";
|
|
3763
|
+
not_ready: "not_ready";
|
|
3764
|
+
failed: "failed";
|
|
3765
|
+
skipped: "skipped";
|
|
3766
|
+
}>;
|
|
3767
|
+
built_by_stages: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3768
|
+
proofs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3769
|
+
check_id: z.ZodString;
|
|
3770
|
+
kind: z.ZodEnum<{
|
|
3771
|
+
file_exists: "file_exists";
|
|
3772
|
+
min_file_count: "min_file_count";
|
|
3773
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
3774
|
+
frontmatter_valid: "frontmatter_valid";
|
|
3775
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
3776
|
+
wikilinks_valid: "wikilinks_valid";
|
|
3777
|
+
must_not_contain: "must_not_contain";
|
|
3778
|
+
must_contain: "must_contain";
|
|
3779
|
+
qa_match: "qa_match";
|
|
3780
|
+
}>;
|
|
3781
|
+
passed: z.ZodBoolean;
|
|
3782
|
+
required: z.ZodBoolean;
|
|
3783
|
+
summary: z.ZodString;
|
|
3784
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3785
|
+
evaluated_at: z.ZodString;
|
|
3786
|
+
}, z.core.$strict>>>;
|
|
3787
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
3788
|
+
}, z.core.$strict>>>;
|
|
3639
3789
|
}, z.core.$strict>;
|
|
3640
3790
|
}, z.core.$strict>>;
|
|
3641
3791
|
}, z.core.$strict>;
|
|
@@ -3721,8 +3871,8 @@ export declare const LocalJobRunListResponseSchema: z.ZodObject<{
|
|
|
3721
3871
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3722
3872
|
}, z.core.$strict>>;
|
|
3723
3873
|
}, z.core.$strict>;
|
|
3724
|
-
export declare const
|
|
3725
|
-
|
|
3874
|
+
export declare const VerifyRunListResponseSchema: z.ZodObject<{
|
|
3875
|
+
verify_runs: z.ZodArray<z.ZodObject<{
|
|
3726
3876
|
run_id: z.ZodString;
|
|
3727
3877
|
status: z.ZodEnum<{
|
|
3728
3878
|
succeeded: "succeeded";
|
|
@@ -3732,11 +3882,6 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
3732
3882
|
queued: "queued";
|
|
3733
3883
|
}>;
|
|
3734
3884
|
preparation: z.ZodString;
|
|
3735
|
-
mode: z.ZodEnum<{
|
|
3736
|
-
"source-files": "source-files";
|
|
3737
|
-
compiled: "compiled";
|
|
3738
|
-
both: "both";
|
|
3739
|
-
}>;
|
|
3740
3885
|
source_path: z.ZodString;
|
|
3741
3886
|
portable_context_path: z.ZodNullable<z.ZodString>;
|
|
3742
3887
|
started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3803,15 +3948,15 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
3803
3948
|
generated_at: z.ZodString;
|
|
3804
3949
|
preparation: z.ZodString;
|
|
3805
3950
|
status: z.ZodEnum<{
|
|
3951
|
+
ready: "ready";
|
|
3952
|
+
failed: "failed";
|
|
3806
3953
|
"not-configured": "not-configured";
|
|
3807
3954
|
"not-built": "not-built";
|
|
3808
3955
|
building: "building";
|
|
3809
3956
|
built: "built";
|
|
3810
3957
|
checking: "checking";
|
|
3811
|
-
ready: "ready";
|
|
3812
3958
|
"not-ready": "not-ready";
|
|
3813
3959
|
stale: "stale";
|
|
3814
|
-
failed: "failed";
|
|
3815
3960
|
}>;
|
|
3816
3961
|
ready: z.ZodBoolean;
|
|
3817
3962
|
summary: z.ZodString;
|
|
@@ -3824,21 +3969,19 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
3824
3969
|
"preparation-config": "preparation-config";
|
|
3825
3970
|
"compile-run": "compile-run";
|
|
3826
3971
|
"readiness-checks": "readiness-checks";
|
|
3827
|
-
"source-baseline": "source-baseline";
|
|
3828
|
-
"portable-context-check": "portable-context-check";
|
|
3829
3972
|
"checks-current": "checks-current";
|
|
3830
3973
|
}>;
|
|
3831
3974
|
ok: z.ZodBoolean;
|
|
3832
3975
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3976
|
+
ready: "ready";
|
|
3977
|
+
failed: "failed";
|
|
3833
3978
|
"not-configured": "not-configured";
|
|
3834
3979
|
"not-built": "not-built";
|
|
3835
3980
|
building: "building";
|
|
3836
3981
|
built: "built";
|
|
3837
3982
|
checking: "checking";
|
|
3838
|
-
ready: "ready";
|
|
3839
3983
|
"not-ready": "not-ready";
|
|
3840
3984
|
stale: "stale";
|
|
3841
|
-
failed: "failed";
|
|
3842
3985
|
}>>;
|
|
3843
3986
|
summary: z.ZodString;
|
|
3844
3987
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -3873,21 +4016,19 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
3873
4016
|
"preparation-config": "preparation-config";
|
|
3874
4017
|
"compile-run": "compile-run";
|
|
3875
4018
|
"readiness-checks": "readiness-checks";
|
|
3876
|
-
"source-baseline": "source-baseline";
|
|
3877
|
-
"portable-context-check": "portable-context-check";
|
|
3878
4019
|
"checks-current": "checks-current";
|
|
3879
4020
|
}>;
|
|
3880
4021
|
ok: z.ZodBoolean;
|
|
3881
4022
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4023
|
+
ready: "ready";
|
|
4024
|
+
failed: "failed";
|
|
3882
4025
|
"not-configured": "not-configured";
|
|
3883
4026
|
"not-built": "not-built";
|
|
3884
4027
|
building: "building";
|
|
3885
4028
|
built: "built";
|
|
3886
4029
|
checking: "checking";
|
|
3887
|
-
ready: "ready";
|
|
3888
4030
|
"not-ready": "not-ready";
|
|
3889
4031
|
stale: "stale";
|
|
3890
|
-
failed: "failed";
|
|
3891
4032
|
}>>;
|
|
3892
4033
|
summary: z.ZodString;
|
|
3893
4034
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -4012,6 +4153,12 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
4012
4153
|
timestamp: z.ZodString;
|
|
4013
4154
|
type: z.ZodLiteral<"run.failed">;
|
|
4014
4155
|
error: z.ZodString;
|
|
4156
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4157
|
+
event_id: z.ZodString;
|
|
4158
|
+
run_id: z.ZodString;
|
|
4159
|
+
timestamp: z.ZodString;
|
|
4160
|
+
type: z.ZodLiteral<"run.cancelled">;
|
|
4161
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
4015
4162
|
}, z.core.$strict>, z.ZodObject<{
|
|
4016
4163
|
event_id: z.ZodString;
|
|
4017
4164
|
run_id: z.ZodString;
|
|
@@ -4038,15 +4185,15 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
4038
4185
|
generated_at: z.ZodString;
|
|
4039
4186
|
preparation: z.ZodString;
|
|
4040
4187
|
status: z.ZodEnum<{
|
|
4188
|
+
ready: "ready";
|
|
4189
|
+
failed: "failed";
|
|
4041
4190
|
"not-configured": "not-configured";
|
|
4042
4191
|
"not-built": "not-built";
|
|
4043
4192
|
building: "building";
|
|
4044
4193
|
built: "built";
|
|
4045
4194
|
checking: "checking";
|
|
4046
|
-
ready: "ready";
|
|
4047
4195
|
"not-ready": "not-ready";
|
|
4048
4196
|
stale: "stale";
|
|
4049
|
-
failed: "failed";
|
|
4050
4197
|
}>;
|
|
4051
4198
|
ready: z.ZodBoolean;
|
|
4052
4199
|
summary: z.ZodString;
|
|
@@ -4059,21 +4206,19 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
4059
4206
|
"preparation-config": "preparation-config";
|
|
4060
4207
|
"compile-run": "compile-run";
|
|
4061
4208
|
"readiness-checks": "readiness-checks";
|
|
4062
|
-
"source-baseline": "source-baseline";
|
|
4063
|
-
"portable-context-check": "portable-context-check";
|
|
4064
4209
|
"checks-current": "checks-current";
|
|
4065
4210
|
}>;
|
|
4066
4211
|
ok: z.ZodBoolean;
|
|
4067
4212
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4213
|
+
ready: "ready";
|
|
4214
|
+
failed: "failed";
|
|
4068
4215
|
"not-configured": "not-configured";
|
|
4069
4216
|
"not-built": "not-built";
|
|
4070
4217
|
building: "building";
|
|
4071
4218
|
built: "built";
|
|
4072
4219
|
checking: "checking";
|
|
4073
|
-
ready: "ready";
|
|
4074
4220
|
"not-ready": "not-ready";
|
|
4075
4221
|
stale: "stale";
|
|
4076
|
-
failed: "failed";
|
|
4077
4222
|
}>>;
|
|
4078
4223
|
summary: z.ZodString;
|
|
4079
4224
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -4108,21 +4253,19 @@ export declare const TestRunListResponseSchema: z.ZodObject<{
|
|
|
4108
4253
|
"preparation-config": "preparation-config";
|
|
4109
4254
|
"compile-run": "compile-run";
|
|
4110
4255
|
"readiness-checks": "readiness-checks";
|
|
4111
|
-
"source-baseline": "source-baseline";
|
|
4112
|
-
"portable-context-check": "portable-context-check";
|
|
4113
4256
|
"checks-current": "checks-current";
|
|
4114
4257
|
}>;
|
|
4115
4258
|
ok: z.ZodBoolean;
|
|
4116
4259
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4260
|
+
ready: "ready";
|
|
4261
|
+
failed: "failed";
|
|
4117
4262
|
"not-configured": "not-configured";
|
|
4118
4263
|
"not-built": "not-built";
|
|
4119
4264
|
building: "building";
|
|
4120
4265
|
built: "built";
|
|
4121
4266
|
checking: "checking";
|
|
4122
|
-
ready: "ready";
|
|
4123
4267
|
"not-ready": "not-ready";
|
|
4124
4268
|
stale: "stale";
|
|
4125
|
-
failed: "failed";
|
|
4126
4269
|
}>>;
|
|
4127
4270
|
summary: z.ZodString;
|
|
4128
4271
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -4143,7 +4286,7 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
|
|
|
4143
4286
|
compile: "compile";
|
|
4144
4287
|
"method-authoring": "method-authoring";
|
|
4145
4288
|
"method-improvement": "method-improvement";
|
|
4146
|
-
|
|
4289
|
+
verify: "verify";
|
|
4147
4290
|
"readiness-check-draft": "readiness-check-draft";
|
|
4148
4291
|
job: "job";
|
|
4149
4292
|
}>;
|
|
@@ -4207,15 +4350,15 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
|
|
|
4207
4350
|
generated_at: z.ZodString;
|
|
4208
4351
|
preparation: z.ZodString;
|
|
4209
4352
|
status: z.ZodEnum<{
|
|
4353
|
+
ready: "ready";
|
|
4354
|
+
failed: "failed";
|
|
4210
4355
|
"not-configured": "not-configured";
|
|
4211
4356
|
"not-built": "not-built";
|
|
4212
4357
|
building: "building";
|
|
4213
4358
|
built: "built";
|
|
4214
4359
|
checking: "checking";
|
|
4215
|
-
ready: "ready";
|
|
4216
4360
|
"not-ready": "not-ready";
|
|
4217
4361
|
stale: "stale";
|
|
4218
|
-
failed: "failed";
|
|
4219
4362
|
}>;
|
|
4220
4363
|
ready: z.ZodBoolean;
|
|
4221
4364
|
summary: z.ZodString;
|
|
@@ -4228,21 +4371,19 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
|
|
|
4228
4371
|
"preparation-config": "preparation-config";
|
|
4229
4372
|
"compile-run": "compile-run";
|
|
4230
4373
|
"readiness-checks": "readiness-checks";
|
|
4231
|
-
"source-baseline": "source-baseline";
|
|
4232
|
-
"portable-context-check": "portable-context-check";
|
|
4233
4374
|
"checks-current": "checks-current";
|
|
4234
4375
|
}>;
|
|
4235
4376
|
ok: z.ZodBoolean;
|
|
4236
4377
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4378
|
+
ready: "ready";
|
|
4379
|
+
failed: "failed";
|
|
4237
4380
|
"not-configured": "not-configured";
|
|
4238
4381
|
"not-built": "not-built";
|
|
4239
4382
|
building: "building";
|
|
4240
4383
|
built: "built";
|
|
4241
4384
|
checking: "checking";
|
|
4242
|
-
ready: "ready";
|
|
4243
4385
|
"not-ready": "not-ready";
|
|
4244
4386
|
stale: "stale";
|
|
4245
|
-
failed: "failed";
|
|
4246
4387
|
}>>;
|
|
4247
4388
|
summary: z.ZodString;
|
|
4248
4389
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -4277,21 +4418,19 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
|
|
|
4277
4418
|
"preparation-config": "preparation-config";
|
|
4278
4419
|
"compile-run": "compile-run";
|
|
4279
4420
|
"readiness-checks": "readiness-checks";
|
|
4280
|
-
"source-baseline": "source-baseline";
|
|
4281
|
-
"portable-context-check": "portable-context-check";
|
|
4282
4421
|
"checks-current": "checks-current";
|
|
4283
4422
|
}>;
|
|
4284
4423
|
ok: z.ZodBoolean;
|
|
4285
4424
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4425
|
+
ready: "ready";
|
|
4426
|
+
failed: "failed";
|
|
4286
4427
|
"not-configured": "not-configured";
|
|
4287
4428
|
"not-built": "not-built";
|
|
4288
4429
|
building: "building";
|
|
4289
4430
|
built: "built";
|
|
4290
4431
|
checking: "checking";
|
|
4291
|
-
ready: "ready";
|
|
4292
4432
|
"not-ready": "not-ready";
|
|
4293
4433
|
stale: "stale";
|
|
4294
|
-
failed: "failed";
|
|
4295
4434
|
}>>;
|
|
4296
4435
|
summary: z.ZodString;
|
|
4297
4436
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -4385,11 +4524,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4385
4524
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4386
4525
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4387
4526
|
unknown: "unknown";
|
|
4388
|
-
|
|
4527
|
+
mcp: "mcp";
|
|
4389
4528
|
"ui-chat": "ui-chat";
|
|
4390
4529
|
cli: "cli";
|
|
4391
4530
|
"agent-cli": "agent-cli";
|
|
4392
|
-
|
|
4531
|
+
service: "service";
|
|
4393
4532
|
}>>;
|
|
4394
4533
|
created_at: z.ZodString;
|
|
4395
4534
|
updated_at: z.ZodString;
|
|
@@ -4406,7 +4545,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4406
4545
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4407
4546
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4408
4547
|
"compile-run": "compile-run";
|
|
4409
|
-
"
|
|
4548
|
+
"verify-run": "verify-run";
|
|
4410
4549
|
"job-run": "job-run";
|
|
4411
4550
|
}>>>;
|
|
4412
4551
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4433,11 +4572,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4433
4572
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4434
4573
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4435
4574
|
unknown: "unknown";
|
|
4436
|
-
|
|
4575
|
+
mcp: "mcp";
|
|
4437
4576
|
"ui-chat": "ui-chat";
|
|
4438
4577
|
cli: "cli";
|
|
4439
4578
|
"agent-cli": "agent-cli";
|
|
4440
|
-
|
|
4579
|
+
service: "service";
|
|
4441
4580
|
}>>;
|
|
4442
4581
|
created_at: z.ZodString;
|
|
4443
4582
|
updated_at: z.ZodString;
|
|
@@ -4454,7 +4593,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4454
4593
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4455
4594
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4456
4595
|
"compile-run": "compile-run";
|
|
4457
|
-
"
|
|
4596
|
+
"verify-run": "verify-run";
|
|
4458
4597
|
"job-run": "job-run";
|
|
4459
4598
|
}>>>;
|
|
4460
4599
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4490,11 +4629,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4490
4629
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4491
4630
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4492
4631
|
unknown: "unknown";
|
|
4493
|
-
|
|
4632
|
+
mcp: "mcp";
|
|
4494
4633
|
"ui-chat": "ui-chat";
|
|
4495
4634
|
cli: "cli";
|
|
4496
4635
|
"agent-cli": "agent-cli";
|
|
4497
|
-
|
|
4636
|
+
service: "service";
|
|
4498
4637
|
}>>;
|
|
4499
4638
|
created_at: z.ZodString;
|
|
4500
4639
|
updated_at: z.ZodString;
|
|
@@ -4511,17 +4650,16 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4511
4650
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4512
4651
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4513
4652
|
"compile-run": "compile-run";
|
|
4514
|
-
"
|
|
4653
|
+
"verify-run": "verify-run";
|
|
4515
4654
|
"job-run": "job-run";
|
|
4516
4655
|
}>>>;
|
|
4517
4656
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4518
4657
|
action_type: z.ZodLiteral<"test">;
|
|
4519
4658
|
request: z.ZodObject<{
|
|
4520
4659
|
preparation: z.ZodString;
|
|
4521
|
-
|
|
4660
|
+
target: z.ZodDefault<z.ZodEnum<{
|
|
4522
4661
|
"source-files": "source-files";
|
|
4523
4662
|
compiled: "compiled";
|
|
4524
|
-
both: "both";
|
|
4525
4663
|
}>>;
|
|
4526
4664
|
}, z.core.$strict>;
|
|
4527
4665
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -4545,11 +4683,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4545
4683
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4546
4684
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4547
4685
|
unknown: "unknown";
|
|
4548
|
-
|
|
4686
|
+
mcp: "mcp";
|
|
4549
4687
|
"ui-chat": "ui-chat";
|
|
4550
4688
|
cli: "cli";
|
|
4551
4689
|
"agent-cli": "agent-cli";
|
|
4552
|
-
|
|
4690
|
+
service: "service";
|
|
4553
4691
|
}>>;
|
|
4554
4692
|
created_at: z.ZodString;
|
|
4555
4693
|
updated_at: z.ZodString;
|
|
@@ -4566,7 +4704,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4566
4704
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4567
4705
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4568
4706
|
"compile-run": "compile-run";
|
|
4569
|
-
"
|
|
4707
|
+
"verify-run": "verify-run";
|
|
4570
4708
|
"job-run": "job-run";
|
|
4571
4709
|
}>>>;
|
|
4572
4710
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4598,11 +4736,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4598
4736
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4599
4737
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4600
4738
|
unknown: "unknown";
|
|
4601
|
-
|
|
4739
|
+
mcp: "mcp";
|
|
4602
4740
|
"ui-chat": "ui-chat";
|
|
4603
4741
|
cli: "cli";
|
|
4604
4742
|
"agent-cli": "agent-cli";
|
|
4605
|
-
|
|
4743
|
+
service: "service";
|
|
4606
4744
|
}>>;
|
|
4607
4745
|
created_at: z.ZodString;
|
|
4608
4746
|
updated_at: z.ZodString;
|
|
@@ -4619,7 +4757,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4619
4757
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4620
4758
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4621
4759
|
"compile-run": "compile-run";
|
|
4622
|
-
"
|
|
4760
|
+
"verify-run": "verify-run";
|
|
4623
4761
|
"job-run": "job-run";
|
|
4624
4762
|
}>>>;
|
|
4625
4763
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4646,6 +4784,36 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4646
4784
|
}, z.core.$strip>>;
|
|
4647
4785
|
strictness: z.ZodOptional<z.ZodString>;
|
|
4648
4786
|
}, z.core.$strict>>>;
|
|
4787
|
+
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4788
|
+
id: z.ZodString;
|
|
4789
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4790
|
+
shape: z.ZodObject<{
|
|
4791
|
+
kind: z.ZodLiteral<"path">;
|
|
4792
|
+
path: z.ZodString;
|
|
4793
|
+
artifact_kind: z.ZodEnum<{
|
|
4794
|
+
file: "file";
|
|
4795
|
+
directory: "directory";
|
|
4796
|
+
}>;
|
|
4797
|
+
}, z.core.$strict>;
|
|
4798
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4799
|
+
id: z.ZodString;
|
|
4800
|
+
kind: z.ZodEnum<{
|
|
4801
|
+
file_exists: "file_exists";
|
|
4802
|
+
min_file_count: "min_file_count";
|
|
4803
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
4804
|
+
frontmatter_valid: "frontmatter_valid";
|
|
4805
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
4806
|
+
wikilinks_valid: "wikilinks_valid";
|
|
4807
|
+
must_not_contain: "must_not_contain";
|
|
4808
|
+
must_contain: "must_contain";
|
|
4809
|
+
qa_match: "qa_match";
|
|
4810
|
+
}>;
|
|
4811
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4812
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4813
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
4814
|
+
}, z.core.$strict>>>;
|
|
4815
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
4816
|
+
}, z.core.$strict>>>;
|
|
4649
4817
|
}, z.core.$strict>;
|
|
4650
4818
|
}, z.core.$strict>, z.ZodObject<{
|
|
4651
4819
|
kind: z.ZodLiteral<"interf-action-proposal">;
|
|
@@ -4668,11 +4836,11 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4668
4836
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4669
4837
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4670
4838
|
unknown: "unknown";
|
|
4671
|
-
|
|
4839
|
+
mcp: "mcp";
|
|
4672
4840
|
"ui-chat": "ui-chat";
|
|
4673
4841
|
cli: "cli";
|
|
4674
4842
|
"agent-cli": "agent-cli";
|
|
4675
|
-
|
|
4843
|
+
service: "service";
|
|
4676
4844
|
}>>;
|
|
4677
4845
|
created_at: z.ZodString;
|
|
4678
4846
|
updated_at: z.ZodString;
|
|
@@ -4689,7 +4857,7 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4689
4857
|
submitted_run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4690
4858
|
submitted_run_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4691
4859
|
"compile-run": "compile-run";
|
|
4692
|
-
"
|
|
4860
|
+
"verify-run": "verify-run";
|
|
4693
4861
|
"job-run": "job-run";
|
|
4694
4862
|
}>>>;
|
|
4695
4863
|
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4716,6 +4884,36 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4716
4884
|
}, z.core.$strip>>;
|
|
4717
4885
|
strictness: z.ZodOptional<z.ZodString>;
|
|
4718
4886
|
}, z.core.$strict>>>;
|
|
4887
|
+
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4888
|
+
id: z.ZodString;
|
|
4889
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4890
|
+
shape: z.ZodObject<{
|
|
4891
|
+
kind: z.ZodLiteral<"path">;
|
|
4892
|
+
path: z.ZodString;
|
|
4893
|
+
artifact_kind: z.ZodEnum<{
|
|
4894
|
+
file: "file";
|
|
4895
|
+
directory: "directory";
|
|
4896
|
+
}>;
|
|
4897
|
+
}, z.core.$strict>;
|
|
4898
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4899
|
+
id: z.ZodString;
|
|
4900
|
+
kind: z.ZodEnum<{
|
|
4901
|
+
file_exists: "file_exists";
|
|
4902
|
+
min_file_count: "min_file_count";
|
|
4903
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
4904
|
+
frontmatter_valid: "frontmatter_valid";
|
|
4905
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
4906
|
+
wikilinks_valid: "wikilinks_valid";
|
|
4907
|
+
must_not_contain: "must_not_contain";
|
|
4908
|
+
must_contain: "must_contain";
|
|
4909
|
+
qa_match: "qa_match";
|
|
4910
|
+
}>;
|
|
4911
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4912
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4913
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
4914
|
+
}, z.core.$strict>>>;
|
|
4915
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
4916
|
+
}, z.core.$strict>>>;
|
|
4719
4917
|
}, z.core.$strict>;
|
|
4720
4918
|
}, z.core.$strict>], "action_type">>;
|
|
4721
4919
|
}, z.core.$strict>;
|
|
@@ -4730,15 +4928,15 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
|
|
|
4730
4928
|
generated_at: z.ZodString;
|
|
4731
4929
|
preparation: z.ZodString;
|
|
4732
4930
|
status: z.ZodEnum<{
|
|
4931
|
+
ready: "ready";
|
|
4932
|
+
failed: "failed";
|
|
4733
4933
|
"not-configured": "not-configured";
|
|
4734
4934
|
"not-built": "not-built";
|
|
4735
4935
|
building: "building";
|
|
4736
4936
|
built: "built";
|
|
4737
4937
|
checking: "checking";
|
|
4738
|
-
ready: "ready";
|
|
4739
4938
|
"not-ready": "not-ready";
|
|
4740
4939
|
stale: "stale";
|
|
4741
|
-
failed: "failed";
|
|
4742
4940
|
}>;
|
|
4743
4941
|
ready: z.ZodBoolean;
|
|
4744
4942
|
summary: z.ZodString;
|
|
@@ -4751,21 +4949,19 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
|
|
|
4751
4949
|
"preparation-config": "preparation-config";
|
|
4752
4950
|
"compile-run": "compile-run";
|
|
4753
4951
|
"readiness-checks": "readiness-checks";
|
|
4754
|
-
"source-baseline": "source-baseline";
|
|
4755
|
-
"portable-context-check": "portable-context-check";
|
|
4756
4952
|
"checks-current": "checks-current";
|
|
4757
4953
|
}>;
|
|
4758
4954
|
ok: z.ZodBoolean;
|
|
4759
4955
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4956
|
+
ready: "ready";
|
|
4957
|
+
failed: "failed";
|
|
4760
4958
|
"not-configured": "not-configured";
|
|
4761
4959
|
"not-built": "not-built";
|
|
4762
4960
|
building: "building";
|
|
4763
4961
|
built: "built";
|
|
4764
4962
|
checking: "checking";
|
|
4765
|
-
ready: "ready";
|
|
4766
4963
|
"not-ready": "not-ready";
|
|
4767
4964
|
stale: "stale";
|
|
4768
|
-
failed: "failed";
|
|
4769
4965
|
}>>;
|
|
4770
4966
|
summary: z.ZodString;
|
|
4771
4967
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -4800,21 +4996,19 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
|
|
|
4800
4996
|
"preparation-config": "preparation-config";
|
|
4801
4997
|
"compile-run": "compile-run";
|
|
4802
4998
|
"readiness-checks": "readiness-checks";
|
|
4803
|
-
"source-baseline": "source-baseline";
|
|
4804
|
-
"portable-context-check": "portable-context-check";
|
|
4805
4999
|
"checks-current": "checks-current";
|
|
4806
5000
|
}>;
|
|
4807
5001
|
ok: z.ZodBoolean;
|
|
4808
5002
|
status: z.ZodOptional<z.ZodEnum<{
|
|
5003
|
+
ready: "ready";
|
|
5004
|
+
failed: "failed";
|
|
4809
5005
|
"not-configured": "not-configured";
|
|
4810
5006
|
"not-built": "not-built";
|
|
4811
5007
|
building: "building";
|
|
4812
5008
|
built: "built";
|
|
4813
5009
|
checking: "checking";
|
|
4814
|
-
ready: "ready";
|
|
4815
5010
|
"not-ready": "not-ready";
|
|
4816
5011
|
stale: "stale";
|
|
4817
|
-
failed: "failed";
|
|
4818
5012
|
}>>;
|
|
4819
5013
|
summary: z.ZodString;
|
|
4820
5014
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -4847,15 +5041,15 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
|
|
|
4847
5041
|
generated_at: z.ZodString;
|
|
4848
5042
|
preparation: z.ZodString;
|
|
4849
5043
|
status: z.ZodEnum<{
|
|
5044
|
+
ready: "ready";
|
|
5045
|
+
failed: "failed";
|
|
4850
5046
|
"not-configured": "not-configured";
|
|
4851
5047
|
"not-built": "not-built";
|
|
4852
5048
|
building: "building";
|
|
4853
5049
|
built: "built";
|
|
4854
5050
|
checking: "checking";
|
|
4855
|
-
ready: "ready";
|
|
4856
5051
|
"not-ready": "not-ready";
|
|
4857
5052
|
stale: "stale";
|
|
4858
|
-
failed: "failed";
|
|
4859
5053
|
}>;
|
|
4860
5054
|
ready: z.ZodBoolean;
|
|
4861
5055
|
summary: z.ZodString;
|
|
@@ -4868,21 +5062,19 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
|
|
|
4868
5062
|
"preparation-config": "preparation-config";
|
|
4869
5063
|
"compile-run": "compile-run";
|
|
4870
5064
|
"readiness-checks": "readiness-checks";
|
|
4871
|
-
"source-baseline": "source-baseline";
|
|
4872
|
-
"portable-context-check": "portable-context-check";
|
|
4873
5065
|
"checks-current": "checks-current";
|
|
4874
5066
|
}>;
|
|
4875
5067
|
ok: z.ZodBoolean;
|
|
4876
5068
|
status: z.ZodOptional<z.ZodEnum<{
|
|
5069
|
+
ready: "ready";
|
|
5070
|
+
failed: "failed";
|
|
4877
5071
|
"not-configured": "not-configured";
|
|
4878
5072
|
"not-built": "not-built";
|
|
4879
5073
|
building: "building";
|
|
4880
5074
|
built: "built";
|
|
4881
5075
|
checking: "checking";
|
|
4882
|
-
ready: "ready";
|
|
4883
5076
|
"not-ready": "not-ready";
|
|
4884
5077
|
stale: "stale";
|
|
4885
|
-
failed: "failed";
|
|
4886
5078
|
}>>;
|
|
4887
5079
|
summary: z.ZodString;
|
|
4888
5080
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -4917,21 +5109,19 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
|
|
|
4917
5109
|
"preparation-config": "preparation-config";
|
|
4918
5110
|
"compile-run": "compile-run";
|
|
4919
5111
|
"readiness-checks": "readiness-checks";
|
|
4920
|
-
"source-baseline": "source-baseline";
|
|
4921
|
-
"portable-context-check": "portable-context-check";
|
|
4922
5112
|
"checks-current": "checks-current";
|
|
4923
5113
|
}>;
|
|
4924
5114
|
ok: z.ZodBoolean;
|
|
4925
5115
|
status: z.ZodOptional<z.ZodEnum<{
|
|
5116
|
+
ready: "ready";
|
|
5117
|
+
failed: "failed";
|
|
4926
5118
|
"not-configured": "not-configured";
|
|
4927
5119
|
"not-built": "not-built";
|
|
4928
5120
|
building: "building";
|
|
4929
5121
|
built: "built";
|
|
4930
5122
|
checking: "checking";
|
|
4931
|
-
ready: "ready";
|
|
4932
5123
|
"not-ready": "not-ready";
|
|
4933
5124
|
stale: "stale";
|
|
4934
|
-
failed: "failed";
|
|
4935
5125
|
}>>;
|
|
4936
5126
|
summary: z.ZodString;
|
|
4937
5127
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -4982,8 +5172,6 @@ export type LocalJobEvent = z.infer<typeof LocalJobEventSchema>;
|
|
|
4982
5172
|
export type LocalJobRunCreateRequest = z.infer<typeof LocalJobRunCreateRequestSchema>;
|
|
4983
5173
|
export type PreparationSetupCreateRequest = z.infer<typeof PreparationSetupCreateRequestSchema>;
|
|
4984
5174
|
export type PreparationSetupResult = z.infer<typeof PreparationSetupResultSchema>;
|
|
4985
|
-
export type WorkspaceBootstrapCreateRequest = z.infer<typeof WorkspaceBootstrapCreateRequestSchema>;
|
|
4986
|
-
export type WorkspaceBootstrapResult = z.infer<typeof WorkspaceBootstrapResultSchema>;
|
|
4987
5175
|
export type MethodChangeCreateRequest = z.infer<typeof MethodChangeCreateRequestSchema>;
|
|
4988
5176
|
export type MethodChangeResult = z.infer<typeof MethodChangeResultSchema>;
|
|
4989
5177
|
export type PreparationChangeCreateRequest = z.infer<typeof PreparationChangeCreateRequestSchema>;
|
|
@@ -4992,13 +5180,14 @@ export type ResetRequest = z.infer<typeof ResetRequestSchema>;
|
|
|
4992
5180
|
export type ResetResult = z.infer<typeof ResetResultSchema>;
|
|
4993
5181
|
export type ReadinessCheckDraftCreateRequest = z.infer<typeof ReadinessCheckDraftCreateRequestSchema>;
|
|
4994
5182
|
export type ReadinessCheckDraftResult = z.infer<typeof ReadinessCheckDraftResultSchema>;
|
|
5183
|
+
export type MethodAuthoringArtifactRequirement = z.infer<typeof MethodAuthoringArtifactRequirementSchema>;
|
|
4995
5184
|
export type MethodAuthoringCreateRequest = z.infer<typeof MethodAuthoringCreateRequestSchema>;
|
|
4996
5185
|
export type MethodAuthoringResult = z.infer<typeof MethodAuthoringResultSchema>;
|
|
4997
5186
|
export type LocalJobEventAppendRequest = z.infer<typeof LocalJobEventAppendRequestSchema>;
|
|
4998
5187
|
export type LocalJobRunResource = z.infer<typeof LocalJobRunResourceSchema>;
|
|
4999
|
-
export type
|
|
5000
|
-
export type
|
|
5001
|
-
export type
|
|
5188
|
+
export type VerifyRunStatus = z.infer<typeof VerifyRunStatusSchema>;
|
|
5189
|
+
export type VerifyRunCreateRequest = z.infer<typeof VerifyRunCreateRequestSchema>;
|
|
5190
|
+
export type VerifyRunResource = z.infer<typeof VerifyRunResourceSchema>;
|
|
5002
5191
|
export type RunObservabilityResource = z.infer<typeof RunObservabilityResourceSchema>;
|
|
5003
5192
|
export type LocalExecutorStatus = z.infer<typeof LocalExecutorStatusSchema>;
|
|
5004
5193
|
export type ActionProposalType = z.infer<typeof ActionProposalTypeSchema>;
|
|
@@ -5019,7 +5208,7 @@ export type PreparationListResponse = z.infer<typeof PreparationListResponseSche
|
|
|
5019
5208
|
export type MethodListResponse = z.infer<typeof MethodListResponseSchema>;
|
|
5020
5209
|
export type CompileRunListResponse = z.infer<typeof CompileRunListResponseSchema>;
|
|
5021
5210
|
export type LocalJobRunListResponse = z.infer<typeof LocalJobRunListResponseSchema>;
|
|
5022
|
-
export type
|
|
5211
|
+
export type VerifyRunListResponse = z.infer<typeof VerifyRunListResponseSchema>;
|
|
5023
5212
|
export type RunObservabilityListResponse = z.infer<typeof RunObservabilityListResponseSchema>;
|
|
5024
5213
|
export type ActionProposalListResponse = z.infer<typeof ActionProposalListResponseSchema>;
|
|
5025
5214
|
export type PortableContextListResponse = z.infer<typeof PortableContextListResponseSchema>;
|
|
@@ -5029,7 +5218,3 @@ export type WorkspaceFileListResponse = z.infer<typeof WorkspaceFileListResponse
|
|
|
5029
5218
|
export type ServiceRegistryWorkspace = z.infer<typeof ServiceRegistryWorkspaceSchema>;
|
|
5030
5219
|
export type ServiceRegistryEntry = z.infer<typeof ServiceRegistryEntrySchema>;
|
|
5031
5220
|
export type ServiceRegistry = z.infer<typeof ServiceRegistrySchema>;
|
|
5032
|
-
export type WorkspaceRegistrationRequest = z.infer<typeof WorkspaceRegistrationRequestSchema>;
|
|
5033
|
-
export type WorkspaceRegistrationResponse = z.infer<typeof WorkspaceRegistrationResponseSchema>;
|
|
5034
|
-
export type WorkspaceListResponse = z.infer<typeof WorkspaceListResponseSchema>;
|
|
5035
|
-
export type WorkspaceDeregisterResponse = z.infer<typeof WorkspaceDeregisterResponseSchema>;
|