Implement receipt management features including creation, loading, and display of receipts. Refactor related components and enhance UI with dialogs for adding new receipts. Update type definitions and improve error handling for better user experience.
CI / build (push) Has been skipped
CI / deploy (push) Failing after 1m15s

This commit is contained in:
eewing
2026-02-19 09:55:26 -06:00
parent c6b30100bd
commit 567d7e3e13
13 changed files with 449 additions and 37 deletions
+14
View File
@@ -0,0 +1,14 @@
/** PocketBase Stackq_Receipts collection record (and expanded relation). */
export interface StackqReceipt {
id: string;
Status: string;
Type: string;
User: string;
Image?: string;
Data?: Record<string, unknown>;
created: string;
updated: string;
expand?: {
User?: { id: string; email?: string; name?: string };
};
}