@uipath/uipath-python-bridge 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/index.js +9 -9
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -9878,6 +9878,14 @@ var RETRY_HINTS = [
9878
9878
  "RetryAfter30Seconds",
9879
9879
  "RetryAfter60Seconds"
9880
9880
  ];
9881
+ var CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
9882
+ var RETRY_HINT_VALUES = new Set(RETRY_HINTS);
9883
+ function isCliErrorCode(value) {
9884
+ return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
9885
+ }
9886
+ function isRetryHint(value) {
9887
+ return typeof value === "string" && RETRY_HINT_VALUES.has(value);
9888
+ }
9881
9889
  var RESULTS = {
9882
9890
  Success: "Success",
9883
9891
  Failure: "Failure",
@@ -10681,8 +10689,6 @@ function emitInvocationRequest(name, success, properties) {
10681
10689
 
10682
10690
  // ../common/src/trackedAction.ts
10683
10691
  var pollSignalSlot = singleton("PollSignal");
10684
- var cliErrorCodeValues = new Set(CLI_ERROR_CODES);
10685
- var retryHintValues = new Set(RETRY_HINTS);
10686
10692
  var TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.";
10687
10693
  var processContext = {
10688
10694
  exit: (code) => {
@@ -10770,12 +10776,6 @@ function deriveCommandPath(cmd) {
10770
10776
  }
10771
10777
  return commandTelemetryName(parts);
10772
10778
  }
10773
- function isCliErrorCode(value) {
10774
- return typeof value === "string" && cliErrorCodeValues.has(value);
10775
- }
10776
- function isRetryHint(value) {
10777
- return typeof value === "string" && retryHintValues.has(value);
10778
- }
10779
10779
  function isErrorContext(value) {
10780
10780
  return value !== null && typeof value === "object";
10781
10781
  }
@@ -13268,4 +13268,4 @@ export {
13268
13268
  runUipathPythonCommand
13269
13269
  };
13270
13270
 
13271
- //# debugId=A07F4C4DD2850D8764756E2164756E21
13271
+ //# debugId=D1E03E615701A89464756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/uipath-python-bridge",
3
3
  "license": "MIT",
4
- "version": "1.202.0-preview.136",
4
+ "version": "1.202.0-preview.137",
5
5
  "description": "Shared Python detection, caching, and CLI bridge for UiPath Python SDK tools.",
6
6
  "keywords": [
7
7
  "uip",
@@ -24,5 +24,5 @@
24
24
  "publishConfig": {
25
25
  "registry": "https://registry.npmjs.org/"
26
26
  },
27
- "gitHead": "f6270de2c7c04f4c43b2f5187b0c3d3c314c2610"
27
+ "gitHead": "bbb20a6d3501afc3435a92af9ae2e9f7ab2e34f6"
28
28
  }