/** * Notifications Application Layer * * Exports all use cases, queries, and ports. */ // Use Cases export * from './use-cases/SendNotificationUseCase'; export * from './use-cases/MarkNotificationReadUseCase'; export * from './use-cases/GetUnreadNotificationsUseCase'; export * from './use-cases/NotificationPreferencesUseCases'; // Ports export * from './ports/INotificationGateway'; // Re-export domain types for convenience export type { Notification, NotificationProps, NotificationStatus, NotificationData, NotificationUrgency, NotificationAction, } from '../domain/entities/Notification'; export type { NotificationPreference, NotificationPreferenceProps, ChannelPreference, TypePreference } from '../domain/entities/NotificationPreference'; export type { NotificationType, NotificationChannel } from '../domain/types/NotificationTypes'; export { getNotificationTypeTitle, getNotificationTypePriority, getChannelDisplayName, isExternalChannel, DEFAULT_ENABLED_CHANNELS, ALL_CHANNELS } from '../domain/types/NotificationTypes'; // Re-export repository interfaces export type { INotificationRepository } from '../domain/repositories/INotificationRepository'; export type { INotificationPreferenceRepository } from '../domain/repositories/INotificationPreferenceRepository';