Files
medusa-store/docs/content/references/js-client/interfaces/internal.RetryConfig.md
Shahed Nasser 02d5c1da88 docs: update Typedoc and regenerate references (#1994)
* generated new services reference

* changed from automatic push to automated pull request

* updated typedoc, regenerated JS Client reference

* regenerated the reference after updating typedoc

* added action for js client
2022-08-04 17:29:52 +03:00

3.5 KiB

displayed_sidebar
displayed_sidebar
jsClientSidebar

Interface: RetryConfig

internal.RetryConfig

Configuration for the Axios request method.

Properties

backoffType

Optional backoffType: "linear" | "static" | "exponential"

Backoff Type; 'linear', 'static' or 'exponential'.

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:47


checkRetryAfter

Optional checkRetryAfter: boolean

Whether to check for 'Retry-After' header in response and use value as delay. Defaults to true.

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:51


currentRetryAttempt

Optional currentRetryAttempt: number

The number of retries already attempted.

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:13


httpMethodsToRetry

Optional httpMethodsToRetry: string[]

The HTTP Methods that will be automatically retried. Defaults to ['GET','PUT','HEAD','OPTIONS','DELETE']

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:26


instance

Optional instance: AxiosInstance

The instance of the axios object to which the interceptor is attached.

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:21


maxRetryAfter

Optional maxRetryAfter: number

Max permitted Retry-After value (in ms) - rejects if greater. Defaults to 5 mins.

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:55


maxRetryDelay

Optional maxRetryDelay: number

Ceiling for calculated delay (in ms) - delay will not exceed this value.

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:59


noResponseRetries

Optional noResponseRetries: number

When there is no response, the number of retries to attempt. Defaults to 2.

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:43


onRetryAttempt

Optional onRetryAttempt: (err: AxiosError<any, any>) => void

Type declaration

▸ (err): void

Function to invoke when a retry attempt is made.

Parameters
Name Type
err AxiosError<any, any>
Returns

void

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:35


retry

Optional retry: number

The number of times to retry the request. Defaults to 3.

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:9


retryDelay

Optional retryDelay: number

The amount of time to initially delay the retry. Defaults to 100.

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:17


shouldRetry

Optional shouldRetry: (err: AxiosError<any, any>) => boolean

Type declaration

▸ (err): boolean

Function to invoke which determines if you should retry

Parameters
Name Type
err AxiosError<any, any>
Returns

boolean

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:39


statusCodesToRetry

Optional statusCodesToRetry: number[][]

The HTTP response status codes that will automatically be retried. Defaults to: 100, 199], [429, 429], [500, 599

Defined in

medusa-js/node_modules/retry-axios/dist/src/index.d.ts:31