@uipath/context-grounding-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
@@ -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 (objectKeys.indexOf(pairKey) === -1)
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
  }
@@ -30360,7 +30359,7 @@ function createCommandForwarder(executeCommand) {
30360
30359
  var package_default = {
30361
30360
  name: "@uipath/context-grounding-tool",
30362
30361
  license: "MIT",
30363
- version: "1.199.0-preview.108",
30362
+ version: "1.199.0-preview.111",
30364
30363
  description: "Tool for context grounding operations via the UiPath Python SDK",
30365
30364
  keywords: [
30366
30365
  "uipcli-tool",
@@ -30463,4 +30462,4 @@ export {
30463
30462
  metadata
30464
30463
  };
30465
30464
 
30466
- //# debugId=39907307A4F3232A64756E2164756E21
30465
+ //# debugId=E71DFFA7546178EA64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/context-grounding-tool",
3
3
  "license": "MIT",
4
- "version": "1.199.0-preview.108",
4
+ "version": "1.199.0-preview.111",
5
5
  "description": "Tool for context grounding operations via the UiPath Python SDK",
6
6
  "keywords": [
7
7
  "uipcli-tool",
@@ -28,5 +28,5 @@
28
28
  "publishConfig": {
29
29
  "registry": "https://registry.npmjs.org/"
30
30
  },
31
- "gitHead": "171f68daab68809916e8df10ea198c259f688ede"
31
+ "gitHead": "1a86625f94b9abd4d02444b8c5deec7e9d08d210"
32
32
  }