Variable MJRSUPendingWorkSchemaConst
MJRSUPendingWorkSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
CompanyIntegration: ZodString;
CompanyIntegrationID: ZodString;
ErrorMessage: ZodNullable<ZodString>;
ID: ZodString;
PayloadJSON: ZodString;
ProcessedAt: ZodNullable<ZodDate>;
Status: ZodUnion<
[ZodLiteral<"Completed">, ZodLiteral<"Failed">, ZodLiteral<"Pending">],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
CompanyIntegration?: string;
CompanyIntegrationID?: string;
ErrorMessage?: string;
ID?: string;
PayloadJSON?: string;
ProcessedAt?: Date;
Status?: "Pending"
| "Failed"
| "Completed";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
CompanyIntegration?: string;
CompanyIntegrationID?: string;
ErrorMessage?: string;
ID?: string;
PayloadJSON?: string;
ProcessedAt?: Date;
Status?: "Pending"
| "Failed"
| "Completed";
},
> = ...
zod schema definition for the entity MJ: RSU Pending Works