@elyx-code/project-logic-tree 0.0.6373 → 0.0.6375
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 +2 -1
- package/dist/index.js +7677 -7607
- package/dist/index.umd.cjs +69 -69
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1575,7 +1575,8 @@ export declare enum CanvasEntityConnectionDisabledReason {
|
|
|
1575
1575
|
CallerIsInLowerScope = "caller-is-in-lower-scope",
|
|
1576
1576
|
CallIsInHigherScope = "call-is-in-higher-scope",
|
|
1577
1577
|
CallIsInLowerScope = "call-is-in-lower-scope",
|
|
1578
|
-
OtherIncompatibleScopeReason = "other-incompatible-scope-reason"
|
|
1578
|
+
OtherIncompatibleScopeReason = "other-incompatible-scope-reason",
|
|
1579
|
+
SiblingInternalCallAlreadyUsedInParentVariable = "sibling-internal-call-already-used-in-parent-variable"
|
|
1579
1580
|
}
|
|
1580
1581
|
|
|
1581
1582
|
export declare type CanvasEntityDisabledReason = CanvasEntityConnectionDisabledReason | CanvasEntityTestingDisabledReason | CanvasEntityOtherDisabledReason;
|