hr-db
    Preparing search index...

    Variable AddressSelectFieldsSchemaConst

    AddressSelectFieldsSchema: ZodObject<
        {
            city: ZodOptional<ZodCoercedBoolean<unknown>>;
            contact: ZodOptional<
                ZodUnion<
                    [
                        ZodCoercedBoolean<unknown>,
                        ZodObject<
                            {
                                distinct: ZodOptional<
                                    ZodArray<ZodEnum<{ employeeId: ...; id: ... }>>,
                                >;
                                where: ZodOptional<
                                    ZodPipe<
                                        ZodTransform<any, unknown>,
                                        ZodObject<{ employeeId: ...; id: ... }, $strip>,
                                    >,
                                >;
                            },
                            $strip,
                        >,
                    ],
                >,
            >;
            contactId: ZodOptional<ZodCoercedBoolean<unknown>>;
            id: ZodOptional<ZodCoercedBoolean<unknown>>;
            primary: ZodOptional<
                ZodUnion<
                    [
                        ZodCoercedBoolean<unknown>,
                        ZodObject<
                            {
                                distinct: ZodOptional<
                                    ZodArray<ZodEnum<{ addressId: ...; contactId: ...; id: ... }>>,
                                >;
                                where: ZodOptional<
                                    ZodPipe<
                                        ZodTransform<any, unknown>,
                                        ZodObject<{ addressId: ...; contactId: ...; id: ... }, $strip>,
                                    >,
                                >;
                            },
                            $strip,
                        >,
                    ],
                >,
            >;
            state: ZodOptional<
                ZodUnion<
                    [
                        ZodCoercedBoolean<unknown>,
                        ZodObject<
                            {
                                distinct: ZodOptional<
                                    ZodArray<
                                        ZodEnum<{ code: ...; countryId: ...; id: ...; name: ... }>,
                                    >,
                                >;
                                where: ZodOptional<
                                    ZodPipe<
                                        ZodTransform<any, unknown>,
                                        ZodObject<
                                            { code: ...; countryId: ...; id: ...; name: ... },
                                            $strip,
                                        >,
                                    >,
                                >;
                            },
                            $strip,
                        >,
                    ],
                >,
            >;
            stateId: ZodOptional<ZodCoercedBoolean<unknown>>;
            street: ZodOptional<ZodCoercedBoolean<unknown>>;
            type: ZodOptional<ZodCoercedBoolean<unknown>>;
            zip: ZodOptional<ZodCoercedBoolean<unknown>>;
        },
        $strip,
    > = ...