Member Junction
    Preparing search index...

    Represents a notification for a conversation

    interface ConversationNotification {
        activeAgentProcessCount: number;
        conversationId: string;
        hasActiveAgentProcesses: boolean;
        hasNewArtifacts: boolean;
        highestPriority: NotificationPriority;
        lastMessageTimestamp: Date | null;
        lastNotificationTimestamp: Date;
        lastReadMessageTimestamp: Date | null;
        newArtifactCount: number;
        unreadMessageCount: number;
    }
    Index

    Properties

    activeAgentProcessCount: number
    conversationId: string
    hasActiveAgentProcesses: boolean
    hasNewArtifacts: boolean
    highestPriority: NotificationPriority
    lastMessageTimestamp: Date | null
    lastNotificationTimestamp: Date
    lastReadMessageTimestamp: Date | null
    newArtifactCount: number
    unreadMessageCount: number