fetch requests and reports routes

This commit is contained in:
2026-05-23 21:48:39 +05:30
parent cccb4604fd
commit 220c84776f
11 changed files with 786 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
export interface ReportQuery {
accounts?: string[] | null;
ignore_self?: boolean | null;
start_date?: string | null;
end_date?: string | null;
min_amount?: number | null;
max_amount?: number | null;
}
export interface ReportSnapshot {
id: string;
snapshot_id: string;
created_at: string;
query?: ReportQuery;
}