@uipath/platform-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-c3st79s9.js";
6
+ } from "./tool-m2t3x4t2.js";
7
7
  import"./tool-1de529jm.js";
8
8
 
9
9
  // src/index.ts
@@ -27336,7 +27336,7 @@ var require_dist2 = __commonJS(function(exports) {
27336
27336
  var package_default = {
27337
27337
  name: "@uipath/platform-tool",
27338
27338
  license: "MIT",
27339
- version: "1.202.0-preview.136",
27339
+ version: "1.202.0-preview.138",
27340
27340
  description: "Manage UiPath platform-level resources such as tenant licensing.",
27341
27341
  publishConfig: {
27342
27342
  registry: "https://npm.pkg.github.com/"
@@ -31029,6 +31029,14 @@ var RETRY_HINTS = [
31029
31029
  "RetryAfter30Seconds",
31030
31030
  "RetryAfter60Seconds"
31031
31031
  ];
31032
+ var CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
31033
+ var RETRY_HINT_VALUES = new Set(RETRY_HINTS);
31034
+ function isCliErrorCode(value) {
31035
+ return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
31036
+ }
31037
+ function isRetryHint(value) {
31038
+ return typeof value === "string" && RETRY_HINT_VALUES.has(value);
31039
+ }
31032
31040
  var RESULTS = {
31033
31041
  Success: "Success",
31034
31042
  Failure: "Failure",
@@ -31865,8 +31873,6 @@ function emitInvocationRequest(name, success, properties) {
31865
31873
 
31866
31874
  // ../common/src/trackedAction.ts
31867
31875
  var pollSignalSlot = singleton("PollSignal");
31868
- var cliErrorCodeValues = new Set(CLI_ERROR_CODES);
31869
- var retryHintValues = new Set(RETRY_HINTS);
31870
31876
  var TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.";
31871
31877
  var processContext = {
31872
31878
  exit: (code) => {
@@ -31954,12 +31960,6 @@ function deriveCommandPath(cmd) {
31954
31960
  }
31955
31961
  return commandTelemetryName(parts);
31956
31962
  }
31957
- function isCliErrorCode(value) {
31958
- return typeof value === "string" && cliErrorCodeValues.has(value);
31959
- }
31960
- function isRetryHint(value) {
31961
- return typeof value === "string" && retryHintValues.has(value);
31962
- }
31963
31963
  function isErrorContext(value) {
31964
31964
  return value !== null && typeof value === "object";
31965
31965
  }
@@ -36404,4 +36404,4 @@ var registerCommands = async (program2) => {
36404
36404
 
36405
36405
  export { Command, metadata, registerCommands };
36406
36406
 
36407
- //# debugId=32E1E583A2A2FE3964756E2164756E21
36407
+ //# debugId=334E6664A35EF31364756E2164756E21
package/dist/tool.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  metadata,
3
3
  registerCommands
4
- } from "./tool-c3st79s9.js";
4
+ } from "./tool-m2t3x4t2.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/platform-tool",
3
3
  "license": "MIT",
4
- "version": "1.202.0-preview.136",
4
+ "version": "1.202.0-preview.138",
5
5
  "description": "Manage UiPath platform-level resources such as tenant licensing.",
6
6
  "publishConfig": {
7
7
  "registry": "https://registry.npmjs.org/"
@@ -20,5 +20,5 @@
20
20
  "keywords": [
21
21
  "cli-tool"
22
22
  ],
23
- "gitHead": "f6270de2c7c04f4c43b2f5187b0c3d3c314c2610"
23
+ "gitHead": "46372d5c4c4ae9352e9457a99e9d5efc1890cb48"
24
24
  }