Member Junction
    Preparing search index...

    Variable MJListShareSchemaConst

    MJListShareSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            ID: ZodString;
            List: ZodString;
            ListID: ZodString;
            Role: ZodUnion<[ZodLiteral<"Editor">, ZodLiteral<"Viewer">]>;
            Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Pending">]>;
            User: ZodString;
            UserID: ZodString;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            ID?: string;
            List?: string;
            ListID?: string;
            Role?: "Editor"
            | "Viewer";
            Status?: "Active" | "Pending";
            User?: string;
            UserID?: string;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            ID?: string;
            List?: string;
            ListID?: string;
            Role?: "Editor"
            | "Viewer";
            Status?: "Active" | "Pending";
            User?: string;
            UserID?: string;
        },
    > = ...

    zod schema definition for the entity MJ: List Shares