Circle V2 API Docs
    Preparing search index...

    Variable entityLevelsOfCareRepoConst

    entityLevelsOfCareRepo: DbRepo<
        {
            upsert: (
                rows: (
                    { entity_id: number & { __brand: "EntityId" }; name: string } & {
                        created_at?: DbDate;
                        facility_id?: string | null;
                        id?: EntityLevelOfCareId;
                        parent_level_of_care_id?: number | null;
                        updated_at?: DbDate;
                    }
                )[],
            ) => Promise<
                {
                    created_at: DbDate;
                    entity_id: number & { __brand: "EntityId" };
                    facility_id: string | null;
                    id: EntityLevelOfCareId;
                    name: string;
                    parent_level_of_care_id: number | null;
                    updated_at: DbDate;
                }[],
            >;
        },
    > = ...