This commit is contained in:
2026-05-19 12:48:41 +07:00
parent 208a91b971
commit 55a0133ed4
23 changed files with 3781 additions and 22 deletions
+7
View File
@@ -15,4 +15,11 @@ export type AdminRequestRow = {
notes: string;
/** Optional: where the row came from (not shown in table yet). */
source?: "registration" | "feedback";
paymentStatus?: "not_required" | "payment_pending" | "paid" | "payment_failed" | "payment_cancelled";
paypalOrderId?: string;
paypalCaptureId?: string;
paymentAmount?: number;
paymentCurrency?: string;
/** ISO string representation of payment completion timestamp. */
paymentCompletedAt?: string;
};