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