Circle V2 API Docs
    Preparing search index...
    savedFiltersRouter: BuiltRouter<
        {
            ctx: TRPCContext;
            errorShape: DefaultErrorShape;
            meta: object;
            transformer: false;
        },
        DecorateCreateRouterOptions<
            {
                create: MutationProcedure<
                    {
                        input: {
                            columnVisibility?: Record<string, boolean>;
                            filters: {
                                boolean?: Record<string, boolean>;
                                dateRange?: Record<
                                    string,
                                    { end: (...)
                                    | (...); start: (...) | (...) },
                                >;
                                range?: Record<string, { max: ...; min: ... }[]>;
                                select?: Record<string, string[]>;
                                text?: Record<string, string>;
                            };
                            name: string;
                            pageKey: string;
                            viewMode?: "flat"
                            | "grouped";
                        };
                        meta: object;
                        output: SavedViewDto;
                    },
                >;
                delete: MutationProcedure<
                    {
                        input: { id: string };
                        meta: object;
                        output: DeleteSavedFilterOutput;
                    },
                >;
                list: QueryProcedure<
                    {
                        input: { pageKey: string };
                        meta: object;
                        output: ListSavedFiltersOutput;
                    },
                >;
                rename: MutationProcedure<
                    {
                        input: { id: string; name: string };
                        meta: object;
                        output: SavedViewDto;
                    },
                >;
                resolveLabels: QueryProcedure<
                    {
                        input: {
                            assistantIds?: string[];
                            facilityIds?: string[];
                            patientIds?: string[];
                            providerIds?: string[];
                            triggerIds?: string[];
                        };
                        meta: object;
                        output: {
                            assistantItems: { id: AuditTemplateId; name: string
                            | null }[];
                            facilityItems: { id: FacilityId; name: string }[];
                            patientItems: { id: string; label: string }[];
                            providerItems: { id: ProfileId; label: string }[];
                            triggerItems: { id: ChartReviewTriggerId; name: string }[];
                        };
                    },
                >;
                update: MutationProcedure<
                    {
                        input: {
                            columnVisibility: Record<string, boolean>;
                            filters: {
                                boolean?: Record<string, boolean>;
                                dateRange?: Record<
                                    string,
                                    { end: (...)
                                    | (...); start: (...) | (...) },
                                >;
                                range?: Record<string, { max: ...; min: ... }[]>;
                                select?: Record<string, string[]>;
                                text?: Record<string, string>;
                            };
                            id: string;
                            viewMode: "flat"
                            | "grouped";
                        };
                        meta: object;
                        output: SavedViewDto;
                    },
                >;
            },
        >,
    > = ...