@elyx-code/project-logic-tree 0.0.6413 → 0.0.6414

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
@@ -3908,6 +3908,12 @@ export declare function flattenBuiltInBaseEntity(entity: IBuiltInBaseEntity | IB
3908
3908
  ignoreBuiltInBaseEntities?: boolean;
3909
3909
  }): (Element_2 | ElementTransfer | ElementShallowTransfer)[];
3910
3910
 
3911
+ export declare function flattenCallerAncestorsUntil(entity: CallableEntityState, until: CallerEntityState): {
3912
+ list: CallerEntityState[];
3913
+ last: CallerEntityState | null;
3914
+ callType: 'success' | 'error' | 'entry' | null;
3915
+ };
3916
+
3911
3917
  export declare function flattenCalls(entities: CallableEntityState[]): CallableEntityState[];
3912
3918
 
3913
3919
  export declare function flattenCanvasAncestorsUntil(entity: CanvasEntityState, until: CanvasEntityState): {
@@ -5454,7 +5460,13 @@ export declare function getColumnProperties(entity: DefinitionEntityState): Prop
5454
5460
 
5455
5461
  export declare function getCommonAncestor(entityA: EntityState, entityB: EntityState): EntityState | null;
5456
5462
 
5457
- export declare function getCommonAncestorOfAllCallers(entity: CallableEntityState): CallerEntityState | null;
5463
+ export declare function getCommonAncestorOfAllCallers(entity: CallableEntityState): {
5464
+ ancestor: CallerEntityState;
5465
+ callType: 'success' | 'error' | 'entry';
5466
+ } | {
5467
+ ancestor: null;
5468
+ callType: null;
5469
+ };
5458
5470
 
5459
5471
  export declare function getCommonChildren(entityA: CanvasEntityState, entityB: CanvasEntityState, seenEntities?: Set<EntityId>): CanvasEntityState[];
5460
5472