Variable TitleIncludeSchemaConst
TitleIncludeSchema: ZodObject<
{
agents: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
companyId: ...;
firstName: ...;
gender: ...;
id: ...;
lastName: ...;
middleName: ...;
note: ...;
preferedName: ...;
slug: ...;
titleId: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
companyId: ...;
firstName: ...;
gender: ...;
id: ...;
lastName: ...;
middleName: ...;
note: ...;
preferedName: ...;
slug: ...;
titleId: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
department: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<{ id: ...; name: ...; parentId: ...; slug: ... }>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ id: ...; name: ...; parentId: ...; slug: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
},
$strip,
> = ...