Variable MJCompanyIntegrationRunSchemaConst
MJCompanyIntegrationRunSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Comments: ZodNullable<ZodString>;
Company: ZodString;
CompanyIntegrationID: ZodString;
ConfigData: ZodNullable<ZodString>;
EndedAt: ZodNullable<ZodDate>;
ErrorLog: ZodNullable<ZodString>;
ID: ZodString;
Integration: ZodString;
RunByUser: ZodString;
RunByUserID: ZodString;
ScheduledJobRunID: ZodNullable<ZodString>;
StartedAt: ZodNullable<ZodDate>;
Status: ZodUnion<
[
ZodLiteral<"Failed">,
ZodLiteral<"In Progress">,
ZodLiteral<"Pending">,
ZodLiteral<"Success">,
],
>;
TotalRecords: ZodNumber;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Comments?: string;
Company?: string;
CompanyIntegrationID?: string;
ConfigData?: string;
EndedAt?: Date;
ErrorLog?: string;
ID?: string;
Integration?: string;
RunByUser?: string;
RunByUserID?: string;
ScheduledJobRunID?: string;
StartedAt?: Date;
Status?: "Pending"
| "Failed"
| "Success"
| "In Progress";
TotalRecords?: number;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Comments?: string;
Company?: string;
CompanyIntegrationID?: string;
ConfigData?: string;
EndedAt?: Date;
ErrorLog?: string;
ID?: string;
Integration?: string;
RunByUser?: string;
RunByUserID?: string;
ScheduledJobRunID?: string;
StartedAt?: Date;
Status?: "Pending"
| "Failed"
| "Success"
| "In Progress";
TotalRecords?: number;
},
> = ...
zod schema definition for the entity MJ: Company Integration Runs