@uipath/codedagent-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.
package/dist/init.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;
@@ -27783,6 +27787,7 @@ var UIPATH_HOME_DIR = ".uipath";
27783
27787
  var DEFAULT_AUTH_TIMEOUT_MS = 5 * 60 * 1000;
27784
27788
  // ../common/src/interactivity-context.ts
27785
27789
  var modeSlot = singleton("InteractivityMode");
27790
+ var interactiveFlagSlot = singleton("InteractiveFlag");
27786
27791
  // ../common/src/polling/types.ts
27787
27792
  var PollOutcome = {
27788
27793
  Completed: "completed",
@@ -29124,6 +29129,10 @@ var getAuthEnv = async (options = {}) => {
29124
29129
  }
29125
29130
  return { authEnv, loginStatus: status };
29126
29131
  };
29132
+
29133
+ // ../auth/src/index.ts
29134
+ init_constants();
29135
+
29127
29136
  // ../auth/src/interactive.ts
29128
29137
  init_src();
29129
29138
 
@@ -29393,4 +29402,4 @@ export {
29393
29402
  codedagentInitAsync
29394
29403
  };
29395
29404
 
29396
- //# debugId=D86D6889B1058AEA64756E2164756E21
29405
+ //# debugId=B1816D13D99A22F364756E2164756E21
package/dist/tool.js CHANGED
@@ -26288,6 +26288,7 @@ function getLogFilePath() {
26288
26288
  // ../common/src/output-format-context.ts
26289
26289
  var formatSlot = singleton("OutputFormat");
26290
26290
  var formatExplicitSlot = singleton("OutputFormatExplicit");
26291
+ var helpRequestedSlot = singleton("HelpRequested");
26291
26292
  var filterSlot = singleton("OutputFilter");
26292
26293
  function getOutputFormat() {
26293
26294
  return formatSlot.get("json");
@@ -27358,6 +27359,9 @@ var OutputFormatter;
27358
27359
  if (opts?.warning) {
27359
27360
  data.Warning = opts.warning;
27360
27361
  }
27362
+ if (opts?.pagination) {
27363
+ data.Pagination = opts.pagination;
27364
+ }
27361
27365
  success(data);
27362
27366
  }
27363
27367
  OutputFormatter.emitList = emitList;
@@ -27806,6 +27810,7 @@ var UIPATH_HOME_DIR = ".uipath";
27806
27810
  var DEFAULT_AUTH_TIMEOUT_MS = 5 * 60 * 1000;
27807
27811
  // ../common/src/interactivity-context.ts
27808
27812
  var modeSlot = singleton("InteractivityMode");
27813
+ var interactiveFlagSlot = singleton("InteractiveFlag");
27809
27814
  // ../common/src/polling/types.ts
27810
27815
  var PollOutcome = {
27811
27816
  Completed: "completed",
@@ -29185,6 +29190,10 @@ var getAuthEnv = async (options = {}) => {
29185
29190
  }
29186
29191
  return { authEnv, loginStatus: status };
29187
29192
  };
29193
+
29194
+ // ../auth/src/index.ts
29195
+ init_constants();
29196
+
29188
29197
  // ../auth/src/interactive.ts
29189
29198
  init_src();
29190
29199
 
@@ -29854,7 +29863,7 @@ Searching for Python installations: ${allowedVersions}`);
29854
29863
  var package_default = {
29855
29864
  name: "@uipath/codedagent-tool",
29856
29865
  license: "MIT",
29857
- version: "1.197.0",
29866
+ version: "1.198.0-preview.80",
29858
29867
  description: "Build, run, deploy, and manage AI Agents.",
29859
29868
  keywords: [
29860
29869
  "cli-tool",
@@ -30682,4 +30691,4 @@ export {
30682
30691
  metadata
30683
30692
  };
30684
30693
 
30685
- //# debugId=0DEF474C0C73C48B64756E2164756E21
30694
+ //# debugId=ED3AEC83BA5CEC0F64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/codedagent-tool",
3
3
  "license": "MIT",
4
- "version": "1.197.0",
4
+ "version": "1.198.0-preview.80",
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": "56f68b263cec4ea1f2a39d738bd99ecf52f88fea"
35
+ "gitHead": "9b2c3c0f21a256d2f38dd28bc97e72e6f7b10a9c"
36
36
  }