shared
    Preparing search index...

    Variable userSchemaFilterConst

    userSchemaFilter: ZodIntersection<
        ZodObject<
            {
                email: ZodOptional<ZodOptional<ZodString>>;
                name: ZodOptional<ZodOptional<ZodString>>;
                username: ZodOptional<ZodString>;
            } & {
                order: ZodDefault<ZodNativeEnum<typeof Order>>;
                orderBy: ZodOptional<ZodNativeEnum<typeof UserPropFilter>>;
                page: ZodDefault<ZodNumber>;
                pageSize: ZodDefault<ZodNumber>;
            },
            "strip",
            ZodTypeAny,
            {
                email?: string;
                name?: string;
                order: Order;
                orderBy?: Username
                | Name
                | Email
                | CreatedAt
                | UpdatedAt;
                page: number;
                pageSize: number;
                username?: string;
            },
            {
                email?: string;
                name?: string;
                order?: Asc
                | Desc;
                orderBy?: Username | Name | Email | CreatedAt | UpdatedAt;
                page?: number;
                pageSize?: number;
                username?: string;
            },
        >,
        ZodEffects<
            ZodObject<
                {
                    createdAtMax: ZodOptional<ZodDate>;
                    createdAtMin: ZodOptional<ZodDate>;
                },
                "strip",
                ZodTypeAny,
                { createdAtMax?: Date; createdAtMin?: Date },
                { createdAtMax?: Date; createdAtMin?: Date },
            >,
            { createdAtMax?: Date; createdAtMin?: Date },
            { createdAtMax?: Date; createdAtMin?: Date },
        >,
    > = ...

    Requests for search