medication tracking started

This commit is contained in:
blaisadmin
2026-04-19 02:30:22 -04:00
parent 1ff8100b2c
commit 263b98d3d8
6 changed files with 624 additions and 3 deletions
+12
View File
@@ -144,6 +144,18 @@ export type VetVisitRow = {
notes: string | null;
};
export type MedicationRow = {
id: string;
bird_id: string;
name: string;
dosage: string;
frequency: string;
route: string | null;
start_date: string;
end_date: string | null;
notes: string | null;
};
export type AuthContext = {
user: UserRow;
session: AuthSessionRow;