@elyx-code/project-logic-tree 0.0.6570 → 0.0.6572

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.ts CHANGED
@@ -9612,7 +9612,7 @@ export declare function getEarliestCommonCallerAncestor(entityA: ExecutableEntit
9612
9612
  callType: 'success' | 'error' | 'entry' | 'loop-body' | 'same-entity' | null;
9613
9613
  };
9614
9614
 
9615
- export declare function getEarliestSingleCallerAncestorOfValueWriterAndItsValueReaders(entity: VariableDeclarationState | OutputMapState): {
9615
+ export declare function getEarliestSingleCallerAncestorOfValueWriterAndItsValueReaders(entity: PassThroughCallableEntityWithOutputsState | OutputMapState): {
9616
9616
  ancestor: CallerEntityState | null;
9617
9617
  callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
9618
9618
  };
@@ -11557,6 +11557,11 @@ export declare function getTopLevelFunctionDeclarationOrActionDescriptor(a: Func
11557
11557
 
11558
11558
  export declare function getTopLevelParentEntityId(entity: EntityState): EntityId | null;
11559
11559
 
11560
+ /**
11561
+ * Get the touched canvas entities from the change set (added, updated, affected).
11562
+ * @param {ChangeSet} changeSet The change set to extract the touched canvas entities from
11563
+ * @returns {CanvasEntityState[]} An array of touched canvas entities
11564
+ */
11560
11565
  export declare function getTouchedCanvasEntitiesFromChangeSet(changeSet: ChangeSet): CanvasEntityState[];
11561
11566
 
11562
11567
  export declare function getUsedArgFromDeclaration(argumentDeclaration: ArgumentDeclarationState, entity: ConditionState | FunctionCallState | OperationState): InputMapState | null;