Variable PhoneOwnQuerySchemaConst
PhoneOwnQuerySchema: ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{ contactId: "contactId"; id: "id"; phone: "phone"; type: "type" },
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
contactId: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
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,
>,
],
>,
>;
phone: ZodOptional<
ZodUnion<
[
ZodString,
ZodObject<
{
contains: ...;
endsWith: ...;
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
startsWith: ...;
},
$strip,
>,
],
>,
>;
type: ZodOptional<
ZodEnum<
{
EMERGENCY: "EMERGENCY";
OTHER: "OTHER";
RESIDENCE_ADDRESS: "RESIDENCE_ADDRESS";
WORK: "WORK";
},
>,
>;
},
$strip,
>,
>,
>;
},
$strip,
> = ...