Variable TeamMemberSelectFieldsSchemaConst
TeamMemberSelectFieldsSchema: ZodObject<
{
id: ZodOptional<ZodCoercedBoolean<unknown>>;
member: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{ displayName: ...; id: ...; slug: ...; title: ...; uuid: ... },
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{ displayName: ...; id: ...; slug: ...; title: ...; uuid: ... },
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
memberId: ZodOptional<ZodCoercedBoolean<unknown>>;
team: 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,
>,
],
>,
>;
teamId: ZodOptional<ZodCoercedBoolean<unknown>>;
},
$strip,
> = ...