@uipath/solution-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/deploy.js +2 -2
- package/dist/pack.js +11 -5
- package/dist/publish.js +2 -2
- package/dist/tool.js +5 -5
- package/package.json +2 -2
package/dist/deploy.js
CHANGED
|
@@ -37627,7 +37627,7 @@ class JSONApiResponse2 {
|
|
|
37627
37627
|
var package_default2 = {
|
|
37628
37628
|
name: "@uipath/solution-sdk",
|
|
37629
37629
|
license: "MIT",
|
|
37630
|
-
version: "1.198.0-preview.
|
|
37630
|
+
version: "1.198.0-preview.90",
|
|
37631
37631
|
repository: {
|
|
37632
37632
|
type: "git",
|
|
37633
37633
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -43225,4 +43225,4 @@ export {
|
|
|
43225
43225
|
activateDeploymentAsync
|
|
43226
43226
|
};
|
|
43227
43227
|
|
|
43228
|
-
//# debugId=
|
|
43228
|
+
//# debugId=AA29699FF79050B164756E2164756E21
|
package/dist/pack.js
CHANGED
|
@@ -27396,6 +27396,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
27396
27396
|
return uriTokens.join("");
|
|
27397
27397
|
}
|
|
27398
27398
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
27399
|
+
var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
|
|
27399
27400
|
function getParseError(parsed, matches) {
|
|
27400
27401
|
if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
|
|
27401
27402
|
return 'URI path must start with "/" when authority is present.';
|
|
@@ -27425,6 +27426,11 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
27425
27426
|
uri2 = "//" + uri2;
|
|
27426
27427
|
}
|
|
27427
27428
|
}
|
|
27429
|
+
const authorityMatch = uri2.match(AUTHORITY_PREFIX);
|
|
27430
|
+
if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
|
|
27431
|
+
parsed.error = "URI authority must not contain a literal backslash.";
|
|
27432
|
+
malformedAuthorityOrPort = true;
|
|
27433
|
+
}
|
|
27428
27434
|
const matches = uri2.match(URI_PARSE);
|
|
27429
27435
|
if (matches) {
|
|
27430
27436
|
parsed.scheme = matches[1];
|
|
@@ -27468,7 +27474,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
27468
27474
|
if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
|
|
27469
27475
|
if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
|
|
27470
27476
|
try {
|
|
27471
|
-
parsed.host = URL
|
|
27477
|
+
parsed.host = new URL("http://" + parsed.host).hostname;
|
|
27472
27478
|
} catch (e) {
|
|
27473
27479
|
parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
|
|
27474
27480
|
}
|
|
@@ -201037,7 +201043,7 @@ init_dist();
|
|
|
201037
201043
|
// ../packager/packager-tool-flow/package.json
|
|
201038
201044
|
var package_default = {
|
|
201039
201045
|
name: "@uipath/packager-tool-flow",
|
|
201040
|
-
version: "1.198.0-preview.
|
|
201046
|
+
version: "1.198.0-preview.90",
|
|
201041
201047
|
description: "UiPath Flow tool implementation",
|
|
201042
201048
|
type: "module",
|
|
201043
201049
|
exports: {
|
|
@@ -237343,7 +237349,7 @@ var sdkUserAgentHostToken22 = singleton22("SdkUserAgentHostToken");
|
|
|
237343
237349
|
var package_default3 = {
|
|
237344
237350
|
name: "@uipath/project-packager",
|
|
237345
237351
|
license: "MIT",
|
|
237346
|
-
version: "1.198.0-preview.
|
|
237352
|
+
version: "1.198.0-preview.90",
|
|
237347
237353
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
237348
237354
|
type: "module",
|
|
237349
237355
|
main: "./dist/index.js",
|
|
@@ -249304,7 +249310,7 @@ var sdkUserAgentHostToken23 = singleton23("SdkUserAgentHostToken");
|
|
|
249304
249310
|
var package_default4 = {
|
|
249305
249311
|
name: "@uipath/project-packager",
|
|
249306
249312
|
license: "MIT",
|
|
249307
|
-
version: "1.198.0-preview.
|
|
249313
|
+
version: "1.198.0-preview.90",
|
|
249308
249314
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
249309
249315
|
type: "module",
|
|
249310
249316
|
main: "./dist/index.js",
|
|
@@ -267562,4 +267568,4 @@ export {
|
|
|
267562
267568
|
packSolutionAsync
|
|
267563
267569
|
};
|
|
267564
267570
|
|
|
267565
|
-
//# debugId=
|
|
267571
|
+
//# debugId=DD97FB879642825164756E2164756E21
|
package/dist/publish.js
CHANGED
|
@@ -30589,7 +30589,7 @@ class TextApiResponse2 {
|
|
|
30589
30589
|
var package_default2 = {
|
|
30590
30590
|
name: "@uipath/solution-sdk",
|
|
30591
30591
|
license: "MIT",
|
|
30592
|
-
version: "1.198.0-preview.
|
|
30592
|
+
version: "1.198.0-preview.90",
|
|
30593
30593
|
repository: {
|
|
30594
30594
|
type: "git",
|
|
30595
30595
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -33364,4 +33364,4 @@ export {
|
|
|
33364
33364
|
publishSolutionAsync
|
|
33365
33365
|
};
|
|
33366
33366
|
|
|
33367
|
-
//# debugId=
|
|
33367
|
+
//# debugId=60848B411729E6C564756E2164756E21
|
package/dist/tool.js
CHANGED
|
@@ -30536,7 +30536,7 @@ import"./packager-tool.js";
|
|
|
30536
30536
|
var package_default = {
|
|
30537
30537
|
name: "@uipath/solution-tool",
|
|
30538
30538
|
license: "MIT",
|
|
30539
|
-
version: "1.198.0-preview.
|
|
30539
|
+
version: "1.198.0-preview.90",
|
|
30540
30540
|
description: "Create, pack, publish, and deploy UiPath Automation Solutions.",
|
|
30541
30541
|
repository: {
|
|
30542
30542
|
type: "git",
|
|
@@ -41608,7 +41608,7 @@ class TextApiResponse2 {
|
|
|
41608
41608
|
var package_default3 = {
|
|
41609
41609
|
name: "@uipath/solution-sdk",
|
|
41610
41610
|
license: "MIT",
|
|
41611
|
-
version: "1.198.0-preview.
|
|
41611
|
+
version: "1.198.0-preview.90",
|
|
41612
41612
|
repository: {
|
|
41613
41613
|
type: "git",
|
|
41614
41614
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -75948,7 +75948,7 @@ var sdkUserAgentHostToken22 = singleton22("SdkUserAgentHostToken");
|
|
|
75948
75948
|
var package_default5 = {
|
|
75949
75949
|
name: "@uipath/project-packager",
|
|
75950
75950
|
license: "MIT",
|
|
75951
|
-
version: "1.198.0-preview.
|
|
75951
|
+
version: "1.198.0-preview.90",
|
|
75952
75952
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
75953
75953
|
type: "module",
|
|
75954
75954
|
main: "./dist/index.js",
|
|
@@ -87890,7 +87890,7 @@ var sdkUserAgentHostToken23 = singleton23("SdkUserAgentHostToken");
|
|
|
87890
87890
|
var package_default6 = {
|
|
87891
87891
|
name: "@uipath/project-packager",
|
|
87892
87892
|
license: "MIT",
|
|
87893
|
-
version: "1.198.0-preview.
|
|
87893
|
+
version: "1.198.0-preview.90",
|
|
87894
87894
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
87895
87895
|
type: "module",
|
|
87896
87896
|
main: "./dist/index.js",
|
|
@@ -107477,4 +107477,4 @@ export {
|
|
|
107477
107477
|
metadata
|
|
107478
107478
|
};
|
|
107479
107479
|
|
|
107480
|
-
//# debugId=
|
|
107480
|
+
//# debugId=9418F11498B6A55864756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/solution-tool",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.198.0-preview.
|
|
4
|
+
"version": "1.198.0-preview.90",
|
|
5
5
|
"description": "Create, pack, publish, and deploy UiPath Automation Solutions.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"dist"
|
|
47
47
|
],
|
|
48
48
|
"private": false,
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "7fa615fb10f91f98f796a038ea70569336611f42"
|
|
50
50
|
}
|