@uipath/agenthub-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 +6 -7
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -6248,7 +6248,7 @@ function requireOmap() {
6248
6248
  function resolveYamlOmap(data) {
6249
6249
  if (data === null)
6250
6250
  return true;
6251
- const objectKeys = [];
6251
+ const objectKeys = {};
6252
6252
  const object = data;
6253
6253
  for (let index = 0, length = object.length;index < length; index += 1) {
6254
6254
  const pair = object[index];
@@ -6266,10 +6266,9 @@ function requireOmap() {
6266
6266
  }
6267
6267
  if (!pairHasKey)
6268
6268
  return false;
6269
- if (objectKeys.indexOf(pairKey) === -1)
6270
- objectKeys.push(pairKey);
6271
- else
6269
+ if (_hasOwnProperty.call(objectKeys, pairKey))
6272
6270
  return false;
6271
+ Object.defineProperty(objectKeys, pairKey, { value: true });
6273
6272
  }
6274
6273
  return true;
6275
6274
  }
@@ -67677,7 +67676,7 @@ init_esm();
67677
67676
  var package_default = {
67678
67677
  name: "@uipath/agenthub-tool",
67679
67678
  license: "MIT",
67680
- version: "1.199.0-preview.108",
67679
+ version: "1.199.0-preview.111",
67681
67680
  description: "Manage UiPath AgentHub MCP server registrations, tools, and remote A2A agents.",
67682
67681
  private: false,
67683
67682
  repository: {
@@ -90916,7 +90915,7 @@ class TextApiResponse2 {
90916
90915
  var package_default4 = {
90917
90916
  name: "@uipath/integrationservice-sdk",
90918
90917
  license: "MIT",
90919
- version: "1.199.0-preview.108",
90918
+ version: "1.199.0-preview.111",
90920
90919
  repository: {
90921
90920
  type: "git",
90922
90921
  url: "https://github.com/UiPath/cli.git",
@@ -99721,4 +99720,4 @@ export {
99721
99720
  createStandaloneProgram
99722
99721
  };
99723
99722
 
99724
- //# debugId=17D82AD2F5C8962064756E2164756E21
99723
+ //# debugId=8538CC85FD75CEBA64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/agenthub-tool",
3
3
  "license": "MIT",
4
- "version": "1.199.0-preview.108",
4
+ "version": "1.199.0-preview.111",
5
5
  "description": "Manage UiPath AgentHub MCP server registrations, tools, and remote A2A agents.",
6
6
  "private": false,
7
7
  "repository": {
@@ -26,5 +26,5 @@
26
26
  "files": [
27
27
  "dist"
28
28
  ],
29
- "gitHead": "171f68daab68809916e8df10ea198c259f688ede"
29
+ "gitHead": "1a86625f94b9abd4d02444b8c5deec7e9d08d210"
30
30
  }