diff --git a/src/commands/cloud.ts b/src/commands/cloud.ts index 52cefbb..632a2b2 100644 --- a/src/commands/cloud.ts +++ b/src/commands/cloud.ts @@ -416,7 +416,7 @@ 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).', ), ); } @@ -424,7 +424,7 @@ export const cloudCommand = defineCommand({ 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.', ), ); } diff --git a/src/types/domain/device.types.ts b/src/types/domain/device.types.ts index 45e2632..4f1ce7d 100644 --- a/src/types/domain/device.types.ts +++ b/src/types/domain/device.types.ts @@ -35,6 +35,7 @@ export enum EAndroidApiLevels { 'thirtyFive' = '35', 'thirtyFour' = '34', 'thirtyOne' = '31', + 'thirtySeven' = '37', 'thirtySix' = '36', 'thirtyThree' = '33', 'thirtyTwo' = '32', diff --git a/src/types/generated/schema.types.ts b/src/types/generated/schema.types.ts index 1fd27da..574e604 100644 --- a/src/types/generated/schema.types.ts +++ b/src/types/generated/schema.types.ts @@ -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; @@ -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; @@ -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; @@ -2997,7 +2997,8 @@ export interface operations { * "33", * "34", * "35", - * "36" + * "36", + * "37" * ], * "deprecated": false * }, @@ -3005,9 +3006,7 @@ export interface operations { * "name": "Pixel 6 Pro", * "apiLevels": [ * "33", - * "34", - * "35", - * "36" + * "35" * ], * "deprecated": false * }, @@ -3017,7 +3016,8 @@ export interface operations { * "33", * "34", * "35", - * "36" + * "36", + * "37" * ], * "deprecated": false * }, @@ -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 * }