@mablhq/mabl-cli 2.53.0 → 2.53.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mablhq/mabl-cli",
3
- "version": "2.53.0",
3
+ "version": "2.53.3",
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.0",
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, configKeys_1.isValidProxyType)(proxyType) ? proxyType : 'legacy';
145
+ return (0, types_2.isValidProxyType)(proxyType) ? proxyType : 'legacy';
146
146
  }
147
147
  static getConfigProperty(key) {
148
148
  return getValue(propertyKeyToStoredKey(key));