@cadenza.io/core 3.0.17 → 3.0.18
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/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -816,8 +816,8 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
816
816
|
filter: {
|
|
817
817
|
taskName: this.task.name,
|
|
818
818
|
taskVersion: this.task.version,
|
|
819
|
-
|
|
820
|
-
|
|
819
|
+
predecessorTaskName: node.task.name,
|
|
820
|
+
predecessorTaskVersion: node.task.version
|
|
821
821
|
}
|
|
822
822
|
});
|
|
823
823
|
});
|
|
@@ -999,6 +999,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
999
999
|
};
|
|
1000
1000
|
const context = this.context.getMetadata();
|
|
1001
1001
|
data.__metadata = {
|
|
1002
|
+
...data.__metadata,
|
|
1002
1003
|
__routineExecId: this.routineExecId,
|
|
1003
1004
|
__executionTraceId: (_b = (_a = context.__metadata) == null ? void 0 : _a.__executionTraceId) != null ? _b : context.__executionTraceId
|
|
1004
1005
|
};
|
|
@@ -1017,6 +1018,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
1017
1018
|
};
|
|
1018
1019
|
const context = this.context.getMetadata();
|
|
1019
1020
|
data.__metadata = {
|
|
1021
|
+
...data.__metadata,
|
|
1020
1022
|
__routineExecId: this.routineExecId,
|
|
1021
1023
|
__executionTraceId: (_b = (_a = context.__metadata) == null ? void 0 : _a.__executionTraceId) != null ? _b : context.__executionTraceId
|
|
1022
1024
|
};
|