deepline 0.2.53 → 0.2.55
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/dist/bundling-sources/sdk/src/client.ts +17 -1
- package/dist/bundling-sources/sdk/src/plays/bundle-play-file.ts +1 -1
- package/dist/bundling-sources/sdk/src/release.ts +1 -1
- package/dist/bundling-sources/sdk/src/types.ts +43 -1
- package/dist/bundling-sources/shared_libs/play-runtime/app-runtime-api.ts +30 -1
- package/dist/bundling-sources/shared_libs/play-runtime/cell-provenance.ts +231 -0
- package/dist/bundling-sources/shared_libs/play-runtime/context.ts +1094 -128
- package/dist/bundling-sources/shared_libs/play-runtime/ctx-types.ts +178 -9
- package/dist/bundling-sources/shared_libs/play-runtime/docflow-node-io.ts +634 -0
- package/dist/bundling-sources/shared_libs/play-runtime/docflow-observation.ts +64 -0
- package/dist/bundling-sources/shared_libs/play-runtime/dynamic-worker-version.ts +1 -1
- package/dist/bundling-sources/shared_libs/play-runtime/execution-capabilities.ts +18 -0
- package/dist/bundling-sources/shared_libs/play-runtime/live-state-contract.ts +33 -0
- package/dist/bundling-sources/shared_libs/play-runtime/log-provenance.ts +251 -0
- package/dist/bundling-sources/shared_libs/play-runtime/play-node-scope.ts +160 -0
- package/dist/bundling-sources/shared_libs/play-runtime/protocol.ts +6 -0
- package/dist/bundling-sources/shared_libs/play-runtime/run-failure.ts +27 -0
- package/dist/bundling-sources/shared_libs/play-runtime/run-ledger.ts +43 -5
- package/dist/bundling-sources/shared_libs/play-runtime/run-snapshot-stream.ts +12 -0
- package/dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/local-process.ts +26 -4
- package/dist/bundling-sources/shared_libs/play-runtime/runtime-actions.ts +6 -1
- package/dist/bundling-sources/shared_libs/play-runtime/runtime-api.ts +83 -0
- package/dist/bundling-sources/shared_libs/play-runtime/worker-api-types.ts +3 -0
- package/dist/bundling-sources/shared_libs/plays/authoring-contract.ts +49 -1
- package/dist/bundling-sources/shared_libs/plays/bundling/index.ts +375 -29
- package/dist/bundling-sources/shared_libs/plays/docflow-binding-owner.ts +636 -0
- package/dist/bundling-sources/shared_libs/plays/docflow-binding.ts +598 -0
- package/dist/bundling-sources/shared_libs/plays/docflow.ts +1645 -0
- package/dist/bundling-sources/shared_libs/plays/play-exports.ts +202 -0
- package/dist/bundling-sources/shared_libs/plays/static-pipeline.ts +16 -1
- package/dist/bundling-sources/shared_libs/plays/ts-ast.ts +48 -0
- package/dist/cli/index.js +994 -312
- package/dist/cli/index.mjs +994 -312
- package/dist/{compiler-manifest-Cj3--4ZJ.d.mts → compiler-manifest-Bl8kmLx9.d.mts} +118 -0
- package/dist/{compiler-manifest-Cj3--4ZJ.d.ts → compiler-manifest-Bl8kmLx9.d.ts} +118 -0
- package/dist/index.d.mts +47 -2
- package/dist/index.d.ts +47 -2
- package/dist/index.js +419 -59
- package/dist/index.mjs +419 -59
- package/dist/install-integrity.json +12 -2
- package/dist/plays/bundle-play-file.d.mts +2 -2
- package/dist/plays/bundle-play-file.d.ts +2 -2
- package/dist/plays/bundle-play-file.mjs +1361 -45
- package/package.json +1 -1
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"dist/bundling-sources/shared_libs/play-runtime/batching-types.ts",
|
|
39
39
|
"dist/bundling-sources/shared_libs/play-runtime/bounded-dispatch.ts",
|
|
40
40
|
"dist/bundling-sources/shared_libs/play-runtime/builtin-pacing.ts",
|
|
41
|
+
"dist/bundling-sources/shared_libs/play-runtime/cell-provenance.ts",
|
|
41
42
|
"dist/bundling-sources/shared_libs/play-runtime/cell-staleness.ts",
|
|
42
43
|
"dist/bundling-sources/shared_libs/play-runtime/child-execution-strategy.ts",
|
|
43
44
|
"dist/bundling-sources/shared_libs/play-runtime/context.ts",
|
|
@@ -51,6 +52,8 @@
|
|
|
51
52
|
"dist/bundling-sources/shared_libs/play-runtime/db-session-plan.ts",
|
|
52
53
|
"dist/bundling-sources/shared_libs/play-runtime/db-session.ts",
|
|
53
54
|
"dist/bundling-sources/shared_libs/play-runtime/default-batch-strategies.ts",
|
|
55
|
+
"dist/bundling-sources/shared_libs/play-runtime/docflow-node-io.ts",
|
|
56
|
+
"dist/bundling-sources/shared_libs/play-runtime/docflow-observation.ts",
|
|
54
57
|
"dist/bundling-sources/shared_libs/play-runtime/durability-store.ts",
|
|
55
58
|
"dist/bundling-sources/shared_libs/play-runtime/durable-call-cache.ts",
|
|
56
59
|
"dist/bundling-sources/shared_libs/play-runtime/durable-call-policy.ts",
|
|
@@ -80,6 +83,7 @@
|
|
|
80
83
|
"dist/bundling-sources/shared_libs/play-runtime/ledger-safe-payload.ts",
|
|
81
84
|
"dist/bundling-sources/shared_libs/play-runtime/live-events.ts",
|
|
82
85
|
"dist/bundling-sources/shared_libs/play-runtime/live-state-contract.ts",
|
|
86
|
+
"dist/bundling-sources/shared_libs/play-runtime/log-provenance.ts",
|
|
83
87
|
"dist/bundling-sources/shared_libs/play-runtime/map-chunk-limits.ts",
|
|
84
88
|
"dist/bundling-sources/shared_libs/play-runtime/map-execution-frame.ts",
|
|
85
89
|
"dist/bundling-sources/shared_libs/play-runtime/map-memory-limits.ts",
|
|
@@ -93,6 +97,7 @@
|
|
|
93
97
|
"dist/bundling-sources/shared_libs/play-runtime/play-call-execution.ts",
|
|
94
98
|
"dist/bundling-sources/shared_libs/play-runtime/play-input.ts",
|
|
95
99
|
"dist/bundling-sources/shared_libs/play-runtime/play-latency-trace.ts",
|
|
100
|
+
"dist/bundling-sources/shared_libs/play-runtime/play-node-scope.ts",
|
|
96
101
|
"dist/bundling-sources/shared_libs/play-runtime/play-runtime-batching-registry.ts",
|
|
97
102
|
"dist/bundling-sources/shared_libs/play-runtime/postgres-json.ts",
|
|
98
103
|
"dist/bundling-sources/shared_libs/play-runtime/profiles.ts",
|
|
@@ -191,11 +196,15 @@
|
|
|
191
196
|
"dist/bundling-sources/shared_libs/plays/dataset-summary.ts",
|
|
192
197
|
"dist/bundling-sources/shared_libs/plays/dataset.ts",
|
|
193
198
|
"dist/bundling-sources/shared_libs/plays/definition.ts",
|
|
199
|
+
"dist/bundling-sources/shared_libs/plays/docflow-binding-owner.ts",
|
|
200
|
+
"dist/bundling-sources/shared_libs/plays/docflow-binding.ts",
|
|
201
|
+
"dist/bundling-sources/shared_libs/plays/docflow.ts",
|
|
194
202
|
"dist/bundling-sources/shared_libs/plays/enrich-compat-adapter.ts",
|
|
195
203
|
"dist/bundling-sources/shared_libs/plays/enrich-play-compiler.ts",
|
|
196
204
|
"dist/bundling-sources/shared_libs/plays/file-refs.ts",
|
|
197
205
|
"dist/bundling-sources/shared_libs/plays/input-contract-definition.ts",
|
|
198
206
|
"dist/bundling-sources/shared_libs/plays/input-contract.ts",
|
|
207
|
+
"dist/bundling-sources/shared_libs/plays/play-exports.ts",
|
|
199
208
|
"dist/bundling-sources/shared_libs/plays/resolve-static-pipeline.ts",
|
|
200
209
|
"dist/bundling-sources/shared_libs/plays/row-identity.ts",
|
|
201
210
|
"dist/bundling-sources/shared_libs/plays/runtime-validation.ts",
|
|
@@ -204,6 +213,7 @@
|
|
|
204
213
|
"dist/bundling-sources/shared_libs/plays/static-pipeline.ts",
|
|
205
214
|
"dist/bundling-sources/shared_libs/plays/tool-category-descriptions.ts",
|
|
206
215
|
"dist/bundling-sources/shared_libs/plays/tool-codegen.ts",
|
|
216
|
+
"dist/bundling-sources/shared_libs/plays/ts-ast.ts",
|
|
207
217
|
"dist/bundling-sources/shared_libs/plays/user-code-safety.ts",
|
|
208
218
|
"dist/bundling-sources/shared_libs/product-notifications/contract.ts",
|
|
209
219
|
"dist/bundling-sources/shared_libs/runtime-env.ts",
|
|
@@ -215,8 +225,8 @@
|
|
|
215
225
|
"dist/cli/index.d.ts",
|
|
216
226
|
"dist/cli/index.js",
|
|
217
227
|
"dist/cli/index.mjs",
|
|
218
|
-
"dist/compiler-manifest-
|
|
219
|
-
"dist/compiler-manifest-
|
|
228
|
+
"dist/compiler-manifest-Bl8kmLx9.d.mts",
|
|
229
|
+
"dist/compiler-manifest-Bl8kmLx9.d.ts",
|
|
220
230
|
"dist/helpers.d.mts",
|
|
221
231
|
"dist/helpers.d.ts",
|
|
222
232
|
"dist/helpers.js",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as ToolExecutionErrorSchemaVersion, P as PlayAuthoringContractEdition, a as PlayArtifactKind$1, b as PlaySandboxRuntimeDeclaration, c as PlayCompilerManifest } from '../compiler-manifest-
|
|
2
|
-
export { d as PLAY_ARTIFACT_KINDS } from '../compiler-manifest-
|
|
1
|
+
import { T as ToolExecutionErrorSchemaVersion, P as PlayAuthoringContractEdition, a as PlayArtifactKind$1, b as PlaySandboxRuntimeDeclaration, c as PlayCompilerManifest } from '../compiler-manifest-Bl8kmLx9.mjs';
|
|
2
|
+
export { d as PLAY_ARTIFACT_KINDS } from '../compiler-manifest-Bl8kmLx9.mjs';
|
|
3
3
|
import '@sinclair/typebox';
|
|
4
4
|
|
|
5
5
|
type PlayPackageImport = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as ToolExecutionErrorSchemaVersion, P as PlayAuthoringContractEdition, a as PlayArtifactKind$1, b as PlaySandboxRuntimeDeclaration, c as PlayCompilerManifest } from '../compiler-manifest-
|
|
2
|
-
export { d as PLAY_ARTIFACT_KINDS } from '../compiler-manifest-
|
|
1
|
+
import { T as ToolExecutionErrorSchemaVersion, P as PlayAuthoringContractEdition, a as PlayArtifactKind$1, b as PlaySandboxRuntimeDeclaration, c as PlayCompilerManifest } from '../compiler-manifest-Bl8kmLx9.js';
|
|
2
|
+
export { d as PLAY_ARTIFACT_KINDS } from '../compiler-manifest-Bl8kmLx9.js';
|
|
3
3
|
import '@sinclair/typebox';
|
|
4
4
|
|
|
5
5
|
type PlayPackageImport = {
|