Variable StateSelectFieldsSchemaConst
StateSelectFieldsSchema: ZodObject<
{
addresses: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
city: ...;
contactId: ...;
id: ...;
stateId: ...;
street: ...;
type: ...;
zip: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
city: ...;
contactId: ...;
id: ...;
stateId: ...;
street: ...;
type: ...;
zip: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
code: ZodOptional<ZodCoercedBoolean<unknown>>;
country: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<ZodEnum<{ code: ...; id: ...; name: ... }>>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ code: ...; id: ...; name: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
countryId: ZodOptional<ZodCoercedBoolean<unknown>>;
id: ZodOptional<ZodCoercedBoolean<unknown>>;
name: ZodOptional<ZodCoercedBoolean<unknown>>;
},
$strip,
> = ...