Circle V2 API Docs
    Preparing search index...

    Variable patientActionItemsRepoConst

    patientActionItemsRepo: DbRepo<
        {
            bulkUpsert: (
                keys: ActionItemKey[],
                values: UpsertActionItemValues,
            ) => Promise<
                {
                    assigned_contact_id: ContactId
                    | null;
                    assigned_to: ProfileId | null;
                    audit_question_id: string & { __brand: "AuditQuestionId" };
                    created_at: DbDate;
                    id: PatientActionItemId;
                    next_steps:
                        | "to_do"
                        | "sent_to_clinician"
                        | "resolved"
                        | "no_action_needed"
                        | "needs_clarification";
                    patient_id: string & { __brand: "PatientId" };
                    updated_at: DbDate;
                    updated_by: ProfileId | null;
                }[],
            >;
            upsert: (
                key: ActionItemKey,
                values: UpsertActionItemValues,
            ) => Promise<
                {
                    assigned_contact_id: ContactId
                    | null;
                    assigned_to: ProfileId | null;
                    audit_question_id: string & { __brand: "AuditQuestionId" };
                    created_at: DbDate;
                    id: PatientActionItemId;
                    next_steps:
                        | "to_do"
                        | "sent_to_clinician"
                        | "resolved"
                        | "no_action_needed"
                        | "needs_clarification";
                    patient_id: string & { __brand: "PatientId" };
                    updated_at: DbDate;
                    updated_by: ProfileId | null;
                },
            >;
        },
    > = ...