@elyx-code/project-logic-tree 0.0.6829 → 0.0.6830
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.cjs +109 -109
- package/dist/index.d.ts +3 -1
- package/dist/index.js +4570 -4468
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9572,7 +9572,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
9572
9572
|
CannotChangeScopeBecauseItIsCalledByOtherEntities = "cannot-change-scope-because-it-is-called-by-other-entities",
|
|
9573
9573
|
CannotChangeScopeBecauseItCallsOtherEntities = "cannot-change-scope-because-it-calls-other-entities",
|
|
9574
9574
|
CalledByErrorMustBePassThroughCallable = "called-by-error-must-be-pass-through-callable",
|
|
9575
|
-
CalledByErrorCannotBeConnectedToEntitiesCalledByOwnSuccessBranch = "called-by-error-cannot-be-connected-to-entities-called-by-own-success-branch"
|
|
9575
|
+
CalledByErrorCannotBeConnectedToEntitiesCalledByOwnSuccessBranch = "called-by-error-cannot-be-connected-to-entities-called-by-own-success-branch",
|
|
9576
|
+
CalledBySuccessCannotBeConnectedToEntitiesCalledByOwnErrorBranch = "called-by-success-cannot-be-connected-to-entities-called-by-own-error-branch",
|
|
9577
|
+
RedundantCall = "redundant-call"
|
|
9576
9578
|
}
|
|
9577
9579
|
|
|
9578
9580
|
export declare type CanvasEntityDisabledReason = CanvasEntityConnectionDisabledReason | CanvasEntityTestingDisabledReason | CanvasEntityOtherDisabledReason | StateMutationErrorCode;
|