Files
ShieldAI/packages/shared-notifications/src/index.ts

21 lines
878 B
TypeScript

export { EmailService } from './services/email.service';
export { SMSService } from './services/sms.service';
export { PushService } from './services/push.service';
export { NotificationService, RateLimitResult } from './services/notification.service';
export { RedisService } from './services/redis.service';
export { TemplateService } from './services/template.service';
export { loadNotificationConfig, NotificationConfigSchema } from './config/notification.config';
export { notificationRoutes } from './routes/notification.routes';
export {
AllDefaultTemplates,
DefaultEmailTemplates,
DefaultSMSTemplates,
DefaultPushTemplates,
WaitlistEmailTemplates,
DEFAULT_LOCALE,
} from './templates/default-templates';
export { buildEmailHtml } from './templates/waitlist-email-layout';
export * from './types/notification.types';
export * from './types/template.types';