@elyx-code/project-logic-tree 0.0.7053 → 0.0.7055
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 +33 -33
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3692 -3719
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13260,7 +13260,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
13260
13260
|
CalledInParallelBranchToDeclaration = "called-in-parallel-branch-to-declaration",
|
|
13261
13261
|
HigherScopeThanDeclaration = "higher-scope-than-declaration",
|
|
13262
13262
|
ParentScopeRequiresReturnCurrentCatchesErrorWithNoCalls = "parent-scope-requires-return-current-catches-error-with-no-calls",
|
|
13263
|
-
ParentScopeRequiresReturnCurrentHasNoSuccessCalls = "parent-scope-requires-return-current-has-no-success-calls"
|
|
13263
|
+
ParentScopeRequiresReturnCurrentHasNoSuccessCalls = "parent-scope-requires-return-current-has-no-success-calls",
|
|
13264
|
+
EndpointPathConflict = "endpoint-path-conflict",
|
|
13265
|
+
SharedDriveMountPathConflict = "shared-drive-mount-path-conflict"
|
|
13264
13266
|
}
|
|
13265
13267
|
|
|
13266
13268
|
export declare type EntityPayloadUnion = BuiltInBaseEntityPayloadUnion | ProjectPayloadUnion | InstalledProjectPayloadUnion | DefinitionEntityPayloadUnion | FunctionDeclarationPayloadUnion | GlobalEventPayloadUnion | VariableDeclarationPayloadUnion | VariableInstancePayloadUnion | InputMapPayloadUnion | OutputMapPayloadUnion | ConditionPayloadUnion | OperationPayloadUnion | FunctionCallPayloadUnion | ArgumentDeclarationPayloadUnion | PrimitiveEntityPayloadUnion | DataTypePayloadUnion | PropertyPayloadUnion | ActionDescriptorPayloadUnion | ReturnStatementPayloadUnion | ContinueStatementPayloadUnion | BreakStatementPayloadUnion | LoopPayloadUnion | SearchPayloadUnion | ValueDescriptorPayloadUnion | InternalCallPayloadUnion | LiteralValuePayloadUnion;
|