updated medicine schedules
This commit is contained in:
@@ -150,17 +150,25 @@ export type MedicationRow = {
|
||||
name: string;
|
||||
dosage: string;
|
||||
frequency: string;
|
||||
dose_schedule: MedicationDoseScheduleItem[];
|
||||
route: string | null;
|
||||
start_date: string;
|
||||
end_date: string | null;
|
||||
notes: string | null;
|
||||
};
|
||||
|
||||
export type MedicationDoseScheduleItem = {
|
||||
key: string;
|
||||
label: string;
|
||||
time: string;
|
||||
};
|
||||
|
||||
export type MedicationAdministrationRow = {
|
||||
id: string;
|
||||
medication_id: string;
|
||||
bird_id: string;
|
||||
administered_on: string;
|
||||
administration_slot: string;
|
||||
status: 'administered' | 'missed';
|
||||
notes: string | null;
|
||||
created_by_user_id: string | null;
|
||||
|
||||
Reference in New Issue
Block a user