@uipath/agent-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 +12 -6
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -60659,6 +60659,7 @@ var require_fast_uri = __commonJS((exports, module) => {
60659
60659
  return uriTokens.join("");
60660
60660
  }
60661
60661
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
60662
+ var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
60662
60663
  function getParseError(parsed, matches) {
60663
60664
  if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
60664
60665
  return 'URI path must start with "/" when authority is present.';
@@ -60688,6 +60689,11 @@ var require_fast_uri = __commonJS((exports, module) => {
60688
60689
  uri = "//" + uri;
60689
60690
  }
60690
60691
  }
60692
+ const authorityMatch = uri.match(AUTHORITY_PREFIX);
60693
+ if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
60694
+ parsed.error = "URI authority must not contain a literal backslash.";
60695
+ malformedAuthorityOrPort = true;
60696
+ }
60691
60697
  const matches = uri.match(URI_PARSE);
60692
60698
  if (matches) {
60693
60699
  parsed.scheme = matches[1];
@@ -60731,7 +60737,7 @@ var require_fast_uri = __commonJS((exports, module) => {
60731
60737
  if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
60732
60738
  if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
60733
60739
  try {
60734
- parsed.host = URL.domainToASCII(parsed.host.toLowerCase());
60740
+ parsed.host = new URL("http://" + parsed.host).hostname;
60735
60741
  } catch (e) {
60736
60742
  parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
60737
60743
  }
@@ -65286,7 +65292,7 @@ var init_package = __esm(() => {
65286
65292
  package_default5 = {
65287
65293
  name: "@uipath/integrationservice-sdk",
65288
65294
  license: "MIT",
65289
- version: "1.198.0-preview.87",
65295
+ version: "1.198.0-preview.90",
65290
65296
  repository: {
65291
65297
  type: "git",
65292
65298
  url: "https://github.com/UiPath/cli.git",
@@ -89588,7 +89594,7 @@ import"./packager-tool.js";
89588
89594
  var package_default = {
89589
89595
  name: "@uipath/agent-tool",
89590
89596
  license: "MIT",
89591
- version: "1.198.0-preview.87",
89597
+ version: "1.198.0-preview.90",
89592
89598
  description: "cli plugin for creating and managing UiPath low-code agents",
89593
89599
  private: false,
89594
89600
  repository: {
@@ -94607,7 +94613,7 @@ class TextApiResponse2 {
94607
94613
  var package_default3 = {
94608
94614
  name: "@uipath/solution-sdk",
94609
94615
  license: "MIT",
94610
- version: "1.198.0-preview.87",
94616
+ version: "1.198.0-preview.90",
94611
94617
  repository: {
94612
94618
  type: "git",
94613
94619
  url: "https://github.com/UiPath/cli.git",
@@ -98211,7 +98217,7 @@ class VoidApiResponse3 {
98211
98217
  var package_default4 = {
98212
98218
  name: "@uipath/agent-sdk",
98213
98219
  license: "MIT",
98214
- version: "1.198.0-preview.87",
98220
+ version: "1.198.0-preview.90",
98215
98221
  description: "SDK for the UiPath Agent Runtime API — evaluation execution and debug sessions.",
98216
98222
  repository: {
98217
98223
  type: "git",
@@ -128704,4 +128710,4 @@ export {
128704
128710
  metadata
128705
128711
  };
128706
128712
 
128707
- //# debugId=635F65C2E011BBD064756E2164756E21
128713
+ //# debugId=B0E23E5723F5EAD564756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/agent-tool",
3
3
  "license": "MIT",
4
- "version": "1.198.0-preview.87",
4
+ "version": "1.198.0-preview.90",
5
5
  "description": "cli plugin for creating and managing UiPath low-code agents",
6
6
  "private": false,
7
7
  "repository": {
@@ -26,5 +26,5 @@
26
26
  "files": [
27
27
  "dist"
28
28
  ],
29
- "gitHead": "b84a7a78e1a325c3dd3b39efd3018c49b38c789f"
29
+ "gitHead": "7fa615fb10f91f98f796a038ea70569336611f42"
30
30
  }