From bb212ddfe1a5a2d66489bcaba777aae5c0de485b Mon Sep 17 00:00:00 2001 From: Egor Date: Sat, 31 Jan 2026 20:47:23 +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 1d7961c..bc8e481 100644 --- a/src/store/successNotification.ts +++ b/src/store/successNotification.ts @@ -6,7 +6,8 @@ export type SuccessNotificationType = | 'subscription_activated' | 'subscription_renewed' | 'subscription_purchased' - | 'devices_purchased'; + | 'devices_purchased' + | 'traffic_purchased'; export interface SuccessNotificationData { type: SuccessNotificationType; @@ -26,6 +27,10 @@ export interface SuccessNotificationData { devicesAdded?: number; /** New total device limit */ newDeviceLimit?: number; + /** Traffic GB added */ + trafficGbAdded?: number; + /** New total traffic limit in GB */ + newTrafficLimitGb?: number; } interface SuccessNotificationState {