@uipath/api-workflow-tool 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.
Files changed (2) hide show
  1. package/dist/tool.js +13 -7
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -50579,7 +50579,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
50579
50579
  package_default3 = {
50580
50580
  name: "@uipath/project-packager",
50581
50581
  license: "MIT",
50582
- version: "1.198.0-preview.87",
50582
+ version: "1.198.0-preview.90",
50583
50583
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
50584
50584
  type: "module",
50585
50585
  main: "./dist/index.js",
@@ -50973,7 +50973,7 @@ var init_package = __esm(() => {
50973
50973
  package_default4 = {
50974
50974
  name: "@uipath/project-packager",
50975
50975
  license: "MIT",
50976
- version: "1.198.0-preview.87",
50976
+ version: "1.198.0-preview.90",
50977
50977
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
50978
50978
  type: "module",
50979
50979
  main: "./dist/index.js",
@@ -77247,6 +77247,7 @@ var require_fast_uri = __commonJS((exports, module) => {
77247
77247
  return uriTokens.join("");
77248
77248
  }
77249
77249
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
77250
+ var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
77250
77251
  function getParseError(parsed, matches) {
77251
77252
  if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
77252
77253
  return 'URI path must start with "/" when authority is present.';
@@ -77276,6 +77277,11 @@ var require_fast_uri = __commonJS((exports, module) => {
77276
77277
  uri = "//" + uri;
77277
77278
  }
77278
77279
  }
77280
+ const authorityMatch = uri.match(AUTHORITY_PREFIX);
77281
+ if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
77282
+ parsed.error = "URI authority must not contain a literal backslash.";
77283
+ malformedAuthorityOrPort = true;
77284
+ }
77279
77285
  const matches = uri.match(URI_PARSE);
77280
77286
  if (matches) {
77281
77287
  parsed.scheme = matches[1];
@@ -77319,7 +77325,7 @@ var require_fast_uri = __commonJS((exports, module) => {
77319
77325
  if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
77320
77326
  if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
77321
77327
  try {
77322
- parsed.host = URL.domainToASCII(parsed.host.toLowerCase());
77328
+ parsed.host = new URL("http://" + parsed.host).hostname;
77323
77329
  } catch (e) {
77324
77330
  parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
77325
77331
  }
@@ -80421,7 +80427,7 @@ import"./packager-tool.js";
80421
80427
  var package_default = {
80422
80428
  name: "@uipath/api-workflow-tool",
80423
80429
  license: "MIT",
80424
- version: "1.198.0-preview.87",
80430
+ version: "1.198.0-preview.90",
80425
80431
  description: "Run UiPath API Workflows locally.",
80426
80432
  private: false,
80427
80433
  repository: {
@@ -88134,7 +88140,7 @@ class TextApiResponse {
88134
88140
  var package_default2 = {
88135
88141
  name: "@uipath/integrationservice-sdk",
88136
88142
  license: "MIT",
88137
- version: "1.198.0-preview.87",
88143
+ version: "1.198.0-preview.90",
88138
88144
  repository: {
88139
88145
  type: "git",
88140
88146
  url: "https://github.com/UiPath/cli.git",
@@ -97673,7 +97679,7 @@ function querystringSingleKey3(key, value, keyPrefix = "") {
97673
97679
  var package_default5 = {
97674
97680
  name: "@uipath/solution-sdk",
97675
97681
  license: "MIT",
97676
- version: "1.198.0-preview.87",
97682
+ version: "1.198.0-preview.90",
97677
97683
  repository: {
97678
97684
  type: "git",
97679
97685
  url: "https://github.com/UiPath/cli.git",
@@ -99962,4 +99968,4 @@ export {
99962
99968
  metadata
99963
99969
  };
99964
99970
 
99965
- //# debugId=A56056B62CE7DC5E64756E2164756E21
99971
+ //# debugId=D6EF6B50CCB3DF1C64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/api-workflow-tool",
3
3
  "license": "MIT",
4
- "version": "1.198.0-preview.87",
4
+ "version": "1.198.0-preview.90",
5
5
  "description": "Run UiPath API Workflows locally.",
6
6
  "private": false,
7
7
  "repository": {
@@ -23,5 +23,5 @@
23
23
  "files": [
24
24
  "dist"
25
25
  ],
26
- "gitHead": "b84a7a78e1a325c3dd3b39efd3018c49b38c789f"
26
+ "gitHead": "7fa615fb10f91f98f796a038ea70569336611f42"
27
27
  }