hr-db
    Preparing search index...

    Variable PayrollRunOwnQueryOneSchemaConst

    PayrollRunOwnQueryOneSchema: ZodObject<
        {
            distinct: ZodOptional<
                ZodArray<
                    ZodEnum<
                        {
                            endDate: "endDate";
                            id: "id";
                            payDate: "payDate";
                            resolverId: "resolverId";
                            startDate: "startDate";
                            status: "status";
                        },
                    >,
                >,
            >;
            where: ZodOptional<
                ZodPipe<
                    ZodTransform<any, unknown>,
                    ZodObject<
                        {
                            endDate: ZodOptional<
                                ZodUnion<
                                    [
                                        ZodString,
                                        ZodObject<
                                            {
                                                equals: ...;
                                                gt: ...;
                                                gte: ...;
                                                in: ...;
                                                lt: ...;
                                                lte: ...;
                                                not: ...;
                                                notIn: ...;
                                            },
                                            $strip,
                                        >,
                                    ],
                                >,
                            >;
                            id: ZodOptional<
                                ZodUnion<
                                    [
                                        ZodCoercedNumber<unknown>,
                                        ZodObject<
                                            {
                                                equals: ...;
                                                gt: ...;
                                                gte: ...;
                                                in: ...;
                                                lt: ...;
                                                lte: ...;
                                                not: ...;
                                                notIn: ...;
                                            },
                                            $strip,
                                        >,
                                    ],
                                >,
                            >;
                            payDate: ZodOptional<
                                ZodUnion<
                                    [
                                        ZodString,
                                        ZodObject<
                                            {
                                                equals: ...;
                                                gt: ...;
                                                gte: ...;
                                                in: ...;
                                                lt: ...;
                                                lte: ...;
                                                not: ...;
                                                notIn: ...;
                                            },
                                            $strip,
                                        >,
                                    ],
                                >,
                            >;
                            resolverId: ZodOptional<
                                ZodUnion<
                                    [
                                        ZodCoercedNumber<unknown>,
                                        ZodObject<
                                            {
                                                equals: ...;
                                                gt: ...;
                                                gte: ...;
                                                in: ...;
                                                lt: ...;
                                                lte: ...;
                                                not: ...;
                                                notIn: ...;
                                            },
                                            $strip,
                                        >,
                                    ],
                                >,
                            >;
                            startDate: ZodOptional<
                                ZodUnion<
                                    [
                                        ZodString,
                                        ZodObject<
                                            {
                                                equals: ...;
                                                gt: ...;
                                                gte: ...;
                                                in: ...;
                                                lt: ...;
                                                lte: ...;
                                                not: ...;
                                                notIn: ...;
                                            },
                                            $strip,
                                        >,
                                    ],
                                >,
                            >;
                            status: ZodOptional<
                                ZodEnum<
                                    {
                                        APPROVED: "APPROVED";
                                        CALCULATED: "CALCULATED";
                                        CLOSED: "CLOSED";
                                        DRAFT: "DRAFT";
                                        PAID: "PAID";
                                    },
                                >,
                            >;
                        },
                        $strip,
                    >,
                >,
            >;
        },
        $strip,
    > = ...