This commit is contained in:
2025-12-22 23:27:53 +03:30
parent ce2987d67b
commit 4dafba955e
14 changed files with 126 additions and 25 deletions
@@ -3,6 +3,7 @@ import type { NotifTitleEnum, recipientType } from './notification.interface';
export interface SmsNotificationQueueJob {
recipient: recipientType;
templateId: string;
restaurantId: string;
parameters?: Record<string, string>;
}
export interface PushNotificationQueueJob {
@@ -0,0 +1,16 @@
export interface ISmsResponse {
status: number;
message: string;
}
export interface ISmsParams {
phone: string;
parameters?: Record<string, string | number | Date>;
templateId: string;
}
export interface ISmsBodyParameters {
Mobile: string;
TemplateId: string;
Parameters: { name: string; value: string }[];
}