Member Junction
    Preparing search index...

    A SESSION-BOUNDARY divider in the unified thread — a subtle, token-styled rule marking where one session leg ends and another begins. Two producers:

    • review→live continuation (RealtimeSessionState.StartLiveContinuation): "Resumed live session ·
    • multi-leg session review (BuildReviewThreadItems over a lastSessionId chain): "Session leg · started
    interface RealtimeThreadDividerItem {
        At: Date | null;
        CloseReason?: string | null;
        Icon: string;
        Kind: "divider";
        Label: string;
    }
    Index

    Properties

    At: Date | null

    Timestamp rendered after the label ("·

    CloseReason?: string | null

    Why the PRECEDING leg closed (review chains only) — rendered as a small chip.

    Icon: string

    Font Awesome icon class rendered before the label (e.g. fa-solid fa-phone).

    Kind: "divider"
    Label: string

    The divider's label (e.g. "Resumed live session", "Session leg").