improvement: appointments history component added to patients feature.
This commit is contained in:
@@ -39,3 +39,17 @@ export interface CreatePatientResponse {
|
||||
data: Patient;
|
||||
existing?: boolean;
|
||||
}
|
||||
|
||||
export interface PatientAppointmentHistoryItem {
|
||||
id: string;
|
||||
startAt: string;
|
||||
endAt: string;
|
||||
purpose: string;
|
||||
providerUserId: string;
|
||||
providerName: string;
|
||||
}
|
||||
|
||||
export interface PatientAppointmentHistoryResponse {
|
||||
success: boolean;
|
||||
data: PatientAppointmentHistoryItem[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user