@uipath/maestro-tool 1.198.0-preview.87 → 1.198.0-preview.90
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/packager-tool.js +9 -3
- package/dist/tool.js +25 -13
- package/package.json +2 -2
package/dist/packager-tool.js
CHANGED
|
@@ -25047,6 +25047,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
25047
25047
|
return uriTokens.join("");
|
|
25048
25048
|
}
|
|
25049
25049
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
25050
|
+
var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
|
|
25050
25051
|
function getParseError(parsed, matches) {
|
|
25051
25052
|
if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
|
|
25052
25053
|
return 'URI path must start with "/" when authority is present.';
|
|
@@ -25076,6 +25077,11 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
25076
25077
|
uri2 = "//" + uri2;
|
|
25077
25078
|
}
|
|
25078
25079
|
}
|
|
25080
|
+
const authorityMatch = uri2.match(AUTHORITY_PREFIX);
|
|
25081
|
+
if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
|
|
25082
|
+
parsed.error = "URI authority must not contain a literal backslash.";
|
|
25083
|
+
malformedAuthorityOrPort = true;
|
|
25084
|
+
}
|
|
25079
25085
|
const matches = uri2.match(URI_PARSE);
|
|
25080
25086
|
if (matches) {
|
|
25081
25087
|
parsed.scheme = matches[1];
|
|
@@ -25119,7 +25125,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
25119
25125
|
if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
|
|
25120
25126
|
if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
|
|
25121
25127
|
try {
|
|
25122
|
-
parsed.host = URL
|
|
25128
|
+
parsed.host = new URL("http://" + parsed.host).hostname;
|
|
25123
25129
|
} catch (e) {
|
|
25124
25130
|
parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
|
|
25125
25131
|
}
|
|
@@ -163946,7 +163952,7 @@ init_dist6();
|
|
|
163946
163952
|
// ../packager/packager-tool-flow/package.json
|
|
163947
163953
|
var package_default = {
|
|
163948
163954
|
name: "@uipath/packager-tool-flow",
|
|
163949
|
-
version: "1.198.0-preview.
|
|
163955
|
+
version: "1.198.0-preview.90",
|
|
163950
163956
|
description: "UiPath Flow tool implementation",
|
|
163951
163957
|
type: "module",
|
|
163952
163958
|
exports: {
|
|
@@ -178665,4 +178671,4 @@ toolsFactoryRepository2.registerProjectToolFactory(new BpmnToolFactory);
|
|
|
178665
178671
|
toolsFactoryRepository2.registerProjectToolFactory(new FlowToolFactory);
|
|
178666
178672
|
toolsFactoryRepository2.registerProjectToolFactory(new CaseToolFactory);
|
|
178667
178673
|
|
|
178668
|
-
//# debugId=
|
|
178674
|
+
//# debugId=1269D83B494F792064756E2164756E21
|
package/dist/tool.js
CHANGED
|
@@ -53547,6 +53547,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
53547
53547
|
return uriTokens.join("");
|
|
53548
53548
|
}
|
|
53549
53549
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
53550
|
+
var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
|
|
53550
53551
|
function getParseError(parsed, matches) {
|
|
53551
53552
|
if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
|
|
53552
53553
|
return 'URI path must start with "/" when authority is present.';
|
|
@@ -53576,6 +53577,11 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
53576
53577
|
uri = "//" + uri;
|
|
53577
53578
|
}
|
|
53578
53579
|
}
|
|
53580
|
+
const authorityMatch = uri.match(AUTHORITY_PREFIX);
|
|
53581
|
+
if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
|
|
53582
|
+
parsed.error = "URI authority must not contain a literal backslash.";
|
|
53583
|
+
malformedAuthorityOrPort = true;
|
|
53584
|
+
}
|
|
53579
53585
|
const matches = uri.match(URI_PARSE);
|
|
53580
53586
|
if (matches) {
|
|
53581
53587
|
parsed.scheme = matches[1];
|
|
@@ -53619,7 +53625,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
53619
53625
|
if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
|
|
53620
53626
|
if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
|
|
53621
53627
|
try {
|
|
53622
|
-
parsed.host = URL
|
|
53628
|
+
parsed.host = new URL("http://" + parsed.host).hostname;
|
|
53623
53629
|
} catch (e) {
|
|
53624
53630
|
parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
|
|
53625
53631
|
}
|
|
@@ -125449,7 +125455,7 @@ var init_package = __esm(() => {
|
|
|
125449
125455
|
package_default2 = {
|
|
125450
125456
|
name: "@uipath/integrationservice-sdk",
|
|
125451
125457
|
license: "MIT",
|
|
125452
|
-
version: "1.198.0-preview.
|
|
125458
|
+
version: "1.198.0-preview.90",
|
|
125453
125459
|
repository: {
|
|
125454
125460
|
type: "git",
|
|
125455
125461
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -146224,7 +146230,7 @@ var init_package3 = __esm(() => {
|
|
|
146224
146230
|
package_default4 = {
|
|
146225
146231
|
name: "@uipath/solution-sdk",
|
|
146226
146232
|
license: "MIT",
|
|
146227
|
-
version: "1.198.0-preview.
|
|
146233
|
+
version: "1.198.0-preview.90",
|
|
146228
146234
|
repository: {
|
|
146229
146235
|
type: "git",
|
|
146230
146236
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -156672,7 +156678,7 @@ var init_package4 = __esm(() => {
|
|
|
156672
156678
|
package_default5 = {
|
|
156673
156679
|
name: "@uipath/flow-tool",
|
|
156674
156680
|
license: "MIT",
|
|
156675
|
-
version: "1.198.0-preview.
|
|
156681
|
+
version: "1.198.0-preview.90",
|
|
156676
156682
|
description: "Create, debug, and run UiPath Flow projects and jobs.",
|
|
156677
156683
|
private: false,
|
|
156678
156684
|
repository: {
|
|
@@ -243884,7 +243890,7 @@ var package_default6;
|
|
|
243884
243890
|
var init_package5 = __esm(() => {
|
|
243885
243891
|
package_default6 = {
|
|
243886
243892
|
name: "@uipath/packager-tool-flow",
|
|
243887
|
-
version: "1.198.0-preview.
|
|
243893
|
+
version: "1.198.0-preview.90",
|
|
243888
243894
|
description: "UiPath Flow tool implementation",
|
|
243889
243895
|
type: "module",
|
|
243890
243896
|
exports: {
|
|
@@ -279260,7 +279266,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
279260
279266
|
package_default7 = {
|
|
279261
279267
|
name: "@uipath/project-packager",
|
|
279262
279268
|
license: "MIT",
|
|
279263
|
-
version: "1.198.0-preview.
|
|
279269
|
+
version: "1.198.0-preview.90",
|
|
279264
279270
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
279265
279271
|
type: "module",
|
|
279266
279272
|
main: "./dist/index.js",
|
|
@@ -374987,7 +374993,7 @@ var init_package6 = __esm(() => {
|
|
|
374987
374993
|
package_default8 = {
|
|
374988
374994
|
name: "@uipath/agent-sdk",
|
|
374989
374995
|
license: "MIT",
|
|
374990
|
-
version: "1.198.0-preview.
|
|
374996
|
+
version: "1.198.0-preview.90",
|
|
374991
374997
|
description: "SDK for the UiPath Agent Runtime API — evaluation execution and debug sessions.",
|
|
374992
374998
|
repository: {
|
|
374993
374999
|
type: "git",
|
|
@@ -688009,6 +688015,7 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
688009
688015
|
return uriTokens.join("");
|
|
688010
688016
|
}
|
|
688011
688017
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
688018
|
+
var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
|
|
688012
688019
|
function getParseError(parsed, matches) {
|
|
688013
688020
|
if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
|
|
688014
688021
|
return 'URI path must start with "/" when authority is present.';
|
|
@@ -688038,6 +688045,11 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
688038
688045
|
uri2 = "//" + uri2;
|
|
688039
688046
|
}
|
|
688040
688047
|
}
|
|
688048
|
+
const authorityMatch = uri2.match(AUTHORITY_PREFIX);
|
|
688049
|
+
if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
|
|
688050
|
+
parsed.error = "URI authority must not contain a literal backslash.";
|
|
688051
|
+
malformedAuthorityOrPort = true;
|
|
688052
|
+
}
|
|
688041
688053
|
const matches = uri2.match(URI_PARSE);
|
|
688042
688054
|
if (matches) {
|
|
688043
688055
|
parsed.scheme = matches[1];
|
|
@@ -688081,7 +688093,7 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
688081
688093
|
if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
|
|
688082
688094
|
if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
|
|
688083
688095
|
try {
|
|
688084
|
-
parsed.host = URL
|
|
688096
|
+
parsed.host = new URL("http://" + parsed.host).hostname;
|
|
688085
688097
|
} catch (e3) {
|
|
688086
688098
|
parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e3;
|
|
688087
688099
|
}
|
|
@@ -706708,7 +706720,7 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
706708
706720
|
package_default9 = {
|
|
706709
706721
|
name: "@uipath/case-tool",
|
|
706710
706722
|
license: "MIT",
|
|
706711
|
-
version: "1.198.1-preview.
|
|
706723
|
+
version: "1.198.1-preview.90",
|
|
706712
706724
|
description: "Manage Case Management instances, processes, and incidents.",
|
|
706713
706725
|
private: false,
|
|
706714
706726
|
repository: {
|
|
@@ -752017,7 +752029,7 @@ return {
|
|
|
752017
752029
|
package_default22 = {
|
|
752018
752030
|
name: "@uipath/integrationservice-sdk",
|
|
752019
752031
|
license: "MIT",
|
|
752020
|
-
version: "1.198.0-preview.
|
|
752032
|
+
version: "1.198.0-preview.90",
|
|
752021
752033
|
repository: {
|
|
752022
752034
|
type: "git",
|
|
752023
752035
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -757913,7 +757925,7 @@ return {
|
|
|
757913
757925
|
package_default42 = {
|
|
757914
757926
|
name: "@uipath/solution-sdk",
|
|
757915
757927
|
license: "MIT",
|
|
757916
|
-
version: "1.198.0-preview.
|
|
757928
|
+
version: "1.198.0-preview.90",
|
|
757917
757929
|
repository: {
|
|
757918
757930
|
type: "git",
|
|
757919
757931
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -760525,7 +760537,7 @@ import"./packager-tool.js";
|
|
|
760525
760537
|
var package_default = {
|
|
760526
760538
|
name: "@uipath/maestro-tool",
|
|
760527
760539
|
license: "MIT",
|
|
760528
|
-
version: "1.198.0-preview.
|
|
760540
|
+
version: "1.198.0-preview.90",
|
|
760529
760541
|
description: "Create, debug, and run Maestro projects and jobs.",
|
|
760530
760542
|
private: false,
|
|
760531
760543
|
repository: {
|
|
@@ -763598,4 +763610,4 @@ export {
|
|
|
763598
763610
|
metadata3 as metadata
|
|
763599
763611
|
};
|
|
763600
763612
|
|
|
763601
|
-
//# debugId=
|
|
763613
|
+
//# debugId=D2994839D4D6BF9464756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/maestro-tool",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.198.0-preview.
|
|
4
|
+
"version": "1.198.0-preview.90",
|
|
5
5
|
"description": "Create, debug, and run Maestro projects and jobs.",
|
|
6
6
|
"private": false,
|
|
7
7
|
"repository": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"files": [
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "7fa615fb10f91f98f796a038ea70569336611f42"
|
|
30
30
|
}
|