mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-12 18:22:16 +01:00
Allow NONE filter value to shared reports and add shared-report tests
This commit is contained in:
@@ -444,10 +444,10 @@ const ReportStoreRequest = z
|
||||
active: z.union([z.boolean(), z.null()]).optional(),
|
||||
member_ids: z.union([z.array(z.string().uuid()), z.null()]).optional(),
|
||||
billable: z.union([z.boolean(), z.null()]).optional(),
|
||||
client_ids: z.union([z.array(z.string().uuid()), z.null()]).optional(),
|
||||
project_ids: z.union([z.array(z.string().uuid()), z.null()]).optional(),
|
||||
tag_ids: z.union([z.array(z.string().uuid()), z.null()]).optional(),
|
||||
task_ids: z.union([z.array(z.string().uuid()), z.null()]).optional(),
|
||||
client_ids: z.union([z.array(z.string()), z.null()]).optional(),
|
||||
project_ids: z.union([z.array(z.string()), z.null()]).optional(),
|
||||
tag_ids: z.union([z.array(z.string()), z.null()]).optional(),
|
||||
task_ids: z.union([z.array(z.string()), z.null()]).optional(),
|
||||
group: TimeEntryAggregationType,
|
||||
sub_group: TimeEntryAggregationType,
|
||||
history_group: TimeEntryAggregationTypeInterval,
|
||||
|
||||
Reference in New Issue
Block a user