Finished medication tracking and UI enhancements

This commit is contained in:
Corey Blais
2026-04-19 13:20:02 -04:00
parent 263b98d3d8
commit 872b6c8663
6 changed files with 589 additions and 253 deletions
+11
View File
@@ -156,6 +156,17 @@ export type MedicationRow = {
notes: string | null;
};
export type MedicationAdministrationRow = {
id: string;
medication_id: string;
bird_id: string;
administered_on: string;
status: 'administered' | 'missed';
notes: string | null;
created_by_user_id: string | null;
created_at: string;
};
export type AuthContext = {
user: UserRow;
session: AuthSessionRow;