@elyx-code/project-logic-tree 0.0.6698 → 0.0.6700

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
@@ -14132,10 +14132,14 @@ export declare function flattenPropertyAsync(entity: IProperty | IPropertyTransf
14132
14132
 
14133
14133
  export declare function flattenRelatedCallableElementsOnTheRight(entity: CanvasEntityState | ProjectState | InternalCallState, respectCollapse?: boolean): CallableEntityState[];
14134
14134
 
14135
+ export declare function flattenRelatedCallableElementsOnTheRightAsync(entity: CanvasEntityState | ProjectState | InternalCallState, respectCollapse?: boolean, options?: YieldOptions): Promise<CallableEntityState[]>;
14136
+
14135
14137
  export declare function flattenRelatedCanvasElementsOnTheLeft(entity: CanvasEntityState): CanvasEntityState[];
14136
14138
 
14137
14139
  export declare function flattenRelatedCanvasElementsOnTheRight(entity: CanvasEntityState | ProjectState | InternalCallState, respectCollapse?: boolean): CanvasEntityState[];
14138
14140
 
14141
+ export declare function flattenRelatedCanvasElementsOnTheRightAsync(entity: CanvasEntityState | ProjectState | InternalCallState, respectCollapse?: boolean, options?: YieldOptions): Promise<CanvasEntityState[]>;
14142
+
14139
14143
  export declare function flattenReturnStatement(entity: IReturnStatement | IReturnStatementTransfer | IReturnStatementShallowTransfer, seenEntities?: Set<EntityId>, options?: {
14140
14144
  ignoreBuiltInBaseEntities?: boolean;
14141
14145
  }): (Element_2 | ElementTransfer | ElementShallowTransfer)[];
@@ -18640,6 +18644,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
18640
18644
 
18641
18645
  export declare function getRelatedCallableElementsOnTheRight(entity: CanvasEntityState | ProjectState | InternalCallState, respectCollapse?: boolean): CallableEntityState[];
18642
18646
 
18647
+ export declare function getRelatedCallableElementsOnTheRightAsync(entity: CanvasEntityState | ProjectState | InternalCallState, respectCollapse?: boolean, options?: YieldOptions): Promise<CallableEntityState[]>;
18648
+
18643
18649
  export declare function getRelatedCanvasElementsOnTheLeft(entity: CanvasEntityState): CanvasEntityState[];
18644
18650
 
18645
18651
  export declare function getRelatedCanvasElementsOnTheLeftFromTransfer(entity: DraggableElement | DraggableElementTransfer | DraggableElementShallowTransfer, allKnownEntities: Record<EntityId, Element_2 | ElementTransfer | ElementShallowTransfer>): (DraggableElement | DraggableElementTransfer | DraggableElementShallowTransfer)[];
@@ -18654,11 +18660,11 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
18654
18660
  export declare function getRelatedCanvasElementsOnTheRight(entity: CanvasEntityState | ProjectState | InternalCallState, respectCollapse?: boolean): CanvasEntityState[];
18655
18661
 
18656
18662
  /**
18657
- * (ASYNC) Get all the entities that are related to the given entity on the right
18663
+ * Get all the entities that are related to the given entity on the right
18658
18664
  * This includes:
18659
- * - entities called by the given entity
18660
- * - entities that read from the given entity,
18661
- * both variables and other canvas entities that are the parent of the value reading entity
18665
+ * - entities called by the given entity
18666
+ * - entities that read from the given entity,
18667
+ * both variables and other canvas entities that are the parent of the value reading entity
18662
18668
  */
18663
18669
  export declare function getRelatedCanvasElementsOnTheRightAsync(entity: CanvasEntityState | ProjectState | InternalCallState, respectCollapse?: boolean, options?: YieldOptions): Promise<CanvasEntityState[]>;
18664
18670