Circle V2 API Docs
    Preparing search index...

    Variable patientChartsRepoConst

    patientChartsRepo: DbRepo<
        {
            countForPatient: (
                params: ListPatientChartsForPatientParams,
            ) => Promise<number>;
            listForPatient: (
                params: ListPatientChartsForPatientParams,
            ) => Promise<
                {
                    created_at: DbDate;
                    embedding_status: | "processing"
                    | "failed"
                    | "pending"
                    | "parse"
                    | "extract"
                    | "completed"
                    | null;
                    file_name: string
                    | null;
                    file_type: "patient_chart" | "generated_form" | "emr_document" | null;
                    file_url: string | null;
                    id: PatientChartId;
                    patient_id: string & { __brand: "PatientId" } | null;
                    updated_at: string & { __brand: "DbDate" } | null;
                }[],
            >;
        },
    > = ...