Variable MJRecordMergeDeletionLogSchemaConst
MJRecordMergeDeletionLogSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
DeletedRecordID: ZodString;
ID: ZodString;
ProcessingLog: ZodNullable<ZodString>;
RecordMergeLog: ZodString;
RecordMergeLogID: ZodString;
Status: ZodUnion<
[ZodLiteral<"Complete">, ZodLiteral<"Error">, ZodLiteral<"Pending">],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
DeletedRecordID?: string;
ID?: string;
ProcessingLog?: string;
RecordMergeLog?: string;
RecordMergeLogID?: string;
Status?: "Pending"
| "Complete"
| "Error";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
DeletedRecordID?: string;
ID?: string;
ProcessingLog?: string;
RecordMergeLog?: string;
RecordMergeLogID?: string;
Status?: "Pending"
| "Complete"
| "Error";
},
> = ...
zod schema definition for the entity MJ: Record Merge Deletion Logs