@conciergus/chat - v0.3.1
    Preparing search index...

    Interface ConversationAttachment

    interface ConversationAttachment {
        id: string;
        filename: string;
        mimeType: string;
        size: number;
        url: string;
        thumbnailUrl?: string;
        uploadedAt: Date;
        uploadedBy: string;
        metadata?: {
            processed?: boolean;
            scanResult?: "pending" | "clean" | "infected";
            analysis?: Record<string, any>;
        };
    }
    Index

    Properties

    id: string

    Unique attachment identifier

    filename: string

    Original filename

    mimeType: string

    File MIME type

    size: number

    File size in bytes

    url: string

    Storage URL or path

    thumbnailUrl?: string

    Thumbnail URL (for images/videos)

    uploadedAt: Date

    Upload timestamp

    uploadedBy: string

    Uploader information

    metadata?: {
        processed?: boolean;
        scanResult?: "pending" | "clean" | "infected";
        analysis?: Record<string, any>;
    }

    Attachment metadata

    Type declaration

    • Optionalprocessed?: boolean

      File processing status

    • OptionalscanResult?: "pending" | "clean" | "infected"

      Virus scan results

    • Optionalanalysis?: Record<string, any>

      File analysis results