@blackcode_sa/metaestetics-api 1.14.58 → 1.14.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/admin/index.d.mts +42 -1
- package/dist/admin/index.d.ts +42 -1
- package/dist/admin/index.js +572 -19
- package/dist/admin/index.mjs +572 -19
- package/dist/index.d.mts +19 -2
- package/dist/index.d.ts +19 -2
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
- package/src/admin/aggregation/appointment/appointment.aggregation.service.ts +28 -6
- package/src/admin/mailing/appointment/appointment.mailing.service.ts +498 -7
- package/src/admin/notifications/notifications.admin.ts +104 -6
- package/src/types/appointment/index.ts +6 -0
- package/src/types/notifications/index.ts +14 -0
|
@@ -319,6 +319,9 @@ export interface Appointment {
|
|
|
319
319
|
confirmationTime?: Timestamp | null;
|
|
320
320
|
cancellationTime?: Timestamp | null;
|
|
321
321
|
rescheduleTime?: Timestamp | null;
|
|
322
|
+
/** Reschedule reminder tracking */
|
|
323
|
+
rescheduleReminderSentAt?: Timestamp | null;
|
|
324
|
+
rescheduleReminderCount?: number;
|
|
322
325
|
appointmentStartTime: Timestamp;
|
|
323
326
|
appointmentEndTime: Timestamp;
|
|
324
327
|
procedureActualStartTime?: Timestamp | null; // NEW: Actual start time of the procedure
|
|
@@ -418,6 +421,9 @@ export interface UpdateAppointmentData {
|
|
|
418
421
|
confirmationTime?: Timestamp | FieldValue | null;
|
|
419
422
|
cancellationTime?: Timestamp | FieldValue | null;
|
|
420
423
|
rescheduleTime?: Timestamp | FieldValue | null;
|
|
424
|
+
/** Reschedule reminder tracking */
|
|
425
|
+
rescheduleReminderSentAt?: Timestamp | FieldValue | null;
|
|
426
|
+
rescheduleReminderCount?: number | FieldValue;
|
|
421
427
|
procedureActualStartTime?: Timestamp | FieldValue | null; // NEW
|
|
422
428
|
actualDurationMinutes?: number;
|
|
423
429
|
cancellationReason?: string | null;
|
|
@@ -8,6 +8,7 @@ export enum NotificationType {
|
|
|
8
8
|
APPOINTMENT_REMINDER = "appointmentReminder", // For upcoming appointments
|
|
9
9
|
APPOINTMENT_STATUS_CHANGE = "appointmentStatusChange", // Generic for status changes like confirmed, checked-in etc.
|
|
10
10
|
APPOINTMENT_RESCHEDULED_PROPOSAL = "appointmentRescheduledProposal", // When clinic proposes a new time
|
|
11
|
+
APPOINTMENT_RESCHEDULED_REMINDER = "appointmentRescheduledReminder", // Reminder for pending reschedule request
|
|
11
12
|
APPOINTMENT_CANCELLED = "appointmentCancelled", // When an appointment is cancelled
|
|
12
13
|
|
|
13
14
|
// --- Requirement-Driven Instructions ---
|
|
@@ -185,6 +186,18 @@ export interface AppointmentRescheduledProposalNotification
|
|
|
185
186
|
// May include a deep link to confirm/reject reschedule.
|
|
186
187
|
}
|
|
187
188
|
|
|
189
|
+
/**
|
|
190
|
+
* Notification reminding the patient about a pending reschedule request they haven't responded to.
|
|
191
|
+
* Example: "Reminder: You have a pending reschedule request for your [Procedure Name] appointment."
|
|
192
|
+
*/
|
|
193
|
+
export interface AppointmentRescheduledReminderNotification
|
|
194
|
+
extends BaseNotification {
|
|
195
|
+
notificationType: NotificationType.APPOINTMENT_RESCHEDULED_REMINDER;
|
|
196
|
+
appointmentId: string; // Mandatory
|
|
197
|
+
procedureName?: string;
|
|
198
|
+
reminderCount?: number; // Number of reminders sent so far
|
|
199
|
+
}
|
|
200
|
+
|
|
188
201
|
/**
|
|
189
202
|
* Notification informing about a cancelled appointment.
|
|
190
203
|
* Example: "Your appointment for [Procedure Name] on [Date] has been cancelled."
|
|
@@ -277,6 +290,7 @@ export type Notification =
|
|
|
277
290
|
| AppointmentReminderNotification
|
|
278
291
|
| AppointmentStatusChangeNotification
|
|
279
292
|
| AppointmentRescheduledProposalNotification
|
|
293
|
+
| AppointmentRescheduledReminderNotification
|
|
280
294
|
| AppointmentCancelledNotification
|
|
281
295
|
| FormReminderNotification
|
|
282
296
|
| FormSubmissionConfirmationNotification
|