@playlive/tiltify-search
    Preparing search index...

    Interface RetryInfo

    Diagnostic payload passed to ResilientHttpClientOptions.onRetry once per retry attempt. Useful for emitting a structured log line.

    interface RetryInfo {
        attempt: number;
        bodySample: string;
        retryAfterMs: number;
        status: number;
        url: string;
    }
    Index
    attempt: number

    1-based attempt number that is about to be retried (i.e. the one that just failed).

    bodySample: string

    First 500 bytes of the failing response body (best-effort).

    retryAfterMs: number

    Milliseconds the client is about to sleep before the next attempt.

    status: number

    HTTP status that triggered the retry.

    url: string

    Fully-qualified request URL.