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

    Interface RoomStats

    Merged room statistics — file-side counts plus server-side session data.

    interface RoomStats {
        assignmentCount: number;
        compositionCount: number;
        fileCount: number;
        hasActivity: boolean;
        isCurrentlyActive: boolean;
        isLoading: boolean;
        lastActive: Date | null;
        monthlyActivity: RoomMonthlyActivity[];
        noteCount: number;
        participantCount: number;
        recentFiles: UserFile[];
        recordingCount: number;
        totalMinutes: number;
        totalSessions: number;
        transcriptionCount: number;
        uniqueParticipants: number;
        whiteboardCount: number;
    }

    Hierarchy

    Index

    Properties

    assignmentCount: number

    Count of assignment files.

    compositionCount: number

    Recordings with a composition derived from them.

    fileCount: number

    Total file count in the room.

    hasActivity: boolean

    True if the room has any files or sessions.

    isCurrentlyActive: boolean

    Whether a session is currently in progress.

    isLoading: boolean

    True while the initial server-stats fetch is in flight.

    lastActive: Date | null

    Most recent file timestamp, or null if no files.

    monthlyActivity: RoomMonthlyActivity[]

    Monthly activity including server-provided session counts.

    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.

    totalMinutes: number

    Cumulative session duration in minutes.

    totalSessions: number

    Total sessions held in the room (from server).

    transcriptionCount: number

    Recordings with transcription attached.

    uniqueParticipants: number

    Distinct participants across all sessions.

    whiteboardCount: number

    Count of whiteboard files.