@softcose/softchat - v0.1.0
    Preparing search index...

    Type Alias RelaySessionSnapshot

    RelaySessionSnapshot: Readonly<
        {
            deliveryEventIds: readonly NostrEventId[];
            deliveryStates: readonly DeliveryState[];
            pendingIngestionIds: readonly NostrEventId[];
            readySubscriptions: readonly string[];
            reconnectAttempt: number;
            state: | "disconnected"
            | "connecting"
            | "authenticating"
            | "ready"
            | "backoff"
            | "cancelled";
            subscriptions: readonly string[];
        },
    >

    Redacted relay state for diagnostics only.