@uipath/apms-tool 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.
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  Command,
4
4
  metadata,
5
5
  registerCommands
6
- } from "./tool-94eebqwe.js";
6
+ } from "./tool-r0t0f14x.js";
7
7
  import"./tool-1de529jm.js";
8
8
 
9
9
  // src/index.ts
@@ -2100,7 +2100,7 @@ var require_commander = __commonJS(function(exports) {
2100
2100
  var package_default = {
2101
2101
  name: "@uipath/apms-tool",
2102
2102
  license: "MIT",
2103
- version: "1.202.0-preview.136",
2103
+ version: "1.202.0-preview.138",
2104
2104
  description: "CLI plugin for the UiPath Access Policy Management Service.",
2105
2105
  private: false,
2106
2106
  repository: {
@@ -7132,6 +7132,14 @@ var RETRY_HINTS = [
7132
7132
  "RetryAfter30Seconds",
7133
7133
  "RetryAfter60Seconds"
7134
7134
  ];
7135
+ var CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
7136
+ var RETRY_HINT_VALUES = new Set(RETRY_HINTS);
7137
+ function isCliErrorCode(value) {
7138
+ return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
7139
+ }
7140
+ function isRetryHint(value) {
7141
+ return typeof value === "string" && RETRY_HINT_VALUES.has(value);
7142
+ }
7135
7143
  var RESULTS = {
7136
7144
  Success: "Success",
7137
7145
  Failure: "Failure",
@@ -7935,8 +7943,6 @@ function emitInvocationRequest(name, success, properties) {
7935
7943
 
7936
7944
  // ../../common/src/trackedAction.ts
7937
7945
  var pollSignalSlot = singleton("PollSignal");
7938
- var cliErrorCodeValues = new Set(CLI_ERROR_CODES);
7939
- var retryHintValues = new Set(RETRY_HINTS);
7940
7946
  var TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.";
7941
7947
  var processContext = {
7942
7948
  exit: (code) => {
@@ -8024,12 +8030,6 @@ function deriveCommandPath(cmd) {
8024
8030
  }
8025
8031
  return commandTelemetryName(parts);
8026
8032
  }
8027
- function isCliErrorCode(value) {
8028
- return typeof value === "string" && cliErrorCodeValues.has(value);
8029
- }
8030
- function isRetryHint(value) {
8031
- return typeof value === "string" && retryHintValues.has(value);
8032
- }
8033
8033
  function isErrorContext(value) {
8034
8034
  return value !== null && typeof value === "object";
8035
8035
  }
@@ -9546,4 +9546,4 @@ var registerCommands = async (program2) => {
9546
9546
 
9547
9547
  export { Command, metadata, registerCommands };
9548
9548
 
9549
- //# debugId=41427B55E35A133F64756E2164756E21
9549
+ //# debugId=DB2591BD5E543FB764756E2164756E21
package/dist/tool.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  metadata,
3
3
  registerCommands
4
- } from "./tool-94eebqwe.js";
4
+ } from "./tool-r0t0f14x.js";
5
5
  import"./tool-1de529jm.js";
6
6
  export {
7
7
  metadata,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/apms-tool",
3
3
  "license": "MIT",
4
- "version": "1.202.0-preview.136",
4
+ "version": "1.202.0-preview.138",
5
5
  "description": "CLI plugin for the UiPath Access Policy Management Service.",
6
6
  "private": false,
7
7
  "repository": {
@@ -26,5 +26,5 @@
26
26
  "files": [
27
27
  "dist"
28
28
  ],
29
- "gitHead": "f6270de2c7c04f4c43b2f5187b0c3d3c314c2610"
29
+ "gitHead": "46372d5c4c4ae9352e9457a99e9d5efc1890cb48"
30
30
  }