Fetch Client API Documentation - v1.1.1
    Preparing search index...

    Variable DEFAULT_RETRY_STATUSESConst Readonly

    DEFAULT_RETRY_STATUSES: readonly number[] = ...

    Default HTTP status codes that should trigger a retry attempt

    These status codes indicate temporary failures that might succeed if retried after a delay. Includes timeout, rate limiting, and server errors that are typically transient.

    // Check if status should be retried
    if (DEFAULT_RETRY_STATUSES.includes(response.status)) {
    // Retry the request
    }