update notif

This commit is contained in:
2025-12-12 20:13:18 +03:30
parent 3c3e5797e5
commit ecb68de7b3
10 changed files with 255 additions and 330 deletions
@@ -1,4 +1,4 @@
import type { NotificationType } from './notification.interface';
import type { NotifChannelEnum } from './notification.interface';
import type { NotifTitleEnum } from './notification.interface';
export interface NotificationQueueJob {
@@ -8,7 +8,7 @@ export interface NotificationQueueJob {
content: string;
idempotencyKey?: string;
notificationId?: string; // For retries
notificationType: NotificationType;
channels: NotifChannelEnum[];
pushToken?: string; // FCM token for push notifications
pushTokens?: string[]; // Multiple FCM tokens for bulk push notifications
}