@uipath/codedagent-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/init.js +4 -5
- package/dist/tool.js +5 -6
- package/package.json +2 -2
package/dist/init.js
CHANGED
|
@@ -24230,7 +24230,7 @@ function requireOmap() {
|
|
|
24230
24230
|
function resolveYamlOmap(data) {
|
|
24231
24231
|
if (data === null)
|
|
24232
24232
|
return true;
|
|
24233
|
-
const objectKeys =
|
|
24233
|
+
const objectKeys = {};
|
|
24234
24234
|
const object = data;
|
|
24235
24235
|
for (let index = 0, length = object.length;index < length; index += 1) {
|
|
24236
24236
|
const pair = object[index];
|
|
@@ -24248,10 +24248,9 @@ function requireOmap() {
|
|
|
24248
24248
|
}
|
|
24249
24249
|
if (!pairHasKey)
|
|
24250
24250
|
return false;
|
|
24251
|
-
if (
|
|
24252
|
-
objectKeys.push(pairKey);
|
|
24253
|
-
else
|
|
24251
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
24254
24252
|
return false;
|
|
24253
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
24255
24254
|
}
|
|
24256
24255
|
return true;
|
|
24257
24256
|
}
|
|
@@ -29916,4 +29915,4 @@ export {
|
|
|
29916
29915
|
codedagentInitAsync
|
|
29917
29916
|
};
|
|
29918
29917
|
|
|
29919
|
-
//# debugId=
|
|
29918
|
+
//# debugId=68903AA1CBF87B4064756E2164756E21
|
package/dist/tool.js
CHANGED
|
@@ -24245,7 +24245,7 @@ function requireOmap() {
|
|
|
24245
24245
|
function resolveYamlOmap(data) {
|
|
24246
24246
|
if (data === null)
|
|
24247
24247
|
return true;
|
|
24248
|
-
const objectKeys =
|
|
24248
|
+
const objectKeys = {};
|
|
24249
24249
|
const object = data;
|
|
24250
24250
|
for (let index = 0, length = object.length;index < length; index += 1) {
|
|
24251
24251
|
const pair = object[index];
|
|
@@ -24263,10 +24263,9 @@ function requireOmap() {
|
|
|
24263
24263
|
}
|
|
24264
24264
|
if (!pairHasKey)
|
|
24265
24265
|
return false;
|
|
24266
|
-
if (
|
|
24267
|
-
objectKeys.push(pairKey);
|
|
24268
|
-
else
|
|
24266
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
24269
24267
|
return false;
|
|
24268
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
24270
24269
|
}
|
|
24271
24270
|
return true;
|
|
24272
24271
|
}
|
|
@@ -30377,7 +30376,7 @@ Searching for Python installations: ${allowedVersions}`);
|
|
|
30377
30376
|
var package_default = {
|
|
30378
30377
|
name: "@uipath/codedagent-tool",
|
|
30379
30378
|
license: "MIT",
|
|
30380
|
-
version: "1.199.0-preview.
|
|
30379
|
+
version: "1.199.0-preview.111",
|
|
30381
30380
|
description: "Build, run, deploy, and manage AI Agents.",
|
|
30382
30381
|
keywords: [
|
|
30383
30382
|
"cli-tool",
|
|
@@ -51346,4 +51345,4 @@ export {
|
|
|
51346
51345
|
metadata
|
|
51347
51346
|
};
|
|
51348
51347
|
|
|
51349
|
-
//# debugId=
|
|
51348
|
+
//# debugId=2C3A59388CFDD18964756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/codedagent-tool",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.199.0-preview.
|
|
4
|
+
"version": "1.199.0-preview.111",
|
|
5
5
|
"description": "Build, run, deploy, and manage AI Agents.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"cli-tool",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"registry": "https://registry.npmjs.org/"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "1a86625f94b9abd4d02444b8c5deec7e9d08d210"
|
|
36
36
|
}
|