@elyx-code/project-logic-tree 0.0.7021 → 0.0.7023
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 +252 -252
- package/dist/index.d.ts +4 -1
- package/dist/index.js +32866 -32806
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10019,6 +10019,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10019
10019
|
*/
|
|
10020
10020
|
export declare function checkParentEntryPointRequiresEndingBranchesInReturn(self: PassThroughCallableEntityState): boolean;
|
|
10021
10021
|
|
|
10022
|
+
export declare function checkPathConflict(path1: string, path2: string): boolean;
|
|
10023
|
+
|
|
10022
10024
|
export declare function checkReachesOrIsTarget(entity: ExecutableEntityState, target: CallableEntityState): 'success' | 'error' | 'entry' | 'loop-body' | 'same-entity' | null;
|
|
10023
10025
|
|
|
10024
10026
|
export declare function checkScopeCompatibility(entityA: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer, entityB: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer, project: ProjectState): ScopeCompatibility;
|
|
@@ -17479,7 +17481,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
17479
17481
|
PathContainsInvalidCharacters = "path-contains-invalid-characters",
|
|
17480
17482
|
PathUnclosedCurlyBracket = "path-unclosed-curly-bracket",
|
|
17481
17483
|
PathUnopenedCurlyBracket = "path-unopened-curly-bracket",
|
|
17482
|
-
PathEmptyCurlyBrackets = "path-empty-curly-brackets"
|
|
17484
|
+
PathEmptyCurlyBrackets = "path-empty-curly-brackets",
|
|
17485
|
+
PathConflictsWithExistingEndpoint = "path-conflicts-with-existing-endpoint"
|
|
17483
17486
|
}
|
|
17484
17487
|
|
|
17485
17488
|
export declare enum HTTPOperations {
|