main: add many things to app :)

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
2025-12-30 01:30:31 +03:30
parent 91c149e92e
commit 895afc44af
26 changed files with 2180 additions and 249 deletions
+5
View File
@@ -23,6 +23,9 @@ export interface Album {
bitrate: string; // e.g., "320kbps", "lossless"
}
export type PurchaseStatus = 'pending' | 'approved' | 'rejected';
export type PaymentMethod = 'ipg' | 'card-to-card';
export interface Purchase {
id?: number;
albumId: string;
@@ -32,4 +35,6 @@ export interface Purchase {
phoneNumber?: string;
txReceipt?: string;
purchaseDate: Date | number;
approvalStatus?: PurchaseStatus; // pending, approved, rejected
paymentMethod?: PaymentMethod; // ipg or card-to-card
}