main: second iter

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
2025-12-27 22:41:36 +03:30
parent 8a7842e263
commit 9a7e627329
33 changed files with 4865 additions and 81 deletions
+6 -1
View File
@@ -18,7 +18,12 @@ export interface Album {
}
export interface Purchase {
id?: number;
albumId: string;
transactionId: string;
purchaseDate: Date;
customerName?: string;
email?: string;
phoneNumber?: string;
txReceipt?: string;
purchaseDate: Date | number;
}