refactor(apiclient): simplify query in release delete method (#1538)

* refactor(apiclient): simplify query in delete method

* refactor(apiclient): simplify query in delete method
This commit is contained in:
soup 2024-05-04 11:21:00 +02:00 committed by GitHub
parent 9832076d7e
commit 2f9b82ca44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 20 deletions

View file

@ -68,3 +68,9 @@ interface ReleaseFilter {
id: string;
value: string;
}
interface DeleteParams {
olderThan?: number;
indexers?: string[];
releaseStatuses?: string[];
}