Variable MJApplicationSchemaConst
MJApplicationSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
AgentSettings: ZodNullable<ZodAny>;
AutoUpdatePath: ZodBoolean;
ClassName: ZodNullable<ZodString>;
Color: ZodNullable<ZodString>;
DefaultForNewUser: ZodBoolean;
DefaultNavItems: ZodNullable<ZodAny>;
DefaultSequence: ZodNumber;
Description: ZodNullable<ZodString>;
HideNavBarIconWhenActive: ZodBoolean;
Icon: ZodNullable<ZodString>;
ID: ZodString;
Name: ZodString;
NavigationStyle: ZodUnion<
[
ZodLiteral<"App Switcher">,
ZodLiteral<"Both">,
ZodLiteral<"Nav Bar">,
],
>;
Path: ZodString;
SchemaAutoAddNewEntities: ZodNullable<ZodString>;
Status: ZodUnion<
[
ZodLiteral<"Active">,
ZodLiteral<"Deprecated">,
ZodLiteral<"Disabled">,
ZodLiteral<"Pending">,
],
>;
TopNavLocation: ZodNullable<
ZodUnion<
[ZodLiteral<"Left of App Switcher">, ZodLiteral<"Left of User Menu">],
>,
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
AgentSettings?: any;
AutoUpdatePath?: boolean;
ClassName?: string;
Color?: string;
DefaultForNewUser?: boolean;
DefaultNavItems?: any;
DefaultSequence?: number;
Description?: string;
HideNavBarIconWhenActive?: boolean;
Icon?: string;
ID?: string;
Name?: string;
NavigationStyle?: "Both"
| "App Switcher"
| "Nav Bar";
Path?: string;
SchemaAutoAddNewEntities?: string;
Status?: "Active" | "Disabled" | "Pending" | "Deprecated";
TopNavLocation?: "Left of App Switcher" | "Left of User Menu";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
AgentSettings?: any;
AutoUpdatePath?: boolean;
ClassName?: string;
Color?: string;
DefaultForNewUser?: boolean;
DefaultNavItems?: any;
DefaultSequence?: number;
Description?: string;
HideNavBarIconWhenActive?: boolean;
Icon?: string;
ID?: string;
Name?: string;
NavigationStyle?: "Both"
| "App Switcher"
| "Nav Bar";
Path?: string;
SchemaAutoAddNewEntities?: string;
Status?: "Active" | "Disabled" | "Pending" | "Deprecated";
TopNavLocation?: "Left of App Switcher" | "Left of User Menu";
},
> = ...
zod schema definition for the entity MJ: Applications