@devicecloud.dev/dcd 3.6.7 → 3.6.8
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/commands/cloud.d.ts +2 -0
- package/dist/commands/cloud.js +3 -1
- package/dist/constants.d.ts +2 -0
- package/dist/constants.js +7 -0
- package/oclif.manifest.json +18 -1
- package/package.json +1 -1
package/dist/commands/cloud.d.ts
CHANGED
|
@@ -56,6 +56,8 @@ export default class Cloud extends Command {
|
|
|
56
56
|
'ios-version': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
57
57
|
'x86-arch': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
58
58
|
'maestro-version': import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
59
|
+
mitmHost: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
60
|
+
mitmPath: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
59
61
|
name: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
60
62
|
orientation: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
61
63
|
quiet: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
package/dist/commands/cloud.js
CHANGED
|
@@ -96,7 +96,7 @@ class Cloud extends core_1.Command {
|
|
|
96
96
|
let jsonFile = false;
|
|
97
97
|
try {
|
|
98
98
|
const { args, flags, raw } = await this.parse(Cloud);
|
|
99
|
-
let { 'additional-app-binary-ids': nonFlatAdditionalAppBinaryIds, 'additional-app-files': nonFlatAdditionalAppFiles, 'android-api-level': androidApiLevel, 'android-device': androidDevice, apiKey: apiKeyFlag, apiUrl, 'app-binary-id': appBinaryId, 'app-file': appFile, 'artifacts-path': artifactsPath, async, config: configFile, debug, 'device-locale': deviceLocale, 'download-artifacts': downloadArtifacts, env, 'exclude-flows': excludeFlows, 'exclude-tags': excludeTags, flows, 'google-play': googlePlay, 'include-tags': includeTags, 'ignore-sha-check': ignoreShaCheck, 'ios-device': iOSDevice, 'ios-version': iOSVersion, 'maestro-version': maestroVersion, name, orientation, quiet, retry, report, 'runner-type': runnerType, 'x86-arch': x86Arch, json, ...rest } = flags;
|
|
99
|
+
let { 'additional-app-binary-ids': nonFlatAdditionalAppBinaryIds, 'additional-app-files': nonFlatAdditionalAppFiles, 'android-api-level': androidApiLevel, 'android-device': androidDevice, apiKey: apiKeyFlag, apiUrl, 'app-binary-id': appBinaryId, 'app-file': appFile, 'artifacts-path': artifactsPath, async, config: configFile, debug, 'device-locale': deviceLocale, 'download-artifacts': downloadArtifacts, env, 'exclude-flows': excludeFlows, 'exclude-tags': excludeTags, flows, 'google-play': googlePlay, 'include-tags': includeTags, 'ignore-sha-check': ignoreShaCheck, 'ios-device': iOSDevice, 'ios-version': iOSVersion, 'maestro-version': maestroVersion, name, orientation, quiet, retry, report, 'runner-type': runnerType, 'x86-arch': x86Arch, json, mitmHost, mitmPath, ...rest } = flags;
|
|
100
100
|
// Store debug flag for use in catch block
|
|
101
101
|
debugFlag = debug === true;
|
|
102
102
|
jsonFile = flags['json-file'] === true;
|
|
@@ -376,6 +376,8 @@ class Cloud extends core_1.Command {
|
|
|
376
376
|
uploadedBinaryIds,
|
|
377
377
|
version: this.config.version,
|
|
378
378
|
skipChromeOnboarding: flags['skip-chrome-onboarding'],
|
|
379
|
+
mitmHost,
|
|
380
|
+
mitmPath,
|
|
379
381
|
};
|
|
380
382
|
if (finalAdditionalBinaryIds?.length > 0) {
|
|
381
383
|
config.additionalAppBinaryIds = finalAdditionalBinaryIds;
|
package/dist/constants.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export declare const flags: {
|
|
|
26
26
|
'ios-version': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
27
27
|
'x86-arch': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
28
28
|
'maestro-version': import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
29
|
+
mitmHost: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
30
|
+
mitmPath: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
29
31
|
name: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
30
32
|
orientation: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
31
33
|
quiet: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
package/dist/constants.js
CHANGED
|
@@ -161,6 +161,13 @@ exports.flags = {
|
|
|
161
161
|
'1.39.7',
|
|
162
162
|
],
|
|
163
163
|
}),
|
|
164
|
+
mitmHost: core_1.Flags.string({
|
|
165
|
+
description: 'used for mitmproxy support, enterprise only, contact support if interested',
|
|
166
|
+
}),
|
|
167
|
+
mitmPath: core_1.Flags.string({
|
|
168
|
+
description: 'used for mitmproxy support, enterprise only, contact support if interested',
|
|
169
|
+
dependsOn: ['mitmHost'],
|
|
170
|
+
}),
|
|
164
171
|
name: core_1.Flags.string({
|
|
165
172
|
description: 'A custom name for your upload (useful for tagging commits etc)',
|
|
166
173
|
}),
|
package/oclif.manifest.json
CHANGED
|
@@ -294,6 +294,23 @@
|
|
|
294
294
|
],
|
|
295
295
|
"type": "option"
|
|
296
296
|
},
|
|
297
|
+
"mitmHost": {
|
|
298
|
+
"description": "used for mitmproxy support, enterprise only, contact support if interested",
|
|
299
|
+
"name": "mitmHost",
|
|
300
|
+
"hasDynamicHelp": false,
|
|
301
|
+
"multiple": false,
|
|
302
|
+
"type": "option"
|
|
303
|
+
},
|
|
304
|
+
"mitmPath": {
|
|
305
|
+
"dependsOn": [
|
|
306
|
+
"mitmHost"
|
|
307
|
+
],
|
|
308
|
+
"description": "used for mitmproxy support, enterprise only, contact support if interested",
|
|
309
|
+
"name": "mitmPath",
|
|
310
|
+
"hasDynamicHelp": false,
|
|
311
|
+
"multiple": false,
|
|
312
|
+
"type": "option"
|
|
313
|
+
},
|
|
297
314
|
"name": {
|
|
298
315
|
"description": "A custom name for your upload (useful for tagging commits etc)",
|
|
299
316
|
"name": "name",
|
|
@@ -520,5 +537,5 @@
|
|
|
520
537
|
]
|
|
521
538
|
}
|
|
522
539
|
},
|
|
523
|
-
"version": "3.6.
|
|
540
|
+
"version": "3.6.8"
|
|
524
541
|
}
|