Variable TeamIncludeSchemaConst
TeamIncludeSchema: ZodObject<
{
managers: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<ZodEnum<{ id: ...; managerId: ...; teamId: ... }>>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ id: ...; managerId: ...; teamId: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
members: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<ZodEnum<{ id: ...; memberId: ...; teamId: ... }>>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ id: ...; memberId: ...; teamId: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
},
$strip,
> = ...