@elyx-code/project-logic-tree 0.0.7020 → 0.0.7021
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 +134 -134
- package/dist/index.d.ts +8 -0
- package/dist/index.js +7712 -7656
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -17474,6 +17474,14 @@ export declare enum BaseValueDescriptorIds {
|
|
|
17474
17474
|
resolveDeterministicResourceId(): string;
|
|
17475
17475
|
}
|
|
17476
17476
|
|
|
17477
|
+
export declare enum HttpEndpointPathValidationErrorCodes {
|
|
17478
|
+
PathMustStartWithSlash = "path-must-start-with-slash",
|
|
17479
|
+
PathContainsInvalidCharacters = "path-contains-invalid-characters",
|
|
17480
|
+
PathUnclosedCurlyBracket = "path-unclosed-curly-bracket",
|
|
17481
|
+
PathUnopenedCurlyBracket = "path-unopened-curly-bracket",
|
|
17482
|
+
PathEmptyCurlyBrackets = "path-empty-curly-brackets"
|
|
17483
|
+
}
|
|
17484
|
+
|
|
17477
17485
|
export declare enum HTTPOperations {
|
|
17478
17486
|
HttpRequest = "op-base-http-request"
|
|
17479
17487
|
}
|