Update successNotification.ts

This commit is contained in:
Egor
2026-01-31 19:52:08 +03:00
committed by GitHub
parent 0bd84bb277
commit 3080e8e996

View File

@@ -5,7 +5,8 @@ export type SuccessNotificationType =
| 'balance_topup' | 'balance_topup'
| 'subscription_activated' | 'subscription_activated'
| 'subscription_renewed' | 'subscription_renewed'
| 'subscription_purchased'; | 'subscription_purchased'
| 'devices_purchased';
export interface SuccessNotificationData { export interface SuccessNotificationData {
type: SuccessNotificationType; type: SuccessNotificationType;
@@ -21,6 +22,10 @@ export interface SuccessNotificationData {
title?: string; title?: string;
/** Custom message override */ /** Custom message override */
message?: string; message?: string;
/** Number of devices added */
devicesAdded?: number;
/** New total device limit */
newDeviceLimit?: number;
} }
interface SuccessNotificationState { interface SuccessNotificationState {