@cadenza.io/core 3.0.21 → 3.0.22
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 +1 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -885,7 +885,6 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
885
885
|
isRunning: false,
|
|
886
886
|
isComplete: true,
|
|
887
887
|
resultContext: this.context.export(),
|
|
888
|
-
//TODO: this needs processing
|
|
889
888
|
errored: this.errored,
|
|
890
889
|
failed: this.failed,
|
|
891
890
|
errorMessage: context.__error,
|
|
@@ -905,7 +904,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
905
904
|
data: {
|
|
906
905
|
isRunning: false,
|
|
907
906
|
isComplete: true,
|
|
908
|
-
resultContext:
|
|
907
|
+
resultContext: this.context.id,
|
|
909
908
|
progress: 1,
|
|
910
909
|
ended: formatTimestamp(end)
|
|
911
910
|
},
|