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

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
@@ -9566,6 +9566,7 @@ export declare enum BaseValueDescriptorIds {
9566
9566
  CannotInteractWithOutputInVariableWithInternalCalls = "cannot-interact-with-output-in-variable-with-internal-calls",
9567
9567
  PropertyIsConstantItsValueCantBeReset = "property-is-constant-its-value-cant-be-reset",
9568
9568
  CannotWriteValueOfGlobalVariableDeclaration = "cannot-write-value-of-global-variable-declaration",
9569
+ CannotCallGlobalVariableDeclaration = "cannot-call-global-variable-declaration",
9569
9570
  CannotReSetValueOfConstantVariable = "cannot-reset-value-of-constant-variable",
9570
9571
  CannotConnectToOwnNode = "cannot-connect-to-own-node",
9571
9572
  VariableDeclarationCannotBeMovedToLowerScopeBecauseInstancesUsage = "variable-declaration-cannot-be-moved-to-lower-scope-because-instances-usage",
@@ -9574,6 +9575,7 @@ export declare enum BaseValueDescriptorIds {
9574
9575
  CalledByErrorMustBePassThroughCallable = "called-by-error-must-be-pass-through-callable",
9575
9576
  CalledByErrorCannotBeConnectedToEntitiesCalledByOwnSuccessBranch = "called-by-error-cannot-be-connected-to-entities-called-by-own-success-branch",
9576
9577
  CalledBySuccessCannotBeConnectedToEntitiesCalledByOwnErrorBranch = "called-by-success-cannot-be-connected-to-entities-called-by-own-error-branch",
9578
+ EntityAlreadyCalledBySuccessCannotBeConnectedToUnrelatedErrorBranch = "entity-already-called-by-success-cannot-be-connected-to-unrelated-error-branch",
9577
9579
  RedundantCall = "redundant-call",
9578
9580
  WouldMakeAnEarlierNodeBeCalledBeforeItsDeclaration = "would-make-an-earlier-node-be-called-before-its-declaration",
9579
9581
  CannotBeCalledBeforeDeclaration = "cannot-be-called-before-declaration",
@@ -21499,11 +21501,7 @@ export declare enum BaseValueDescriptorIds {
21499
21501
  }
21500
21502
 
21501
21503
  export declare interface IConnectionCompatibleOptions {
21502
- [id: EntityId]: {
21503
- requiresCallConnectionTo: CallableEntityState | null;
21504
- requiresCallConnectionToFrom: CallerEntityState | null;
21505
- entity: UserManagedEntityState;
21506
- };
21504
+ [id: EntityId]: ICompatibleConnectionOption;
21507
21505
  }
21508
21506
 
21509
21507
  export declare interface IConnectionIncompatibleOptions {