Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/commands/cloud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -416,15 +416,15 @@ export const cloudCommand = defineCommand({
if (runnerType === 'm1') {
out(
ui.info(
'runnerType m1 is experimental and currently supports Android (Pixel 7, API Level 34) only.',
'runnerType m1 is experimental and currently supports Android only (all devices, API level 34-36).',
),
);
}

if (runnerType === 'gpu1') {
out(
ui.info(
'runnerType gpu1 is Android-only (all devices, API Level 34 or 35), available to all users.',
'runnerType gpu1 is Android-only (all devices, API level 34+), available to all users.',
),
);
}
Expand Down
1 change: 1 addition & 0 deletions src/types/domain/device.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export enum EAndroidApiLevels {
'thirtyFive' = '35',
'thirtyFour' = '34',
'thirtyOne' = '31',
'thirtySeven' = '37',
'thirtySix' = '36',
'thirtyThree' = '33',
'thirtyTwo' = '32',
Expand Down
37 changes: 12 additions & 25 deletions src/types/generated/schema.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,7 @@ export interface components {
testFileNames?: string;
sequentialFlows?: string;
/** @enum {string} */
androidApiLevel?: "29" | "30" | "31" | "32" | "33" | "34" | "35" | "36";
androidApiLevel?: "29" | "30" | "31" | "32" | "33" | "34" | "35" | "36" | "37";
/** @enum {string} */
androidDevice?: "pixel-6" | "pixel-6-pro" | "pixel-7" | "pixel-7-pro" | "generic-tablet";
apiKey?: string;
Expand Down Expand Up @@ -1657,7 +1657,7 @@ export interface components {
testFileNames?: string;
sequentialFlows?: string;
/** @enum {string} */
androidApiLevel?: "29" | "30" | "31" | "32" | "33" | "34" | "35" | "36";
androidApiLevel?: "29" | "30" | "31" | "32" | "33" | "34" | "35" | "36" | "37";
/** @enum {string} */
androidDevice?: "pixel-6" | "pixel-6-pro" | "pixel-7" | "pixel-7-pro" | "generic-tablet";
apiKey?: string;
Expand Down Expand Up @@ -1708,7 +1708,7 @@ export interface components {
testFileNames?: string;
sequentialFlows?: string;
/** @enum {string} */
androidApiLevel?: "29" | "30" | "31" | "32" | "33" | "34" | "35" | "36";
androidApiLevel?: "29" | "30" | "31" | "32" | "33" | "34" | "35" | "36" | "37";
/** @enum {string} */
androidDevice?: "pixel-6" | "pixel-6-pro" | "pixel-7" | "pixel-7-pro" | "generic-tablet";
apiKey?: string;
Expand Down Expand Up @@ -2997,17 +2997,16 @@ export interface operations {
* "33",
* "34",
* "35",
* "36"
* "36",
* "37"
* ],
* "deprecated": false
* },
* "pixel-6-pro": {
* "name": "Pixel 6 Pro",
* "apiLevels": [
* "33",
* "34",
* "35",
* "36"
* "35"
* ],
* "deprecated": false
* },
Expand All @@ -3017,7 +3016,8 @@ export interface operations {
* "33",
* "34",
* "35",
* "36"
* "36",
* "37"
* ],
* "deprecated": false
* },
Expand All @@ -3027,37 +3027,24 @@ export interface operations {
* "33",
* "34",
* "35",
* "36"
* "36",
* "37"
* ],
* "deprecated": false
* },
* "generic-tablet": {
* "name": "Generic Tablet",
* "apiLevels": [
* "33",
* "34",
* "35",
* "36"
* "33"
* ],
* "deprecated": false
* }
* },
* "androidPlay": {
* "pixel-6": {
* "name": "Pixel 6 (Google Play)",
* "apiLevels": [
* "34",
* "35",
* "36"
* ],
* "deprecated": false
* },
* "pixel-7": {
* "name": "Pixel 7 (Google Play)",
* "apiLevels": [
* "34",
* "35",
* "36"
* "34"
* ],
* "deprecated": false
* }
Expand Down
Loading