@mablhq/mabl-cli 2.53.0 → 2.55.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/api/types.js +6 -1
- package/browserLauncher/index.js +1 -1
- package/commands/config/config_cmds/configKeys.js +1 -6
- package/commands/config/config_cmds/set.js +3 -2
- package/core/execution/ApiTestUtils.js +1 -1
- package/execution/index.js +2 -2
- package/package.json +2 -2
- package/providers/cliConfigProvider.js +1 -1
- package/proxy/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mablhq/mabl-cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.55.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "The official mabl command line interface tool",
|
|
6
6
|
"main": "index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/crc32c": "5.1.0",
|
|
24
24
|
"@google-cloud/storage": "7.9.0",
|
|
25
|
-
"@mablhq/newman-reporter-mabl-console": "0.4.
|
|
25
|
+
"@mablhq/newman-reporter-mabl-console": "0.4.2",
|
|
26
26
|
"@plist/common": "1.1.0",
|
|
27
27
|
"@plist/parse": "1.1.0",
|
|
28
28
|
"@types/adm-zip": "0.5.5",
|
|
@@ -142,7 +142,7 @@ class CliConfigProvider {
|
|
|
142
142
|
}
|
|
143
143
|
static async getProxyType() {
|
|
144
144
|
const proxyType = await this.getConfigProperty(configKeys_1.configKeys.proxyType);
|
|
145
|
-
return (0,
|
|
145
|
+
return (0, types_2.isValidProxyType)(proxyType) ? proxyType : 'legacy';
|
|
146
146
|
}
|
|
147
147
|
static getConfigProperty(key) {
|
|
148
148
|
return getValue(propertyKeyToStoredKey(key));
|