Member Junction
    Preparing search index...

    Variable MJPublicLinkSchemaConst

    MJPublicLinkSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            CurrentViews: ZodNumber;
            ExpiresAt: ZodNullable<ZodDate>;
            ID: ZodString;
            IsActive: ZodBoolean;
            MaxViews: ZodNullable<ZodNumber>;
            PasswordHash: ZodNullable<ZodString>;
            ResourceID: ZodString;
            ResourceType: ZodUnion<
                [
                    ZodLiteral<"Artifact">,
                    ZodLiteral<"Collection">,
                    ZodLiteral<"Conversation">,
                ],
            >;
            Token: ZodString;
            User: ZodString;
            UserID: ZodString;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            CurrentViews?: number;
            ExpiresAt?: Date;
            ID?: string;
            IsActive?: boolean;
            MaxViews?: number;
            PasswordHash?: string;
            ResourceID?: string;
            ResourceType?: "Conversation"
            | "Artifact"
            | "Collection";
            Token?: string;
            User?: string;
            UserID?: string;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            CurrentViews?: number;
            ExpiresAt?: Date;
            ID?: string;
            IsActive?: boolean;
            MaxViews?: number;
            PasswordHash?: string;
            ResourceID?: string;
            ResourceType?: "Conversation"
            | "Artifact"
            | "Collection";
            Token?: string;
            User?: string;
            UserID?: string;
        },
    > = ...

    zod schema definition for the entity MJ: Public Links