Add missing q query parameter to user and client queries (#29188)

Closes #29190

Signed-off-by: Pascal Helbig <pascal.helbig@progwise.net>
This commit is contained in:
Pascal Helbig 2024-05-07 13:30:28 +02:00 committed by GitHub
parent c18a68b4e3
commit e23db5d0b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -29,6 +29,7 @@ export interface ClientQuery extends PaginatedQuery {
clientId?: string;
viewableOnly?: boolean;
search?: boolean;
q?: string;
}
export interface ResourceQuery extends PaginatedQuery {

View file

@ -29,6 +29,7 @@ interface UserBaseQuery {
firstName?: string;
lastName?: string;
username?: string;
q?: string;
}
export interface UserQuery extends PaginationQuery, SearchQuery, UserBaseQuery {