@uipath/common 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.
- package/dist/index.js +4 -5
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -6454,7 +6454,7 @@ function requireOmap() {
|
|
|
6454
6454
|
function resolveYamlOmap(data) {
|
|
6455
6455
|
if (data === null)
|
|
6456
6456
|
return true;
|
|
6457
|
-
const objectKeys =
|
|
6457
|
+
const objectKeys = {};
|
|
6458
6458
|
const object = data;
|
|
6459
6459
|
for (let index = 0, length = object.length;index < length; index += 1) {
|
|
6460
6460
|
const pair = object[index];
|
|
@@ -6472,10 +6472,9 @@ function requireOmap() {
|
|
|
6472
6472
|
}
|
|
6473
6473
|
if (!pairHasKey)
|
|
6474
6474
|
return false;
|
|
6475
|
-
if (
|
|
6476
|
-
objectKeys.push(pairKey);
|
|
6477
|
-
else
|
|
6475
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
6478
6476
|
return false;
|
|
6477
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
6479
6478
|
}
|
|
6480
6479
|
return true;
|
|
6481
6480
|
}
|
|
@@ -12493,4 +12492,4 @@ export {
|
|
|
12493
12492
|
ATTACHMENT_INSTRUCTIONS
|
|
12494
12493
|
};
|
|
12495
12494
|
|
|
12496
|
-
//# debugId=
|
|
12495
|
+
//# debugId=A6FFEE2DBE9CEE7564756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/common",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.199.0-preview.
|
|
4
|
+
"version": "1.199.0-preview.111",
|
|
5
5
|
"description": "Common infrastructure needed by uip tools.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"mihaigirleanu",
|
|
68
68
|
"vlad-uipath"
|
|
69
69
|
],
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "1a86625f94b9abd4d02444b8c5deec7e9d08d210"
|
|
71
71
|
}
|