deepline 0.1.25 → 0.1.27
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/cli/index.js +118 -85
- package/dist/cli/index.mjs +103 -69
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/dist/repo/apps/play-runner-workers/src/coordinator-entry.ts +434 -102
- package/dist/repo/apps/play-runner-workers/src/dedup-do.ts +6 -1
- package/dist/repo/apps/play-runner-workers/src/entry.ts +1169 -719
- package/dist/repo/apps/play-runner-workers/src/runtime/dataset-handles.ts +418 -0
- package/dist/repo/sdk/src/client.ts +5 -1
- package/dist/repo/sdk/src/plays/bundle-play-file.ts +1 -1
- package/dist/repo/sdk/src/plays/harness-stub.ts +25 -55
- package/dist/repo/sdk/src/version.ts +1 -1
- package/dist/repo/shared_libs/play-runtime/execution-plan.ts +18 -8
- package/dist/repo/shared_libs/play-runtime/scheduler-backend.ts +5 -4
- package/dist/repo/shared_libs/play-runtime/step-lifecycle-tracker.ts +228 -0
- package/dist/repo/shared_libs/plays/bundling/index.ts +90 -51
- package/package.json +1 -1
- package/dist/repo/shared_libs/play-runtime/runtime-actions.ts +0 -208
|
@@ -1061,7 +1061,12 @@ export class PlayDedup implements DurableObject {
|
|
|
1061
1061
|
runId: body.runId,
|
|
1062
1062
|
status: body.status,
|
|
1063
1063
|
result: body.result,
|
|
1064
|
-
error:
|
|
1064
|
+
error:
|
|
1065
|
+
typeof body.error === 'string' && body.error.trim()
|
|
1066
|
+
? body.error.trim()
|
|
1067
|
+
: body.status === 'failed'
|
|
1068
|
+
? 'Cloudflare workflow failed before the runner reported an error.'
|
|
1069
|
+
: null,
|
|
1065
1070
|
totalRows: body.totalRows,
|
|
1066
1071
|
durationMs: body.durationMs,
|
|
1067
1072
|
playName: typeof body.playName === 'string' ? body.playName : null,
|