@elyx-code/project-logic-tree 0.0.6485 → 0.0.6486

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
@@ -4130,6 +4130,8 @@ export declare function flattenCallerAncestorsUntil(entity: CallableEntityState,
4130
4130
  callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
4131
4131
  };
4132
4132
 
4133
+ export declare function flattenCallers(entity: CallableEntityState): CallerEntityState[];
4134
+
4133
4135
  export declare function flattenCalls(entities: CallableEntityState[]): CallableEntityState[];
4134
4136
 
4135
4137
  export declare function flattenCanvasAncestorsUntil(entity: CanvasEntityState, until: CanvasEntityState): {
@@ -14585,6 +14587,11 @@ export declare function resolveDefinitionEntityDataTypeLabel(entity: DefinitionE
14585
14587
 
14586
14588
  export declare function resolveDefinitionEntitySubheader(entity: DefinitionEntityState): string;
14587
14589
 
14590
+ export declare function resolveEarliestSingleCallerAncestor(entity: CallableEntityState): {
14591
+ ancestor: CallerEntityState | null;
14592
+ callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
14593
+ };
14594
+
14588
14595
  export declare function resolveEntityCodeName(entity: EntityPayloadUnion, project: ProjectState): string | null;
14589
14596
 
14590
14597
  export declare function resolveEntityDataTypeLabel(entity: PropertyState | EntityWithValueState | ValueDescriptorState): string;