checkout: add card deyails & card amount BT

This commit is contained in:
2025-12-31 23:49:04 +03:00
parent 1d2c1fda87
commit 3b0b8ceab6
12 changed files with 373 additions and 108 deletions

View File

@@ -26,6 +26,7 @@ export interface OfficeDetailsType {
}
export interface GiftDetailsType {
amount: number;
receiverName: string;
receiverPhone: string;
message: string;
@@ -33,7 +34,7 @@ export interface GiftDetailsType {
senderPhone: string;
senderEmail: string;
isSecret: boolean;
cardId: string;
cardId: number;
giftType: "items" | "vouchers" | "itemsAndVouchers";
}