@uipath/context-grounding-tool 1.197.0 → 1.198.0-preview.80

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 +11 -2
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -26273,6 +26273,7 @@ function getLogFilePath() {
26273
26273
  // ../common/src/output-format-context.ts
26274
26274
  var formatSlot = singleton("OutputFormat");
26275
26275
  var formatExplicitSlot = singleton("OutputFormatExplicit");
26276
+ var helpRequestedSlot = singleton("HelpRequested");
26276
26277
  var filterSlot = singleton("OutputFilter");
26277
26278
  function getOutputFormat() {
26278
26279
  return formatSlot.get("json");
@@ -27343,6 +27344,9 @@ var OutputFormatter;
27343
27344
  if (opts?.warning) {
27344
27345
  data.Warning = opts.warning;
27345
27346
  }
27347
+ if (opts?.pagination) {
27348
+ data.Pagination = opts.pagination;
27349
+ }
27346
27350
  success(data);
27347
27351
  }
27348
27352
  OutputFormatter.emitList = emitList;
@@ -27791,6 +27795,7 @@ var UIPATH_HOME_DIR = ".uipath";
27791
27795
  var DEFAULT_AUTH_TIMEOUT_MS = 5 * 60 * 1000;
27792
27796
  // ../common/src/interactivity-context.ts
27793
27797
  var modeSlot = singleton("InteractivityMode");
27798
+ var interactiveFlagSlot = singleton("InteractiveFlag");
27794
27799
  // ../common/src/polling/types.ts
27795
27800
  var PollOutcome = {
27796
27801
  Completed: "completed",
@@ -29142,6 +29147,10 @@ var getAuthEnv = async (options = {}) => {
29142
29147
  }
29143
29148
  return { authEnv, loginStatus: status };
29144
29149
  };
29150
+
29151
+ // ../auth/src/index.ts
29152
+ init_constants();
29153
+
29145
29154
  // ../auth/src/interactive.ts
29146
29155
  init_src();
29147
29156
 
@@ -29837,7 +29846,7 @@ function createCommandForwarder(executeCommand) {
29837
29846
  var package_default = {
29838
29847
  name: "@uipath/context-grounding-tool",
29839
29848
  license: "MIT",
29840
- version: "1.197.0",
29849
+ version: "1.198.0-preview.80",
29841
29850
  description: "Tool for context grounding operations via the UiPath Python SDK",
29842
29851
  keywords: [
29843
29852
  "uipcli-tool",
@@ -29940,4 +29949,4 @@ export {
29940
29949
  metadata
29941
29950
  };
29942
29951
 
29943
- //# debugId=E16C4B985DCA8EEF64756E2164756E21
29952
+ //# debugId=02F91C58D3109A2E64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/context-grounding-tool",
3
3
  "license": "MIT",
4
- "version": "1.197.0",
4
+ "version": "1.198.0-preview.80",
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": "56f68b263cec4ea1f2a39d738bd99ecf52f88fea"
31
+ "gitHead": "9b2c3c0f21a256d2f38dd28bc97e72e6f7b10a9c"
32
32
  }