Variable AgentIncludeSchemaConst
AgentIncludeSchema: 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,
>,
],
>,
>;
contacts: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{ agentId: ...; id: ...; order: ...; type: ...; uuid: ... },
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{ agentId: ...; id: ...; order: ...; type: ...; uuid: ... },
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
title: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
departmentId: ...;
description: ...;
id: ...;
name: ...;
slug: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
departmentId: ...;
description: ...;
id: ...;
name: ...;
slug: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
},
$strip,
> = ...