improvement: appointments history component added to patients feature.

This commit is contained in:
2026-07-12 18:56:01 +03:30
parent 3b47aa9605
commit 1cdf853d32
12 changed files with 374 additions and 28 deletions

View File

@@ -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[];
}