@devicecloud.dev/dcd 3.6.1 → 3.6.2
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 +1 -0
- package/dist/commands/cloud.js +1 -0
- package/dist/constants.d.ts +1 -0
- package/dist/constants.js +4 -0
- package/oclif.manifest.json +7 -1
- package/package.json +1 -1
package/dist/commands/cloud.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export default class Cloud extends Command {
|
|
|
34
34
|
'additional-app-files': import("@oclif/core/lib/interfaces").OptionFlag<string[], import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
35
35
|
'android-api-level': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
36
36
|
'android-device': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
37
|
+
'skip-chrome-onboarding': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
37
38
|
apiKey: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
38
39
|
apiUrl: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
39
40
|
'app-binary-id': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
package/dist/commands/cloud.js
CHANGED
|
@@ -281,6 +281,7 @@ class Cloud extends core_1.Command {
|
|
|
281
281
|
raw: JSON.stringify(raw),
|
|
282
282
|
uploadedBinaryIds,
|
|
283
283
|
version: this.config.version,
|
|
284
|
+
skipChromeOnboarding: flags['skip-chrome-onboarding'],
|
|
284
285
|
};
|
|
285
286
|
if (finalAdditionalBinaryIds?.length > 0) {
|
|
286
287
|
config.additionalAppBinaryIds = finalAdditionalBinaryIds;
|
package/dist/constants.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare const flags: {
|
|
|
4
4
|
'additional-app-files': import("@oclif/core/lib/interfaces").OptionFlag<string[], import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
5
5
|
'android-api-level': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
6
6
|
'android-device': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
7
|
+
'skip-chrome-onboarding': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
7
8
|
apiKey: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
8
9
|
apiUrl: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
9
10
|
'app-binary-id': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
package/dist/constants.js
CHANGED
|
@@ -31,6 +31,10 @@ exports.flags = {
|
|
|
31
31
|
'generic-tablet',
|
|
32
32
|
],
|
|
33
33
|
}),
|
|
34
|
+
'skip-chrome-onboarding': core_1.Flags.boolean({
|
|
35
|
+
description: '[Android only] Skip Chrome browser onboarding screens when running tests',
|
|
36
|
+
default: false,
|
|
37
|
+
}),
|
|
34
38
|
apiKey: core_1.Flags.string({
|
|
35
39
|
aliases: ['api-key'],
|
|
36
40
|
description: 'API key for devicecloud.dev (find this in the console UI). You can also set the DEVICE_CLOUD_API_KEY environment variable.',
|
package/oclif.manifest.json
CHANGED
|
@@ -71,6 +71,12 @@
|
|
|
71
71
|
],
|
|
72
72
|
"type": "option"
|
|
73
73
|
},
|
|
74
|
+
"skip-chrome-onboarding": {
|
|
75
|
+
"description": "[Android only] Skip Chrome browser onboarding screens when running tests",
|
|
76
|
+
"name": "skip-chrome-onboarding",
|
|
77
|
+
"allowNo": false,
|
|
78
|
+
"type": "boolean"
|
|
79
|
+
},
|
|
74
80
|
"apiKey": {
|
|
75
81
|
"aliases": [
|
|
76
82
|
"api-key"
|
|
@@ -501,5 +507,5 @@
|
|
|
501
507
|
]
|
|
502
508
|
}
|
|
503
509
|
},
|
|
504
|
-
"version": "3.6.
|
|
510
|
+
"version": "3.6.2"
|
|
505
511
|
}
|