@interf/compiler 0.9.1 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -9
- package/agent-skills/interf-actions/SKILL.md +3 -0
- package/agent-skills/interf-actions/references/cli.md +13 -13
- package/{builtin-workflows/interf → builtin-methods/interf-default}/README.md +2 -2
- package/builtin-methods/interf-default/improve/SKILL.md +18 -0
- package/{builtin-workflows/interf/workflow.json → builtin-methods/interf-default/method.json} +4 -4
- package/{builtin-workflows/interf/workflow.schema.json → builtin-methods/interf-default/method.schema.json} +2 -2
- package/dist/cli/commands/check-draft.d.ts +6 -6
- package/dist/cli/commands/check-draft.js +5 -5
- package/dist/cli/commands/compile-controller.d.ts +7 -7
- package/dist/cli/commands/compile-controller.js +35 -38
- package/dist/cli/commands/compile.d.ts +3 -3
- package/dist/cli/commands/compile.js +23 -21
- package/dist/cli/commands/compiled-flow.d.ts +11 -11
- package/dist/cli/commands/compiled-flow.js +33 -30
- package/dist/cli/commands/create-method-wizard.d.ts +76 -0
- package/dist/cli/commands/{create-workflow-wizard.js → create-method-wizard.js} +153 -163
- package/dist/cli/commands/create.d.ts +3 -3
- package/dist/cli/commands/create.js +44 -45
- package/dist/cli/commands/default.js +1 -1
- package/dist/cli/commands/executor-flow.d.ts +6 -6
- package/dist/cli/commands/executor-flow.js +1 -1
- package/dist/cli/commands/init.d.ts +2 -2
- package/dist/cli/commands/init.js +139 -118
- package/dist/cli/commands/list.js +11 -10
- package/dist/cli/commands/preparation-selection.d.ts +3 -3
- package/dist/cli/commands/source-config-wizard.d.ts +9 -9
- package/dist/cli/commands/source-config-wizard.js +43 -43
- package/dist/cli/commands/status.js +36 -9
- package/dist/cli/commands/test-flow.d.ts +15 -15
- package/dist/cli/commands/test-flow.js +29 -219
- package/dist/cli/commands/test.d.ts +2 -2
- package/dist/cli/commands/test.js +50 -51
- package/dist/cli/commands/verify.js +7 -7
- package/dist/cli/commands/web.js +41 -28
- package/dist/compiler-ui/404.html +1 -0
- package/dist/compiler-ui/__next.__PAGE__.txt +10 -0
- package/dist/compiler-ui/__next._full.txt +20 -0
- package/dist/compiler-ui/__next._head.txt +5 -0
- package/dist/compiler-ui/__next._index.txt +5 -0
- package/dist/compiler-ui/__next._tree.txt +5 -0
- package/dist/compiler-ui/_next/static/chunks/06yhdspx~ca5-.js +5 -0
- package/{apps/compiler-ui/.next/static/chunks/13g~4mamjft.c.css → dist/compiler-ui/_next/static/chunks/0c9mu7yldxyyg.css} +1 -1
- package/{apps/compiler-ui/.next/static/chunks/0fgt_8knmicoz.js → dist/compiler-ui/_next/static/chunks/15mks7ry_cupt.js} +15 -21
- package/{apps/compiler-ui/.next/static/chunks/turbopack-109rtik40vwh5.js → dist/compiler-ui/_next/static/chunks/turbopack-0.uq1k8c0j4s..js} +1 -1
- package/dist/compiler-ui/_not-found/__next._full.txt +15 -0
- package/dist/compiler-ui/_not-found/__next._head.txt +5 -0
- package/dist/compiler-ui/_not-found/__next._index.txt +5 -0
- package/dist/compiler-ui/_not-found/__next._not-found.__PAGE__.txt +5 -0
- package/dist/compiler-ui/_not-found/__next._not-found.txt +5 -0
- package/dist/compiler-ui/_not-found/__next._tree.txt +2 -0
- package/dist/compiler-ui/_not-found.html +1 -0
- package/dist/compiler-ui/_not-found.txt +15 -0
- package/{apps/compiler-ui/.next/server/app → dist/compiler-ui}/index.html +1 -1
- package/dist/compiler-ui/index.txt +20 -0
- package/dist/index.d.ts +8 -6
- package/dist/index.js +5 -3
- package/dist/packages/agents/index.d.ts +1 -1
- package/dist/packages/agents/lib/args.d.ts +2 -2
- package/dist/packages/agents/lib/compiled-bootstrap.js +7 -6
- package/dist/packages/agents/lib/execution-profile.d.ts +5 -5
- package/dist/packages/agents/lib/execution-profile.js +7 -6
- package/dist/packages/agents/lib/executors.d.ts +13 -13
- package/dist/packages/agents/lib/preflight.d.ts +1 -0
- package/dist/packages/agents/lib/preflight.js +32 -9
- package/dist/packages/agents/lib/shells.d.ts +25 -24
- package/dist/packages/agents/lib/shells.js +161 -154
- package/dist/packages/agents/lib/types.d.ts +2 -2
- package/dist/packages/compiler/artifact-counts.d.ts +1 -0
- package/dist/packages/compiler/artifact-counts.js +30 -0
- package/dist/packages/compiler/compiled-paths.d.ts +4 -7
- package/dist/packages/compiler/compiled-paths.js +9 -15
- package/dist/packages/compiler/compiled-pipeline.d.ts +11 -12
- package/dist/packages/compiler/compiled-pipeline.js +22 -22
- package/dist/packages/compiler/compiled-schema.d.ts +20 -20
- package/dist/packages/compiler/compiled-schema.js +29 -29
- package/dist/packages/compiler/compiled-stage-plan.d.ts +4 -4
- package/dist/packages/compiler/compiled-stage-plan.js +8 -8
- package/dist/packages/compiler/compiled-stage-runner.d.ts +5 -5
- package/dist/packages/compiler/compiled-stage-runner.js +7 -7
- package/dist/packages/compiler/compiled-target.d.ts +5 -5
- package/dist/packages/compiler/compiled-target.js +5 -5
- package/dist/packages/compiler/index.d.ts +3 -3
- package/dist/packages/compiler/index.js +2 -2
- package/dist/packages/compiler/lib/schema.d.ts +62 -247
- package/dist/packages/compiler/lib/schema.js +56 -174
- package/dist/packages/compiler/{workflows.d.ts → method-runs.d.ts} +4 -4
- package/dist/packages/compiler/{workflows.js → method-runs.js} +4 -3
- package/dist/packages/compiler/raw-snapshot.d.ts +0 -7
- package/dist/packages/compiler/raw-snapshot.js +0 -1
- package/dist/packages/compiler/reset.js +3 -3
- package/dist/packages/compiler/runtime-acceptance.js +9 -16
- package/dist/packages/compiler/runtime-contracts.js +9 -9
- package/dist/packages/compiler/runtime-prompt.js +4 -4
- package/dist/packages/compiler/runtime-reconcile.d.ts +2 -2
- package/dist/packages/compiler/runtime-reconcile.js +3 -3
- package/dist/packages/compiler/runtime-runs.js +9 -9
- package/dist/packages/compiler/runtime-types.d.ts +8 -7
- package/dist/packages/compiler/state-health.js +26 -35
- package/dist/packages/compiler/state-view.js +6 -6
- package/dist/packages/compiler/validate-compiled.d.ts +5 -5
- package/dist/packages/compiler/validate-compiled.js +56 -64
- package/dist/packages/compiler/validate.d.ts +2 -2
- package/dist/packages/compiler/validate.js +22 -14
- package/dist/packages/contracts/index.d.ts +2 -0
- package/dist/packages/contracts/index.js +1 -0
- package/dist/packages/contracts/lib/schema.d.ts +205 -0
- package/dist/packages/contracts/lib/schema.js +101 -0
- package/dist/packages/execution/index.d.ts +2 -2
- package/dist/packages/execution/index.js +1 -1
- package/dist/packages/execution/lib/schema.d.ts +80 -83
- package/dist/packages/execution/lib/schema.js +25 -48
- package/dist/packages/local-service/action-values.d.ts +0 -1
- package/dist/packages/local-service/action-values.js +0 -1
- package/dist/packages/local-service/client.d.ts +4 -4
- package/dist/packages/local-service/client.js +4 -4
- package/dist/packages/local-service/index.d.ts +3 -3
- package/dist/packages/local-service/index.js +2 -2
- package/dist/packages/local-service/lib/schema.d.ts +536 -974
- package/dist/packages/local-service/lib/schema.js +43 -160
- package/dist/packages/local-service/run-observability.d.ts +6 -0
- package/dist/packages/local-service/run-observability.js +592 -0
- package/dist/packages/local-service/runtime.d.ts +19 -23
- package/dist/packages/local-service/runtime.js +302 -880
- package/dist/packages/local-service/server.d.ts +1 -0
- package/dist/packages/local-service/server.js +25 -20
- package/dist/packages/method-authoring/index.d.ts +4 -0
- package/dist/packages/method-authoring/index.js +4 -0
- package/dist/packages/{workflow-authoring/lib/workflow-edit-utils.d.ts → method-authoring/lib/method-edit-utils.d.ts} +3 -3
- package/dist/packages/method-authoring/method-authoring.d.ts +24 -0
- package/dist/packages/method-authoring/method-authoring.js +116 -0
- package/dist/packages/method-authoring/method-edit-session.d.ts +18 -0
- package/dist/packages/method-authoring/method-edit-session.js +125 -0
- package/dist/packages/method-authoring/method-improvement.d.ts +23 -0
- package/dist/packages/{workflow-authoring/workflow-improvement.js → method-authoring/method-improvement.js} +63 -63
- package/dist/packages/{workflow-package/builtin-compiled-workflow.d.ts → method-package/builtin-compiled-method.d.ts} +1 -1
- package/dist/packages/{workflow-package/builtin-compiled-workflow.js → method-package/builtin-compiled-method.js} +17 -17
- package/dist/packages/{workflow-package → method-package}/context-interface.d.ts +12 -12
- package/dist/packages/{workflow-package → method-package}/context-interface.js +19 -19
- package/dist/packages/method-package/index.d.ts +11 -0
- package/dist/packages/method-package/index.js +11 -0
- package/dist/packages/method-package/interf-method-package.d.ts +31 -0
- package/dist/packages/{workflow-package/interf-workflow-package.js → method-package/interf-method-package.js} +145 -145
- package/dist/packages/{workflow-package → method-package}/lib/package-root.js +1 -1
- package/dist/packages/method-package/local-methods.d.ts +64 -0
- package/dist/packages/method-package/local-methods.js +466 -0
- package/dist/packages/method-package/method-definitions.d.ts +83 -0
- package/dist/packages/method-package/method-definitions.js +205 -0
- package/dist/packages/{workflow-package/workflow-helpers.d.ts → method-package/method-helpers.d.ts} +10 -10
- package/dist/packages/{workflow-package/workflow-helpers.js → method-package/method-helpers.js} +22 -26
- package/dist/packages/method-package/method-review-paths.d.ts +10 -0
- package/dist/packages/{workflow-package/workflow-review-paths.js → method-package/method-review-paths.js} +4 -4
- package/dist/packages/{workflow-package/workflow-stage-runner.d.ts → method-package/method-stage-runner.d.ts} +12 -11
- package/dist/packages/{workflow-package/workflow-stage-runner.js → method-package/method-stage-runner.js} +6 -6
- package/dist/packages/methods/index.d.ts +2 -0
- package/dist/packages/methods/index.js +2 -0
- package/dist/packages/methods/method-resolution.d.ts +6 -0
- package/dist/packages/methods/method-resolution.js +7 -0
- package/dist/packages/project-model/index.d.ts +1 -4
- package/dist/packages/project-model/index.js +0 -3
- package/dist/packages/project-model/interf-detect.d.ts +1 -5
- package/dist/packages/project-model/interf-detect.js +7 -18
- package/dist/packages/project-model/interf-scaffold.d.ts +2 -2
- package/dist/packages/project-model/interf-scaffold.js +38 -39
- package/dist/packages/project-model/interf.d.ts +1 -2
- package/dist/packages/project-model/interf.js +1 -2
- package/dist/packages/project-model/lib/schema.d.ts +2 -66
- package/dist/packages/project-model/lib/schema.js +5 -23
- package/dist/packages/project-model/project-paths.d.ts +9 -10
- package/dist/packages/project-model/project-paths.js +14 -17
- package/dist/packages/project-model/source-config.d.ts +11 -18
- package/dist/packages/project-model/source-config.js +42 -60
- package/dist/packages/project-model/source-folders.d.ts +4 -4
- package/dist/packages/project-model/source-folders.js +10 -10
- package/dist/packages/testing/index.d.ts +2 -2
- package/dist/packages/testing/index.js +1 -1
- package/dist/packages/testing/lib/schema.d.ts +11 -11
- package/dist/packages/testing/lib/schema.js +8 -9
- package/dist/packages/testing/readiness-check-run.d.ts +67 -0
- package/dist/packages/testing/readiness-check-run.js +258 -0
- package/dist/packages/testing/test-execution.d.ts +3 -3
- package/dist/packages/testing/test-execution.js +5 -5
- package/dist/packages/testing/test-paths.js +6 -6
- package/dist/packages/testing/test-profile-presets.js +2 -2
- package/dist/packages/testing/test-sandbox.js +10 -11
- package/dist/packages/testing/test-targets.d.ts +1 -1
- package/dist/packages/testing/test-targets.js +8 -7
- package/dist/packages/testing/test-types.d.ts +1 -1
- package/package.json +16 -33
- package/apps/compiler-ui/.next/static/chunks/0ti_66mx7~w2-.js +0 -5
- package/builtin-workflows/interf/improve/SKILL.md +0 -18
- package/dist/cli/commands/create-workflow-wizard.d.ts +0 -76
- package/dist/packages/project-model/compiled-paths.d.ts +0 -1
- package/dist/packages/project-model/compiled-paths.js +0 -1
- package/dist/packages/project-model/compiled-raw.d.ts +0 -1
- package/dist/packages/project-model/compiled-raw.js +0 -1
- package/dist/packages/project-model/compiled-reset.d.ts +0 -1
- package/dist/packages/project-model/compiled-reset.js +0 -1
- package/dist/packages/shared/index.d.ts +0 -7
- package/dist/packages/shared/index.js +0 -7
- package/dist/packages/shared/util.d.ts +0 -3
- package/dist/packages/shared/util.js +0 -3
- package/dist/packages/testing/test-matrices.d.ts +0 -90
- package/dist/packages/testing/test-matrices.js +0 -96
- package/dist/packages/workflow-authoring/index.d.ts +0 -4
- package/dist/packages/workflow-authoring/index.js +0 -4
- package/dist/packages/workflow-authoring/workflow-authoring.d.ts +0 -24
- package/dist/packages/workflow-authoring/workflow-authoring.js +0 -82
- package/dist/packages/workflow-authoring/workflow-edit-session.d.ts +0 -18
- package/dist/packages/workflow-authoring/workflow-edit-session.js +0 -91
- package/dist/packages/workflow-authoring/workflow-improvement.d.ts +0 -23
- package/dist/packages/workflow-package/index.d.ts +0 -11
- package/dist/packages/workflow-package/index.js +0 -11
- package/dist/packages/workflow-package/interf-workflow-package.d.ts +0 -31
- package/dist/packages/workflow-package/local-workflows.d.ts +0 -64
- package/dist/packages/workflow-package/local-workflows.js +0 -457
- package/dist/packages/workflow-package/workflow-definitions.d.ts +0 -82
- package/dist/packages/workflow-package/workflow-definitions.js +0 -211
- package/dist/packages/workflow-package/workflow-review-paths.d.ts +0 -10
- /package/{builtin-workflows/interf → builtin-methods/interf-default}/compile/stages/shape/SKILL.md +0 -0
- /package/{builtin-workflows/interf → builtin-methods/interf-default}/compile/stages/structure/SKILL.md +0 -0
- /package/{builtin-workflows/interf → builtin-methods/interf-default}/compile/stages/summarize/SKILL.md +0 -0
- /package/{builtin-workflows/interf → builtin-methods/interf-default}/use/query/SKILL.md +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/03~yq9q893hmn.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/06z~l3kwb891e.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/08g7lvje.te.u.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/08m7vf5asqlsm.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0_i-3_5l9t2qe.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0b-ywny_j0g~0.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0b52v41o1gixx.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0gpzgsv0w.q~m.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0ilwfezfvu6~-.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0n51hrfoufc7g.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0xxmf45eskdt~.css +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/0y5z3t-z1c8ks.js.map +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/14wtz~vq25~qq.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/turbopack-10e~t1yzi4svj.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/chunks/turbopack-worker-0sjn--fhq~1cg.js +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/media/GeistMono_Variable.p.17jn9btb_52pq.woff2 +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/media/Geist_Variable-s.p.0-te~ja_gpvcf.woff2 +0 -0
- /package/{apps/compiler-ui/.next → dist/compiler-ui/_next}/static/media/worker.102zas1s52_pf.js +0 -0
- /package/{apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J → dist/compiler-ui/_next/static/pIZnDsV3Je6hdC3cOsGdK}/_buildManifest.js +0 -0
- /package/{apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J → dist/compiler-ui/_next/static/pIZnDsV3Je6hdC3cOsGdK}/_clientMiddlewareManifest.js +0 -0
- /package/{apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J → dist/compiler-ui/_next/static/pIZnDsV3Je6hdC3cOsGdK}/_ssgManifest.js +0 -0
- /package/dist/packages/compiler/{workflow-primitives.d.ts → method-primitives.d.ts} +0 -0
- /package/dist/packages/compiler/{workflow-primitives.js → method-primitives.js} +0 -0
- /package/dist/packages/{workflow-authoring/lib/workflow-edit-utils.js → method-authoring/lib/method-edit-utils.js} +0 -0
- /package/dist/packages/{workflow-package → method-package}/lib/package-root.d.ts +0 -0
- /package/dist/packages/{workflow-package/workflow-stage-policy.d.ts → method-package/method-stage-policy.d.ts} +0 -0
- /package/dist/packages/{workflow-package/workflow-stage-policy.js → method-package/method-stage-policy.js} +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const
|
|
3
|
-
running: "running";
|
|
2
|
+
export declare const MethodTraceRunStatusSchema: z.ZodEnum<{
|
|
4
3
|
failed: "failed";
|
|
4
|
+
running: "running";
|
|
5
5
|
pending: "pending";
|
|
6
6
|
completed: "completed";
|
|
7
7
|
cancelled: "cancelled";
|
|
8
8
|
}>;
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const MethodTraceEventTypeSchema: z.ZodEnum<{
|
|
10
10
|
run_created: "run_created";
|
|
11
11
|
run_started: "run_started";
|
|
12
12
|
run_completed: "run_completed";
|
|
@@ -24,22 +24,22 @@ export declare const WorkflowTraceEventTypeSchema: z.ZodEnum<{
|
|
|
24
24
|
wait_created: "wait_created";
|
|
25
25
|
wait_completed: "wait_completed";
|
|
26
26
|
}>;
|
|
27
|
-
export declare const
|
|
27
|
+
export declare const MethodTraceStructuredErrorSchema: z.ZodObject<{
|
|
28
28
|
message: z.ZodString;
|
|
29
29
|
stack: z.ZodOptional<z.ZodString>;
|
|
30
30
|
code: z.ZodOptional<z.ZodString>;
|
|
31
31
|
}, z.core.$strict>;
|
|
32
|
-
export declare const
|
|
32
|
+
export declare const MethodTraceRunSchema: z.ZodObject<{
|
|
33
33
|
runId: z.ZodString;
|
|
34
34
|
status: z.ZodEnum<{
|
|
35
|
-
running: "running";
|
|
36
35
|
failed: "failed";
|
|
36
|
+
running: "running";
|
|
37
37
|
pending: "pending";
|
|
38
38
|
completed: "completed";
|
|
39
39
|
cancelled: "cancelled";
|
|
40
40
|
}>;
|
|
41
41
|
deploymentId: z.ZodString;
|
|
42
|
-
|
|
42
|
+
methodName: z.ZodString;
|
|
43
43
|
specVersion: z.ZodLiteral<1>;
|
|
44
44
|
executionContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
45
45
|
input: z.ZodUnknown;
|
|
@@ -55,7 +55,7 @@ export declare const WorkflowTraceRunSchema: z.ZodObject<{
|
|
|
55
55
|
createdAt: z.ZodString;
|
|
56
56
|
updatedAt: z.ZodString;
|
|
57
57
|
}, z.core.$strict>;
|
|
58
|
-
export declare const
|
|
58
|
+
export declare const MethodTraceEventSchema: z.ZodObject<{
|
|
59
59
|
runId: z.ZodString;
|
|
60
60
|
eventId: z.ZodString;
|
|
61
61
|
eventType: z.ZodEnum<{
|
|
@@ -81,7 +81,7 @@ export declare const WorkflowTraceEventSchema: z.ZodObject<{
|
|
|
81
81
|
createdAt: z.ZodString;
|
|
82
82
|
eventData: z.ZodOptional<z.ZodUnknown>;
|
|
83
83
|
}, z.core.$strict>;
|
|
84
|
-
export declare const
|
|
84
|
+
export declare const MethodTraceStreamChunkSchema: z.ZodObject<{
|
|
85
85
|
streamId: z.ZodString;
|
|
86
86
|
chunkId: z.ZodString;
|
|
87
87
|
index: z.ZodNumber;
|
|
@@ -89,18 +89,18 @@ export declare const WorkflowTraceStreamChunkSchema: z.ZodObject<{
|
|
|
89
89
|
text: z.ZodString;
|
|
90
90
|
data: z.ZodOptional<z.ZodUnknown>;
|
|
91
91
|
}, z.core.$strict>;
|
|
92
|
-
export declare const
|
|
92
|
+
export declare const MethodTraceSchema: z.ZodObject<{
|
|
93
93
|
run: z.ZodObject<{
|
|
94
94
|
runId: z.ZodString;
|
|
95
95
|
status: z.ZodEnum<{
|
|
96
|
-
running: "running";
|
|
97
96
|
failed: "failed";
|
|
97
|
+
running: "running";
|
|
98
98
|
pending: "pending";
|
|
99
99
|
completed: "completed";
|
|
100
100
|
cancelled: "cancelled";
|
|
101
101
|
}>;
|
|
102
102
|
deploymentId: z.ZodString;
|
|
103
|
-
|
|
103
|
+
methodName: z.ZodString;
|
|
104
104
|
specVersion: z.ZodLiteral<1>;
|
|
105
105
|
executionContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
106
106
|
input: z.ZodUnknown;
|
|
@@ -153,16 +153,16 @@ export declare const WorkflowTraceSchema: z.ZodObject<{
|
|
|
153
153
|
}, z.core.$strict>;
|
|
154
154
|
export declare const ObservableRunTypeSchema: z.ZodEnum<{
|
|
155
155
|
compile: "compile";
|
|
156
|
+
"method-authoring": "method-authoring";
|
|
157
|
+
"method-improvement": "method-improvement";
|
|
156
158
|
"preparation-setup": "preparation-setup";
|
|
157
159
|
test: "test";
|
|
158
160
|
"readiness-check-draft": "readiness-check-draft";
|
|
159
|
-
"method-authoring": "method-authoring";
|
|
160
|
-
"method-improvement": "method-improvement";
|
|
161
161
|
job: "job";
|
|
162
162
|
}>;
|
|
163
163
|
export declare const ObservableRunStatusSchema: z.ZodEnum<{
|
|
164
|
-
running: "running";
|
|
165
164
|
failed: "failed";
|
|
165
|
+
running: "running";
|
|
166
166
|
succeeded: "succeeded";
|
|
167
167
|
cancelled: "cancelled";
|
|
168
168
|
queued: "queued";
|
|
@@ -177,18 +177,17 @@ export declare const ExecutionBackendKindSchema: z.ZodEnum<{
|
|
|
177
177
|
"workflow-sdk": "workflow-sdk";
|
|
178
178
|
}>;
|
|
179
179
|
export declare const CompileRunStatusSchema: z.ZodEnum<{
|
|
180
|
-
running: "running";
|
|
181
180
|
failed: "failed";
|
|
181
|
+
running: "running";
|
|
182
182
|
succeeded: "succeeded";
|
|
183
183
|
cancelled: "cancelled";
|
|
184
184
|
queued: "queued";
|
|
185
185
|
}>;
|
|
186
186
|
export declare const StageRunStatusSchema: z.ZodEnum<{
|
|
187
|
-
running: "running";
|
|
188
187
|
failed: "failed";
|
|
188
|
+
running: "running";
|
|
189
189
|
succeeded: "succeeded";
|
|
190
190
|
queued: "queued";
|
|
191
|
-
skipped: "skipped";
|
|
192
191
|
}>;
|
|
193
192
|
export declare const ArtifactRoleSchema: z.ZodEnum<{
|
|
194
193
|
output: "output";
|
|
@@ -216,23 +215,23 @@ export declare const ProofCheckSchema: z.ZodObject<{
|
|
|
216
215
|
ok: z.ZodBoolean;
|
|
217
216
|
detail: z.ZodOptional<z.ZodString>;
|
|
218
217
|
}, z.core.$strict>;
|
|
219
|
-
export declare const RunObservabilitySchema: z.
|
|
218
|
+
export declare const RunObservabilitySchema: z.ZodObject<{
|
|
220
219
|
kind: z.ZodLiteral<"interf-run-observability">;
|
|
221
220
|
version: z.ZodLiteral<1>;
|
|
222
221
|
run_id: z.ZodString;
|
|
223
222
|
run_type: z.ZodEnum<{
|
|
224
223
|
compile: "compile";
|
|
224
|
+
"method-authoring": "method-authoring";
|
|
225
|
+
"method-improvement": "method-improvement";
|
|
225
226
|
"preparation-setup": "preparation-setup";
|
|
226
227
|
test: "test";
|
|
227
228
|
"readiness-check-draft": "readiness-check-draft";
|
|
228
|
-
"method-authoring": "method-authoring";
|
|
229
|
-
"method-improvement": "method-improvement";
|
|
230
229
|
job: "job";
|
|
231
230
|
}>;
|
|
232
231
|
title: z.ZodString;
|
|
233
232
|
status: z.ZodEnum<{
|
|
234
|
-
running: "running";
|
|
235
233
|
failed: "failed";
|
|
234
|
+
running: "running";
|
|
236
235
|
succeeded: "succeeded";
|
|
237
236
|
cancelled: "cancelled";
|
|
238
237
|
queued: "queued";
|
|
@@ -283,14 +282,12 @@ export declare const RunObservabilitySchema: z.ZodPipe<z.ZodTransform<unknown, u
|
|
|
283
282
|
ok: z.ZodBoolean;
|
|
284
283
|
detail: z.ZodOptional<z.ZodString>;
|
|
285
284
|
}, z.core.$strict>>>;
|
|
286
|
-
readiness: z.ZodOptional<z.ZodNullable<z.
|
|
285
|
+
readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
287
286
|
kind: z.ZodLiteral<"interf-readiness-state">;
|
|
288
287
|
version: z.ZodLiteral<1>;
|
|
289
288
|
generated_at: z.ZodString;
|
|
290
289
|
preparation: z.ZodString;
|
|
291
290
|
status: z.ZodEnum<{
|
|
292
|
-
stale: "stale";
|
|
293
|
-
failed: "failed";
|
|
294
291
|
"not-configured": "not-configured";
|
|
295
292
|
"not-built": "not-built";
|
|
296
293
|
building: "building";
|
|
@@ -298,6 +295,8 @@ export declare const RunObservabilitySchema: z.ZodPipe<z.ZodTransform<unknown, u
|
|
|
298
295
|
checking: "checking";
|
|
299
296
|
ready: "ready";
|
|
300
297
|
"not-ready": "not-ready";
|
|
298
|
+
stale: "stale";
|
|
299
|
+
failed: "failed";
|
|
301
300
|
}>;
|
|
302
301
|
ready: z.ZodBoolean;
|
|
303
302
|
summary: z.ZodString;
|
|
@@ -316,8 +315,6 @@ export declare const RunObservabilitySchema: z.ZodPipe<z.ZodTransform<unknown, u
|
|
|
316
315
|
}>;
|
|
317
316
|
ok: z.ZodBoolean;
|
|
318
317
|
status: z.ZodOptional<z.ZodEnum<{
|
|
319
|
-
stale: "stale";
|
|
320
|
-
failed: "failed";
|
|
321
318
|
"not-configured": "not-configured";
|
|
322
319
|
"not-built": "not-built";
|
|
323
320
|
building: "building";
|
|
@@ -325,6 +322,8 @@ export declare const RunObservabilitySchema: z.ZodPipe<z.ZodTransform<unknown, u
|
|
|
325
322
|
checking: "checking";
|
|
326
323
|
ready: "ready";
|
|
327
324
|
"not-ready": "not-ready";
|
|
325
|
+
stale: "stale";
|
|
326
|
+
failed: "failed";
|
|
328
327
|
}>>;
|
|
329
328
|
summary: z.ZodString;
|
|
330
329
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -366,8 +365,6 @@ export declare const RunObservabilitySchema: z.ZodPipe<z.ZodTransform<unknown, u
|
|
|
366
365
|
}>;
|
|
367
366
|
ok: z.ZodBoolean;
|
|
368
367
|
status: z.ZodOptional<z.ZodEnum<{
|
|
369
|
-
stale: "stale";
|
|
370
|
-
failed: "failed";
|
|
371
368
|
"not-configured": "not-configured";
|
|
372
369
|
"not-built": "not-built";
|
|
373
370
|
building: "building";
|
|
@@ -375,25 +372,27 @@ export declare const RunObservabilitySchema: z.ZodPipe<z.ZodTransform<unknown, u
|
|
|
375
372
|
checking: "checking";
|
|
376
373
|
ready: "ready";
|
|
377
374
|
"not-ready": "not-ready";
|
|
375
|
+
stale: "stale";
|
|
376
|
+
failed: "failed";
|
|
378
377
|
}>>;
|
|
379
378
|
summary: z.ZodString;
|
|
380
379
|
detail: z.ZodOptional<z.ZodString>;
|
|
381
380
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
382
381
|
artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
383
382
|
}, z.core.$strict>>>;
|
|
384
|
-
}, z.core.$strict
|
|
383
|
+
}, z.core.$strict>>>;
|
|
385
384
|
trace: z.ZodObject<{
|
|
386
385
|
run: z.ZodObject<{
|
|
387
386
|
runId: z.ZodString;
|
|
388
387
|
status: z.ZodEnum<{
|
|
389
|
-
running: "running";
|
|
390
388
|
failed: "failed";
|
|
389
|
+
running: "running";
|
|
391
390
|
pending: "pending";
|
|
392
391
|
completed: "completed";
|
|
393
392
|
cancelled: "cancelled";
|
|
394
393
|
}>;
|
|
395
394
|
deploymentId: z.ZodString;
|
|
396
|
-
|
|
395
|
+
methodName: z.ZodString;
|
|
397
396
|
specVersion: z.ZodLiteral<1>;
|
|
398
397
|
executionContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
399
398
|
input: z.ZodUnknown;
|
|
@@ -444,7 +443,7 @@ export declare const RunObservabilitySchema: z.ZodPipe<z.ZodTransform<unknown, u
|
|
|
444
443
|
data: z.ZodOptional<z.ZodUnknown>;
|
|
445
444
|
}, z.core.$strict>>>;
|
|
446
445
|
}, z.core.$strict>;
|
|
447
|
-
}, z.core.$strict
|
|
446
|
+
}, z.core.$strict>;
|
|
448
447
|
export declare const ProofRecordSchema: z.ZodObject<{
|
|
449
448
|
id: z.ZodString;
|
|
450
449
|
run_id: z.ZodString;
|
|
@@ -634,14 +633,12 @@ export declare const ReadinessUpdatedEventSchema: z.ZodObject<{
|
|
|
634
633
|
timestamp: z.ZodString;
|
|
635
634
|
type: z.ZodLiteral<"readiness.updated">;
|
|
636
635
|
preparation: z.ZodString;
|
|
637
|
-
readiness: z.
|
|
636
|
+
readiness: z.ZodObject<{
|
|
638
637
|
kind: z.ZodLiteral<"interf-readiness-state">;
|
|
639
638
|
version: z.ZodLiteral<1>;
|
|
640
639
|
generated_at: z.ZodString;
|
|
641
640
|
preparation: z.ZodString;
|
|
642
641
|
status: z.ZodEnum<{
|
|
643
|
-
stale: "stale";
|
|
644
|
-
failed: "failed";
|
|
645
642
|
"not-configured": "not-configured";
|
|
646
643
|
"not-built": "not-built";
|
|
647
644
|
building: "building";
|
|
@@ -649,6 +646,8 @@ export declare const ReadinessUpdatedEventSchema: z.ZodObject<{
|
|
|
649
646
|
checking: "checking";
|
|
650
647
|
ready: "ready";
|
|
651
648
|
"not-ready": "not-ready";
|
|
649
|
+
stale: "stale";
|
|
650
|
+
failed: "failed";
|
|
652
651
|
}>;
|
|
653
652
|
ready: z.ZodBoolean;
|
|
654
653
|
summary: z.ZodString;
|
|
@@ -667,8 +666,6 @@ export declare const ReadinessUpdatedEventSchema: z.ZodObject<{
|
|
|
667
666
|
}>;
|
|
668
667
|
ok: z.ZodBoolean;
|
|
669
668
|
status: z.ZodOptional<z.ZodEnum<{
|
|
670
|
-
stale: "stale";
|
|
671
|
-
failed: "failed";
|
|
672
669
|
"not-configured": "not-configured";
|
|
673
670
|
"not-built": "not-built";
|
|
674
671
|
building: "building";
|
|
@@ -676,6 +673,8 @@ export declare const ReadinessUpdatedEventSchema: z.ZodObject<{
|
|
|
676
673
|
checking: "checking";
|
|
677
674
|
ready: "ready";
|
|
678
675
|
"not-ready": "not-ready";
|
|
676
|
+
stale: "stale";
|
|
677
|
+
failed: "failed";
|
|
679
678
|
}>>;
|
|
680
679
|
summary: z.ZodString;
|
|
681
680
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -717,8 +716,6 @@ export declare const ReadinessUpdatedEventSchema: z.ZodObject<{
|
|
|
717
716
|
}>;
|
|
718
717
|
ok: z.ZodBoolean;
|
|
719
718
|
status: z.ZodOptional<z.ZodEnum<{
|
|
720
|
-
stale: "stale";
|
|
721
|
-
failed: "failed";
|
|
722
719
|
"not-configured": "not-configured";
|
|
723
720
|
"not-built": "not-built";
|
|
724
721
|
building: "building";
|
|
@@ -726,15 +723,17 @@ export declare const ReadinessUpdatedEventSchema: z.ZodObject<{
|
|
|
726
723
|
checking: "checking";
|
|
727
724
|
ready: "ready";
|
|
728
725
|
"not-ready": "not-ready";
|
|
726
|
+
stale: "stale";
|
|
727
|
+
failed: "failed";
|
|
729
728
|
}>>;
|
|
730
729
|
summary: z.ZodString;
|
|
731
730
|
detail: z.ZodOptional<z.ZodString>;
|
|
732
731
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
733
732
|
artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
734
733
|
}, z.core.$strict>>>;
|
|
735
|
-
}, z.core.$strict
|
|
734
|
+
}, z.core.$strict>;
|
|
736
735
|
}, z.core.$strict>;
|
|
737
|
-
export declare const InterfRunEventSchema: z.
|
|
736
|
+
export declare const InterfRunEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
738
737
|
event_id: z.ZodString;
|
|
739
738
|
run_id: z.ZodString;
|
|
740
739
|
timestamp: z.ZodString;
|
|
@@ -871,14 +870,12 @@ export declare const InterfRunEventSchema: z.ZodPipe<z.ZodTransform<unknown, unk
|
|
|
871
870
|
timestamp: z.ZodString;
|
|
872
871
|
type: z.ZodLiteral<"readiness.updated">;
|
|
873
872
|
preparation: z.ZodString;
|
|
874
|
-
readiness: z.
|
|
873
|
+
readiness: z.ZodObject<{
|
|
875
874
|
kind: z.ZodLiteral<"interf-readiness-state">;
|
|
876
875
|
version: z.ZodLiteral<1>;
|
|
877
876
|
generated_at: z.ZodString;
|
|
878
877
|
preparation: z.ZodString;
|
|
879
878
|
status: z.ZodEnum<{
|
|
880
|
-
stale: "stale";
|
|
881
|
-
failed: "failed";
|
|
882
879
|
"not-configured": "not-configured";
|
|
883
880
|
"not-built": "not-built";
|
|
884
881
|
building: "building";
|
|
@@ -886,6 +883,8 @@ export declare const InterfRunEventSchema: z.ZodPipe<z.ZodTransform<unknown, unk
|
|
|
886
883
|
checking: "checking";
|
|
887
884
|
ready: "ready";
|
|
888
885
|
"not-ready": "not-ready";
|
|
886
|
+
stale: "stale";
|
|
887
|
+
failed: "failed";
|
|
889
888
|
}>;
|
|
890
889
|
ready: z.ZodBoolean;
|
|
891
890
|
summary: z.ZodString;
|
|
@@ -904,8 +903,6 @@ export declare const InterfRunEventSchema: z.ZodPipe<z.ZodTransform<unknown, unk
|
|
|
904
903
|
}>;
|
|
905
904
|
ok: z.ZodBoolean;
|
|
906
905
|
status: z.ZodOptional<z.ZodEnum<{
|
|
907
|
-
stale: "stale";
|
|
908
|
-
failed: "failed";
|
|
909
906
|
"not-configured": "not-configured";
|
|
910
907
|
"not-built": "not-built";
|
|
911
908
|
building: "building";
|
|
@@ -913,6 +910,8 @@ export declare const InterfRunEventSchema: z.ZodPipe<z.ZodTransform<unknown, unk
|
|
|
913
910
|
checking: "checking";
|
|
914
911
|
ready: "ready";
|
|
915
912
|
"not-ready": "not-ready";
|
|
913
|
+
stale: "stale";
|
|
914
|
+
failed: "failed";
|
|
916
915
|
}>>;
|
|
917
916
|
summary: z.ZodString;
|
|
918
917
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -954,8 +953,6 @@ export declare const InterfRunEventSchema: z.ZodPipe<z.ZodTransform<unknown, unk
|
|
|
954
953
|
}>;
|
|
955
954
|
ok: z.ZodBoolean;
|
|
956
955
|
status: z.ZodOptional<z.ZodEnum<{
|
|
957
|
-
stale: "stale";
|
|
958
|
-
failed: "failed";
|
|
959
956
|
"not-configured": "not-configured";
|
|
960
957
|
"not-built": "not-built";
|
|
961
958
|
building: "building";
|
|
@@ -963,14 +960,16 @@ export declare const InterfRunEventSchema: z.ZodPipe<z.ZodTransform<unknown, unk
|
|
|
963
960
|
checking: "checking";
|
|
964
961
|
ready: "ready";
|
|
965
962
|
"not-ready": "not-ready";
|
|
963
|
+
stale: "stale";
|
|
964
|
+
failed: "failed";
|
|
966
965
|
}>>;
|
|
967
966
|
summary: z.ZodString;
|
|
968
967
|
detail: z.ZodOptional<z.ZodString>;
|
|
969
968
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
970
969
|
artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
971
970
|
}, z.core.$strict>>>;
|
|
972
|
-
}, z.core.$strict
|
|
973
|
-
}, z.core.$strict>], "type"
|
|
971
|
+
}, z.core.$strict>;
|
|
972
|
+
}, z.core.$strict>], "type">;
|
|
974
973
|
export declare const StageRunSchema: z.ZodObject<{
|
|
975
974
|
run_id: z.ZodString;
|
|
976
975
|
stage_id: z.ZodString;
|
|
@@ -978,11 +977,10 @@ export declare const StageRunSchema: z.ZodObject<{
|
|
|
978
977
|
stage_index: z.ZodOptional<z.ZodNumber>;
|
|
979
978
|
stage_total: z.ZodOptional<z.ZodNumber>;
|
|
980
979
|
status: z.ZodEnum<{
|
|
981
|
-
running: "running";
|
|
982
980
|
failed: "failed";
|
|
981
|
+
running: "running";
|
|
983
982
|
succeeded: "succeeded";
|
|
984
983
|
queued: "queued";
|
|
985
|
-
skipped: "skipped";
|
|
986
984
|
}>;
|
|
987
985
|
started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
988
986
|
finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1057,13 +1055,13 @@ export declare const StageRunSchema: z.ZodObject<{
|
|
|
1057
1055
|
}, z.core.$strict>>>;
|
|
1058
1056
|
failure: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1059
1057
|
}, z.core.$strict>;
|
|
1060
|
-
export declare const CompileRunSchema: z.
|
|
1058
|
+
export declare const CompileRunSchema: z.ZodObject<{
|
|
1061
1059
|
kind: z.ZodLiteral<"interf-compile-run">;
|
|
1062
1060
|
version: z.ZodLiteral<1>;
|
|
1063
1061
|
run_id: z.ZodString;
|
|
1064
1062
|
status: z.ZodEnum<{
|
|
1065
|
-
running: "running";
|
|
1066
1063
|
failed: "failed";
|
|
1064
|
+
running: "running";
|
|
1067
1065
|
succeeded: "succeeded";
|
|
1068
1066
|
cancelled: "cancelled";
|
|
1069
1067
|
queued: "queued";
|
|
@@ -1086,11 +1084,10 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1086
1084
|
stage_index: z.ZodOptional<z.ZodNumber>;
|
|
1087
1085
|
stage_total: z.ZodOptional<z.ZodNumber>;
|
|
1088
1086
|
status: z.ZodEnum<{
|
|
1089
|
-
running: "running";
|
|
1090
1087
|
failed: "failed";
|
|
1088
|
+
running: "running";
|
|
1091
1089
|
succeeded: "succeeded";
|
|
1092
1090
|
queued: "queued";
|
|
1093
|
-
skipped: "skipped";
|
|
1094
1091
|
}>;
|
|
1095
1092
|
started_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1096
1093
|
finished_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1165,7 +1162,7 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1165
1162
|
}, z.core.$strict>>>;
|
|
1166
1163
|
failure: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1167
1164
|
}, z.core.$strict>>>;
|
|
1168
|
-
events: z.ZodDefault<z.ZodArray<z.
|
|
1165
|
+
events: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1169
1166
|
event_id: z.ZodString;
|
|
1170
1167
|
run_id: z.ZodString;
|
|
1171
1168
|
timestamp: z.ZodString;
|
|
@@ -1302,14 +1299,12 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1302
1299
|
timestamp: z.ZodString;
|
|
1303
1300
|
type: z.ZodLiteral<"readiness.updated">;
|
|
1304
1301
|
preparation: z.ZodString;
|
|
1305
|
-
readiness: z.
|
|
1302
|
+
readiness: z.ZodObject<{
|
|
1306
1303
|
kind: z.ZodLiteral<"interf-readiness-state">;
|
|
1307
1304
|
version: z.ZodLiteral<1>;
|
|
1308
1305
|
generated_at: z.ZodString;
|
|
1309
1306
|
preparation: z.ZodString;
|
|
1310
1307
|
status: z.ZodEnum<{
|
|
1311
|
-
stale: "stale";
|
|
1312
|
-
failed: "failed";
|
|
1313
1308
|
"not-configured": "not-configured";
|
|
1314
1309
|
"not-built": "not-built";
|
|
1315
1310
|
building: "building";
|
|
@@ -1317,6 +1312,8 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1317
1312
|
checking: "checking";
|
|
1318
1313
|
ready: "ready";
|
|
1319
1314
|
"not-ready": "not-ready";
|
|
1315
|
+
stale: "stale";
|
|
1316
|
+
failed: "failed";
|
|
1320
1317
|
}>;
|
|
1321
1318
|
ready: z.ZodBoolean;
|
|
1322
1319
|
summary: z.ZodString;
|
|
@@ -1335,8 +1332,6 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1335
1332
|
}>;
|
|
1336
1333
|
ok: z.ZodBoolean;
|
|
1337
1334
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1338
|
-
stale: "stale";
|
|
1339
|
-
failed: "failed";
|
|
1340
1335
|
"not-configured": "not-configured";
|
|
1341
1336
|
"not-built": "not-built";
|
|
1342
1337
|
building: "building";
|
|
@@ -1344,6 +1339,8 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1344
1339
|
checking: "checking";
|
|
1345
1340
|
ready: "ready";
|
|
1346
1341
|
"not-ready": "not-ready";
|
|
1342
|
+
stale: "stale";
|
|
1343
|
+
failed: "failed";
|
|
1347
1344
|
}>>;
|
|
1348
1345
|
summary: z.ZodString;
|
|
1349
1346
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -1385,8 +1382,6 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1385
1382
|
}>;
|
|
1386
1383
|
ok: z.ZodBoolean;
|
|
1387
1384
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1388
|
-
stale: "stale";
|
|
1389
|
-
failed: "failed";
|
|
1390
1385
|
"not-configured": "not-configured";
|
|
1391
1386
|
"not-built": "not-built";
|
|
1392
1387
|
building: "building";
|
|
@@ -1394,14 +1389,16 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1394
1389
|
checking: "checking";
|
|
1395
1390
|
ready: "ready";
|
|
1396
1391
|
"not-ready": "not-ready";
|
|
1392
|
+
stale: "stale";
|
|
1393
|
+
failed: "failed";
|
|
1397
1394
|
}>>;
|
|
1398
1395
|
summary: z.ZodString;
|
|
1399
1396
|
detail: z.ZodOptional<z.ZodString>;
|
|
1400
1397
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1401
1398
|
artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1402
1399
|
}, z.core.$strict>>>;
|
|
1403
|
-
}, z.core.$strict
|
|
1404
|
-
}, z.core.$strict>], "type"
|
|
1400
|
+
}, z.core.$strict>;
|
|
1401
|
+
}, z.core.$strict>], "type">>>;
|
|
1405
1402
|
latest_proof: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1406
1403
|
id: z.ZodString;
|
|
1407
1404
|
run_id: z.ZodString;
|
|
@@ -1429,14 +1426,12 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1429
1426
|
detail: z.ZodOptional<z.ZodString>;
|
|
1430
1427
|
}, z.core.$strict>>>;
|
|
1431
1428
|
}, z.core.$strict>>>;
|
|
1432
|
-
readiness: z.ZodOptional<z.ZodNullable<z.
|
|
1429
|
+
readiness: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1433
1430
|
kind: z.ZodLiteral<"interf-readiness-state">;
|
|
1434
1431
|
version: z.ZodLiteral<1>;
|
|
1435
1432
|
generated_at: z.ZodString;
|
|
1436
1433
|
preparation: z.ZodString;
|
|
1437
1434
|
status: z.ZodEnum<{
|
|
1438
|
-
stale: "stale";
|
|
1439
|
-
failed: "failed";
|
|
1440
1435
|
"not-configured": "not-configured";
|
|
1441
1436
|
"not-built": "not-built";
|
|
1442
1437
|
building: "building";
|
|
@@ -1444,6 +1439,8 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1444
1439
|
checking: "checking";
|
|
1445
1440
|
ready: "ready";
|
|
1446
1441
|
"not-ready": "not-ready";
|
|
1442
|
+
stale: "stale";
|
|
1443
|
+
failed: "failed";
|
|
1447
1444
|
}>;
|
|
1448
1445
|
ready: z.ZodBoolean;
|
|
1449
1446
|
summary: z.ZodString;
|
|
@@ -1462,8 +1459,6 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1462
1459
|
}>;
|
|
1463
1460
|
ok: z.ZodBoolean;
|
|
1464
1461
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1465
|
-
stale: "stale";
|
|
1466
|
-
failed: "failed";
|
|
1467
1462
|
"not-configured": "not-configured";
|
|
1468
1463
|
"not-built": "not-built";
|
|
1469
1464
|
building: "building";
|
|
@@ -1471,6 +1466,8 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1471
1466
|
checking: "checking";
|
|
1472
1467
|
ready: "ready";
|
|
1473
1468
|
"not-ready": "not-ready";
|
|
1469
|
+
stale: "stale";
|
|
1470
|
+
failed: "failed";
|
|
1474
1471
|
}>>;
|
|
1475
1472
|
summary: z.ZodString;
|
|
1476
1473
|
detail: z.ZodOptional<z.ZodString>;
|
|
@@ -1512,8 +1509,6 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1512
1509
|
}>;
|
|
1513
1510
|
ok: z.ZodBoolean;
|
|
1514
1511
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1515
|
-
stale: "stale";
|
|
1516
|
-
failed: "failed";
|
|
1517
1512
|
"not-configured": "not-configured";
|
|
1518
1513
|
"not-built": "not-built";
|
|
1519
1514
|
building: "building";
|
|
@@ -1521,22 +1516,24 @@ export declare const CompileRunSchema: z.ZodPipe<z.ZodTransform<unknown, unknown
|
|
|
1521
1516
|
checking: "checking";
|
|
1522
1517
|
ready: "ready";
|
|
1523
1518
|
"not-ready": "not-ready";
|
|
1519
|
+
stale: "stale";
|
|
1520
|
+
failed: "failed";
|
|
1524
1521
|
}>>;
|
|
1525
1522
|
summary: z.ZodString;
|
|
1526
1523
|
detail: z.ZodOptional<z.ZodString>;
|
|
1527
1524
|
run_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1528
1525
|
artifact_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1529
1526
|
}, z.core.$strict>>>;
|
|
1530
|
-
}, z.core.$strict
|
|
1531
|
-
}, z.core.$strict
|
|
1527
|
+
}, z.core.$strict>>>;
|
|
1528
|
+
}, z.core.$strict>;
|
|
1532
1529
|
export type ExecutionBackendKind = z.infer<typeof ExecutionBackendKindSchema>;
|
|
1533
|
-
export type
|
|
1534
|
-
export type
|
|
1535
|
-
export type
|
|
1536
|
-
export type
|
|
1537
|
-
export type
|
|
1538
|
-
export type
|
|
1539
|
-
export type
|
|
1530
|
+
export type MethodTraceRunStatus = z.infer<typeof MethodTraceRunStatusSchema>;
|
|
1531
|
+
export type MethodTraceEventType = z.infer<typeof MethodTraceEventTypeSchema>;
|
|
1532
|
+
export type MethodTraceStructuredError = z.infer<typeof MethodTraceStructuredErrorSchema>;
|
|
1533
|
+
export type MethodTraceRun = z.infer<typeof MethodTraceRunSchema>;
|
|
1534
|
+
export type MethodTraceEvent = z.infer<typeof MethodTraceEventSchema>;
|
|
1535
|
+
export type MethodTraceStreamChunk = z.infer<typeof MethodTraceStreamChunkSchema>;
|
|
1536
|
+
export type MethodTrace = z.infer<typeof MethodTraceSchema>;
|
|
1540
1537
|
export type ObservableRunType = z.infer<typeof ObservableRunTypeSchema>;
|
|
1541
1538
|
export type ObservableRunStatus = z.infer<typeof ObservableRunStatusSchema>;
|
|
1542
1539
|
export type ObservableRunMetric = z.infer<typeof ObservableRunMetricSchema>;
|