adds statistics

This commit is contained in:
2026-02-16 19:15:23 +01:00
parent 2311cd8265
commit 9206453394
12 changed files with 613 additions and 58 deletions

View File

@@ -57,6 +57,13 @@ export interface TimeEntryFilters {
limit?: number;
}
export interface StatisticsFilters {
startDate?: string;
endDate?: string;
projectId?: string;
clientId?: string;
}
export interface StartTimerInput {
projectId?: string;
}
@@ -67,4 +74,4 @@ export interface UpdateTimerInput {
export interface StopTimerInput {
projectId?: string;
}
}