Circle V2 API Docs
    Preparing search index...

    Variable entitySettingsRepoConst

    entitySettingsRepo: DbRepo<
        {
            listByEntity: (
                entityId: EntityId,
            ) => Promise<
                {
                    created_at: DbDate;
                    entity_id: number & { __brand: "EntityId" };
                    id: EntitySettingId;
                    setting_key:
                        | "emrIntegrationEnabled"
                        | "sessionNoteGenerationEnabled"
                        | "chartReviewEnabled"
                        | "formFillingEnabled";
                    updated_at: DbDate;
                    updated_by: string & { __brand: "UserId" }
                    | null;
                    value: boolean;
                }[],
            >;
            upsert: (
                params: UpsertEntitySettingParams,
            ) => Promise<
                {
                    created_at: DbDate;
                    entity_id: number & { __brand: "EntityId" };
                    id: EntitySettingId;
                    setting_key:
                        | "emrIntegrationEnabled"
                        | "sessionNoteGenerationEnabled"
                        | "chartReviewEnabled"
                        | "formFillingEnabled";
                    updated_at: DbDate;
                    updated_by: string & { __brand: "UserId" }
                    | null;
                    value: boolean;
                },
            >;
        },
    > = ...