@uipath/gov-tool 1.202.0-preview.136 → 1.202.0-preview.137

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 +10 -10
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -8176,7 +8176,7 @@ var require_commander = __commonJS(function(exports) {
8176
8176
  var package_default = {
8177
8177
  name: "@uipath/gov-tool",
8178
8178
  license: "MIT",
8179
- version: "1.202.0-preview.136",
8179
+ version: "1.202.0-preview.137",
8180
8180
  description: "Manage UiPath governance — AOps policies, Access policies, and compliance packs.",
8181
8181
  private: false,
8182
8182
  repository: {
@@ -12570,6 +12570,14 @@ var RETRY_HINTS = [
12570
12570
  "RetryAfter30Seconds",
12571
12571
  "RetryAfter60Seconds"
12572
12572
  ];
12573
+ var CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
12574
+ var RETRY_HINT_VALUES = new Set(RETRY_HINTS);
12575
+ function isCliErrorCode(value) {
12576
+ return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
12577
+ }
12578
+ function isRetryHint(value) {
12579
+ return typeof value === "string" && RETRY_HINT_VALUES.has(value);
12580
+ }
12573
12581
  var RESULTS = {
12574
12582
  Success: "Success",
12575
12583
  Failure: "Failure",
@@ -13373,8 +13381,6 @@ function emitInvocationRequest(name, success, properties) {
13373
13381
 
13374
13382
  // ../../common/src/trackedAction.ts
13375
13383
  var pollSignalSlot = singleton("PollSignal");
13376
- var cliErrorCodeValues = new Set(CLI_ERROR_CODES);
13377
- var retryHintValues = new Set(RETRY_HINTS);
13378
13384
  var TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.";
13379
13385
  var processContext = {
13380
13386
  exit: (code) => {
@@ -13462,12 +13468,6 @@ function deriveCommandPath(cmd) {
13462
13468
  }
13463
13469
  return commandTelemetryName(parts);
13464
13470
  }
13465
- function isCliErrorCode(value) {
13466
- return typeof value === "string" && cliErrorCodeValues.has(value);
13467
- }
13468
- function isRetryHint(value) {
13469
- return typeof value === "string" && retryHintValues.has(value);
13470
- }
13471
13471
  function isErrorContext(value) {
13472
13472
  return value !== null && typeof value === "object";
13473
13473
  }
@@ -25035,4 +25035,4 @@ export {
25035
25035
  registerCommands
25036
25036
  };
25037
25037
 
25038
- //# debugId=FA0266DED83A3D3964756E2164756E21
25038
+ //# debugId=EDBC3FA65E19CA3264756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/gov-tool",
3
3
  "license": "MIT",
4
- "version": "1.202.0-preview.136",
4
+ "version": "1.202.0-preview.137",
5
5
  "description": "Manage UiPath governance — AOps policies, Access policies, and compliance packs.",
6
6
  "private": false,
7
7
  "repository": {
@@ -23,5 +23,5 @@
23
23
  "files": [
24
24
  "dist"
25
25
  ],
26
- "gitHead": "f6270de2c7c04f4c43b2f5187b0c3d3c314c2610"
26
+ "gitHead": "bbb20a6d3501afc3435a92af9ae2e9f7ab2e34f6"
27
27
  }