import { apiClient } from "@/api/client"; export interface TherapistInfo { idUser: number; name: string; surname: string; email: string; officeLocation: string; degree: string; yearsExp: number; phoneNumber: string; freeConsultationSlots: string[]; } export interface Patient { userId: number; firstName: string; lastName: string; email: string; } export const therapistApi = { getAllTherapists: async (): Promise => apiClient.get("/therapists"), getTherapistPatients: async (): Promise => apiClient.get("/therapists/patients"), };