@lambdatest/smartui-cli 4.1.41 → 4.1.42-beta.0
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/index.cjs +8 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2791,7 +2791,7 @@ var authExec_default = (ctx) => {
|
|
|
2791
2791
|
};
|
|
2792
2792
|
|
|
2793
2793
|
// package.json
|
|
2794
|
-
var version = "4.1.
|
|
2794
|
+
var version = "4.1.42-beta.0";
|
|
2795
2795
|
var package_default = {
|
|
2796
2796
|
name: "@lambdatest/smartui-cli",
|
|
2797
2797
|
version,
|
|
@@ -2879,10 +2879,15 @@ var httpClient = class {
|
|
|
2879
2879
|
}
|
|
2880
2880
|
const axiosConfig = {
|
|
2881
2881
|
baseURL: SMARTUI_CLIENT_API_URL,
|
|
2882
|
-
proxy: proxyUrl ? {
|
|
2882
|
+
proxy: proxyUrl ? __spreadValues({
|
|
2883
2883
|
host: proxyUrl.hostname,
|
|
2884
2884
|
port: proxyUrl.port ? Number(proxyUrl.port) : 80
|
|
2885
|
-
}
|
|
2885
|
+
}, proxyUrl.username && proxyUrl.password ? {
|
|
2886
|
+
auth: {
|
|
2887
|
+
username: proxyUrl.username,
|
|
2888
|
+
password: proxyUrl.password
|
|
2889
|
+
}
|
|
2890
|
+
} : {}) : false
|
|
2886
2891
|
};
|
|
2887
2892
|
if (SMARTUI_API_SKIP_CERTIFICATES) {
|
|
2888
2893
|
axiosConfig.httpsAgent = new https__namespace.default.Agent({
|