Circle V2 API Docs
    Preparing search index...
    zActionItemsExportFilters: ZodObject<
        {
            admissionStatus: ZodOptional<
                ZodEnum<{ active: "active"; all: "all"; discharged: "discharged" }>,
            >;
            assigneeContactIds: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<ContactId, string>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            assigneeIds: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<ProfileId, number>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            auditTemplateIds: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<AuditTemplateId, number>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            authEndDateRange: ZodOptional<
                ZodObject<{ from: ZodString; to: ZodString }, $strip>,
            >;
            facilityIds: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<FacilityId, string>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            facilityIdsForLoc: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<FacilityId, string>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            facilityIdsForProgram: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<FacilityId, string>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            facilityIdsForUrLoc: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<FacilityId, string>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            levelOfCareIds: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<FacilityLevelOfCareId, string>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            nextSteps: ZodOptional<
                ZodArray<
                    ZodEnum<
                        {
                            needs_clarification: "needs_clarification";
                            no_action_needed: "no_action_needed";
                            resolved: "resolved";
                            sent_to_clinician: "sent_to_clinician";
                            to_do: "to_do";
                        },
                    >,
                >,
            >;
            programIds: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<FacilityProgramId, string>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            providerIds: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<ProfileId, number>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
            runDateRange: ZodOptional<
                ZodObject<{ from: ZodString; to: ZodString }, $strip>,
            >;
            search: ZodOptional<ZodString>;
            statuses: ZodOptional<
                ZodArray<
                    ZodEnum<
                        {
                            fail: "fail";
                            late: "late";
                            missing: "missing";
                            needs_review: "needs_review";
                        },
                    >,
                >,
            >;
            urLevelOfCareIds: ZodOptional<
                ZodArray<
                    ZodPipe<ZodString, ZodTransform<FacilityLevelOfCareId, string>> & zIdInnerType<
                        ZodString,
                    >,
                >,
            >;
        },
        $strip,
    > = ...

    Shared so the export route and its button agree on the payload without importing each other.