@elyx-code/project-logic-tree 0.0.7020 → 0.0.7022
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 +154 -154
- package/dist/index.d.ts +11 -0
- package/dist/index.js +23362 -23290
- 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;
|
|
@@ -17474,6 +17476,15 @@ export declare enum BaseValueDescriptorIds {
|
|
|
17474
17476
|
resolveDeterministicResourceId(): string;
|
|
17475
17477
|
}
|
|
17476
17478
|
|
|
17479
|
+
export declare enum HttpEndpointPathValidationErrorCodes {
|
|
17480
|
+
PathMustStartWithSlash = "path-must-start-with-slash",
|
|
17481
|
+
PathContainsInvalidCharacters = "path-contains-invalid-characters",
|
|
17482
|
+
PathUnclosedCurlyBracket = "path-unclosed-curly-bracket",
|
|
17483
|
+
PathUnopenedCurlyBracket = "path-unopened-curly-bracket",
|
|
17484
|
+
PathEmptyCurlyBrackets = "path-empty-curly-brackets",
|
|
17485
|
+
PathConflictsWithExistingEndpoint = "path-conflicts-with-existing-endpoint"
|
|
17486
|
+
}
|
|
17487
|
+
|
|
17477
17488
|
export declare enum HTTPOperations {
|
|
17478
17489
|
HttpRequest = "op-base-http-request"
|
|
17479
17490
|
}
|