@cadenza.io/core 3.5.1 → 3.6.0

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.d.mts CHANGED
@@ -579,6 +579,7 @@ declare class GraphRoutine extends SignalEmitter {
579
579
  readonly description: string;
580
580
  readonly isMeta: boolean;
581
581
  tasks: Set<Task>;
582
+ registered: boolean;
582
583
  observedSignals: Set<string>;
583
584
  constructor(name: string, tasks: Task[], description: string, isMeta?: boolean);
584
585
  /**
package/dist/index.d.ts CHANGED
@@ -579,6 +579,7 @@ declare class GraphRoutine extends SignalEmitter {
579
579
  readonly description: string;
580
580
  readonly isMeta: boolean;
581
581
  tasks: Set<Task>;
582
+ registered: boolean;
582
583
  observedSignals: Set<string>;
583
584
  constructor(name: string, tasks: Task[], description: string, isMeta?: boolean);
584
585
  /**
package/dist/index.js CHANGED
@@ -1382,6 +1382,7 @@ var GraphRoutine = class extends SignalEmitter {
1382
1382
  this.version = 1;
1383
1383
  this.isMeta = false;
1384
1384
  this.tasks = /* @__PURE__ */ new Set();
1385
+ this.registered = false;
1385
1386
  this.observedSignals = /* @__PURE__ */ new Set();
1386
1387
  this.name = name;
1387
1388
  this.description = description;