add import types and description from the server, add report data modal

This commit is contained in:
Gregor Vostrak
2024-04-16 23:23:26 +02:00
parent 43e096b153
commit fffa3639d3
7 changed files with 157 additions and 30 deletions

View File

@@ -68,3 +68,9 @@ export type MemberIndexResponse = ZodiosResponseByAlias<
export type Member = MemberIndexResponse['data'][0];
export type CreateTagBody = ZodiosBodyByAlias<SolidTimeApi, 'createTag'>;
export type ImportType = ZodiosResponseByAlias<
SolidTimeApi,
'getImporters'
>['data'][0];
export type ImportReport = ZodiosResponseByAlias<SolidTimeApi, 'importData'>;