Variable StatusIncludeSchemaConst
StatusIncludeSchema: ZodObject<
{
givenStatuses: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
createdAt: ...;
createdById: ...;
id: ...;
newStatusId: ...;
oldStatusId: ...;
projectId: ...;
taskId: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
createdAt: ...;
createdById: ...;
id: ...;
newStatusId: ...;
oldStatusId: ...;
projectId: ...;
taskId: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
projects: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<ZodEnum<{ id: ...; projectId: ...; statusId: ... }>>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ id: ...; projectId: ...; statusId: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
takenStatuses: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
createdAt: ...;
createdById: ...;
id: ...;
newStatusId: ...;
oldStatusId: ...;
projectId: ...;
taskId: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
createdAt: ...;
createdById: ...;
id: ...;
newStatusId: ...;
oldStatusId: ...;
projectId: ...;
taskId: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
tasks: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
createdAt: ...;
createdById: ...;
description: ...;
due: ...;
id: ...;
parentId: ...;
pointId: ...;
priorityId: ...;
resolvedAt: ...;
slug: ...;
sprintId: ...;
statusId: ...;
title: ...;
updatedAt: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
createdAt: ...;
createdById: ...;
description: ...;
due: ...;
id: ...;
parentId: ...;
pointId: ...;
priorityId: ...;
resolvedAt: ...;
slug: ...;
sprintId: ...;
statusId: ...;
title: ...;
updatedAt: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
},
$strip,
> = ...