Variable EmailSelectFieldsSchemaConst
EmailSelectFieldsSchema: ZodObject<
{
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>>;
email: ZodOptional<ZodCoercedBoolean<unknown>>;
id: ZodOptional<ZodCoercedBoolean<unknown>>;
primary: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<ZodEnum<{ contactId: ...; emailId: ...; id: ... }>>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ contactId: ...; emailId: ...; id: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
type: ZodOptional<ZodCoercedBoolean<unknown>>;
},
$strip,
> = ...