@elyx-code/project-logic-tree 0.0.6836 → 0.0.6838

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
@@ -9574,7 +9574,11 @@ export declare enum BaseValueDescriptorIds {
9574
9574
  CalledByErrorMustBePassThroughCallable = "called-by-error-must-be-pass-through-callable",
9575
9575
  CalledByErrorCannotBeConnectedToEntitiesCalledByOwnSuccessBranch = "called-by-error-cannot-be-connected-to-entities-called-by-own-success-branch",
9576
9576
  CalledBySuccessCannotBeConnectedToEntitiesCalledByOwnErrorBranch = "called-by-success-cannot-be-connected-to-entities-called-by-own-error-branch",
9577
- RedundantCall = "redundant-call"
9577
+ RedundantCall = "redundant-call",
9578
+ WouldMakeAnEarlierNodeBeCalledBeforeItsDeclaration = "would-make-an-earlier-node-be-called-before-its-declaration",
9579
+ CannotBeCalledBeforeDeclaration = "cannot-be-called-before-declaration",
9580
+ CannotBeCalledInParallelBranchToDeclaration = "cannot-be-called-in-parallel-branch-to-declaration",
9581
+ CannotBeHigherScopeThanDeclaration = "cannot-be-higher-scope-than-declaration"
9578
9582
  }
9579
9583
 
9580
9584
  export declare type CanvasEntityDisabledReason = CanvasEntityConnectionDisabledReason | CanvasEntityTestingDisabledReason | CanvasEntityOtherDisabledReason | StateMutationErrorCode;
@@ -14298,6 +14302,11 @@ export declare enum BaseValueDescriptorIds {
14298
14302
 
14299
14303
  export declare function flattenCallers(entity: CallableEntityState): CallerEntityState[];
14300
14304
 
14305
+ export declare function flattenCallersWithCallType(entity: CallableEntityState): {
14306
+ caller: CallerEntityState;
14307
+ callType: 'success' | 'error' | 'entry' | 'loop-body';
14308
+ }[];
14309
+
14301
14310
  export declare function flattenCalls(entities: CallableEntityState[], options?: {
14302
14311
  sorting?: 'local-y-axis';
14303
14312
  }): CallableEntityState[];