feat(core): Allow filtering executions and users by project in Public API (#10250)

This commit is contained in:
Iván Ovejero
2024-08-02 14:16:17 +02:00
committed by GitHub
parent ae50bb95a8
commit 7056e50b00
12 changed files with 138 additions and 9 deletions

View File

@@ -306,7 +306,7 @@ export declare namespace UserRequest {
{ id: string; email: string; identifier: string },
{},
{},
{ limit?: number; offset?: number; cursor?: string; includeRole?: boolean }
{ limit?: number; offset?: number; cursor?: string; includeRole?: boolean; projectId?: string }
>;
export type PasswordResetLink = AuthenticatedRequest<{ id: string }, {}, {}, {}>;