feat: display promo group and active discount banners on gift page

Add promo group banner (green) and active discount banner (orange) to
gift subscription page. PeriodCard now shows original price strikethrough
and discount percentage badge from server-calculated values.
This commit is contained in:
Fringg
2026-03-11 02:58:43 +03:00
parent 6fd76c8dc8
commit 03c9e73a37
2 changed files with 52 additions and 0 deletions

View File

@@ -40,6 +40,9 @@ export interface GiftConfig {
payment_methods: GiftPaymentMethod[];
balance_kopeks: number;
currency_symbol: string;
promo_group_name: string | null;
active_discount_percent: number | null;
active_discount_expires_at: string | null;
}
export interface GiftPurchaseRequest {