@aikirun/worker 0.6.0 → 0.7.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -4
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -272,10 +272,7 @@ var WorkerHandleImpl = class {
272
272
  "aiki.component": "workflow-execution",
273
273
  "aiki.workflowId": workflowRun.workflowId,
274
274
  "aiki.workflowVersionId": workflowRun.workflowVersionId,
275
- "aiki.workflowRunId": workflowRun.id,
276
- ...meta && {
277
- "aiki.messageId": meta.messageId
278
- }
275
+ "aiki.workflowRunId": workflowRun.id
279
276
  });
280
277
  let heartbeatInterval;
281
278
  let shouldAcknowledge = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aikirun/worker",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "Worker SDK for Aiki - execute workflows and tasks with durable state management and automatic recovery",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -18,9 +18,9 @@
18
18
  "build": "tsup"
19
19
  },
20
20
  "dependencies": {
21
- "@aikirun/types": "0.6.0",
22
- "@aikirun/client": "0.6.0",
23
- "@aikirun/workflow": "0.6.0"
21
+ "@aikirun/types": "0.7.0",
22
+ "@aikirun/client": "0.7.0",
23
+ "@aikirun/workflow": "0.7.0"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public"