Dmitriy Mozgovoy

Results 106 comments of Dmitriy Mozgovoy

> index.d.ts > // TypeScript Version: 4.7 make sure you are using TypeScript 4.7 or newer

I suspect the issue does not occur on node 16.x or if you run node 18 with the `NODE_OPTIONS=--openssl-legacy-provider` argument. P.S You should set `maxRedirects` to 0 to avoid high...

> as far as we can tell theres nothing actionable to do about it. We are unable to reproduce this issue locally or in our own hosted environments. @sacummings91 definitely...

Since v1.3.5 (#5633) paramsSerializer accepts both types (object & function).

Yes, Axios will automatically set multipart content type for a FormData payload, but not in the case when you have `application/json` content type. In this case Axios 1.x will serialize...

Config inside interceptors has a different interface. If you explicitly specify the config type, use `InternalAxiosRequestConfig` instead of `AxiosRequestConfig`. `AxiosRequestConfig` is the external/raw config interface. ```js axios.interceptors.request.use(async (config: InternalAxiosRequestConfig) =>...

Most likely though this package is deprecated as it depends on Axios 0.x. ``` "axios": "^0.19.2", ``` The incompatibility is only in the TypeScript types.

As stated in the Readme, direct loading by path is a workaround for bundlers and older node versions (`

It is unlikely that there may be problems on our side since there are a lot of tutorials on YouTube on how to handle progress capturing using different versions of...

@alioshr Without code, it's hard to tell anything here... Everything seems to work fine https://codesandbox.io/s/axios-upload-progress-zwvffc?file=/src/index.js