@cadenza.io/core 3.12.0 → 3.12.2

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.mjs CHANGED
@@ -321,7 +321,6 @@ var SignalBroker = class _SignalBroker {
321
321
  this.emit("sub_meta.signal_broker.emitting_signal", context);
322
322
  } else if (isSubMeta) {
323
323
  context.__isSubMeta = true;
324
- delete context.__signalEmission;
325
324
  } else {
326
325
  delete context.__signalEmission;
327
326
  }
@@ -1263,6 +1262,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
1263
1262
  emitWithMetadata(signal, data) {
1264
1263
  if (!this.task?.isHidden) {
1265
1264
  data.__signalEmission = {
1265
+ fullSignalName: signal,
1266
1266
  taskName: this.task.name,
1267
1267
  taskVersion: this.task.version,
1268
1268
  taskExecutionId: this.id,