Adding filtering support for marked for deletion on (#3609)

This commit is contained in:
Justin Dalrymple 2024-07-11 11:54:51 -04:00 committed by GitHub
parent 8cebefc35e
commit fa54661ae6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -87,6 +87,7 @@ export type AllGroupsOptions = {
owned?: boolean;
minAccessLevel?: Exclude<AccessLevel, AccessLevel.ADMIN>;
topLevelOnly?: boolean;
markedForDeletionOn?: string;
};
export type AllGroupProjectsOptions = {

View File

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