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

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,