Circle V2 API Docs
    Preparing search index...
    chartReviewRouter: BuiltRouter<
        {
            ctx: TRPCContext;
            errorShape: DefaultErrorShape;
            meta: object;
            transformer: false;
        },
        DecorateCreateRouterOptions<
            {
                run: MutationProcedure<
                    {
                        input: {
                            auditSource?: "manual"
                            | "queue"
                            | "api";
                            patientId: string;
                            sessionId?: string;
                            templateIds: string[];
                            treatmentEpisodeId?: string;
                            trigger?: string;
                            triggeredAt?: string;
                        };
                        meta: object;
                        output: { auditRunIds: AuditRunId[] };
                    },
                >;
                syncAndRun: MutationProcedure<
                    {
                        input: {
                            episodeId?: string;
                            patientId: string;
                            templateIds: string[];
                        };
                        meta: object;
                        output: SyncAndRunOutput;
                    },
                >;
            },
        >,
    > = ...