@uipath/maestro-sdk 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/debug-http-client.js +11 -11
- package/dist/debug-service.js +11 -11
- package/dist/index.js +12 -12
- package/dist/json-input.js +11 -11
- package/dist/registry/command.js +12 -12
- package/dist/registry/snapshot.js +11 -11
- package/dist/shared-commands/index.js +11 -11
- package/dist/shared-utils.js +11 -11
- package/dist/with-pims-call.js +11 -11
- package/package.json +2 -2
|
@@ -8191,6 +8191,12 @@ var init_telemetry_init = __esm(() => {
|
|
|
8191
8191
|
function styleLine(line, style) {
|
|
8192
8192
|
return style ? `${ANSI_STYLES[style]}${line}${ANSI_RESET}` : line;
|
|
8193
8193
|
}
|
|
8194
|
+
function isCliErrorCode(value) {
|
|
8195
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
8196
|
+
}
|
|
8197
|
+
function isRetryHint(value) {
|
|
8198
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
8199
|
+
}
|
|
8194
8200
|
|
|
8195
8201
|
class Pagination {
|
|
8196
8202
|
Returned;
|
|
@@ -8631,7 +8637,7 @@ function defaultRetryForErrorCode(errorCode) {
|
|
|
8631
8637
|
return "RetryWillNotFix";
|
|
8632
8638
|
}
|
|
8633
8639
|
}
|
|
8634
|
-
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8640
|
+
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, CLI_ERROR_CODE_VALUES, RETRY_HINT_VALUES, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8635
8641
|
var init_formatter = __esm(() => {
|
|
8636
8642
|
init_logger();
|
|
8637
8643
|
init_output_codecs();
|
|
@@ -8666,6 +8672,8 @@ var init_formatter = __esm(() => {
|
|
|
8666
8672
|
"RetryAfter30Seconds",
|
|
8667
8673
|
"RetryAfter60Seconds"
|
|
8668
8674
|
];
|
|
8675
|
+
CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
8676
|
+
RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
8669
8677
|
RESULTS = {
|
|
8670
8678
|
Success: "Success",
|
|
8671
8679
|
Failure: "Failure",
|
|
@@ -11253,12 +11261,6 @@ function deriveCommandPath(cmd) {
|
|
|
11253
11261
|
}
|
|
11254
11262
|
return commandTelemetryName(parts);
|
|
11255
11263
|
}
|
|
11256
|
-
function isCliErrorCode(value) {
|
|
11257
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
11258
|
-
}
|
|
11259
|
-
function isRetryHint(value) {
|
|
11260
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
11261
|
-
}
|
|
11262
11264
|
function isErrorContext(value) {
|
|
11263
11265
|
return value !== null && typeof value === "object";
|
|
11264
11266
|
}
|
|
@@ -11282,7 +11284,7 @@ function implicitLimitViolation(cmd) {
|
|
|
11282
11284
|
function exitCodeFromProcess(fallback) {
|
|
11283
11285
|
return typeof process.exitCode === "number" ? process.exitCode : fallback;
|
|
11284
11286
|
}
|
|
11285
|
-
var pollSignalSlot,
|
|
11287
|
+
var pollSignalSlot, TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.", processContext, TELEMETRY_ARG_VALUE_WITHHELD = "<provided>", TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
11286
11288
|
var init_trackedAction = __esm(() => {
|
|
11287
11289
|
init_esm();
|
|
11288
11290
|
init_catch_error();
|
|
@@ -11300,8 +11302,6 @@ var init_trackedAction = __esm(() => {
|
|
|
11300
11302
|
init_telemetry_init();
|
|
11301
11303
|
init_timings();
|
|
11302
11304
|
pollSignalSlot = singleton("PollSignal");
|
|
11303
|
-
cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
11304
|
-
retryHintValues = new Set(RETRY_HINTS);
|
|
11305
11305
|
processContext = {
|
|
11306
11306
|
exit: (code) => {
|
|
11307
11307
|
recordExitCode(code);
|
|
@@ -12272,4 +12272,4 @@ export {
|
|
|
12272
12272
|
studioWebPost
|
|
12273
12273
|
};
|
|
12274
12274
|
|
|
12275
|
-
//# debugId=
|
|
12275
|
+
//# debugId=5B32F6308AC8847564756E2164756E21
|
package/dist/debug-service.js
CHANGED
|
@@ -8191,6 +8191,12 @@ var init_telemetry_init = __esm(() => {
|
|
|
8191
8191
|
function styleLine(line, style) {
|
|
8192
8192
|
return style ? `${ANSI_STYLES[style]}${line}${ANSI_RESET}` : line;
|
|
8193
8193
|
}
|
|
8194
|
+
function isCliErrorCode(value) {
|
|
8195
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
8196
|
+
}
|
|
8197
|
+
function isRetryHint(value) {
|
|
8198
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
8199
|
+
}
|
|
8194
8200
|
|
|
8195
8201
|
class Pagination {
|
|
8196
8202
|
Returned;
|
|
@@ -8631,7 +8637,7 @@ function defaultRetryForErrorCode(errorCode) {
|
|
|
8631
8637
|
return "RetryWillNotFix";
|
|
8632
8638
|
}
|
|
8633
8639
|
}
|
|
8634
|
-
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8640
|
+
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, CLI_ERROR_CODE_VALUES, RETRY_HINT_VALUES, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8635
8641
|
var init_formatter = __esm(() => {
|
|
8636
8642
|
init_logger();
|
|
8637
8643
|
init_output_codecs();
|
|
@@ -8666,6 +8672,8 @@ var init_formatter = __esm(() => {
|
|
|
8666
8672
|
"RetryAfter30Seconds",
|
|
8667
8673
|
"RetryAfter60Seconds"
|
|
8668
8674
|
];
|
|
8675
|
+
CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
8676
|
+
RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
8669
8677
|
RESULTS = {
|
|
8670
8678
|
Success: "Success",
|
|
8671
8679
|
Failure: "Failure",
|
|
@@ -11253,12 +11261,6 @@ function deriveCommandPath(cmd) {
|
|
|
11253
11261
|
}
|
|
11254
11262
|
return commandTelemetryName(parts);
|
|
11255
11263
|
}
|
|
11256
|
-
function isCliErrorCode(value) {
|
|
11257
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
11258
|
-
}
|
|
11259
|
-
function isRetryHint(value) {
|
|
11260
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
11261
|
-
}
|
|
11262
11264
|
function isErrorContext(value) {
|
|
11263
11265
|
return value !== null && typeof value === "object";
|
|
11264
11266
|
}
|
|
@@ -11282,7 +11284,7 @@ function implicitLimitViolation(cmd) {
|
|
|
11282
11284
|
function exitCodeFromProcess(fallback) {
|
|
11283
11285
|
return typeof process.exitCode === "number" ? process.exitCode : fallback;
|
|
11284
11286
|
}
|
|
11285
|
-
var pollSignalSlot,
|
|
11287
|
+
var pollSignalSlot, TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.", processContext, TELEMETRY_ARG_VALUE_WITHHELD = "<provided>", TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
11286
11288
|
var init_trackedAction = __esm(() => {
|
|
11287
11289
|
init_esm();
|
|
11288
11290
|
init_catch_error();
|
|
@@ -11300,8 +11302,6 @@ var init_trackedAction = __esm(() => {
|
|
|
11300
11302
|
init_telemetry_init();
|
|
11301
11303
|
init_timings();
|
|
11302
11304
|
pollSignalSlot = singleton("PollSignal");
|
|
11303
|
-
cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
11304
|
-
retryHintValues = new Set(RETRY_HINTS);
|
|
11305
11305
|
processContext = {
|
|
11306
11306
|
exit: (code) => {
|
|
11307
11307
|
recordExitCode(code);
|
|
@@ -12870,4 +12870,4 @@ export {
|
|
|
12870
12870
|
uploadAndDebugSolution
|
|
12871
12871
|
};
|
|
12872
12872
|
|
|
12873
|
-
//# debugId=
|
|
12873
|
+
//# debugId=A4C78FC96336792964756E2164756E21
|
package/dist/index.js
CHANGED
|
@@ -8200,6 +8200,12 @@ var init_telemetry_init = __esm(() => {
|
|
|
8200
8200
|
function styleLine(line, style) {
|
|
8201
8201
|
return style ? `${ANSI_STYLES[style]}${line}${ANSI_RESET}` : line;
|
|
8202
8202
|
}
|
|
8203
|
+
function isCliErrorCode(value) {
|
|
8204
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
8205
|
+
}
|
|
8206
|
+
function isRetryHint(value) {
|
|
8207
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
8208
|
+
}
|
|
8203
8209
|
|
|
8204
8210
|
class Pagination {
|
|
8205
8211
|
Returned;
|
|
@@ -8640,7 +8646,7 @@ function defaultRetryForErrorCode(errorCode) {
|
|
|
8640
8646
|
return "RetryWillNotFix";
|
|
8641
8647
|
}
|
|
8642
8648
|
}
|
|
8643
|
-
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8649
|
+
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, CLI_ERROR_CODE_VALUES, RETRY_HINT_VALUES, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8644
8650
|
var init_formatter = __esm(() => {
|
|
8645
8651
|
init_logger();
|
|
8646
8652
|
init_output_codecs();
|
|
@@ -8675,6 +8681,8 @@ var init_formatter = __esm(() => {
|
|
|
8675
8681
|
"RetryAfter30Seconds",
|
|
8676
8682
|
"RetryAfter60Seconds"
|
|
8677
8683
|
];
|
|
8684
|
+
CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
8685
|
+
RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
8678
8686
|
RESULTS = {
|
|
8679
8687
|
Success: "Success",
|
|
8680
8688
|
Failure: "Failure",
|
|
@@ -11262,12 +11270,6 @@ function deriveCommandPath(cmd) {
|
|
|
11262
11270
|
}
|
|
11263
11271
|
return commandTelemetryName(parts);
|
|
11264
11272
|
}
|
|
11265
|
-
function isCliErrorCode(value) {
|
|
11266
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
11267
|
-
}
|
|
11268
|
-
function isRetryHint(value) {
|
|
11269
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
11270
|
-
}
|
|
11271
11273
|
function isErrorContext(value) {
|
|
11272
11274
|
return value !== null && typeof value === "object";
|
|
11273
11275
|
}
|
|
@@ -11291,7 +11293,7 @@ function implicitLimitViolation(cmd) {
|
|
|
11291
11293
|
function exitCodeFromProcess(fallback) {
|
|
11292
11294
|
return typeof process.exitCode === "number" ? process.exitCode : fallback;
|
|
11293
11295
|
}
|
|
11294
|
-
var pollSignalSlot,
|
|
11296
|
+
var pollSignalSlot, TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.", processContext, TELEMETRY_ARG_VALUE_WITHHELD = "<provided>", TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
11295
11297
|
var init_trackedAction = __esm(() => {
|
|
11296
11298
|
init_esm();
|
|
11297
11299
|
init_catch_error();
|
|
@@ -11309,8 +11311,6 @@ var init_trackedAction = __esm(() => {
|
|
|
11309
11311
|
init_telemetry_init();
|
|
11310
11312
|
init_timings();
|
|
11311
11313
|
pollSignalSlot = singleton("PollSignal");
|
|
11312
|
-
cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
11313
|
-
retryHintValues = new Set(RETRY_HINTS);
|
|
11314
11314
|
processContext = {
|
|
11315
11315
|
exit: (code) => {
|
|
11316
11316
|
recordExitCode(code);
|
|
@@ -125858,7 +125858,7 @@ var init_package = __esm(() => {
|
|
|
125858
125858
|
package_default = {
|
|
125859
125859
|
name: "@uipath/integrationservice-sdk",
|
|
125860
125860
|
license: "MIT",
|
|
125861
|
-
version: "1.202.0-preview.
|
|
125861
|
+
version: "1.202.0-preview.138",
|
|
125862
125862
|
repository: {
|
|
125863
125863
|
type: "git",
|
|
125864
125864
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -202115,4 +202115,4 @@ export {
|
|
|
202115
202115
|
withPimsCall
|
|
202116
202116
|
};
|
|
202117
202117
|
|
|
202118
|
-
//# debugId=
|
|
202118
|
+
//# debugId=175FD6BA7EDF3D3164756E2164756E21
|
package/dist/json-input.js
CHANGED
|
@@ -8191,6 +8191,12 @@ var init_telemetry_init = __esm(() => {
|
|
|
8191
8191
|
function styleLine(line, style) {
|
|
8192
8192
|
return style ? `${ANSI_STYLES[style]}${line}${ANSI_RESET}` : line;
|
|
8193
8193
|
}
|
|
8194
|
+
function isCliErrorCode(value) {
|
|
8195
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
8196
|
+
}
|
|
8197
|
+
function isRetryHint(value) {
|
|
8198
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
8199
|
+
}
|
|
8194
8200
|
|
|
8195
8201
|
class Pagination {
|
|
8196
8202
|
Returned;
|
|
@@ -8631,7 +8637,7 @@ function defaultRetryForErrorCode(errorCode) {
|
|
|
8631
8637
|
return "RetryWillNotFix";
|
|
8632
8638
|
}
|
|
8633
8639
|
}
|
|
8634
|
-
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8640
|
+
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, CLI_ERROR_CODE_VALUES, RETRY_HINT_VALUES, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8635
8641
|
var init_formatter = __esm(() => {
|
|
8636
8642
|
init_logger();
|
|
8637
8643
|
init_output_codecs();
|
|
@@ -8666,6 +8672,8 @@ var init_formatter = __esm(() => {
|
|
|
8666
8672
|
"RetryAfter30Seconds",
|
|
8667
8673
|
"RetryAfter60Seconds"
|
|
8668
8674
|
];
|
|
8675
|
+
CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
8676
|
+
RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
8669
8677
|
RESULTS = {
|
|
8670
8678
|
Success: "Success",
|
|
8671
8679
|
Failure: "Failure",
|
|
@@ -11253,12 +11261,6 @@ function deriveCommandPath(cmd) {
|
|
|
11253
11261
|
}
|
|
11254
11262
|
return commandTelemetryName(parts);
|
|
11255
11263
|
}
|
|
11256
|
-
function isCliErrorCode(value) {
|
|
11257
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
11258
|
-
}
|
|
11259
|
-
function isRetryHint(value) {
|
|
11260
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
11261
|
-
}
|
|
11262
11264
|
function isErrorContext(value) {
|
|
11263
11265
|
return value !== null && typeof value === "object";
|
|
11264
11266
|
}
|
|
@@ -11282,7 +11284,7 @@ function implicitLimitViolation(cmd) {
|
|
|
11282
11284
|
function exitCodeFromProcess(fallback) {
|
|
11283
11285
|
return typeof process.exitCode === "number" ? process.exitCode : fallback;
|
|
11284
11286
|
}
|
|
11285
|
-
var pollSignalSlot,
|
|
11287
|
+
var pollSignalSlot, TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.", processContext, TELEMETRY_ARG_VALUE_WITHHELD = "<provided>", TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
11286
11288
|
var init_trackedAction = __esm(() => {
|
|
11287
11289
|
init_esm();
|
|
11288
11290
|
init_catch_error();
|
|
@@ -11300,8 +11302,6 @@ var init_trackedAction = __esm(() => {
|
|
|
11300
11302
|
init_telemetry_init();
|
|
11301
11303
|
init_timings();
|
|
11302
11304
|
pollSignalSlot = singleton("PollSignal");
|
|
11303
|
-
cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
11304
|
-
retryHintValues = new Set(RETRY_HINTS);
|
|
11305
11305
|
processContext = {
|
|
11306
11306
|
exit: (code) => {
|
|
11307
11307
|
recordExitCode(code);
|
|
@@ -12047,4 +12047,4 @@ export {
|
|
|
12047
12047
|
resolveJsonInput
|
|
12048
12048
|
};
|
|
12049
12049
|
|
|
12050
|
-
//# debugId=
|
|
12050
|
+
//# debugId=8112459230A5D7CA64756E2164756E21
|
package/dist/registry/command.js
CHANGED
|
@@ -8191,6 +8191,12 @@ var init_telemetry_init = __esm(() => {
|
|
|
8191
8191
|
function styleLine(line, style) {
|
|
8192
8192
|
return style ? `${ANSI_STYLES[style]}${line}${ANSI_RESET}` : line;
|
|
8193
8193
|
}
|
|
8194
|
+
function isCliErrorCode(value) {
|
|
8195
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
8196
|
+
}
|
|
8197
|
+
function isRetryHint(value) {
|
|
8198
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
8199
|
+
}
|
|
8194
8200
|
|
|
8195
8201
|
class Pagination {
|
|
8196
8202
|
Returned;
|
|
@@ -8631,7 +8637,7 @@ function defaultRetryForErrorCode(errorCode) {
|
|
|
8631
8637
|
return "RetryWillNotFix";
|
|
8632
8638
|
}
|
|
8633
8639
|
}
|
|
8634
|
-
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8640
|
+
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, CLI_ERROR_CODE_VALUES, RETRY_HINT_VALUES, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8635
8641
|
var init_formatter = __esm(() => {
|
|
8636
8642
|
init_logger();
|
|
8637
8643
|
init_output_codecs();
|
|
@@ -8666,6 +8672,8 @@ var init_formatter = __esm(() => {
|
|
|
8666
8672
|
"RetryAfter30Seconds",
|
|
8667
8673
|
"RetryAfter60Seconds"
|
|
8668
8674
|
];
|
|
8675
|
+
CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
8676
|
+
RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
8669
8677
|
RESULTS = {
|
|
8670
8678
|
Success: "Success",
|
|
8671
8679
|
Failure: "Failure",
|
|
@@ -11253,12 +11261,6 @@ function deriveCommandPath(cmd) {
|
|
|
11253
11261
|
}
|
|
11254
11262
|
return commandTelemetryName(parts);
|
|
11255
11263
|
}
|
|
11256
|
-
function isCliErrorCode(value) {
|
|
11257
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
11258
|
-
}
|
|
11259
|
-
function isRetryHint(value) {
|
|
11260
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
11261
|
-
}
|
|
11262
11264
|
function isErrorContext(value) {
|
|
11263
11265
|
return value !== null && typeof value === "object";
|
|
11264
11266
|
}
|
|
@@ -11282,7 +11284,7 @@ function implicitLimitViolation(cmd) {
|
|
|
11282
11284
|
function exitCodeFromProcess(fallback) {
|
|
11283
11285
|
return typeof process.exitCode === "number" ? process.exitCode : fallback;
|
|
11284
11286
|
}
|
|
11285
|
-
var pollSignalSlot,
|
|
11287
|
+
var pollSignalSlot, TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.", processContext, TELEMETRY_ARG_VALUE_WITHHELD = "<provided>", TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
11286
11288
|
var init_trackedAction = __esm(() => {
|
|
11287
11289
|
init_esm();
|
|
11288
11290
|
init_catch_error();
|
|
@@ -11300,8 +11302,6 @@ var init_trackedAction = __esm(() => {
|
|
|
11300
11302
|
init_telemetry_init();
|
|
11301
11303
|
init_timings();
|
|
11302
11304
|
pollSignalSlot = singleton("PollSignal");
|
|
11303
|
-
cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
11304
|
-
retryHintValues = new Set(RETRY_HINTS);
|
|
11305
11305
|
processContext = {
|
|
11306
11306
|
exit: (code) => {
|
|
11307
11307
|
recordExitCode(code);
|
|
@@ -125858,7 +125858,7 @@ var init_package = __esm(() => {
|
|
|
125858
125858
|
package_default = {
|
|
125859
125859
|
name: "@uipath/integrationservice-sdk",
|
|
125860
125860
|
license: "MIT",
|
|
125861
|
-
version: "1.202.0-preview.
|
|
125861
|
+
version: "1.202.0-preview.138",
|
|
125862
125862
|
repository: {
|
|
125863
125863
|
type: "git",
|
|
125864
125864
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -192484,4 +192484,4 @@ export {
|
|
|
192484
192484
|
registerRegistryCommand
|
|
192485
192485
|
};
|
|
192486
192486
|
|
|
192487
|
-
//# debugId=
|
|
192487
|
+
//# debugId=BBDFA8FD306D067564756E2164756E21
|
|
@@ -8191,6 +8191,12 @@ var init_telemetry_init = __esm(() => {
|
|
|
8191
8191
|
function styleLine(line, style) {
|
|
8192
8192
|
return style ? `${ANSI_STYLES[style]}${line}${ANSI_RESET}` : line;
|
|
8193
8193
|
}
|
|
8194
|
+
function isCliErrorCode(value) {
|
|
8195
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
8196
|
+
}
|
|
8197
|
+
function isRetryHint(value) {
|
|
8198
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
8199
|
+
}
|
|
8194
8200
|
|
|
8195
8201
|
class Pagination {
|
|
8196
8202
|
Returned;
|
|
@@ -8631,7 +8637,7 @@ function defaultRetryForErrorCode(errorCode) {
|
|
|
8631
8637
|
return "RetryWillNotFix";
|
|
8632
8638
|
}
|
|
8633
8639
|
}
|
|
8634
|
-
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8640
|
+
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, CLI_ERROR_CODE_VALUES, RETRY_HINT_VALUES, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8635
8641
|
var init_formatter = __esm(() => {
|
|
8636
8642
|
init_logger();
|
|
8637
8643
|
init_output_codecs();
|
|
@@ -8666,6 +8672,8 @@ var init_formatter = __esm(() => {
|
|
|
8666
8672
|
"RetryAfter30Seconds",
|
|
8667
8673
|
"RetryAfter60Seconds"
|
|
8668
8674
|
];
|
|
8675
|
+
CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
8676
|
+
RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
8669
8677
|
RESULTS = {
|
|
8670
8678
|
Success: "Success",
|
|
8671
8679
|
Failure: "Failure",
|
|
@@ -11253,12 +11261,6 @@ function deriveCommandPath(cmd) {
|
|
|
11253
11261
|
}
|
|
11254
11262
|
return commandTelemetryName(parts);
|
|
11255
11263
|
}
|
|
11256
|
-
function isCliErrorCode(value) {
|
|
11257
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
11258
|
-
}
|
|
11259
|
-
function isRetryHint(value) {
|
|
11260
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
11261
|
-
}
|
|
11262
11264
|
function isErrorContext(value) {
|
|
11263
11265
|
return value !== null && typeof value === "object";
|
|
11264
11266
|
}
|
|
@@ -11282,7 +11284,7 @@ function implicitLimitViolation(cmd) {
|
|
|
11282
11284
|
function exitCodeFromProcess(fallback) {
|
|
11283
11285
|
return typeof process.exitCode === "number" ? process.exitCode : fallback;
|
|
11284
11286
|
}
|
|
11285
|
-
var pollSignalSlot,
|
|
11287
|
+
var pollSignalSlot, TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.", processContext, TELEMETRY_ARG_VALUE_WITHHELD = "<provided>", TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
11286
11288
|
var init_trackedAction = __esm(() => {
|
|
11287
11289
|
init_esm();
|
|
11288
11290
|
init_catch_error();
|
|
@@ -11300,8 +11302,6 @@ var init_trackedAction = __esm(() => {
|
|
|
11300
11302
|
init_telemetry_init();
|
|
11301
11303
|
init_timings();
|
|
11302
11304
|
pollSignalSlot = singleton("PollSignal");
|
|
11303
|
-
cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
11304
|
-
retryHintValues = new Set(RETRY_HINTS);
|
|
11305
11305
|
processContext = {
|
|
11306
11306
|
exit: (code) => {
|
|
11307
11307
|
recordExitCode(code);
|
|
@@ -12048,4 +12048,4 @@ export {
|
|
|
12048
12048
|
resolveMaestroRegistry
|
|
12049
12049
|
};
|
|
12050
12050
|
|
|
12051
|
-
//# debugId=
|
|
12051
|
+
//# debugId=B855E10B0B55FAA264756E2164756E21
|
|
@@ -8191,6 +8191,12 @@ var init_telemetry_init = __esm(() => {
|
|
|
8191
8191
|
function styleLine(line, style) {
|
|
8192
8192
|
return style ? `${ANSI_STYLES[style]}${line}${ANSI_RESET}` : line;
|
|
8193
8193
|
}
|
|
8194
|
+
function isCliErrorCode(value) {
|
|
8195
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
8196
|
+
}
|
|
8197
|
+
function isRetryHint(value) {
|
|
8198
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
8199
|
+
}
|
|
8194
8200
|
|
|
8195
8201
|
class Pagination {
|
|
8196
8202
|
Returned;
|
|
@@ -8631,7 +8637,7 @@ function defaultRetryForErrorCode(errorCode) {
|
|
|
8631
8637
|
return "RetryWillNotFix";
|
|
8632
8638
|
}
|
|
8633
8639
|
}
|
|
8634
|
-
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8640
|
+
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, CLI_ERROR_CODE_VALUES, RETRY_HINT_VALUES, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8635
8641
|
var init_formatter = __esm(() => {
|
|
8636
8642
|
init_logger();
|
|
8637
8643
|
init_output_codecs();
|
|
@@ -8666,6 +8672,8 @@ var init_formatter = __esm(() => {
|
|
|
8666
8672
|
"RetryAfter30Seconds",
|
|
8667
8673
|
"RetryAfter60Seconds"
|
|
8668
8674
|
];
|
|
8675
|
+
CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
8676
|
+
RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
8669
8677
|
RESULTS = {
|
|
8670
8678
|
Success: "Success",
|
|
8671
8679
|
Failure: "Failure",
|
|
@@ -11253,12 +11261,6 @@ function deriveCommandPath(cmd) {
|
|
|
11253
11261
|
}
|
|
11254
11262
|
return commandTelemetryName(parts);
|
|
11255
11263
|
}
|
|
11256
|
-
function isCliErrorCode(value) {
|
|
11257
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
11258
|
-
}
|
|
11259
|
-
function isRetryHint(value) {
|
|
11260
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
11261
|
-
}
|
|
11262
11264
|
function isErrorContext(value) {
|
|
11263
11265
|
return value !== null && typeof value === "object";
|
|
11264
11266
|
}
|
|
@@ -11282,7 +11284,7 @@ function implicitLimitViolation(cmd) {
|
|
|
11282
11284
|
function exitCodeFromProcess(fallback) {
|
|
11283
11285
|
return typeof process.exitCode === "number" ? process.exitCode : fallback;
|
|
11284
11286
|
}
|
|
11285
|
-
var pollSignalSlot,
|
|
11287
|
+
var pollSignalSlot, TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.", processContext, TELEMETRY_ARG_VALUE_WITHHELD = "<provided>", TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
11286
11288
|
var init_trackedAction = __esm(() => {
|
|
11287
11289
|
init_esm();
|
|
11288
11290
|
init_catch_error();
|
|
@@ -11300,8 +11302,6 @@ var init_trackedAction = __esm(() => {
|
|
|
11300
11302
|
init_telemetry_init();
|
|
11301
11303
|
init_timings();
|
|
11302
11304
|
pollSignalSlot = singleton("PollSignal");
|
|
11303
|
-
cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
11304
|
-
retryHintValues = new Set(RETRY_HINTS);
|
|
11305
11305
|
processContext = {
|
|
11306
11306
|
exit: (code) => {
|
|
11307
11307
|
recordExitCode(code);
|
|
@@ -15725,4 +15725,4 @@ export {
|
|
|
15725
15725
|
registerSharedProcessesCommands
|
|
15726
15726
|
};
|
|
15727
15727
|
|
|
15728
|
-
//# debugId=
|
|
15728
|
+
//# debugId=84F32A19090E90E764756E2164756E21
|
package/dist/shared-utils.js
CHANGED
|
@@ -8191,6 +8191,12 @@ var init_telemetry_init = __esm(() => {
|
|
|
8191
8191
|
function styleLine(line, style) {
|
|
8192
8192
|
return style ? `${ANSI_STYLES[style]}${line}${ANSI_RESET}` : line;
|
|
8193
8193
|
}
|
|
8194
|
+
function isCliErrorCode(value) {
|
|
8195
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
8196
|
+
}
|
|
8197
|
+
function isRetryHint(value) {
|
|
8198
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
8199
|
+
}
|
|
8194
8200
|
|
|
8195
8201
|
class Pagination {
|
|
8196
8202
|
Returned;
|
|
@@ -8631,7 +8637,7 @@ function defaultRetryForErrorCode(errorCode) {
|
|
|
8631
8637
|
return "RetryWillNotFix";
|
|
8632
8638
|
}
|
|
8633
8639
|
}
|
|
8634
|
-
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8640
|
+
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, CLI_ERROR_CODE_VALUES, RETRY_HINT_VALUES, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8635
8641
|
var init_formatter = __esm(() => {
|
|
8636
8642
|
init_logger();
|
|
8637
8643
|
init_output_codecs();
|
|
@@ -8666,6 +8672,8 @@ var init_formatter = __esm(() => {
|
|
|
8666
8672
|
"RetryAfter30Seconds",
|
|
8667
8673
|
"RetryAfter60Seconds"
|
|
8668
8674
|
];
|
|
8675
|
+
CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
8676
|
+
RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
8669
8677
|
RESULTS = {
|
|
8670
8678
|
Success: "Success",
|
|
8671
8679
|
Failure: "Failure",
|
|
@@ -11253,12 +11261,6 @@ function deriveCommandPath(cmd) {
|
|
|
11253
11261
|
}
|
|
11254
11262
|
return commandTelemetryName(parts);
|
|
11255
11263
|
}
|
|
11256
|
-
function isCliErrorCode(value) {
|
|
11257
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
11258
|
-
}
|
|
11259
|
-
function isRetryHint(value) {
|
|
11260
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
11261
|
-
}
|
|
11262
11264
|
function isErrorContext(value) {
|
|
11263
11265
|
return value !== null && typeof value === "object";
|
|
11264
11266
|
}
|
|
@@ -11282,7 +11284,7 @@ function implicitLimitViolation(cmd) {
|
|
|
11282
11284
|
function exitCodeFromProcess(fallback) {
|
|
11283
11285
|
return typeof process.exitCode === "number" ? process.exitCode : fallback;
|
|
11284
11286
|
}
|
|
11285
|
-
var pollSignalSlot,
|
|
11287
|
+
var pollSignalSlot, TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.", processContext, TELEMETRY_ARG_VALUE_WITHHELD = "<provided>", TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
11286
11288
|
var init_trackedAction = __esm(() => {
|
|
11287
11289
|
init_esm();
|
|
11288
11290
|
init_catch_error();
|
|
@@ -11300,8 +11302,6 @@ var init_trackedAction = __esm(() => {
|
|
|
11300
11302
|
init_telemetry_init();
|
|
11301
11303
|
init_timings();
|
|
11302
11304
|
pollSignalSlot = singleton("PollSignal");
|
|
11303
|
-
cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
11304
|
-
retryHintValues = new Set(RETRY_HINTS);
|
|
11305
11305
|
processContext = {
|
|
11306
11306
|
exit: (code) => {
|
|
11307
11307
|
recordExitCode(code);
|
|
@@ -12004,4 +12004,4 @@ export {
|
|
|
12004
12004
|
readStdin
|
|
12005
12005
|
};
|
|
12006
12006
|
|
|
12007
|
-
//# debugId=
|
|
12007
|
+
//# debugId=09D0F3737335772A64756E2164756E21
|
package/dist/with-pims-call.js
CHANGED
|
@@ -8191,6 +8191,12 @@ var init_telemetry_init = __esm(() => {
|
|
|
8191
8191
|
function styleLine(line, style) {
|
|
8192
8192
|
return style ? `${ANSI_STYLES[style]}${line}${ANSI_RESET}` : line;
|
|
8193
8193
|
}
|
|
8194
|
+
function isCliErrorCode(value) {
|
|
8195
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
8196
|
+
}
|
|
8197
|
+
function isRetryHint(value) {
|
|
8198
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
8199
|
+
}
|
|
8194
8200
|
|
|
8195
8201
|
class Pagination {
|
|
8196
8202
|
Returned;
|
|
@@ -8631,7 +8637,7 @@ function defaultRetryForErrorCode(errorCode) {
|
|
|
8631
8637
|
return "RetryWillNotFix";
|
|
8632
8638
|
}
|
|
8633
8639
|
}
|
|
8634
|
-
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8640
|
+
var ANSI_STYLES, ANSI_RESET = "\x1B[0m", CLI_ERROR_CODES, RETRY_HINTS, CLI_ERROR_CODE_VALUES, RETRY_HINT_VALUES, RESULTS, EXIT_CODES, NESTED_INDENT = " ", FilterEvaluationError, FilterImplicitLimitError, LOCAL_PERMISSION_TEXT_PATTERN, OutputFormatter;
|
|
8635
8641
|
var init_formatter = __esm(() => {
|
|
8636
8642
|
init_logger();
|
|
8637
8643
|
init_output_codecs();
|
|
@@ -8666,6 +8672,8 @@ var init_formatter = __esm(() => {
|
|
|
8666
8672
|
"RetryAfter30Seconds",
|
|
8667
8673
|
"RetryAfter60Seconds"
|
|
8668
8674
|
];
|
|
8675
|
+
CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
8676
|
+
RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
8669
8677
|
RESULTS = {
|
|
8670
8678
|
Success: "Success",
|
|
8671
8679
|
Failure: "Failure",
|
|
@@ -11253,12 +11261,6 @@ function deriveCommandPath(cmd) {
|
|
|
11253
11261
|
}
|
|
11254
11262
|
return commandTelemetryName(parts);
|
|
11255
11263
|
}
|
|
11256
|
-
function isCliErrorCode(value) {
|
|
11257
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
11258
|
-
}
|
|
11259
|
-
function isRetryHint(value) {
|
|
11260
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
11261
|
-
}
|
|
11262
11264
|
function isErrorContext(value) {
|
|
11263
11265
|
return value !== null && typeof value === "object";
|
|
11264
11266
|
}
|
|
@@ -11282,7 +11284,7 @@ function implicitLimitViolation(cmd) {
|
|
|
11282
11284
|
function exitCodeFromProcess(fallback) {
|
|
11283
11285
|
return typeof process.exitCode === "number" ? process.exitCode : fallback;
|
|
11284
11286
|
}
|
|
11285
|
-
var pollSignalSlot,
|
|
11287
|
+
var pollSignalSlot, TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.", processContext, TELEMETRY_ARG_VALUE_WITHHELD = "<provided>", TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
11286
11288
|
var init_trackedAction = __esm(() => {
|
|
11287
11289
|
init_esm();
|
|
11288
11290
|
init_catch_error();
|
|
@@ -11300,8 +11302,6 @@ var init_trackedAction = __esm(() => {
|
|
|
11300
11302
|
init_telemetry_init();
|
|
11301
11303
|
init_timings();
|
|
11302
11304
|
pollSignalSlot = singleton("PollSignal");
|
|
11303
|
-
cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
11304
|
-
retryHintValues = new Set(RETRY_HINTS);
|
|
11305
11305
|
processContext = {
|
|
11306
11306
|
exit: (code) => {
|
|
11307
11307
|
recordExitCode(code);
|
|
@@ -13710,4 +13710,4 @@ export {
|
|
|
13710
13710
|
withPimsCall
|
|
13711
13711
|
};
|
|
13712
13712
|
|
|
13713
|
-
//# debugId=
|
|
13713
|
+
//# debugId=D407683FD669273364756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/maestro-sdk",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.202.0-preview.
|
|
4
|
+
"version": "1.202.0-preview.138",
|
|
5
5
|
"description": "SDK for the UiPath Maestro (PIMS) API — process instance management.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"files": [
|
|
88
88
|
"dist"
|
|
89
89
|
],
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "46372d5c4c4ae9352e9457a99e9d5efc1890cb48"
|
|
91
91
|
}
|