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

    Meeting alert data structure

    interface AlertsMeetingAlert {
        acknowledged?: boolean;
        acknowledgeNote?: string;
        confidence?: number;
        content: string;
        dismissReason?: "noted" | "not_relevant" | "false_positive";
        id: string;
        priority: AlertPriority;
        speaker?: string;
        timestamp: Date;
        type: AlertType;
    }
    Index

    Properties

    acknowledged?: boolean

    Whether the alert has been acknowledged

    acknowledgeNote?: string

    Optional note added when acknowledging

    confidence?: number

    Detection confidence (0-1)

    content: string

    Alert content/message

    dismissReason?: "noted" | "not_relevant" | "false_positive"

    Dismiss reason if dismissed

    id: string

    Unique alert identifier

    priority: AlertPriority

    Alert priority level

    speaker?: string

    Speaker who triggered the alert

    timestamp: Date

    When the alert was created

    type: AlertType

    Alert category type