Added reminder emails

This commit is contained in:
Corey Blais
2026-04-21 15:04:44 -04:00
parent af40b9901f
commit ee09c95f05
13 changed files with 435 additions and 24 deletions
+19
View File
@@ -115,6 +115,25 @@ export type LostBirdMatchRow = BirdRow & {
workspace_billing_email: string | null;
};
export type BirdMilestoneReminderType = 'hatch_day' | 'gotcha_day';
export type BirdMilestoneReminderCandidateRow = BirdRow & {
workspace_name: string;
reminder_type: BirdMilestoneReminderType;
reminder_date: string;
reminder_year: number;
};
export type BirdMilestoneReminderDeliveryRow = {
id: string;
bird_id: string;
workspace_id: number;
reminder_type: BirdMilestoneReminderType;
reminder_year: number;
delivered_on: string;
created_at: string;
};
export type PendingBirdTransferRow = {
id: string;
bird_id: string;