Variable TitleIncludeSchemaConst
TitleIncludeSchema: ZodObject<
{
department: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{ id: ...; isActive: ...; name: ...; parentId: ...; slug: ... },
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{ id: ...; isActive: ...; name: ...; parentId: ...; slug: ... },
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
employees: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
directManagerId: ...;
employmentType: ...;
firstName: ...;
hireDate: ...;
id: ...;
lastName: ...;
middleName: ...;
preferedName: ...;
status: ...;
terminationDate: ...;
titleId: ...;
uuid: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
directManagerId: ...;
employmentType: ...;
firstName: ...;
hireDate: ...;
id: ...;
lastName: ...;
middleName: ...;
preferedName: ...;
status: ...;
terminationDate: ...;
titleId: ...;
uuid: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
histories: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
employeeId: ...;
endDate: ...;
id: ...;
reason: ...;
startDate: ...;
titleId: ...;
type: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
employeeId: ...;
endDate: ...;
id: ...;
reason: ...;
startDate: ...;
titleId: ...;
type: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
},
$strip,
> = ...