@codemation/eventbus-redis 0.0.18 → 0.0.21
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 +21 -0
- package/dist/index.d.ts +7 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @codemation/eventbus-redis
|
|
2
2
|
|
|
3
|
+
## 0.0.21
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`a72444e`](https://github.com/MadeRelevant/codemation/commit/a72444e25c4e744a9a90e231a59c93f8d90346e5), [`a72444e`](https://github.com/MadeRelevant/codemation/commit/a72444e25c4e744a9a90e231a59c93f8d90346e5)]:
|
|
8
|
+
- @codemation/core@0.2.0
|
|
9
|
+
|
|
10
|
+
## 0.0.20
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`cbfe843`](https://github.com/MadeRelevant/codemation/commit/cbfe843ef2363e400a219f4d0bcd05b091ab83b4)]:
|
|
15
|
+
- @codemation/core@0.1.0
|
|
16
|
+
|
|
17
|
+
## 0.0.19
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`405c854`](https://github.com/MadeRelevant/codemation/commit/405c8541961f41dcba653f352691a821b0470ca0)]:
|
|
22
|
+
- @codemation/core@0.0.19
|
|
23
|
+
|
|
3
24
|
## 0.0.18
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -135,6 +135,10 @@ interface PersistedRunState {
|
|
|
135
135
|
runId: RunId;
|
|
136
136
|
workflowId: WorkflowId;
|
|
137
137
|
startedAt: string;
|
|
138
|
+
/** Canonical terminal time for listings and retention when persisted on the run root. */
|
|
139
|
+
finishedAt?: string;
|
|
140
|
+
/** Optimistic concurrency / CAS on the run aggregate (repository may increment on save). */
|
|
141
|
+
revision?: number;
|
|
138
142
|
parent?: ParentExecutionRef;
|
|
139
143
|
executionOptions?: RunExecutionOptions;
|
|
140
144
|
control?: PersistedRunControlState;
|
|
@@ -230,8 +234,9 @@ interface Edge {
|
|
|
230
234
|
}
|
|
231
235
|
type NodeConnectionName = string;
|
|
232
236
|
/**
|
|
233
|
-
* Named connection from
|
|
234
|
-
* but are not traversed by the main execution graph.
|
|
237
|
+
* Named connection from a parent node to child nodes that exist in {@link WorkflowDefinition.nodes}
|
|
238
|
+
* but are not traversed by the main execution graph. Parents are commonly executable nodes, but may
|
|
239
|
+
* also be connection-owned nodes for recursive agent attachments.
|
|
235
240
|
*/
|
|
236
241
|
interface WorkflowNodeConnection {
|
|
237
242
|
readonly parentNodeId: NodeId;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemation/eventbus-redis",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
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.0
|
|
32
|
+
"@codemation/core": "0.2.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "^25.3.5",
|