Variable MJCompanyIntegrationRunAPILogSchemaConst
MJCompanyIntegrationRunAPILogSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
CompanyIntegrationRun: ZodString;
CompanyIntegrationRunID: ZodString;
ExecutedAt: ZodDate;
ID: ZodString;
IsSuccess: ZodBoolean;
Parameters: ZodNullable<ZodString>;
RequestMethod: ZodNullable<
ZodUnion<
[
ZodLiteral<"DELETE">,
ZodLiteral<"GET">,
ZodLiteral<"HEAD">,
ZodLiteral<"OPTIONS">,
ZodLiteral<"PATCH">,
ZodLiteral<"POST">,
ZodLiteral<"PUT">,
],
>,
>;
URL: ZodNullable<ZodString>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
CompanyIntegrationRun?: string;
CompanyIntegrationRunID?: string;
ExecutedAt?: Date;
ID?: string;
IsSuccess?: boolean;
Parameters?: string;
RequestMethod?: | "DELETE"
| "GET"
| "HEAD"
| "OPTIONS"
| "PATCH"
| "POST"
| "PUT";
URL?: string;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
CompanyIntegrationRun?: string;
CompanyIntegrationRunID?: string;
ExecutedAt?: Date;
ID?: string;
IsSuccess?: boolean;
Parameters?: string;
RequestMethod?: | "DELETE"
| "GET"
| "HEAD"
| "OPTIONS"
| "PATCH"
| "POST"
| "PUT";
URL?: string;
},
> = ...
zod schema definition for the entity MJ: Company Integration Run API Logs