bulkApply: MutationProcedure<
{
input: {
assignee?: | { id: string; type: "profile" }
| { id: string; type: "contact" }
| null;
items: {
auditQuestionId: string;
auditResponseId: string;
patientId: string;
}[];
nextStep?: | "to_do"
| "sent_to_clinician"
| "resolved"
| "no_action_needed"
| "needs_clarification";
status?: | "pass"
| "fail"
| "needs_review"
| "not_applicable"
| "missing"
| "late"
| "not_due_yet";
};
meta: object;
output: void;
},
> = ...