diff --git a/packages/clients/src/api/account/v2/api.gen.ts b/packages/clients/src/api/account/v2/api.gen.ts index 24c3a7144..fc70fdb50 100644 --- a/packages/clients/src/api/account/v2/api.gen.ts +++ b/packages/clients/src/api/account/v2/api.gen.ts @@ -71,6 +71,7 @@ export class AccountV2GenAPI extends API { 'page_size', request.pageSize ?? this.client.settings.defaultPageSize, ], + ['project_ids', request.projectIds], ), }, unmarshalListProjectsResponse, diff --git a/packages/clients/src/api/account/v2/types.gen.ts b/packages/clients/src/api/account/v2/types.gen.ts index dabcf96b4..af61fb1d8 100644 --- a/packages/clients/src/api/account/v2/types.gen.ts +++ b/packages/clients/src/api/account/v2/types.gen.ts @@ -51,6 +51,8 @@ export type ListProjectsRequest = { pageSize?: number /** The sort order of the returned projects */ orderBy?: ListProjectsRequestOrderBy + /** Filter out by a list of project ID */ + projectIds?: Array } export type GetProjectRequest = {