@uipath/packager-tool-datafabric 1.201.0-preview.136 → 1.201.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.
- package/dist/init.js +18 -18
- package/package.json +2 -2
package/dist/init.js
CHANGED
|
@@ -9891,6 +9891,14 @@ var RETRY_HINTS = [
|
|
|
9891
9891
|
"RetryAfter30Seconds",
|
|
9892
9892
|
"RetryAfter60Seconds"
|
|
9893
9893
|
];
|
|
9894
|
+
var CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
|
|
9895
|
+
var RETRY_HINT_VALUES = new Set(RETRY_HINTS);
|
|
9896
|
+
function isCliErrorCode(value) {
|
|
9897
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
|
|
9898
|
+
}
|
|
9899
|
+
function isRetryHint(value) {
|
|
9900
|
+
return typeof value === "string" && RETRY_HINT_VALUES.has(value);
|
|
9901
|
+
}
|
|
9894
9902
|
var RESULTS = {
|
|
9895
9903
|
Success: "Success",
|
|
9896
9904
|
Failure: "Failure",
|
|
@@ -10682,8 +10690,6 @@ function emitInvocationRequest(name, success, properties) {
|
|
|
10682
10690
|
}
|
|
10683
10691
|
}
|
|
10684
10692
|
var pollSignalSlot = singleton("PollSignal");
|
|
10685
|
-
var cliErrorCodeValues = new Set(CLI_ERROR_CODES);
|
|
10686
|
-
var retryHintValues = new Set(RETRY_HINTS);
|
|
10687
10693
|
var TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.";
|
|
10688
10694
|
var TELEMETRY_ARG_VALUE_WITHHELD = "<provided>";
|
|
10689
10695
|
var TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
|
|
@@ -10762,12 +10768,6 @@ function deriveCommandPath(cmd) {
|
|
|
10762
10768
|
}
|
|
10763
10769
|
return commandTelemetryName(parts);
|
|
10764
10770
|
}
|
|
10765
|
-
function isCliErrorCode(value) {
|
|
10766
|
-
return typeof value === "string" && cliErrorCodeValues.has(value);
|
|
10767
|
-
}
|
|
10768
|
-
function isRetryHint(value) {
|
|
10769
|
-
return typeof value === "string" && retryHintValues.has(value);
|
|
10770
|
-
}
|
|
10771
10771
|
function isErrorContext(value) {
|
|
10772
10772
|
return value !== null && typeof value === "object";
|
|
10773
10773
|
}
|
|
@@ -20651,7 +20651,7 @@ function querystringSingleKey(key, value, keyPrefix = "") {
|
|
|
20651
20651
|
var package_default = {
|
|
20652
20652
|
name: "@uipath/solution-sdk",
|
|
20653
20653
|
license: "MIT",
|
|
20654
|
-
version: "1.202.0-preview.
|
|
20654
|
+
version: "1.202.0-preview.137",
|
|
20655
20655
|
repository: {
|
|
20656
20656
|
type: "git",
|
|
20657
20657
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -22538,6 +22538,14 @@ var RETRY_HINTS2 = [
|
|
|
22538
22538
|
"RetryAfter30Seconds",
|
|
22539
22539
|
"RetryAfter60Seconds"
|
|
22540
22540
|
];
|
|
22541
|
+
var CLI_ERROR_CODE_VALUES2 = new Set(CLI_ERROR_CODES2);
|
|
22542
|
+
var RETRY_HINT_VALUES2 = new Set(RETRY_HINTS2);
|
|
22543
|
+
function isCliErrorCode2(value) {
|
|
22544
|
+
return typeof value === "string" && CLI_ERROR_CODE_VALUES2.has(value);
|
|
22545
|
+
}
|
|
22546
|
+
function isRetryHint2(value) {
|
|
22547
|
+
return typeof value === "string" && RETRY_HINT_VALUES2.has(value);
|
|
22548
|
+
}
|
|
22541
22549
|
var RESULTS2 = {
|
|
22542
22550
|
Success: "Success",
|
|
22543
22551
|
Failure: "Failure",
|
|
@@ -23329,8 +23337,6 @@ function emitInvocationRequest2(name, success, properties) {
|
|
|
23329
23337
|
}
|
|
23330
23338
|
}
|
|
23331
23339
|
var pollSignalSlot2 = singleton2("PollSignal");
|
|
23332
|
-
var cliErrorCodeValues2 = new Set(CLI_ERROR_CODES2);
|
|
23333
|
-
var retryHintValues2 = new Set(RETRY_HINTS2);
|
|
23334
23340
|
var TELEMETRY_COMMAND_ARG_PREFIX2 = "uip.cmd.arg.";
|
|
23335
23341
|
var TELEMETRY_ARG_VALUE_WITHHELD2 = "<provided>";
|
|
23336
23342
|
var TELEMETRY_ARG_VALUE_DEFAULTED2 = "<default>";
|
|
@@ -23409,12 +23415,6 @@ function deriveCommandPath2(cmd) {
|
|
|
23409
23415
|
}
|
|
23410
23416
|
return commandTelemetryName2(parts);
|
|
23411
23417
|
}
|
|
23412
|
-
function isCliErrorCode2(value) {
|
|
23413
|
-
return typeof value === "string" && cliErrorCodeValues2.has(value);
|
|
23414
|
-
}
|
|
23415
|
-
function isRetryHint2(value) {
|
|
23416
|
-
return typeof value === "string" && retryHintValues2.has(value);
|
|
23417
|
-
}
|
|
23418
23418
|
function isErrorContext2(value) {
|
|
23419
23419
|
return value !== null && typeof value === "object";
|
|
23420
23420
|
}
|
|
@@ -24488,4 +24488,4 @@ export {
|
|
|
24488
24488
|
entityInitAsync
|
|
24489
24489
|
};
|
|
24490
24490
|
|
|
24491
|
-
//# debugId=
|
|
24491
|
+
//# debugId=243EAB02ACE146A464756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/packager-tool-datafabric",
|
|
3
|
-
"version": "1.201.0-preview.
|
|
3
|
+
"version": "1.201.0-preview.137",
|
|
4
4
|
"description": "UiPath Data Fabric entity schema, validation and packaging library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@uipath/solutionpackager-tool-core": "1.202.0"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "bbb20a6d3501afc3435a92af9ae2e9f7ab2e34f6"
|
|
35
35
|
}
|