create transactions from AI receipt image recognition results

This commit is contained in:
MaysWind
2025-09-21 04:00:56 +08:00
parent 00f1d0418f
commit 5d88287ae2
50 changed files with 2356 additions and 22 deletions
+11
View File
@@ -0,0 +1,11 @@
export interface RecognizedReceiptImageResponse {
readonly type: number;
readonly time?: number;
readonly categoryId?: string;
readonly sourceAccountId?: string;
readonly destinationAccountId?: string;
readonly sourceAmount?: number;
readonly destinationAmount?: number;
readonly tagIds?: string[];
readonly comment?: string;
}