From 3080e8e9961e7490ba16670b0677e9fe56f3117d Mon Sep 17 00:00:00 2001 From: Egor Date: Sat, 31 Jan 2026 19:52:08 +0300 Subject: [PATCH] Update successNotification.ts --- src/store/successNotification.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/store/successNotification.ts b/src/store/successNotification.ts index eb04ab0..1d7961c 100644 --- a/src/store/successNotification.ts +++ b/src/store/successNotification.ts @@ -5,7 +5,8 @@ export type SuccessNotificationType = | 'balance_topup' | 'subscription_activated' | 'subscription_renewed' - | 'subscription_purchased'; + | 'subscription_purchased' + | 'devices_purchased'; export interface SuccessNotificationData { type: SuccessNotificationType; @@ -21,6 +22,10 @@ export interface SuccessNotificationData { title?: string; /** Custom message override */ message?: string; + /** Number of devices added */ + devicesAdded?: number; + /** New total device limit */ + newDeviceLimit?: number; } interface SuccessNotificationState {