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: 4 additions & 0 deletions src/types/domain/device.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ export enum EiOSDevices {
'iphone-16-plus' = 'iphone-16-plus',
'iphone-16-pro' = 'iphone-16-pro',
'iphone-16-pro-max' = 'iphone-16-pro-max',
'iphone-17' = 'iphone-17',
'iphone-17-pro' = 'iphone-17-pro',
'iphone-17-pro-max' = 'iphone-17-pro-max',
}

export enum EAndroidDevices {
Expand All @@ -26,6 +29,7 @@ export enum EAndroidDevices {
export enum EiOSVersions {
'eighteen' = '18',
'seventeen' = '17',
'twentySeven' = '27',
'twentySix' = '26',
}

Expand Down
12 changes: 6 additions & 6 deletions src/types/generated/schema.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1650,9 +1650,9 @@ export interface components {
appFile?: string;
env: string;
/** @enum {string} */
iOSVersion?: "17" | "18" | "26";
iOSVersion?: "17" | "18" | "26" | "27";
/** @enum {string} */
iOSDevice?: "iphone-14" | "iphone-15" | "iphone-16" | "iphone-16-plus" | "iphone-16-pro" | "iphone-16-pro-max" | "ipad-pro-6th-gen";
iOSDevice?: "iphone-14" | "iphone-15" | "iphone-16" | "iphone-16-plus" | "iphone-16-pro" | "iphone-16-pro-max" | "iphone-17" | "iphone-17-pro" | "iphone-17-pro-max" | "ipad-pro-6th-gen";
platform?: string;
googlePlay?: boolean;
config: string;
Expand Down Expand Up @@ -1690,9 +1690,9 @@ export interface components {
appFile?: string;
env: string;
/** @enum {string} */
iOSVersion?: "17" | "18" | "26";
iOSVersion?: "17" | "18" | "26" | "27";
/** @enum {string} */
iOSDevice?: "iphone-14" | "iphone-15" | "iphone-16" | "iphone-16-plus" | "iphone-16-pro" | "iphone-16-pro-max" | "ipad-pro-6th-gen";
iOSDevice?: "iphone-14" | "iphone-15" | "iphone-16" | "iphone-16-plus" | "iphone-16-pro" | "iphone-16-pro-max" | "iphone-17" | "iphone-17-pro" | "iphone-17-pro-max" | "ipad-pro-6th-gen";
platform?: string;
googlePlay?: boolean;
config: string;
Expand Down Expand Up @@ -1741,9 +1741,9 @@ export interface components {
appFile?: string;
env: string;
/** @enum {string} */
iOSVersion?: "17" | "18" | "26";
iOSVersion?: "17" | "18" | "26" | "27";
/** @enum {string} */
iOSDevice?: "iphone-14" | "iphone-15" | "iphone-16" | "iphone-16-plus" | "iphone-16-pro" | "iphone-16-pro-max" | "ipad-pro-6th-gen";
iOSDevice?: "iphone-14" | "iphone-15" | "iphone-16" | "iphone-16-plus" | "iphone-16-pro" | "iphone-16-pro-max" | "iphone-17" | "iphone-17-pro" | "iphone-17-pro-max" | "ipad-pro-6th-gen";
platform?: string;
googlePlay?: boolean;
config: string;
Expand Down
Loading