@uipath/solution-tool 1.199.0-preview.108 → 1.199.0-preview.110

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/deploy.js CHANGED
@@ -31453,7 +31453,7 @@ function requireOmap() {
31453
31453
  function resolveYamlOmap(data) {
31454
31454
  if (data === null)
31455
31455
  return true;
31456
- const objectKeys = [];
31456
+ const objectKeys = {};
31457
31457
  const object = data;
31458
31458
  for (let index = 0, length = object.length;index < length; index += 1) {
31459
31459
  const pair = object[index];
@@ -31471,10 +31471,9 @@ function requireOmap() {
31471
31471
  }
31472
31472
  if (!pairHasKey)
31473
31473
  return false;
31474
- if (objectKeys.indexOf(pairKey) === -1)
31475
- objectKeys.push(pairKey);
31476
- else
31474
+ if (_hasOwnProperty.call(objectKeys, pairKey))
31477
31475
  return false;
31476
+ Object.defineProperty(objectKeys, pairKey, { value: true });
31478
31477
  }
31479
31478
  return true;
31480
31479
  }
@@ -37773,7 +37772,7 @@ class JSONApiResponse2 {
37773
37772
  var package_default2 = {
37774
37773
  name: "@uipath/solution-sdk",
37775
37774
  license: "MIT",
37776
- version: "1.199.0-preview.108",
37775
+ version: "1.199.0-preview.110",
37777
37776
  repository: {
37778
37777
  type: "git",
37779
37778
  url: "https://github.com/UiPath/cli.git",
@@ -43453,4 +43452,4 @@ export {
43453
43452
  activateDeploymentAsync
43454
43453
  };
43455
43454
 
43456
- //# debugId=27DC365FD3297BCE64756E2164756E21
43455
+ //# debugId=5EC27349ED5C1F8364756E2164756E21
package/dist/init.js CHANGED
@@ -26592,7 +26592,7 @@ function requireOmap() {
26592
26592
  function resolveYamlOmap(data) {
26593
26593
  if (data === null)
26594
26594
  return true;
26595
- const objectKeys = [];
26595
+ const objectKeys = {};
26596
26596
  const object = data;
26597
26597
  for (let index = 0, length = object.length;index < length; index += 1) {
26598
26598
  const pair = object[index];
@@ -26610,10 +26610,9 @@ function requireOmap() {
26610
26610
  }
26611
26611
  if (!pairHasKey)
26612
26612
  return false;
26613
- if (objectKeys.indexOf(pairKey) === -1)
26614
- objectKeys.push(pairKey);
26615
- else
26613
+ if (_hasOwnProperty.call(objectKeys, pairKey))
26616
26614
  return false;
26615
+ Object.defineProperty(objectKeys, pairKey, { value: true });
26617
26616
  }
26618
26617
  return true;
26619
26618
  }
@@ -31020,7 +31019,7 @@ function querystringSingleKey(key, value, keyPrefix = "") {
31020
31019
  var package_default = {
31021
31020
  name: "@uipath/solution-sdk",
31022
31021
  license: "MIT",
31023
- version: "1.199.0-preview.108",
31022
+ version: "1.199.0-preview.110",
31024
31023
  repository: {
31025
31024
  type: "git",
31026
31025
  url: "https://github.com/UiPath/cli.git",
@@ -48845,4 +48844,4 @@ export {
48845
48844
  SolutionInitError
48846
48845
  };
48847
48846
 
48848
- //# debugId=C873FC9DCC68ADE564756E2164756E21
48847
+ //# debugId=AE0D0B0A14193F8464756E2164756E21
package/dist/pack.js CHANGED
@@ -28624,7 +28624,12 @@ var require_fast_uri = __commonJS((exports, module) => {
28624
28624
  }
28625
28625
  function resolve(baseURI, relativeURI, options) {
28626
28626
  const schemelessOptions = options ? Object.assign({ scheme: "null" }, options) : { scheme: "null" };
28627
- const resolved = resolveComponent(parse5(baseURI, schemelessOptions), parse5(relativeURI, schemelessOptions), schemelessOptions, true);
28627
+ const { parsed: baseParsed, malformedAuthorityOrPort: baseMalformed } = parseWithStatus(baseURI, schemelessOptions);
28628
+ const { parsed: relativeParsed, malformedAuthorityOrPort: relativeMalformed } = parseWithStatus(relativeURI, schemelessOptions);
28629
+ if (baseMalformed || relativeMalformed) {
28630
+ throw new Error(baseParsed.error || relativeParsed.error || "URI is malformed.");
28631
+ }
28632
+ const resolved = resolveComponent(baseParsed, relativeParsed, schemelessOptions, true);
28628
28633
  schemelessOptions.skipEscape = true;
28629
28634
  return serialize(resolved, schemelessOptions);
28630
28635
  }
@@ -28751,6 +28756,7 @@ var require_fast_uri = __commonJS((exports, module) => {
28751
28756
  }
28752
28757
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
28753
28758
  var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
28759
+ var AUTHORITY_INTRODUCER_REGION = /^(?:[^#/:?]+:)?([/\\\t\n\r]*)/;
28754
28760
  function getParseError(parsed, matches) {
28755
28761
  if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
28756
28762
  return 'URI path must start with "/" when authority is present.';
@@ -28785,6 +28791,20 @@ var require_fast_uri = __commonJS((exports, module) => {
28785
28791
  parsed.error = "URI authority must not contain a literal backslash.";
28786
28792
  malformedAuthorityOrPort = true;
28787
28793
  }
28794
+ const introducerMatch = uri2.match(AUTHORITY_INTRODUCER_REGION);
28795
+ if (introducerMatch !== null) {
28796
+ const region = introducerMatch[1];
28797
+ const normalizedRegion = region.replace(/[\t\n\r]/g, "");
28798
+ if (normalizedRegion.length >= 2) {
28799
+ if (normalizedRegion.slice(0, 2) !== "//") {
28800
+ parsed.error = parsed.error || "URI authority must not contain a literal backslash.";
28801
+ malformedAuthorityOrPort = true;
28802
+ } else if (region.length !== normalizedRegion.length) {
28803
+ parsed.error = parsed.error || "URI authority introducer must not contain whitespace.";
28804
+ malformedAuthorityOrPort = true;
28805
+ }
28806
+ }
28807
+ }
28788
28808
  const matches = uri2.match(URI_PARSE);
28789
28809
  if (matches) {
28790
28810
  parsed.scheme = matches[1];
@@ -214074,7 +214094,7 @@ init_dist();
214074
214094
  // ../packager/packager-tool-flow/package.json
214075
214095
  var package_default = {
214076
214096
  name: "@uipath/packager-tool-flow",
214077
- version: "1.199.0-preview.108",
214097
+ version: "1.199.0-preview.110",
214078
214098
  description: "UiPath Flow tool implementation",
214079
214099
  type: "module",
214080
214100
  exports: {
@@ -223542,7 +223562,7 @@ function requireOmap() {
223542
223562
  function resolveYamlOmap(data) {
223543
223563
  if (data === null)
223544
223564
  return true;
223545
- const objectKeys = [];
223565
+ const objectKeys = {};
223546
223566
  const object5 = data;
223547
223567
  for (let index = 0, length = object5.length;index < length; index += 1) {
223548
223568
  const pair = object5[index];
@@ -223560,10 +223580,9 @@ function requireOmap() {
223560
223580
  }
223561
223581
  if (!pairHasKey)
223562
223582
  return false;
223563
- if (objectKeys.indexOf(pairKey) === -1)
223564
- objectKeys.push(pairKey);
223565
- else
223583
+ if (_hasOwnProperty.call(objectKeys, pairKey))
223566
223584
  return false;
223585
+ Object.defineProperty(objectKeys, pairKey, { value: true });
223567
223586
  }
223568
223587
  return true;
223569
223588
  }
@@ -250640,7 +250659,7 @@ var sdkUserAgentHostToken22 = singleton22("SdkUserAgentHostToken");
250640
250659
  var package_default3 = {
250641
250660
  name: "@uipath/project-packager",
250642
250661
  license: "MIT",
250643
- version: "1.199.0-preview.108",
250662
+ version: "1.199.0-preview.110",
250644
250663
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
250645
250664
  type: "module",
250646
250665
  main: "./dist/index.js",
@@ -250703,7 +250722,7 @@ var package_default3 = {
250703
250722
  "@uipath/packager-tool-webapp": "workspace:*",
250704
250723
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
250705
250724
  "@vitest/coverage-v8": "^4.1.6",
250706
- jsdom: "^29.0.0",
250725
+ jsdom: "^30.0.1",
250707
250726
  typescript: "^6.0.2",
250708
250727
  "vite-tsconfig-paths": "^6.1.1",
250709
250728
  vitest: "^4.1.6"
@@ -258283,7 +258302,7 @@ function requireOmap2() {
258283
258302
  function resolveYamlOmap(data) {
258284
258303
  if (data === null)
258285
258304
  return true;
258286
- const objectKeys = [];
258305
+ const objectKeys = {};
258287
258306
  const object5 = data;
258288
258307
  for (let index = 0, length = object5.length;index < length; index += 1) {
258289
258308
  const pair = object5[index];
@@ -258301,10 +258320,9 @@ function requireOmap2() {
258301
258320
  }
258302
258321
  if (!pairHasKey)
258303
258322
  return false;
258304
- if (objectKeys.indexOf(pairKey) === -1)
258305
- objectKeys.push(pairKey);
258306
- else
258323
+ if (_hasOwnProperty.call(objectKeys, pairKey))
258307
258324
  return false;
258325
+ Object.defineProperty(objectKeys, pairKey, { value: true });
258308
258326
  }
258309
258327
  return true;
258310
258328
  }
@@ -262806,7 +262824,7 @@ var sdkUserAgentHostToken23 = singleton23("SdkUserAgentHostToken");
262806
262824
  var package_default4 = {
262807
262825
  name: "@uipath/project-packager",
262808
262826
  license: "MIT",
262809
- version: "1.199.0-preview.108",
262827
+ version: "1.199.0-preview.110",
262810
262828
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
262811
262829
  type: "module",
262812
262830
  main: "./dist/index.js",
@@ -262869,7 +262887,7 @@ var package_default4 = {
262869
262887
  "@uipath/packager-tool-webapp": "workspace:*",
262870
262888
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
262871
262889
  "@vitest/coverage-v8": "^4.1.6",
262872
- jsdom: "^29.0.0",
262890
+ jsdom: "^30.0.1",
262873
262891
  typescript: "^6.0.2",
262874
262892
  "vite-tsconfig-paths": "^6.1.1",
262875
262893
  vitest: "^4.1.6"
@@ -281597,4 +281615,4 @@ export {
281597
281615
  packSolutionAsync
281598
281616
  };
281599
281617
 
281600
- //# debugId=ECD1A8033F9EB07B64756E2164756E21
281618
+ //# debugId=C366F99B4BE497F164756E2164756E21
package/dist/publish.js CHANGED
@@ -24512,7 +24512,7 @@ function requireOmap() {
24512
24512
  function resolveYamlOmap(data) {
24513
24513
  if (data === null)
24514
24514
  return true;
24515
- const objectKeys = [];
24515
+ const objectKeys = {};
24516
24516
  const object = data;
24517
24517
  for (let index = 0, length = object.length;index < length; index += 1) {
24518
24518
  const pair = object[index];
@@ -24530,10 +24530,9 @@ function requireOmap() {
24530
24530
  }
24531
24531
  if (!pairHasKey)
24532
24532
  return false;
24533
- if (objectKeys.indexOf(pairKey) === -1)
24534
- objectKeys.push(pairKey);
24535
- else
24533
+ if (_hasOwnProperty.call(objectKeys, pairKey))
24536
24534
  return false;
24535
+ Object.defineProperty(objectKeys, pairKey, { value: true });
24537
24536
  }
24538
24537
  return true;
24539
24538
  }
@@ -30735,7 +30734,7 @@ class TextApiResponse2 {
30735
30734
  var package_default2 = {
30736
30735
  name: "@uipath/solution-sdk",
30737
30736
  license: "MIT",
30738
- version: "1.199.0-preview.108",
30737
+ version: "1.199.0-preview.110",
30739
30738
  repository: {
30740
30739
  type: "git",
30741
30740
  url: "https://github.com/UiPath/cli.git",
@@ -33510,4 +33509,4 @@ export {
33510
33509
  publishSolutionAsync
33511
33510
  };
33512
33511
 
33513
- //# debugId=50AFCC001F9C3DA164756E2164756E21
33512
+ //# debugId=85EC2AB56147B35164756E2164756E21
package/dist/resource.js CHANGED
@@ -26878,7 +26878,7 @@ function requireOmap() {
26878
26878
  function resolveYamlOmap(data) {
26879
26879
  if (data === null)
26880
26880
  return true;
26881
- const objectKeys = [];
26881
+ const objectKeys = {};
26882
26882
  const object = data;
26883
26883
  for (let index = 0, length = object.length;index < length; index += 1) {
26884
26884
  const pair = object[index];
@@ -26896,10 +26896,9 @@ function requireOmap() {
26896
26896
  }
26897
26897
  if (!pairHasKey)
26898
26898
  return false;
26899
- if (objectKeys.indexOf(pairKey) === -1)
26900
- objectKeys.push(pairKey);
26901
- else
26899
+ if (_hasOwnProperty.call(objectKeys, pairKey))
26902
26900
  return false;
26901
+ Object.defineProperty(objectKeys, pairKey, { value: true });
26903
26902
  }
26904
26903
  return true;
26905
26904
  }
@@ -48023,4 +48022,4 @@ export {
48023
48022
  resourceRefreshAsync
48024
48023
  };
48025
48024
 
48026
- //# debugId=677D735FA1174A7C64756E2164756E21
48025
+ //# debugId=BFBFBE6E70B046DD64756E2164756E21
package/dist/tool.js CHANGED
@@ -30536,7 +30536,7 @@ import"./packager-tool.js";
30536
30536
  var package_default = {
30537
30537
  name: "@uipath/solution-tool",
30538
30538
  license: "MIT",
30539
- version: "1.199.0-preview.108",
30539
+ version: "1.199.0-preview.110",
30540
30540
  description: "Create, pack, publish, and deploy UiPath Automation Solutions.",
30541
30541
  repository: {
30542
30542
  type: "git",
@@ -33910,7 +33910,7 @@ function requireOmap() {
33910
33910
  function resolveYamlOmap(data) {
33911
33911
  if (data === null)
33912
33912
  return true;
33913
- const objectKeys = [];
33913
+ const objectKeys = {};
33914
33914
  const object = data;
33915
33915
  for (let index = 0, length = object.length;index < length; index += 1) {
33916
33916
  const pair = object[index];
@@ -33928,10 +33928,9 @@ function requireOmap() {
33928
33928
  }
33929
33929
  if (!pairHasKey)
33930
33930
  return false;
33931
- if (objectKeys.indexOf(pairKey) === -1)
33932
- objectKeys.push(pairKey);
33933
- else
33931
+ if (_hasOwnProperty.call(objectKeys, pairKey))
33934
33932
  return false;
33933
+ Object.defineProperty(objectKeys, pairKey, { value: true });
33935
33934
  }
33936
33935
  return true;
33937
33936
  }
@@ -64414,7 +64413,7 @@ var sdkUserAgentHostToken22 = singleton22("SdkUserAgentHostToken");
64414
64413
  var package_default2 = {
64415
64414
  name: "@uipath/project-packager",
64416
64415
  license: "MIT",
64417
- version: "1.199.0-preview.108",
64416
+ version: "1.199.0-preview.110",
64418
64417
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
64419
64418
  type: "module",
64420
64419
  main: "./dist/index.js",
@@ -64477,7 +64476,7 @@ var package_default2 = {
64477
64476
  "@uipath/packager-tool-webapp": "workspace:*",
64478
64477
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
64479
64478
  "@vitest/coverage-v8": "^4.1.6",
64480
- jsdom: "^29.0.0",
64479
+ jsdom: "^30.0.1",
64481
64480
  typescript: "^6.0.2",
64482
64481
  "vite-tsconfig-paths": "^6.1.1",
64483
64482
  vitest: "^4.1.6"
@@ -72038,7 +72037,7 @@ function requireOmap2() {
72038
72037
  function resolveYamlOmap(data) {
72039
72038
  if (data === null)
72040
72039
  return true;
72041
- const objectKeys = [];
72040
+ const objectKeys = {};
72042
72041
  const object = data;
72043
72042
  for (let index = 0, length = object.length;index < length; index += 1) {
72044
72043
  const pair = object[index];
@@ -72056,10 +72055,9 @@ function requireOmap2() {
72056
72055
  }
72057
72056
  if (!pairHasKey)
72058
72057
  return false;
72059
- if (objectKeys.indexOf(pairKey) === -1)
72060
- objectKeys.push(pairKey);
72061
- else
72058
+ if (_hasOwnProperty.call(objectKeys, pairKey))
72062
72059
  return false;
72060
+ Object.defineProperty(objectKeys, pairKey, { value: true });
72063
72061
  }
72064
72062
  return true;
72065
72063
  }
@@ -76561,7 +76559,7 @@ var sdkUserAgentHostToken23 = singleton23("SdkUserAgentHostToken");
76561
76559
  var package_default3 = {
76562
76560
  name: "@uipath/project-packager",
76563
76561
  license: "MIT",
76564
- version: "1.199.0-preview.108",
76562
+ version: "1.199.0-preview.110",
76565
76563
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
76566
76564
  type: "module",
76567
76565
  main: "./dist/index.js",
@@ -76624,7 +76622,7 @@ var package_default3 = {
76624
76622
  "@uipath/packager-tool-webapp": "workspace:*",
76625
76623
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
76626
76624
  "@vitest/coverage-v8": "^4.1.6",
76627
- jsdom: "^29.0.0",
76625
+ jsdom: "^30.0.1",
76628
76626
  typescript: "^6.0.2",
76629
76627
  "vite-tsconfig-paths": "^6.1.1",
76630
76628
  vitest: "^4.1.6"
@@ -82115,7 +82113,7 @@ class TextApiResponse2 {
82115
82113
  var package_default5 = {
82116
82114
  name: "@uipath/solution-sdk",
82117
82115
  license: "MIT",
82118
- version: "1.199.0-preview.108",
82116
+ version: "1.199.0-preview.110",
82119
82117
  repository: {
82120
82118
  type: "git",
82121
82119
  url: "https://github.com/UiPath/cli.git",
@@ -108780,4 +108778,4 @@ export {
108780
108778
  metadata
108781
108779
  };
108782
108780
 
108783
- //# debugId=12E6F9C97AA298E764756E2164756E21
108781
+ //# debugId=9DD92CFC2817F68864756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/solution-tool",
3
3
  "license": "MIT",
4
- "version": "1.199.0-preview.108",
4
+ "version": "1.199.0-preview.110",
5
5
  "description": "Create, pack, publish, and deploy UiPath Automation Solutions.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -46,5 +46,5 @@
46
46
  "dist"
47
47
  ],
48
48
  "private": false,
49
- "gitHead": "171f68daab68809916e8df10ea198c259f688ede"
49
+ "gitHead": "a714aed479181e56e2a867470c3050b7230ec41f"
50
50
  }