Hiyve Components - v1.0.0
    Preparing search index...

    Interface RoomFileStats

    Aggregated file statistics for a room.

    interface RoomFileStats {
        fileCount: number;
        lastActive: Date | null;
        monthlyActivity: MonthlyActivity[];
        noteCount: number;
        participantCount: number;
        recentFiles: UserFile[];
        recordingCount: number;
        whiteboardCount: number;
    }
    Index

    Properties

    fileCount: number

    Total file count in the room.

    lastActive: Date | null

    Most recent file timestamp, or null if no files.

    monthlyActivity: MonthlyActivity[]

    Monthly file and recording counts for the last N months.

    noteCount: number

    Count of note/usernote files.

    participantCount: number

    Number of participants (pass-through from input).

    recentFiles: UserFile[]

    Most recent files (up to 10), sorted newest first.

    recordingCount: number

    Count of recording/composition/clip/audio files.

    whiteboardCount: number

    Count of whiteboard files.