mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-11 17:52:15 +01:00
add support for history_group and loading indicators to export buttons
This commit is contained in:
committed by
Constantin Graf
parent
8712cfb9dc
commit
ab4dbd64df
@@ -2675,38 +2675,39 @@ If the group parameters are all set to `null` or are all missing, the
|
||||
{
|
||||
name: 'group',
|
||||
type: 'Query',
|
||||
schema: z
|
||||
.enum([
|
||||
'day',
|
||||
'week',
|
||||
'month',
|
||||
'year',
|
||||
'user',
|
||||
'project',
|
||||
'task',
|
||||
'client',
|
||||
'billable',
|
||||
'description',
|
||||
])
|
||||
.optional(),
|
||||
schema: z.enum([
|
||||
'day',
|
||||
'week',
|
||||
'month',
|
||||
'year',
|
||||
'user',
|
||||
'project',
|
||||
'task',
|
||||
'client',
|
||||
'billable',
|
||||
'description',
|
||||
]),
|
||||
},
|
||||
{
|
||||
name: 'sub_group',
|
||||
type: 'Query',
|
||||
schema: z
|
||||
.enum([
|
||||
'day',
|
||||
'week',
|
||||
'month',
|
||||
'year',
|
||||
'user',
|
||||
'project',
|
||||
'task',
|
||||
'client',
|
||||
'billable',
|
||||
'description',
|
||||
])
|
||||
.optional(),
|
||||
schema: z.enum([
|
||||
'day',
|
||||
'week',
|
||||
'month',
|
||||
'year',
|
||||
'user',
|
||||
'project',
|
||||
'task',
|
||||
'client',
|
||||
'billable',
|
||||
'description',
|
||||
]),
|
||||
},
|
||||
{
|
||||
name: 'history_group',
|
||||
type: 'Query',
|
||||
schema: z.enum(['day', 'week', 'month', 'year']),
|
||||
},
|
||||
{
|
||||
name: 'member_id',
|
||||
@@ -2721,12 +2722,12 @@ If the group parameters are all set to `null` or are all missing, the
|
||||
{
|
||||
name: 'start',
|
||||
type: 'Query',
|
||||
schema: start,
|
||||
schema: z.string(),
|
||||
},
|
||||
{
|
||||
name: 'end',
|
||||
type: 'Query',
|
||||
schema: start,
|
||||
schema: z.string(),
|
||||
},
|
||||
{
|
||||
name: 'active',
|
||||
|
||||
Reference in New Issue
Block a user