filter-by-payee-and-tags (#3)

Reviewed-on: #3
Co-authored-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
Co-committed-by: Vishesh 'ironeagle' Bangotra <aetoskia@gmail.com>
This commit is contained in:
2026-05-12 06:24:47 +00:00
committed by aetos
parent 77b60ba073
commit ad62d7dd9c
3 changed files with 138 additions and 9 deletions

View File

@@ -86,5 +86,14 @@ export interface ReportData {
ignore_self: boolean;
include_transactions: boolean;
start_date?: string | null;
end_date?: string | null;
flow?: "expense" | "income" | null;
payee?: string[] | null;
account?: string[] | null;
tags?: string[] | null;
min_amount?: number | null;
max_amount?: number | null;
buckets: ReportBucket[];
}