We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f084c8a commit 1d489f4Copy full SHA for 1d489f4
packages/clients/src/api/account/v2/api.gen.ts
@@ -71,6 +71,7 @@ export class AccountV2GenAPI extends API {
71
'page_size',
72
request.pageSize ?? this.client.settings.defaultPageSize,
73
],
74
+ ['project_ids', request.projectIds],
75
),
76
},
77
unmarshalListProjectsResponse,
packages/clients/src/api/account/v2/types.gen.ts
@@ -51,6 +51,8 @@ export type ListProjectsRequest = {
51
pageSize?: number
52
/** The sort order of the returned projects */
53
orderBy?: ListProjectsRequestOrderBy
54
+ /** Filter out by a list of project ID */
55
+ projectIds?: Array<string>
56
}
57
58
export type GetProjectRequest = {
0 commit comments