@codemation/eventbus-redis 0.0.35 → 0.0.37
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/CHANGELOG.md +14 -0
- package/dist/index.d.ts +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @codemation/eventbus-redis
|
|
2
2
|
|
|
3
|
+
## 0.0.37
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`d283b48`](https://github.com/MadeRelevant/codemation/commit/d283b481f01a1a259d38d25c1482006eff963384)]:
|
|
8
|
+
- @codemation/core@0.10.2
|
|
9
|
+
|
|
10
|
+
## 0.0.36
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`1f10121`](https://github.com/MadeRelevant/codemation/commit/1f10121a093ef0612a33c873419b032709c9964d)]:
|
|
15
|
+
- @codemation/core@0.10.1
|
|
16
|
+
|
|
3
17
|
## 0.0.35
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -128,6 +128,11 @@ interface NodeExecutionSnapshot {
|
|
|
128
128
|
inputsByPort?: NodeInputsByPort;
|
|
129
129
|
outputs?: NodeOutputs;
|
|
130
130
|
error?: NodeExecutionError;
|
|
131
|
+
/**
|
|
132
|
+
* When the node is a SubWorkflow invocation, the run id of the child run it spawned.
|
|
133
|
+
* Populated after the child run completes so the UI can deep-link to that specific execution.
|
|
134
|
+
*/
|
|
135
|
+
childRunId?: RunId;
|
|
131
136
|
}
|
|
132
137
|
/** Stable id for a single connection invocation row in {@link ConnectionInvocationRecord}. */
|
|
133
138
|
type ConnectionInvocationId = string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemation/eventbus-redis",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.37",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"ioredis": "^5.7.0",
|
|
32
|
-
"@codemation/core": "0.10.
|
|
32
|
+
"@codemation/core": "0.10.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "^25.3.5",
|