@uipath/cli 1.197.0-preview.70 → 1.197.0-preview.71

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/index.js CHANGED
@@ -45866,7 +45866,7 @@ var init_package = __esm(() => {
45866
45866
  package_default = {
45867
45867
  name: "@uipath/cli",
45868
45868
  license: "MIT",
45869
- version: "1.197.0-preview.70",
45869
+ version: "1.197.0-preview.71",
45870
45870
  description: "Cross platform CLI for UiPath",
45871
45871
  repository: {
45872
45872
  type: "git",
@@ -107932,15 +107932,17 @@ async function pmResolveTarball(pm, version2) {
107932
107932
  return typeof value === "string" && value.length > 0 ? value : undefined;
107933
107933
  }
107934
107934
  function normalizeVersionList(value) {
107935
- if (Array.isArray(value)) {
107936
- return value.filter((version2) => {
107937
- return typeof version2 === "string";
107938
- });
107939
- }
107940
- if (typeof value === "string") {
107941
- return [value];
107942
- }
107943
- return [];
107935
+ const collected = new Set;
107936
+ const walk = (node2) => {
107937
+ if (typeof node2 === "string") {
107938
+ collected.add(node2);
107939
+ } else if (Array.isArray(node2)) {
107940
+ for (const child of node2)
107941
+ walk(child);
107942
+ }
107943
+ };
107944
+ walk(value);
107945
+ return [...collected];
107944
107946
  }
107945
107947
  function requireString(value, message) {
107946
107948
  if (typeof value !== "string" || value.length === 0) {
@@ -115415,4 +115417,4 @@ export {
115415
115417
  ready
115416
115418
  };
115417
115419
 
115418
- //# debugId=C75D6DF22C043EE264756E2164756E21
115420
+ //# debugId=48870C304BA2D49064756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/cli",
3
3
  "license": "MIT",
4
- "version": "1.197.0-preview.70",
4
+ "version": "1.197.0-preview.71",
5
5
  "description": "Cross platform CLI for UiPath",
6
6
  "repository": {
7
7
  "type": "git",
@@ -34,5 +34,5 @@
34
34
  "mihaigirleanu",
35
35
  "vlad-uipath"
36
36
  ],
37
- "gitHead": "d681f04331bf787e58d1ed16c1ff0561283d7515"
37
+ "gitHead": "3cb058aea3fcde38dd3811ebba5eae53851de17c"
38
38
  }