Circle V2 API Docs
    Preparing search index...

    Variable patientUtilizationReviewsRepoConst

    patientUtilizationReviewsRepo: DbRepo<
        {
            upsert: (
                rows: (
                    {
                        entity_id: number & { __brand: "EntityId" };
                        external_utilization_review_id: string;
                        integration_id: string & { __brand: "IntegrationId" };
                        lcd: boolean;
                        patient_admission_id: number & { __brand: "PatientAdmissionId" };
                        patient_id: string & { __brand: "PatientId" };
                    } & {
                        authorization_date?: string
                        | null;
                        authorization_number?: string | null;
                        created_at?: DbDate;
                        end_date?: string | null;
                        frequency?: string | null;
                        id?: PatientUtilizationReviewId;
                        insurance?: string | null;
                        level_of_care_id?: number | null;
                        next_care_level?: string | null;
                        next_care_level_date?: string | null;
                        next_review?: string | null;
                        number_of_days?: number | null;
                        payor_id?: number | null;
                        start_date?: string | null;
                        status?: string | null;
                        treatment_episode_id?: string | null;
                        updated_at?: DbDate;
                    }
                )[],
            ) => Promise<
                {
                    authorization_date: string
                    | null;
                    authorization_number: string | null;
                    created_at: DbDate;
                    end_date: string | null;
                    entity_id: number & { __brand: "EntityId" };
                    external_utilization_review_id: string;
                    frequency: string | null;
                    id: PatientUtilizationReviewId;
                    insurance: string | null;
                    integration_id: string & { __brand: "IntegrationId" };
                    lcd: boolean;
                    level_of_care_id: number | null;
                    next_care_level: string | null;
                    next_care_level_date: string | null;
                    next_review: string | null;
                    number_of_days: number | null;
                    patient_admission_id: number & { __brand: "PatientAdmissionId" };
                    patient_id: string & { __brand: "PatientId" };
                    payor_id: number | null;
                    start_date: string | null;
                    status: string | null;
                    treatment_episode_id: string | null;
                    updated_at: DbDate;
                }[],
            >;
        },
    > = ...