diff --git a/packages/clients/src/api/account/v2/types.gen.ts b/packages/clients/src/api/account/v2/types.gen.ts index af61fb1d8..da978cd2a 100644 --- a/packages/clients/src/api/account/v2/types.gen.ts +++ b/packages/clients/src/api/account/v2/types.gen.ts @@ -12,7 +12,7 @@ export interface ListProjectsResponse { /** The total number of projects */ totalCount: number /** The paginated returned projects */ - projects: Array + projects: Project[] } /** Project */ @@ -52,7 +52,7 @@ export type ListProjectsRequest = { /** The sort order of the returned projects */ orderBy?: ListProjectsRequestOrderBy /** Filter out by a list of project ID */ - projectIds?: Array + projectIds?: string[] } export type GetProjectRequest = { diff --git a/packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts b/packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts index 21d16060e..37a5ac95f 100644 --- a/packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts @@ -27,13 +27,13 @@ export interface ListOSResponse { /** Total number of os */ totalCount: number /** List of OS */ - os: Array + os: OS[] } /** List server types response */ export interface ListServerTypesResponse { /** The available server types */ - serverTypes: Array + serverTypes: ServerType[] } /** List servers response */ @@ -41,7 +41,7 @@ export interface ListServersResponse { /** The total number of servers */ totalCount: number /** The paginated returned servers */ - servers: Array + servers: Server[] } /** Os */ @@ -55,7 +55,7 @@ export interface OS { /** URL of the image */ imageUrl: string /** List of compatible server types */ - compatibleServerTypes: Array + compatibleServerTypes: string[] } /** Server */ diff --git a/packages/clients/src/api/baremetal/v1/types.gen.ts b/packages/clients/src/api/baremetal/v1/types.gen.ts index 3211b9677..86f5461fd 100644 --- a/packages/clients/src/api/baremetal/v1/types.gen.ts +++ b/packages/clients/src/api/baremetal/v1/types.gen.ts @@ -114,7 +114,7 @@ export interface CreateServerRequestInstall { /** Hostname of the server */ hostname: string /** SSH key IDs authorized on the server */ - sshKeyIds: Array + sshKeyIds: string[] /** User used for the installation */ user?: string /** Password used for the installation */ @@ -160,7 +160,7 @@ export interface ListOSResponse { /** Total count of matching OS */ totalCount: number /** OS that match filters */ - os: Array + os: OS[] } /** List offers response */ @@ -168,7 +168,7 @@ export interface ListOffersResponse { /** Total count of matching offers */ totalCount: number /** Offers that match filters */ - offers: Array + offers: Offer[] } /** List options response */ @@ -176,7 +176,7 @@ export interface ListOptionsResponse { /** Total count of matching options */ totalCount: number /** Options that match filters */ - options: Array