@uipath/project-packager 1.200.0-preview.120 → 1.201.0-preview.121
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/browser.js +2 -2
- package/dist/index.js +3 -3
- package/dist/node.js +7608 -7317
- package/package.json +5 -5
package/dist/browser.js
CHANGED
|
@@ -22329,6 +22329,7 @@ var TLS_ERROR_CODES = new Set([
|
|
|
22329
22329
|
]);
|
|
22330
22330
|
var TLS_INSTRUCTIONS = "The server's TLS certificate could not be verified. Most often a " + "corporate proxy/firewall re-signs HTTPS with a root CA that Node does " + "not trust — set NODE_EXTRA_CA_CERTS to that CA's PEM file (and HTTPS_PROXY " + "if you connect through a proxy). If the certificate is instead expired or " + "its hostname does not match, fix the endpoint URL or the system clock. " + "Then retry.";
|
|
22331
22331
|
var NETWORK_INSTRUCTIONS = "Could not reach the UiPath service. Check your network connection and " + "VPN, confirm any HTTP_PROXY/HTTPS_PROXY/NO_PROXY settings are correct, " + "then retry.";
|
|
22332
|
+
var LOCAL_PERMISSION_ERROR_CODES = new Set(["EACCES", "EPERM", "EROFS"]);
|
|
22332
22333
|
var logFilePathSlot = singleton("logFilePath");
|
|
22333
22334
|
function setGlobalLogFilePath(path) {
|
|
22334
22335
|
logFilePathSlot.set(path);
|
|
@@ -23243,7 +23244,6 @@ class TelemetryService {
|
|
|
23243
23244
|
}
|
|
23244
23245
|
}
|
|
23245
23246
|
var factorySlot = singleton("PackagerFactoryProvider");
|
|
23246
|
-
var moduleSlot = singleton("ToolModuleProvider");
|
|
23247
23247
|
|
|
23248
23248
|
// src/base-browser-packager-factory.ts
|
|
23249
23249
|
import { BrowserFileSystem } from "@uipath/filesystem/browser";
|
|
@@ -24260,4 +24260,4 @@ export {
|
|
|
24260
24260
|
BaseBrowserPackagerFactory
|
|
24261
24261
|
};
|
|
24262
24262
|
|
|
24263
|
-
//# debugId=
|
|
24263
|
+
//# debugId=DB1B7C36D156FFC164756E2164756E21
|
package/dist/index.js
CHANGED
|
@@ -22329,6 +22329,7 @@ var TLS_ERROR_CODES = new Set([
|
|
|
22329
22329
|
]);
|
|
22330
22330
|
var TLS_INSTRUCTIONS = "The server's TLS certificate could not be verified. Most often a " + "corporate proxy/firewall re-signs HTTPS with a root CA that Node does " + "not trust — set NODE_EXTRA_CA_CERTS to that CA's PEM file (and HTTPS_PROXY " + "if you connect through a proxy). If the certificate is instead expired or " + "its hostname does not match, fix the endpoint URL or the system clock. " + "Then retry.";
|
|
22331
22331
|
var NETWORK_INSTRUCTIONS = "Could not reach the UiPath service. Check your network connection and " + "VPN, confirm any HTTP_PROXY/HTTPS_PROXY/NO_PROXY settings are correct, " + "then retry.";
|
|
22332
|
+
var LOCAL_PERMISSION_ERROR_CODES = new Set(["EACCES", "EPERM", "EROFS"]);
|
|
22332
22333
|
var logFilePathSlot = singleton("logFilePath");
|
|
22333
22334
|
function setGlobalLogFilePath(path) {
|
|
22334
22335
|
logFilePathSlot.set(path);
|
|
@@ -23243,7 +23244,6 @@ class TelemetryService {
|
|
|
23243
23244
|
}
|
|
23244
23245
|
}
|
|
23245
23246
|
var factorySlot = singleton("PackagerFactoryProvider");
|
|
23246
|
-
var moduleSlot = singleton("ToolModuleProvider");
|
|
23247
23247
|
// src/models/packager-parameters.ts
|
|
23248
23248
|
import {
|
|
23249
23249
|
LogLevel as LogLevel2
|
|
@@ -23643,7 +23643,7 @@ import { translate as translate3 } from "@uipath/solutionpackager-tool-core";
|
|
|
23643
23643
|
var package_default = {
|
|
23644
23644
|
name: "@uipath/project-packager",
|
|
23645
23645
|
license: "MIT",
|
|
23646
|
-
version: "1.
|
|
23646
|
+
version: "1.201.0-preview.121",
|
|
23647
23647
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
23648
23648
|
type: "module",
|
|
23649
23649
|
main: "./dist/index.js",
|
|
@@ -24918,4 +24918,4 @@ export {
|
|
|
24918
24918
|
BrowserContextStorage
|
|
24919
24919
|
};
|
|
24920
24920
|
|
|
24921
|
-
//# debugId=
|
|
24921
|
+
//# debugId=9A391F45B9EFAB0664756E2164756E21
|