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.
This commit is contained in:
@@ -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 };
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user