@uipath/audit-commands 1.202.0-preview.136 → 1.202.0-preview.138

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/index.js +9 -9
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -8816,6 +8816,14 @@ var RETRY_HINTS = [
8816
8816
  "RetryAfter30Seconds",
8817
8817
  "RetryAfter60Seconds"
8818
8818
  ];
8819
+ var CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
8820
+ var RETRY_HINT_VALUES = new Set(RETRY_HINTS);
8821
+ function isCliErrorCode(value) {
8822
+ return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
8823
+ }
8824
+ function isRetryHint(value) {
8825
+ return typeof value === "string" && RETRY_HINT_VALUES.has(value);
8826
+ }
8819
8827
  var RESULTS = {
8820
8828
  Success: "Success",
8821
8829
  Failure: "Failure",
@@ -9619,8 +9627,6 @@ function emitInvocationRequest(name, success, properties) {
9619
9627
 
9620
9628
  // ../../common/src/trackedAction.ts
9621
9629
  var pollSignalSlot = singleton("PollSignal");
9622
- var cliErrorCodeValues = new Set(CLI_ERROR_CODES);
9623
- var retryHintValues = new Set(RETRY_HINTS);
9624
9630
  var TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.";
9625
9631
  var processContext = {
9626
9632
  exit: (code) => {
@@ -9708,12 +9714,6 @@ function deriveCommandPath(cmd) {
9708
9714
  }
9709
9715
  return commandTelemetryName(parts);
9710
9716
  }
9711
- function isCliErrorCode(value) {
9712
- return typeof value === "string" && cliErrorCodeValues.has(value);
9713
- }
9714
- function isRetryHint(value) {
9715
- return typeof value === "string" && retryHintValues.has(value);
9716
- }
9717
9717
  function isErrorContext(value) {
9718
9718
  return value !== null && typeof value === "object";
9719
9719
  }
@@ -10743,4 +10743,4 @@ export {
10743
10743
  registerCommands
10744
10744
  };
10745
10745
 
10746
- //# debugId=A233A76C0C48589C64756E2164756E21
10746
+ //# debugId=790DC1D16B55E57C64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/audit-commands",
3
3
  "license": "MIT",
4
- "version": "1.202.0-preview.136",
4
+ "version": "1.202.0-preview.138",
5
5
  "description": "Admin CLI commands for the UiPath Audit Service — query event sources, paginate events, and export ZIPs from the long-term store. Library composed by admin-tool, not a standalone CLI tool.",
6
6
  "private": false,
7
7
  "repository": {
@@ -25,5 +25,5 @@
25
25
  "files": [
26
26
  "dist"
27
27
  ],
28
- "gitHead": "f6270de2c7c04f4c43b2f5187b0c3d3c314c2610"
28
+ "gitHead": "46372d5c4c4ae9352e9457a99e9d5efc1890cb48"
29
29
  }