Variable CountryIncludeSchemaConst
CountryIncludeSchema: ZodObject<
{
states: 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,
>,
],
>,
>;
},
$strip,
> = ...