@workflow/core 5.0.0-beta.41 → 5.0.0-beta.43
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/create-hook.d.ts +9 -5
- package/dist/create-hook.d.ts.map +1 -1
- package/dist/create-hook.js +1 -1
- package/dist/events-consumer.d.ts +97 -0
- package/dist/events-consumer.d.ts.map +1 -1
- package/dist/events-consumer.js +147 -14
- package/dist/private.d.ts +31 -12
- package/dist/private.d.ts.map +1 -1
- package/dist/private.js +149 -26
- package/dist/runtime/constants.d.ts +62 -0
- package/dist/runtime/constants.d.ts.map +1 -1
- package/dist/runtime/constants.js +70 -1
- package/dist/runtime/helpers.d.ts +127 -93
- package/dist/runtime/helpers.d.ts.map +1 -1
- package/dist/runtime/helpers.js +149 -132
- package/dist/runtime/quickjs-entrypoint.d.ts +10 -9
- package/dist/runtime/quickjs-entrypoint.d.ts.map +1 -1
- package/dist/runtime/quickjs-entrypoint.js +162 -38
- package/dist/runtime/replay-budget.d.ts +8 -0
- package/dist/runtime/replay-budget.d.ts.map +1 -1
- package/dist/runtime/replay-budget.js +3 -3
- package/dist/runtime/resume-hook.d.ts.map +1 -1
- package/dist/runtime/resume-hook.js +53 -13
- package/dist/runtime/resume-latency.d.ts +143 -0
- package/dist/runtime/resume-latency.d.ts.map +1 -0
- package/dist/runtime/resume-latency.js +153 -0
- package/dist/runtime/run.d.ts.map +1 -1
- package/dist/runtime/run.js +54 -29
- package/dist/runtime/step-executor.d.ts +76 -13
- package/dist/runtime/step-executor.d.ts.map +1 -1
- package/dist/runtime/step-executor.js +171 -19
- package/dist/runtime/step-latency.d.ts +6 -0
- package/dist/runtime/step-latency.d.ts.map +1 -1
- package/dist/runtime/step-latency.js +3 -1
- package/dist/runtime/suspension-handler.d.ts +119 -8
- package/dist/runtime/suspension-handler.d.ts.map +1 -1
- package/dist/runtime/suspension-handler.js +643 -46
- package/dist/runtime/world-compatibility.d.ts +6 -5
- package/dist/runtime/world-compatibility.d.ts.map +1 -1
- package/dist/runtime/world-compatibility.js +7 -6
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +583 -142
- package/dist/serialization/codec-devalue.d.ts.map +1 -1
- package/dist/serialization/codec-devalue.js +15 -4
- package/dist/serialization.d.ts +10 -2
- package/dist/serialization.d.ts.map +1 -1
- package/dist/serialization.js +55 -8
- package/dist/telemetry/semantic-conventions.d.ts +81 -0
- package/dist/telemetry/semantic-conventions.d.ts.map +1 -1
- package/dist/telemetry/semantic-conventions.js +67 -1
- package/dist/telemetry.d.ts +6 -0
- package/dist/telemetry.d.ts.map +1 -1
- package/dist/telemetry.js +22 -1
- package/dist/test-support/orchestrator-context.d.ts +25 -0
- package/dist/test-support/orchestrator-context.d.ts.map +1 -0
- package/dist/test-support/orchestrator-context.js +91 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +2 -2
- package/dist/workflow/create-hook.js +2 -2
- package/dist/workflow/hook.js +3 -3
- package/dist/workflow.js +43 -2
- package/docs/foundations/hooks.mdx +2 -2
- package/docs/foundations/streaming.mdx +24 -0
- package/docs/how-it-works/event-sourcing.mdx +39 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workflow/core",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.43",
|
|
4
4
|
"description": "Core runtime and engine for Workflow SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -94,12 +94,12 @@
|
|
|
94
94
|
"semver": "7.7.4",
|
|
95
95
|
"ulid": "~3.0.1",
|
|
96
96
|
"zod": "~4.3.6",
|
|
97
|
-
"@workflow/errors": "5.0.0-beta.
|
|
97
|
+
"@workflow/errors": "5.0.0-beta.17",
|
|
98
98
|
"@workflow/serde": "5.0.0-beta.2",
|
|
99
99
|
"@workflow/utils": "5.0.0-beta.8",
|
|
100
|
-
"@workflow/world": "5.0.0-beta.
|
|
101
|
-
"@workflow/world-local": "5.0.0-beta.
|
|
102
|
-
"@workflow/world-vercel": "5.0.0-beta.
|
|
100
|
+
"@workflow/world": "5.0.0-beta.28",
|
|
101
|
+
"@workflow/world-local": "5.0.0-beta.37",
|
|
102
|
+
"@workflow/world-vercel": "5.0.0-beta.39"
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@opentelemetry/api": "1.9.0",
|