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

    Type Alias RelaySessionSnapshot

    RelaySessionSnapshot: Readonly<
        {
            deliveryEventIds: readonly NostrEventId[];
            deliveryStates: readonly (
                "pending"
                | "inFlight"
                | "accepted"
                | "rejected"
                | "retryable"
            )[];
            pendingIngestionIds: readonly NostrEventId[];
            readySubscriptions: readonly string[];
            reconnectAttempt: number;
            state:
                | "disconnected"
                | "connecting"
                | "authenticating"
                | "ready"
                | "backoff"
                | "cancelled";
            subscriptions: readonly string[];
        },
    >

    Redacted relay state for diagnostics and restoration policy.