@uipath/data-fabric-tool 1.199.0-preview.108 → 1.199.0-preview.111

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
@@ -27310,7 +27310,7 @@ var require_src6 = __commonJS((exports) => {
27310
27310
  var package_default = {
27311
27311
  name: "@uipath/data-fabric-tool",
27312
27312
  license: "MIT",
27313
- version: "1.199.0-preview.108",
27313
+ version: "1.199.0-preview.111",
27314
27314
  description: "Manage Data Fabric entities and records.",
27315
27315
  type: "module",
27316
27316
  main: "./dist/tool.js",
@@ -30637,7 +30637,7 @@ function requireOmap() {
30637
30637
  function resolveYamlOmap(data) {
30638
30638
  if (data === null)
30639
30639
  return true;
30640
- const objectKeys = [];
30640
+ const objectKeys = {};
30641
30641
  const object = data;
30642
30642
  for (let index = 0, length = object.length;index < length; index += 1) {
30643
30643
  const pair = object[index];
@@ -30655,10 +30655,9 @@ function requireOmap() {
30655
30655
  }
30656
30656
  if (!pairHasKey)
30657
30657
  return false;
30658
- if (objectKeys.indexOf(pairKey) === -1)
30659
- objectKeys.push(pairKey);
30660
- else
30658
+ if (_hasOwnProperty.call(objectKeys, pairKey))
30661
30659
  return false;
30660
+ Object.defineProperty(objectKeys, pairKey, { value: true });
30662
30661
  }
30663
30662
  return true;
30664
30663
  }
@@ -48434,4 +48433,4 @@ export {
48434
48433
  metadata
48435
48434
  };
48436
48435
 
48437
- //# debugId=A4E16E50A3DCA88164756E2164756E21
48436
+ //# debugId=816D21B74147764364756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/data-fabric-tool",
3
3
  "license": "MIT",
4
- "version": "1.199.0-preview.108",
4
+ "version": "1.199.0-preview.111",
5
5
  "description": "Manage Data Fabric entities and records.",
6
6
  "type": "module",
7
7
  "main": "./dist/tool.js",
@@ -14,5 +14,5 @@
14
14
  "publishConfig": {
15
15
  "registry": "https://registry.npmjs.org/"
16
16
  },
17
- "gitHead": "171f68daab68809916e8df10ea198c259f688ede"
17
+ "gitHead": "1a86625f94b9abd4d02444b8c5deec7e9d08d210"
18
18
  }