jamespot-user-api
    Preparing search index...

    Variable imapInboxMailSchemaConst

    imapInboxMailSchema: ZodObject<
        {
            attachmentsCount: ZodNumber;
            body: ZodString;
            date: ZodString;
            fromName: ZodString;
            read: ZodBoolean;
            subject: ZodString;
            url: ZodNullable<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            attachmentsCount: number;
            body: string;
            date: string;
            fromName: string;
            read: boolean;
            subject: string;
            url: string
            | null;
        },
        {
            attachmentsCount: number;
            body: string;
            date: string;
            fromName: string;
            read: boolean;
            subject: string;
            url: string
            | null;
        },
    > = ...