Skip to content

Commit 1d489f4

Browse files
authored
feat(account): add the possibility to filter projects by id (#100)
1 parent f084c8a commit 1d489f4

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/account/v2/api.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export class AccountV2GenAPI extends API {
7171
'page_size',
7272
request.pageSize ?? this.client.settings.defaultPageSize,
7373
],
74+
['project_ids', request.projectIds],
7475
),
7576
},
7677
unmarshalListProjectsResponse,

packages/clients/src/api/account/v2/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ export type ListProjectsRequest = {
5151
pageSize?: number
5252
/** The sort order of the returned projects */
5353
orderBy?: ListProjectsRequestOrderBy
54+
/** Filter out by a list of project ID */
55+
projectIds?: Array<string>
5456
}
5557

5658
export type GetProjectRequest = {

0 commit comments

Comments
 (0)