Added memorial settings

This commit is contained in:
Corey Blais
2026-04-22 10:42:43 -04:00
parent 36e074c1fd
commit 646f895ed6
8 changed files with 466 additions and 32 deletions
+5 -1
View File
@@ -105,6 +105,10 @@ export type BirdRow = {
photo_data_url: string | null;
notify_on_dob: boolean;
notify_on_gotcha_day: boolean;
memorialized_at: string | null;
memorialized_on: string | null;
memorial_note: string | null;
notify_on_memorial_day: boolean;
created_at: string;
latest_weight_grams: string | null;
latest_recorded_on: string | null;
@@ -115,7 +119,7 @@ export type LostBirdMatchRow = BirdRow & {
workspace_billing_email: string | null;
};
export type BirdMilestoneReminderType = 'hatch_day' | 'gotcha_day';
export type BirdMilestoneReminderType = 'hatch_day' | 'gotcha_day' | 'memorial_day';
export type BirdMilestoneReminderCandidateRow = BirdRow & {
workspace_name: string;