Variable MJOpenAppDependencySchemaConst
MJOpenAppDependencySchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
DependsOnApp: ZodNullable<ZodString>;
DependsOnAppID: ZodNullable<ZodString>;
DependsOnAppName: ZodString;
ID: ZodString;
InstalledVersion: ZodNullable<ZodString>;
OpenApp: ZodString;
OpenAppID: ZodString;
Status: ZodUnion<
[
ZodLiteral<"Incompatible">,
ZodLiteral<"Missing">,
ZodLiteral<"Satisfied">,
],
>;
VersionRange: ZodString;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
DependsOnApp?: string;
DependsOnAppID?: string;
DependsOnAppName?: string;
ID?: string;
InstalledVersion?: string;
OpenApp?: string;
OpenAppID?: string;
Status?: "Incompatible"
| "Missing"
| "Satisfied";
VersionRange?: string;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
DependsOnApp?: string;
DependsOnAppID?: string;
DependsOnAppName?: string;
ID?: string;
InstalledVersion?: string;
OpenApp?: string;
OpenAppID?: string;
Status?: "Incompatible"
| "Missing"
| "Satisfied";
VersionRange?: string;
},
> = ...
zod schema definition for the entity MJ: Open App Dependencies