import { api } from "@/lib/api-client"; import type { StudentProgression } from "@/types/student-progress"; import type { PaginatedResponse, PaginationParams } from "@/types"; export const studentProgressService = { async listProgress(params?: PaginationParams): Promise> { return api.get>("/student-progress", params as Record); }, };