Variable MJTaskDependencySchemaConst
MJTaskDependencySchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Condition: ZodNullable<ZodString>;
DependencyType: ZodUnion<
[
ZodLiteral<"Corequisite">,
ZodLiteral<"Optional">,
ZodLiteral<"Prerequisite">,
],
>;
DependsOnTask: ZodString;
DependsOnTaskID: ZodString;
ExclusiveGroup: ZodNullable<ZodString>;
ID: ZodString;
Priority: ZodNumber;
Sequence: ZodNumber;
Task: ZodString;
TaskID: ZodString;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Condition?: string;
DependencyType?: "Corequisite"
| "Optional"
| "Prerequisite";
DependsOnTask?: string;
DependsOnTaskID?: string;
ExclusiveGroup?: string;
ID?: string;
Priority?: number;
Sequence?: number;
Task?: string;
TaskID?: string;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Condition?: string;
DependencyType?: "Corequisite"
| "Optional"
| "Prerequisite";
DependsOnTask?: string;
DependsOnTaskID?: string;
ExclusiveGroup?: string;
ID?: string;
Priority?: number;
Sequence?: number;
Task?: string;
TaskID?: string;
},
> = ...
zod schema definition for the entity MJ: Task Dependencies