@elyx-code/project-logic-tree 0.0.6461 → 0.0.6463

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
@@ -1766,7 +1766,8 @@ export declare enum CanvasEntityConnectionDisabledReason {
1766
1766
  CallIsInLowerScope = "call-is-in-lower-scope",
1767
1767
  OtherIncompatibleScopeReason = "other-incompatible-scope-reason",
1768
1768
  SiblingInternalCallAlreadyUsedInParentVariable = "sibling-internal-call-already-used-in-parent-variable",
1769
- ErrorOututMapCannotBeConnectedToParentSuccessBranchCallees = "error-output-map-cannot-be-connected-to-parent-success-branch-callees"
1769
+ ErrorOututMapCannotBeConnectedToParentSuccessBranchCallees = "error-output-map-cannot-be-connected-to-parent-success-branch-callees",
1770
+ SuccessOutputMapCannotBeConnectedToParentErrorBranchCallees = "success-output-map-cannot-be-connected-to-parent-error-branch-callees"
1770
1771
  }
1771
1772
 
1772
1773
  export declare type CanvasEntityDisabledReason = CanvasEntityConnectionDisabledReason | CanvasEntityTestingDisabledReason | CanvasEntityOtherDisabledReason;
@@ -6597,7 +6598,7 @@ export declare function getDraggablePlayableEntityTypeSchema(): z_2.ZodUnion<[z_
6597
6598
  type: import("../../..").EntityType.GlobalEvent;
6598
6599
  }>, z_2.ZodRecord<z_2.ZodString, z_2.ZodAny>]>]>]>;
6599
6600
 
6600
- export declare function getEarliestCommonAncestorOfAllCallers(entity: CallableEntityState): {
6601
+ export declare function getEarliestCommonAncestorOfAllCallers(entity: CallableEntityState, ignoreEarlierChainedCallers?: boolean): {
6601
6602
  ancestor: CallerEntityState;
6602
6603
  callType: 'success' | 'error' | 'entry' | 'loop-body';
6603
6604
  } | {