@uipath/maestro-sdk 1.198.0-preview.87 → 1.198.0-preview.90
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.js +9 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -25563,6 +25563,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
25563
25563
|
return uriTokens.join("");
|
|
25564
25564
|
}
|
|
25565
25565
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
25566
|
+
var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
|
|
25566
25567
|
function getParseError(parsed, matches) {
|
|
25567
25568
|
if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
|
|
25568
25569
|
return 'URI path must start with "/" when authority is present.';
|
|
@@ -25592,6 +25593,11 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
25592
25593
|
uri = "//" + uri;
|
|
25593
25594
|
}
|
|
25594
25595
|
}
|
|
25596
|
+
const authorityMatch = uri.match(AUTHORITY_PREFIX);
|
|
25597
|
+
if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
|
|
25598
|
+
parsed.error = "URI authority must not contain a literal backslash.";
|
|
25599
|
+
malformedAuthorityOrPort = true;
|
|
25600
|
+
}
|
|
25595
25601
|
const matches = uri.match(URI_PARSE);
|
|
25596
25602
|
if (matches) {
|
|
25597
25603
|
parsed.scheme = matches[1];
|
|
@@ -25635,7 +25641,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
25635
25641
|
if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
|
|
25636
25642
|
if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
|
|
25637
25643
|
try {
|
|
25638
|
-
parsed.host = URL
|
|
25644
|
+
parsed.host = new URL("http://" + parsed.host).hostname;
|
|
25639
25645
|
} catch (e) {
|
|
25640
25646
|
parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
|
|
25641
25647
|
}
|
|
@@ -122283,7 +122289,7 @@ class TextApiResponse {
|
|
|
122283
122289
|
var package_default = {
|
|
122284
122290
|
name: "@uipath/integrationservice-sdk",
|
|
122285
122291
|
license: "MIT",
|
|
122286
|
-
version: "1.198.0-preview.
|
|
122292
|
+
version: "1.198.0-preview.90",
|
|
122287
122293
|
repository: {
|
|
122288
122294
|
type: "git",
|
|
122289
122295
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -134018,4 +134024,4 @@ export {
|
|
|
134018
134024
|
BPMN_SPEC
|
|
134019
134025
|
};
|
|
134020
134026
|
|
|
134021
|
-
//# debugId=
|
|
134027
|
+
//# debugId=D3C2E21216FD73F764756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/maestro-sdk",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.198.0-preview.
|
|
4
|
+
"version": "1.198.0-preview.90",
|
|
5
5
|
"description": "SDK for the UiPath Maestro (PIMS) API — process instance management.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"files": [
|
|
43
43
|
"dist"
|
|
44
44
|
],
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "7fa615fb10f91f98f796a038ea70569336611f42"
|
|
46
46
|
}
|