Add missing query parameters "archived", "active" to Groups|Projects.all (#3778)

This commit is contained in:
Daniel Rentz 2025-10-24 05:57:45 +02:00 committed by GitHub
parent 8d8379b03c
commit 4e28908f81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -88,6 +88,8 @@ export type AllGroupsOptions = {
minAccessLevel?: Exclude<AccessLevel, AccessLevel.ADMIN>;
topLevelOnly?: boolean;
markedForDeletionOn?: string;
active?: boolean;
archived?: boolean;
};
export type AllGroupProjectsOptions = {

View File

@ -233,6 +233,7 @@ export type AllProjectsOptions = {
updatedBefore?: string;
updatedAfter?: string;
markedForDeletionOn?: string;
active?: boolean;
};
export type CreateProjectOptions = {