Variable CitySelectFieldsSchemaConst
CitySelectFieldsSchema: ZodObject<
{
addresses: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
cityId: ...;
contactId: ...;
id: ...;
order: ...;
street: ...;
zip: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
cityId: ...;
contactId: ...;
id: ...;
order: ...;
street: ...;
zip: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
id: ZodOptional<ZodCoercedBoolean<unknown>>;
name: ZodOptional<ZodCoercedBoolean<unknown>>;
state: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<{ code: ...; countryId: ...; id: ...; state: ... }>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{ code: ...; countryId: ...; id: ...; state: ... },
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
stateId: ZodOptional<ZodCoercedBoolean<unknown>>;
},
$strip,
> = ...