@cpod/sdk - v0.2.7
    Preparing search index...

    Interface ProjectFileInfo

    File information for files attached to a project

    interface ProjectFileInfo {
        file_id: string;
        hash?: string;
        filename: string;
        file_path: string;
        file_size: number;
        file_type?: string;
        status?: string;
        reason?: string | null;
        uploaded_at?: string;
    }
    Index

    Properties

    file_id: string

    Unique file identifier

    hash?: string

    File hash for deduplication

    filename: string

    Original filename

    file_path: string

    Full file path in storage

    file_size: number

    File size in bytes

    file_type?: string

    File extension/type (pdf, docx, txt, etc.)

    status?: string

    Processing status: pending, processing, completed, failed

    reason?: string | null

    Reason for failure if status is failed

    uploaded_at?: string

    Timestamp when file was uploaded