Variable CompanyIndustryIncludeSchemaConst
CompanyIndustryIncludeSchema: ZodObject<
{
company: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<ZodEnum<{ id: ...; name: ...; slug: ...; uuid: ... }>>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ id: ...; name: ...; slug: ...; uuid: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
industry: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<{ description: ...; id: ...; name: ...; slug: ... }>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{ description: ...; id: ...; name: ...; slug: ... },
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
},
$strip,
> = ...