live · mainnetoc · docs
specs · api · guides
docs / documentation

@orangecheck/me-client


@orangecheck/me-client / WithRateLimitRetryOptions

Interface: WithRateLimitRetryOptions

Defined in: me-client/src/transport.ts:132

Properties

PropertyTypeDescriptionDefined in
<a id="property-basebackoffms"></a> baseBackoffMs?numberFloor backoff in milliseconds when no Retry-After is present. Multiplied by 2^attempt for exponential growth. Default 250ms.me-client/src/transport.ts:143
<a id="property-maxretries"></a> maxRetries?numberMaximum retry attempts on 429. Default 2 (= up to 3 total invocations of the wrapped function).me-client/src/transport.ts:135
<a id="property-maxretryafterseconds"></a> maxRetryAfterSeconds?numberCap on Retry-After we'll actually honor in seconds. Some server configs return very large values; the SDK refuses to sleep beyond this and re-throws the original error so the caller decides. Default 30.me-client/src/transport.ts:140