@uipath/flow-tool 1.198.0-preview.86 → 1.198.0-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.
package/dist/init.js CHANGED
@@ -21950,6 +21950,7 @@ var require_fast_uri = __commonJS((exports, module) => {
21950
21950
  return uriTokens.join("");
21951
21951
  }
21952
21952
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
21953
+ var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
21953
21954
  function getParseError(parsed, matches) {
21954
21955
  if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
21955
21956
  return 'URI path must start with "/" when authority is present.';
@@ -21979,6 +21980,11 @@ var require_fast_uri = __commonJS((exports, module) => {
21979
21980
  uri = "//" + uri;
21980
21981
  }
21981
21982
  }
21983
+ const authorityMatch = uri.match(AUTHORITY_PREFIX);
21984
+ if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
21985
+ parsed.error = "URI authority must not contain a literal backslash.";
21986
+ malformedAuthorityOrPort = true;
21987
+ }
21982
21988
  const matches = uri.match(URI_PARSE);
21983
21989
  if (matches) {
21984
21990
  parsed.scheme = matches[1];
@@ -22022,7 +22028,7 @@ var require_fast_uri = __commonJS((exports, module) => {
22022
22028
  if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
22023
22029
  if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
22024
22030
  try {
22025
- parsed.host = URL.domainToASCII(parsed.host.toLowerCase());
22031
+ parsed.host = new URL("http://" + parsed.host).hostname;
22026
22032
  } catch (e) {
22027
22033
  parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
22028
22034
  }
@@ -195580,7 +195586,7 @@ class TextApiResponse {
195580
195586
  var package_default = {
195581
195587
  name: "@uipath/integrationservice-sdk",
195582
195588
  license: "MIT",
195583
- version: "1.198.0-preview.86",
195589
+ version: "1.198.0-preview.88",
195584
195590
  repository: {
195585
195591
  type: "git",
195586
195592
  url: "https://github.com/UiPath/cli.git",
@@ -202374,7 +202380,7 @@ function querystringSingleKey4(key, value, keyPrefix = "") {
202374
202380
  var package_default3 = {
202375
202381
  name: "@uipath/solution-sdk",
202376
202382
  license: "MIT",
202377
- version: "1.198.0-preview.86",
202383
+ version: "1.198.0-preview.88",
202378
202384
  repository: {
202379
202385
  type: "git",
202380
202386
  url: "https://github.com/UiPath/cli.git",
@@ -204910,7 +204916,7 @@ init_dist2();
204910
204916
  // ../packager/packager-tool-flow/package.json
204911
204917
  var package_default4 = {
204912
204918
  name: "@uipath/packager-tool-flow",
204913
- version: "1.198.0-preview.86",
204919
+ version: "1.198.0-preview.88",
204914
204920
  description: "UiPath Flow tool implementation",
204915
204921
  type: "module",
204916
204922
  exports: {
@@ -218773,4 +218779,4 @@ export {
218773
218779
  flowInitAsync
218774
218780
  };
218775
218781
 
218776
- //# debugId=D9DACE806FFA8BAC64756E2164756E21
218782
+ //# debugId=71BEE745770BB74464756E2164756E21
@@ -25047,6 +25047,7 @@ var require_fast_uri = __commonJS((exports, module) => {
25047
25047
  return uriTokens.join("");
25048
25048
  }
25049
25049
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
25050
+ var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
25050
25051
  function getParseError(parsed, matches) {
25051
25052
  if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
25052
25053
  return 'URI path must start with "/" when authority is present.';
@@ -25076,6 +25077,11 @@ var require_fast_uri = __commonJS((exports, module) => {
25076
25077
  uri2 = "//" + uri2;
25077
25078
  }
25078
25079
  }
25080
+ const authorityMatch = uri2.match(AUTHORITY_PREFIX);
25081
+ if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
25082
+ parsed.error = "URI authority must not contain a literal backslash.";
25083
+ malformedAuthorityOrPort = true;
25084
+ }
25079
25085
  const matches = uri2.match(URI_PARSE);
25080
25086
  if (matches) {
25081
25087
  parsed.scheme = matches[1];
@@ -25119,7 +25125,7 @@ var require_fast_uri = __commonJS((exports, module) => {
25119
25125
  if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
25120
25126
  if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
25121
25127
  try {
25122
- parsed.host = URL.domainToASCII(parsed.host.toLowerCase());
25128
+ parsed.host = new URL("http://" + parsed.host).hostname;
25123
25129
  } catch (e) {
25124
25130
  parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
25125
25131
  }
@@ -159840,7 +159846,7 @@ init_dist6();
159840
159846
  // ../packager/packager-tool-flow/package.json
159841
159847
  var package_default = {
159842
159848
  name: "@uipath/packager-tool-flow",
159843
- version: "1.198.0-preview.86",
159849
+ version: "1.198.0-preview.88",
159844
159850
  description: "UiPath Flow tool implementation",
159845
159851
  type: "module",
159846
159852
  exports: {
@@ -174557,4 +174563,4 @@ var toolsFactoryRepository2 = _global2[REGISTRY_KEY2];
174557
174563
  // src/packager-tool.ts
174558
174564
  toolsFactoryRepository2.registerProjectToolFactory(new FlowToolFactory);
174559
174565
 
174560
- //# debugId=91E5AA6AE815164564756E2164756E21
174566
+ //# debugId=C7F0C27326B8B96D64756E2164756E21
package/dist/tool.js CHANGED
@@ -21950,6 +21950,7 @@ var require_fast_uri = __commonJS((exports, module) => {
21950
21950
  return uriTokens.join("");
21951
21951
  }
21952
21952
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
21953
+ var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
21953
21954
  function getParseError(parsed, matches) {
21954
21955
  if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
21955
21956
  return 'URI path must start with "/" when authority is present.';
@@ -21979,6 +21980,11 @@ var require_fast_uri = __commonJS((exports, module) => {
21979
21980
  uri = "//" + uri;
21980
21981
  }
21981
21982
  }
21983
+ const authorityMatch = uri.match(AUTHORITY_PREFIX);
21984
+ if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
21985
+ parsed.error = "URI authority must not contain a literal backslash.";
21986
+ malformedAuthorityOrPort = true;
21987
+ }
21982
21988
  const matches = uri.match(URI_PARSE);
21983
21989
  if (matches) {
21984
21990
  parsed.scheme = matches[1];
@@ -22022,7 +22028,7 @@ var require_fast_uri = __commonJS((exports, module) => {
22022
22028
  if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
22023
22029
  if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
22024
22030
  try {
22025
- parsed.host = URL.domainToASCII(parsed.host.toLowerCase());
22031
+ parsed.host = new URL("http://" + parsed.host).hostname;
22026
22032
  } catch (e) {
22027
22033
  parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
22028
22034
  }
@@ -194748,7 +194754,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
194748
194754
  package_default6 = {
194749
194755
  name: "@uipath/project-packager",
194750
194756
  license: "MIT",
194751
- version: "1.198.0-preview.86",
194757
+ version: "1.198.0-preview.88",
194752
194758
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
194753
194759
  type: "module",
194754
194760
  main: "./dist/index.js",
@@ -286624,7 +286630,7 @@ import"./packager-tool.js";
286624
286630
  var package_default = {
286625
286631
  name: "@uipath/flow-tool",
286626
286632
  license: "MIT",
286627
- version: "1.198.0-preview.86",
286633
+ version: "1.198.0-preview.88",
286628
286634
  description: "Create, debug, and run UiPath Flow projects and jobs.",
286629
286635
  private: false,
286630
286636
  repository: {
@@ -295031,7 +295037,7 @@ init_dist3();
295031
295037
  // ../packager/packager-tool-flow/package.json
295032
295038
  var package_default2 = {
295033
295039
  name: "@uipath/packager-tool-flow",
295034
- version: "1.198.0-preview.86",
295040
+ version: "1.198.0-preview.88",
295035
295041
  description: "UiPath Flow tool implementation",
295036
295042
  type: "module",
295037
295043
  exports: {
@@ -337993,7 +337999,7 @@ class TextApiResponse {
337993
337999
  var package_default3 = {
337994
338000
  name: "@uipath/integrationservice-sdk",
337995
338001
  license: "MIT",
337996
- version: "1.198.0-preview.86",
338002
+ version: "1.198.0-preview.88",
337997
338003
  repository: {
337998
338004
  type: "git",
337999
338005
  url: "https://github.com/UiPath/cli.git",
@@ -356229,7 +356235,7 @@ function querystringSingleKey4(key, value, keyPrefix = "") {
356229
356235
  var package_default5 = {
356230
356236
  name: "@uipath/solution-sdk",
356231
356237
  license: "MIT",
356232
- version: "1.198.0-preview.86",
356238
+ version: "1.198.0-preview.88",
356233
356239
  repository: {
356234
356240
  type: "git",
356235
356241
  url: "https://github.com/UiPath/cli.git",
@@ -369442,7 +369448,7 @@ function querystringSingleKey6(key, value, keyPrefix = "") {
369442
369448
  var package_default7 = {
369443
369449
  name: "@uipath/agent-sdk",
369444
369450
  license: "MIT",
369445
- version: "1.198.0-preview.86",
369451
+ version: "1.198.0-preview.88",
369446
369452
  description: "SDK for the UiPath Agent Runtime API — evaluation execution and debug sessions.",
369447
369453
  repository: {
369448
369454
  type: "git",
@@ -370190,4 +370196,4 @@ export {
370190
370196
  metadata
370191
370197
  };
370192
370198
 
370193
- //# debugId=97CED41E6B7A11BF64756E2164756E21
370199
+ //# debugId=64CF9885409ECA9364756E2164756E21
@@ -40188,6 +40188,7 @@ var require_fast_uri = __commonJS((exports, module) => {
40188
40188
  return uriTokens.join("");
40189
40189
  }
40190
40190
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
40191
+ var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
40191
40192
  function getParseError(parsed, matches) {
40192
40193
  if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
40193
40194
  return 'URI path must start with "/" when authority is present.';
@@ -40217,6 +40218,11 @@ var require_fast_uri = __commonJS((exports, module) => {
40217
40218
  uri = "//" + uri;
40218
40219
  }
40219
40220
  }
40221
+ const authorityMatch = uri.match(AUTHORITY_PREFIX);
40222
+ if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
40223
+ parsed.error = "URI authority must not contain a literal backslash.";
40224
+ malformedAuthorityOrPort = true;
40225
+ }
40220
40226
  const matches = uri.match(URI_PARSE);
40221
40227
  if (matches) {
40222
40228
  parsed.scheme = matches[1];
@@ -40260,7 +40266,7 @@ var require_fast_uri = __commonJS((exports, module) => {
40260
40266
  if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
40261
40267
  if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
40262
40268
  try {
40263
- parsed.host = URL.domainToASCII(parsed.host.toLowerCase());
40269
+ parsed.host = new URL("http://" + parsed.host).hostname;
40264
40270
  } catch (e) {
40265
40271
  parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
40266
40272
  }
@@ -211505,7 +211511,7 @@ function querystringSingleKey(key, value, keyPrefix = "") {
211505
211511
  var package_default = {
211506
211512
  name: "@uipath/solution-sdk",
211507
211513
  license: "MIT",
211508
- version: "1.198.0-preview.86",
211514
+ version: "1.198.0-preview.88",
211509
211515
  repository: {
211510
211516
  type: "git",
211511
211517
  url: "https://github.com/UiPath/cli.git",
@@ -216109,7 +216115,7 @@ class TextApiResponse2 {
216109
216115
  var package_default2 = {
216110
216116
  name: "@uipath/integrationservice-sdk",
216111
216117
  license: "MIT",
216112
- version: "1.198.0-preview.86",
216118
+ version: "1.198.0-preview.88",
216113
216119
  repository: {
216114
216120
  type: "git",
216115
216121
  url: "https://github.com/UiPath/cli.git",
@@ -225202,7 +225208,7 @@ init_dist2();
225202
225208
  // ../packager/packager-tool-flow/package.json
225203
225209
  var package_default4 = {
225204
225210
  name: "@uipath/packager-tool-flow",
225205
- version: "1.198.0-preview.86",
225211
+ version: "1.198.0-preview.88",
225206
225212
  description: "UiPath Flow tool implementation",
225207
225213
  type: "module",
225208
225214
  exports: {
@@ -239991,4 +239997,4 @@ export {
239991
239997
  FlowValidateService
239992
239998
  };
239993
239999
 
239994
- //# debugId=22DB7F01442AB82C64756E2164756E21
240000
+ //# debugId=AA8C367F9D02540964756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/flow-tool",
3
3
  "license": "MIT",
4
- "version": "1.198.0-preview.86",
4
+ "version": "1.198.0-preview.88",
5
5
  "description": "Create, debug, and run UiPath Flow projects and jobs.",
6
6
  "private": false,
7
7
  "repository": {
@@ -34,5 +34,5 @@
34
34
  "files": [
35
35
  "dist"
36
36
  ],
37
- "gitHead": "e6930a7d30dc12735ec0dc6fd7c4720bbb99e936"
37
+ "gitHead": "9be5d51c7d9ccd184c980771e7f06e240c75a9e2"
38
38
  }