@uipath/platform-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.
Files changed (2) hide show
  1. package/dist/tool.js +5 -6
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -46306,7 +46306,7 @@ var require_dist3 = __commonJS((exports) => {
46306
46306
  var package_default = {
46307
46307
  name: "@uipath/platform-tool",
46308
46308
  license: "MIT",
46309
- version: "1.199.0-preview.108",
46309
+ version: "1.199.0-preview.110",
46310
46310
  description: "Manage UiPath platform-level resources such as tenant licensing.",
46311
46311
  type: "module",
46312
46312
  main: "./dist/tool.js",
@@ -50869,7 +50869,7 @@ function requireOmap() {
50869
50869
  function resolveYamlOmap(data) {
50870
50870
  if (data === null)
50871
50871
  return true;
50872
- const objectKeys = [];
50872
+ const objectKeys = {};
50873
50873
  const object = data;
50874
50874
  for (let index = 0, length = object.length;index < length; index += 1) {
50875
50875
  const pair = object[index];
@@ -50887,10 +50887,9 @@ function requireOmap() {
50887
50887
  }
50888
50888
  if (!pairHasKey)
50889
50889
  return false;
50890
- if (objectKeys.indexOf(pairKey) === -1)
50891
- objectKeys.push(pairKey);
50892
- else
50890
+ if (_hasOwnProperty.call(objectKeys, pairKey))
50893
50891
  return false;
50892
+ Object.defineProperty(objectKeys, pairKey, { value: true });
50894
50893
  }
50895
50894
  return true;
50896
50895
  }
@@ -58065,4 +58064,4 @@ export {
58065
58064
  metadata
58066
58065
  };
58067
58066
 
58068
- //# debugId=A0EE9F57C43287F164756E2164756E21
58067
+ //# debugId=447A21700015359364756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/platform-tool",
3
3
  "license": "MIT",
4
- "version": "1.199.0-preview.108",
4
+ "version": "1.199.0-preview.110",
5
5
  "description": "Manage UiPath platform-level resources such as tenant licensing.",
6
6
  "type": "module",
7
7
  "main": "./dist/tool.js",
@@ -20,5 +20,5 @@
20
20
  "publishConfig": {
21
21
  "registry": "https://registry.npmjs.org/"
22
22
  },
23
- "gitHead": "171f68daab68809916e8df10ea198c259f688ede"
23
+ "gitHead": "a714aed479181e56e2a867470c3050b7230ec41f"
24
24
  }