fix: taskCollection types (#754)

This commit is contained in:
Dominik Pschenitschni 2025-05-13 12:52:20 +02:00 committed by GitHub
parent 4937127898
commit a62ac800c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import BucketModel from '@/models/bucket'
export type ExpandTaskFilterParam = 'subtasks' | 'buckets' | 'reactions' | null
export interface TaskFilterParams {
sort_by: ('start_date' | 'end_date' | 'due_date' | 'done' | 'id' | 'position')[],
sort_by: ('start_date' | 'end_date' | 'due_date' | 'done' | 'id' | 'position' | 'title')[],
order_by: ('asc' | 'desc')[],
filter: string,
filter_include_nulls: boolean,