@uipath/case-tool 1.198.1-preview.86 → 1.198.1-preview.88

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 +11 -5
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -261789,6 +261789,7 @@ var require_fast_uri = __commonJS((exports, module) => {
261789
261789
  return uriTokens.join("");
261790
261790
  }
261791
261791
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
261792
+ var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
261792
261793
  function getParseError(parsed, matches) {
261793
261794
  if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
261794
261795
  return 'URI path must start with "/" when authority is present.';
@@ -261818,6 +261819,11 @@ var require_fast_uri = __commonJS((exports, module) => {
261818
261819
  uri = "//" + uri;
261819
261820
  }
261820
261821
  }
261822
+ const authorityMatch = uri.match(AUTHORITY_PREFIX);
261823
+ if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
261824
+ parsed.error = "URI authority must not contain a literal backslash.";
261825
+ malformedAuthorityOrPort = true;
261826
+ }
261821
261827
  const matches = uri.match(URI_PARSE);
261822
261828
  if (matches) {
261823
261829
  parsed.scheme = matches[1];
@@ -261861,7 +261867,7 @@ var require_fast_uri = __commonJS((exports, module) => {
261861
261867
  if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
261862
261868
  if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
261863
261869
  try {
261864
- parsed.host = URL.domainToASCII(parsed.host.toLowerCase());
261870
+ parsed.host = new URL("http://" + parsed.host).hostname;
261865
261871
  } catch (e) {
261866
261872
  parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
261867
261873
  }
@@ -280798,7 +280804,7 @@ import"./packager-tool.js";
280798
280804
  var package_default = {
280799
280805
  name: "@uipath/case-tool",
280800
280806
  license: "MIT",
280801
- version: "1.198.1-preview.86",
280807
+ version: "1.198.1-preview.88",
280802
280808
  description: "Manage Case Management instances, processes, and incidents.",
280803
280809
  private: false,
280804
280810
  repository: {
@@ -358189,7 +358195,7 @@ class TextApiResponse {
358189
358195
  var package_default2 = {
358190
358196
  name: "@uipath/integrationservice-sdk",
358191
358197
  license: "MIT",
358192
- version: "1.198.0-preview.86",
358198
+ version: "1.198.0-preview.88",
358193
358199
  repository: {
358194
358200
  type: "git",
358195
358201
  url: "https://github.com/UiPath/cli.git",
@@ -372282,7 +372288,7 @@ function querystringSingleKey4(key, value, keyPrefix = "") {
372282
372288
  var package_default4 = {
372283
372289
  name: "@uipath/solution-sdk",
372284
372290
  license: "MIT",
372285
- version: "1.198.0-preview.86",
372291
+ version: "1.198.0-preview.88",
372286
372292
  repository: {
372287
372293
  type: "git",
372288
372294
  url: "https://github.com/UiPath/cli.git",
@@ -386646,4 +386652,4 @@ export {
386646
386652
  metadata
386647
386653
  };
386648
386654
 
386649
- //# debugId=1037B93D3F07500D64756E2164756E21
386655
+ //# debugId=08E96B9A16750CD064756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/case-tool",
3
3
  "license": "MIT",
4
- "version": "1.198.1-preview.86",
4
+ "version": "1.198.1-preview.88",
5
5
  "description": "Manage Case Management instances, processes, and incidents.",
6
6
  "private": false,
7
7
  "repository": {
@@ -26,5 +26,5 @@
26
26
  "files": [
27
27
  "dist"
28
28
  ],
29
- "gitHead": "e6930a7d30dc12735ec0dc6fd7c4720bbb99e936"
29
+ "gitHead": "9be5d51c7d9ccd184c980771e7f06e240c75a9e2"
30
30
  }