@aikirun/workflow 0.11.2 → 0.13.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.
- package/README.md +2 -2
- package/dist/index.js +3 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -32,8 +32,8 @@ Run with a client:
|
|
|
32
32
|
```typescript
|
|
33
33
|
import { client } from "@aikirun/client";
|
|
34
34
|
|
|
35
|
-
const aikiClient =
|
|
36
|
-
url: "http://localhost:
|
|
35
|
+
const aikiClient = client({
|
|
36
|
+
url: "http://localhost:9850",
|
|
37
37
|
redis: { host: "localhost", port: 6379 },
|
|
38
38
|
});
|
|
39
39
|
|
package/dist/index.js
CHANGED
|
@@ -298,6 +298,7 @@ import {
|
|
|
298
298
|
} from "@aikirun/types/workflow-run";
|
|
299
299
|
function event(params) {
|
|
300
300
|
return {
|
|
301
|
+
// biome-ignore lint/style/useNamingConvention: phantom type marker
|
|
301
302
|
_type: void 0,
|
|
302
303
|
schema: params?.schema
|
|
303
304
|
};
|
|
@@ -946,6 +947,8 @@ var WorkflowVersionImpl = class _WorkflowVersionImpl {
|
|
|
946
947
|
});
|
|
947
948
|
parentRunHandle.run.childWorkflowRuns[path] = {
|
|
948
949
|
id: newRun.id,
|
|
950
|
+
name: newRun.name,
|
|
951
|
+
versionId: newRun.versionId,
|
|
949
952
|
inputHash,
|
|
950
953
|
statusWaitResults: []
|
|
951
954
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aikirun/workflow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "Workflow SDK for Aiki - define durable workflows with tasks, sleeps, waits, and event handling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"build": "tsup"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@aikirun/types": "0.
|
|
21
|
+
"@aikirun/types": "0.13.0",
|
|
22
22
|
"@standard-schema/spec": "^1.1.0"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|