@uipath/solution-sdk 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/index.js +5 -6
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -2535,7 +2535,7 @@ class TextApiResponse {
2535
2535
  var package_default = {
2536
2536
  name: "@uipath/solution-sdk",
2537
2537
  license: "MIT",
2538
- version: "1.199.0-preview.108",
2538
+ version: "1.199.0-preview.111",
2539
2539
  repository: {
2540
2540
  type: "git",
2541
2541
  url: "https://github.com/UiPath/cli.git",
@@ -8397,7 +8397,7 @@ function requireOmap() {
8397
8397
  function resolveYamlOmap(data) {
8398
8398
  if (data === null)
8399
8399
  return true;
8400
- const objectKeys = [];
8400
+ const objectKeys = {};
8401
8401
  const object = data;
8402
8402
  for (let index = 0, length = object.length;index < length; index += 1) {
8403
8403
  const pair = object[index];
@@ -8415,10 +8415,9 @@ function requireOmap() {
8415
8415
  }
8416
8416
  if (!pairHasKey)
8417
8417
  return false;
8418
- if (objectKeys.indexOf(pairKey) === -1)
8419
- objectKeys.push(pairKey);
8420
- else
8418
+ if (_hasOwnProperty.call(objectKeys, pairKey))
8421
8419
  return false;
8420
+ Object.defineProperty(objectKeys, pairKey, { value: true });
8422
8421
  }
8423
8422
  return true;
8424
8423
  }
@@ -15477,4 +15476,4 @@ export {
15477
15476
  BASE_PATH
15478
15477
  };
15479
15478
 
15480
- //# debugId=F1FC034798A7EA3464756E2164756E21
15479
+ //# debugId=BA37651CCBDA2F5864756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/solution-sdk",
3
3
  "license": "MIT",
4
- "version": "1.199.0-preview.108",
4
+ "version": "1.199.0-preview.111",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/UiPath/cli.git",
@@ -31,5 +31,5 @@
31
31
  "dist"
32
32
  ],
33
33
  "private": false,
34
- "gitHead": "171f68daab68809916e8df10ea198c259f688ede"
34
+ "gitHead": "1a86625f94b9abd4d02444b8c5deec7e9d08d210"
35
35
  }