@uipath/conversational-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.
- package/dist/tool.js +5 -6
- package/package.json +2 -2
package/dist/tool.js
CHANGED
|
@@ -38458,7 +38458,7 @@ var init_conversational_agent = __esm(() => {
|
|
|
38458
38458
|
var package_default = {
|
|
38459
38459
|
name: "@uipath/conversational-tool",
|
|
38460
38460
|
license: "MIT",
|
|
38461
|
-
version: "1.199.0-preview.
|
|
38461
|
+
version: "1.199.0-preview.111",
|
|
38462
38462
|
description: "Handle conversations with deployed UiPath conversational processes.",
|
|
38463
38463
|
type: "module",
|
|
38464
38464
|
main: "./dist/tool.js",
|
|
@@ -41508,7 +41508,7 @@ function requireOmap() {
|
|
|
41508
41508
|
function resolveYamlOmap(data) {
|
|
41509
41509
|
if (data === null)
|
|
41510
41510
|
return true;
|
|
41511
|
-
const objectKeys =
|
|
41511
|
+
const objectKeys = {};
|
|
41512
41512
|
const object = data;
|
|
41513
41513
|
for (let index = 0, length = object.length;index < length; index += 1) {
|
|
41514
41514
|
const pair = object[index];
|
|
@@ -41526,10 +41526,9 @@ function requireOmap() {
|
|
|
41526
41526
|
}
|
|
41527
41527
|
if (!pairHasKey)
|
|
41528
41528
|
return false;
|
|
41529
|
-
if (
|
|
41530
|
-
objectKeys.push(pairKey);
|
|
41531
|
-
else
|
|
41529
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
41532
41530
|
return false;
|
|
41531
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
41533
41532
|
}
|
|
41534
41533
|
return true;
|
|
41535
41534
|
}
|
|
@@ -57981,4 +57980,4 @@ export {
|
|
|
57981
57980
|
metadata
|
|
57982
57981
|
};
|
|
57983
57982
|
|
|
57984
|
-
//# debugId=
|
|
57983
|
+
//# debugId=17E1030D3764C5A164756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/conversational-tool",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.199.0-preview.
|
|
4
|
+
"version": "1.199.0-preview.111",
|
|
5
5
|
"description": "Handle conversations with deployed UiPath conversational processes.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/tool.js",
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"registry": "https://registry.npmjs.org/"
|
|
19
19
|
},
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "1a86625f94b9abd4d02444b8c5deec7e9d08d210"
|
|
21
21
|
}
|