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

    Interface ChatStreamMessage

    A real-time chat message from the SSE stream.

    interface ChatStreamMessage {
        created: string;
        message: string | null;
        messageId?: string;
        roomName?: string;
        userId: string;
    }
    Index

    Properties

    created: string
    message: string | null
    messageId?: string
    roomName?: string

    The conversation the message belongs to. Always present on the per-user notification stream (one stream spans many rooms); omitted on the per-room stream where the room is implied by the subscription.

    userId: string