axios 1.8.4 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/README.md +24 -21
- package/dist/axios.js +36 -17
- package/dist/axios.js.map +1 -1
- package/dist/axios.min.js +2 -2
- package/dist/axios.min.js.map +1 -1
- package/dist/browser/axios.cjs +36 -14
- package/dist/browser/axios.cjs.map +1 -1
- package/dist/esm/axios.js +36 -14
- package/dist/esm/axios.js.map +1 -1
- package/dist/esm/axios.min.js +2 -2
- package/dist/esm/axios.min.js.map +1 -1
- package/dist/node/axios.cjs +37 -15
- package/dist/node/axios.cjs.map +1 -1
- package/index.d.cts +3 -3
- package/index.d.ts +5 -3
- package/lib/adapters/fetch.js +2 -2
- package/lib/core/Axios.js +1 -1
- package/lib/core/AxiosHeaders.js +15 -3
- package/lib/env/data.js +1 -1
- package/lib/helpers/formDataToStream.js +1 -1
- package/lib/helpers/toFormData.js +4 -0
- package/lib/utils.js +12 -6
- package/package.json +13 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
# [1.10.0](https://github.com/axios/axios/compare/v1.9.0...v1.10.0) (2025-06-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **adapter:** pass fetchOptions to fetch function ([#6883](https://github.com/axios/axios/issues/6883)) ([0f50af8](https://github.com/axios/axios/commit/0f50af8e076b7fb403844789bd5e812dedcaf4ed))
|
|
9
|
+
* **form-data:** convert boolean values to strings in FormData serialization ([#6917](https://github.com/axios/axios/issues/6917)) ([5064b10](https://github.com/axios/axios/commit/5064b108de336ff34862650709761b8a96d26be0))
|
|
10
|
+
* **package:** add module entry point for React Native; ([#6933](https://github.com/axios/axios/issues/6933)) ([3d343b8](https://github.com/axios/axios/commit/3d343b86dc4fd0eea0987059c5af04327c7ae304))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **types:** improved fetchOptions interface ([#6867](https://github.com/axios/axios/issues/6867)) ([63f1fce](https://github.com/axios/axios/commit/63f1fce233009f5db1abf2586c145825ac98c3d7))
|
|
16
|
+
|
|
17
|
+
### Contributors to this release
|
|
18
|
+
|
|
19
|
+
- <img src="https://avatars.githubusercontent.com/u/12586868?v=4&s=18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+30/-19 (#6933 #6920 #6893 #6892 )")
|
|
20
|
+
- <img src="https://avatars.githubusercontent.com/u/189505037?v=4&s=18" alt="avatar" width="18"/> [Noritaka Kobayashi](https://github.com/noritaka1166 "+2/-6 (#6922 #6923 )")
|
|
21
|
+
- <img src="https://avatars.githubusercontent.com/u/48370490?v=4&s=18" alt="avatar" width="18"/> [Dimitrios Lazanas](https://github.com/dimitry-lzs "+4/-0 (#6917 )")
|
|
22
|
+
- <img src="https://avatars.githubusercontent.com/u/71047946?v=4&s=18" alt="avatar" width="18"/> [Adrian Knapp](https://github.com/AdrianKnapp "+2/-2 (#6867 )")
|
|
23
|
+
- <img src="https://avatars.githubusercontent.com/u/16129206?v=4&s=18" alt="avatar" width="18"/> [Howie Zhao](https://github.com/howiezhao "+3/-1 (#6872 )")
|
|
24
|
+
- <img src="https://avatars.githubusercontent.com/u/6788611?v=4&s=18" alt="avatar" width="18"/> [Uhyeon Park](https://github.com/warpdev "+1/-1 (#6883 )")
|
|
25
|
+
- <img src="https://avatars.githubusercontent.com/u/20028934?v=4&s=18" alt="avatar" width="18"/> [Sampo Silvennoinen](https://github.com/stscoundrel "+1/-1 (#6913 )")
|
|
26
|
+
|
|
27
|
+
# [1.9.0](https://github.com/axios/axios/compare/v1.8.4...v1.9.0) (2025-04-24)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* **core:** fix the Axios constructor implementation to treat the config argument as optional; ([#6881](https://github.com/axios/axios/issues/6881)) ([6c5d4cd](https://github.com/axios/axios/commit/6c5d4cd69286868059c5e52d45085cb9a894a983))
|
|
33
|
+
* **fetch:** fixed ERR_NETWORK mapping for Safari browsers; ([#6767](https://github.com/axios/axios/issues/6767)) ([dfe8411](https://github.com/axios/axios/commit/dfe8411c9a082c3d068bdd1f8d6e73054f387f45))
|
|
34
|
+
* **headers:** allow iterable objects to be a data source for the set method; ([#6873](https://github.com/axios/axios/issues/6873)) ([1b1f9cc](https://github.com/axios/axios/commit/1b1f9ccdc15f1ea745160ec9a5223de9db4673bc))
|
|
35
|
+
* **headers:** fix `getSetCookie` by using 'get' method for caseless access; ([#6874](https://github.com/axios/axios/issues/6874)) ([d4f7df4](https://github.com/axios/axios/commit/d4f7df4b304af8b373488fdf8e830793ff843eb9))
|
|
36
|
+
* **headers:** fixed support for setting multiple header values from an iterated source; ([#6885](https://github.com/axios/axios/issues/6885)) ([f7a3b5e](https://github.com/axios/axios/commit/f7a3b5e0f7e5e127b97defa92a132fbf1b55cf15))
|
|
37
|
+
* **http:** send minimal end multipart boundary ([#6661](https://github.com/axios/axios/issues/6661)) ([987d2e2](https://github.com/axios/axios/commit/987d2e2dd3b362757550f36eab875e60640b6ddc))
|
|
38
|
+
* **types:** fix autocomplete for adapter config ([#6855](https://github.com/axios/axios/issues/6855)) ([e61a893](https://github.com/axios/axios/commit/e61a8934d8f94dd429a2f309b48c67307c700df0))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Features
|
|
42
|
+
|
|
43
|
+
* **AxiosHeaders:** add getSetCookie method to retrieve set-cookie headers values ([#5707](https://github.com/axios/axios/issues/5707)) ([80ea756](https://github.com/axios/axios/commit/80ea756e72bcf53110fa792f5d7ab76e8b11c996))
|
|
44
|
+
|
|
45
|
+
### Contributors to this release
|
|
46
|
+
|
|
47
|
+
- <img src="https://avatars.githubusercontent.com/u/12586868?v=4&s=18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+200/-34 (#6890 #6889 #6888 #6885 #6881 #6767 #6874 #6873 )")
|
|
48
|
+
- <img src="https://avatars.githubusercontent.com/u/4814473?v=4&s=18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman "+26/-1 ()")
|
|
49
|
+
- <img src="https://avatars.githubusercontent.com/u/22686401?v=4&s=18" alt="avatar" width="18"/> [Willian Agostini](https://github.com/WillianAgostini "+21/-0 (#5707 )")
|
|
50
|
+
- <img src="https://avatars.githubusercontent.com/u/2500247?v=4&s=18" alt="avatar" width="18"/> [George Cheng](https://github.com/Gerhut "+3/-3 (#5096 )")
|
|
51
|
+
- <img src="https://avatars.githubusercontent.com/u/30260221?v=4&s=18" alt="avatar" width="18"/> [FatahChan](https://github.com/FatahChan "+2/-2 (#6855 )")
|
|
52
|
+
- <img src="https://avatars.githubusercontent.com/u/49002?v=4&s=18" alt="avatar" width="18"/> [Ionuț G. Stan](https://github.com/igstan "+1/-1 (#6661 )")
|
|
53
|
+
|
|
3
54
|
## [1.8.4](https://github.com/axios/axios/compare/v1.8.3...v1.8.4) (2025-03-19)
|
|
4
55
|
|
|
5
56
|
|
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
2
|
<h3 align="center"> 🥇 Gold sponsors <br> </h3> <table align="center" width="100%"><tr width="33.333333333333336%"><td align="center" width="33.333333333333336%"> <a href="https://stytch.com/?utm_source=oss-sponsorship&utm_medium=paid_sponsorship&utm_content=website-link&utm_campaign=axios-http" style="padding: 10px; display: inline-block"> <picture> <source width="200px" height="38px" media="(prefers-color-scheme: dark)" srcset="https://axios-http.com/assets/sponsors/stytch_white.png"> <img width="200px" height="38px" src="https://axios-http.com/assets/sponsors/stytch.png" alt="Stytch"/> </picture> </a> <p align="center" title="API-first authentication, authorization, and fraud prevention">API-first authentication, authorization, and fraud prevention</p> <p align="center"> <a href="https://stytch.com/?utm_source=oss-sponsorship&utm_medium=paid_sponsorship&utm_content=website-link&utm_campaign=axios-http"><b>Website</b></a> | <a href="https://stytch.com/docs?utm_source=oss-sponsorship&utm_medium=paid_sponsorship&utm_content=docs-link&utm_campaign=axios-http"><b>Documentation</b></a> | <a href="https://github.com/stytchauth/stytch-node?utm_source=oss-sponsorship&utm_medium=paid_sponsorship&utm_content=node-sdk&utm_campaign=axios-http"><b>Node.js</b></a> </p>
|
|
3
3
|
</td><td align="center" width="33.333333333333336%"> <a href="https://www.principal.com/about-us?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="133px" height="43px" src="https://axios-http.com/assets/sponsors/principal.svg" alt="Principal Financial Group"/> </a> <p align="center" title="We’re bound by one common purpose: to give you the financial tools, resources and information you need to live your best life.">We’re bound by one common purpose: to give you the financial tools, resources and information you ne...</p> <p align="center"> <a href="https://www.principal.com/about-us?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>www.principal.com</b></a> </p>
|
|
4
|
-
</td><td align="center" width="33.333333333333336%"> <a href="https://
|
|
5
|
-
</td></tr><tr width="33.333333333333336%"><td align="center" width="33.333333333333336%"> <a href="https://
|
|
4
|
+
</td><td align="center" width="33.333333333333336%"> <a href="https://twicsy.com/buy-instagram-followers?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="85px" height="70px" src="https://axios-http.com/assets/sponsors/opencollective/buy-instagram-followers-twicsy.png" alt="Buy Instagram Followers Twicsy"/> </a> <p align="center" title="Buy real Instagram followers from Twicsy starting at only $2.97. Twicsy has been voted the best site to buy followers from the likes of US Magazine.">Buy real Instagram followers from Twicsy starting at only $2.97. Twicsy has been voted the best site...</p> <p align="center"> <a href="https://twicsy.com/buy-instagram-followers?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>twicsy.com</b></a> </p>
|
|
5
|
+
</td></tr><tr width="33.333333333333336%"><td align="center" width="33.333333333333336%"> <a href="https://www.descope.com/?utm_source=axios&utm_medium=referral&utm_campaign=axios-oss-sponsorship" style="padding: 10px; display: inline-block"> <picture> <source width="200px" height="52px" media="(prefers-color-scheme: dark)" srcset="https://axios-http.com/assets/sponsors/descope_white.png"> <img width="200px" height="52px" src="https://axios-http.com/assets/sponsors/descope.png" alt="Descope"/> </picture> </a> <p align="center" title="Hi, we're Descope! We are building something in the authentication space for app developers and can’t wait to place it in your hands.">Hi, we're Descope! We are building something in the authentication space for app developers and...</p> <p align="center"> <a href="https://www.descope.com/?utm_source=axios&utm_medium=referral&utm_campaign=axios-oss-sponsorship"><b>Website</b></a> | <a href="https://docs.descope.com/?utm_source=axios&utm_medium=referral&utm_campaign=axios-oss-sponsorship"><b>Docs</b></a> | <a href="https://www.descope.com/community?utm_source=axios&utm_medium=referral&utm_campaign=axios-oss-sponsorship"><b>Community</b></a> </p>
|
|
6
|
+
</td><td align="center" width="33.333333333333336%"> <a href="https://buzzoid.com/buy-instagram-followers/?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="62px" height="70px" src="https://axios-http.com/assets/sponsors/opencollective/buzzoid-buy-instagram-followers.png" alt="Buzzoid - Buy Instagram Followers"/> </a> <p align="center" title="At Buzzoid, you can buy Instagram followers quickly, safely, and easily with just a few clicks. Rated world's #1 IG service since 2012.">At Buzzoid, you can buy Instagram followers quickly, safely, and easily with just a few clicks. Rate...</p> <p align="center"> <a href="https://buzzoid.com/buy-instagram-followers/?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>buzzoid.com</b></a> </p>
|
|
6
7
|
</td><td align="center" width="33.333333333333336%"> <a href="https://www.famety.com/?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="70px" height="70px" src="https://axios-http.com/assets/sponsors/opencollective/famety-buy-instagram-followers.png" alt="Famety - Buy Instagram Followers"/> </a> <p align="center" title="At Famety, you can grow your social media following quickly, safely, and easily with just a few clicks. Rated the world’s #1 social media service since 2013.">At Famety, you can grow your social media following quickly, safely, and easily with just a few clic...</p> <p align="center"> <a href="https://www.famety.com/?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>www.famety.com</b></a> </p>
|
|
7
|
-
</td><td align="center" width="33.333333333333336%"> <a href="https://poprey.com/?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="70px" height="70px" src="https://axios-http.com/assets/sponsors/opencollective/instagram-likes.png" alt="Poprey - Buy Instagram Likes"/> </a> <p align="center" title="Buy Instagram Likes">Buy Instagram Likes</p> <p align="center"> <a href="https://poprey.com/?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>poprey.com</b></a> </p>
|
|
8
|
-
</td></tr><tr width="33.333333333333336%"><td align="center" width="33.333333333333336%"> <a href="https://musicza.co.za/?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="124px" height="52px" src="https://axios-http.com/assets/sponsors/opencollective/musicza.png" alt="Tubidy"/> </a> <p align="center" title="Tubidy: Free Music and Video Downloads | MP3, MP4">Tubidy: Free Music and Video Downloads | MP3, MP4</p> <p align="center"> <a href="https://musicza.co.za/?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>musicza.co.za</b></a> </p>
|
|
8
|
+
</td></tr><tr width="33.333333333333336%"><td align="center" width="33.333333333333336%"> <a href="https://poprey.com/?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="70px" height="70px" src="https://axios-http.com/assets/sponsors/opencollective/instagram-likes.png" alt="Poprey - Buy Instagram Likes"/> </a> <p align="center" title="Buy Instagram Likes">Buy Instagram Likes</p> <p align="center"> <a href="https://poprey.com/?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>poprey.com</b></a> </p>
|
|
9
9
|
</td><td align="center" width="33.333333333333336%"> <a href="https://ssmarket.net/buy-youtube-subscribers?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="70px" height="70px" src="https://axios-http.com/assets/sponsors/opencollective/youtube-subscribers-ssmarket.png" alt="Buy Youtube Subscribers"/> </a> <p align="center" title="SS Market offers professional social media services that rapidly increase your YouTube subscriber count, elevating your channel to a powerful position.">SS Market offers professional social media services that rapidly increase your YouTube subscriber co...</p> <p align="center"> <a href="https://ssmarket.net/buy-youtube-subscribers?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>ssmarket.net</b></a> </p>
|
|
10
|
-
</td><td align="center" width="33.333333333333336%"> <a href="https://
|
|
11
|
-
</td></tr><tr width="33.333333333333336%"><td align="center" width="33.333333333333336%"> <a href="https://
|
|
10
|
+
</td><td align="center" width="33.333333333333336%"> <a href="https://www.reddit.com/r/TikTokExpert/comments/1kamfi7/where_can_i_buy_youtube_views_likes_subscribers/?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="70px" height="70px" src="https://axios-http.com/assets/sponsors/opencollective/buy-youtube-views-likes-reddit.png" alt="Buy YouTube Views & Subscribers"/> </a> <p align="center" title="Recommend trusted and best sites to buy YouTube subscribers, likes and views">Recommend trusted and best sites to buy YouTube subscribers, likes and views</p> <p align="center"> <a href="https://www.reddit.com/r/TikTokExpert/comments/1kamfi7/where_can_i_buy_youtube_views_likes_subscribers/?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>www.reddit.com</b></a> </p>
|
|
11
|
+
</td></tr><tr width="33.333333333333336%"><td align="center" width="33.333333333333336%"> <a href="https://smmpanelserver.com/?utm_source=axios&utm_medium=sponsorlist&utm_campaign=sponsorship" style="padding: 10px; display: inline-block"> <img width="200px" height="56px" src="https://axios-http.com/assets/sponsors/opencollective/smmpanelserver123.png" alt="smmpanelserver"/> </a> <p align="center" title="smmpanelserver - Best and Cheapest Smm Panel">smmpanelserver - Best and Cheapest Smm Panel</p> <p align="center"> <a href="https://smmpanelserver.com/?utm_source=axios&utm_medium=readme_sponsorlist&utm_campaign=sponsorship"><b>smmpanelserver.com</b></a> </p>
|
|
12
12
|
</td><td align="center" width="33.333333333333336%"> <a href="https://opencollective.com/axios/contribute">💜 Become a sponsor</a>
|
|
13
13
|
</td><td align="center" width="33.333333333333336%"> <a href="https://opencollective.com/axios/contribute">💜 Become a sponsor</a>
|
|
14
14
|
</td></tr></table>
|
|
@@ -551,7 +551,9 @@ These are the available config options for making requests. Only the `url` is re
|
|
|
551
551
|
|
|
552
552
|
// `httpAgent` and `httpsAgent` define a custom agent to be used when performing http
|
|
553
553
|
// and https requests, respectively, in node.js. This allows options to be added like
|
|
554
|
-
// `keepAlive` that are not enabled by default.
|
|
554
|
+
// `keepAlive` that are not enabled by default before Node.js v19.0.0. After Node.js
|
|
555
|
+
// v19.0.0, you no longer need to customize the agent to enable `keepAlive` because
|
|
556
|
+
// `http.globalAgent` has `keepAlive` enabled by default.
|
|
555
557
|
httpAgent: new http.Agent({ keepAlive: true }),
|
|
556
558
|
httpsAgent: new https.Agent({ keepAlive: true }),
|
|
557
559
|
|
|
@@ -838,20 +840,21 @@ The general structure of axios errors is as follows:
|
|
|
838
840
|
| status | HTTP response status code. See [here](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes) for common HTTP response status code meanings.
|
|
839
841
|
|
|
840
842
|
Below is a list of potential axios identified error:
|
|
841
|
-
|
|
842
|
-
|
|
|
843
|
-
|
|
|
844
|
-
|
|
|
845
|
-
|
|
|
846
|
-
|
|
|
847
|
-
|
|
|
848
|
-
|
|
|
849
|
-
|
|
|
850
|
-
|
|
|
851
|
-
|
|
|
852
|
-
|
|
|
853
|
-
|
|
|
854
|
-
|
|
|
843
|
+
|
|
844
|
+
| Code | Definition |
|
|
845
|
+
| --- | --- |
|
|
846
|
+
| ERR_BAD_OPTION_VALUE | Invalid value provided in axios configuration. |
|
|
847
|
+
| ERR_BAD_OPTION | Invalid option provided in axios configuration. |
|
|
848
|
+
| ERR_NOT_SUPPORT | Feature or method not supported in the current axios environment. |
|
|
849
|
+
| ERR_DEPRECATED | Deprecated feature or method used in axios. |
|
|
850
|
+
| ERR_INVALID_URL | Invalid URL provided for axios request. |
|
|
851
|
+
| ECONNABORTED | Typically indicates that the request has been timed out (unless `transitional.clarifyTimeoutError` is set) or aborted by the browser or its plugin. |
|
|
852
|
+
| ERR_CANCELED | Feature or method is canceled explicitly by the user using an AbortSignal (or a CancelToken). |
|
|
853
|
+
| ETIMEDOUT | Request timed out due to exceeding default axios timelimit. `transitional.clarifyTimeoutError` must be set to `true`, otherwise a generic `ECONNABORTED` error will be thrown instead. |
|
|
854
|
+
| ERR_NETWORK | Network-related issue. In the browser, this error can also be caused by a [CORS](https://developer.mozilla.org/ru/docs/Web/HTTP/Guides/CORS) or [Mixed Content](https://developer.mozilla.org/en-US/docs/Web/Security/Mixed_content) policy violation. The browser does not allow the JS code to clarify the real reason for the error caused by security issues, so please check the console. |
|
|
855
|
+
| ERR_FR_TOO_MANY_REDIRECTS | Request is redirected too many times; exceeds max redirects specified in axios configuration. |
|
|
856
|
+
| ERR_BAD_RESPONSE | Response cannot be parsed properly or is in an unexpected format. Usually related to a response with `5xx` status code. |
|
|
857
|
+
| ERR_BAD_REQUEST | The request has an unexpected format or is missing required parameters. Usually related to a response with `4xx` status code. |
|
|
855
858
|
|
|
856
859
|
## Handling Errors
|
|
857
860
|
|
package/dist/axios.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! Axios v1.
|
|
1
|
+
/*! Axios v1.10.0 Copyright (c) 2025 Matt Zabriskie and contributors */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(factory) :
|
|
@@ -681,6 +681,8 @@
|
|
|
681
681
|
|
|
682
682
|
var toString = Object.prototype.toString;
|
|
683
683
|
var getPrototypeOf = Object.getPrototypeOf;
|
|
684
|
+
var iterator = Symbol.iterator,
|
|
685
|
+
toStringTag = Symbol.toStringTag;
|
|
684
686
|
var kindOf = function (cache) {
|
|
685
687
|
return function (thing) {
|
|
686
688
|
var str = toString.call(thing);
|
|
@@ -813,7 +815,7 @@
|
|
|
813
815
|
return false;
|
|
814
816
|
}
|
|
815
817
|
var prototype = getPrototypeOf(val);
|
|
816
|
-
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(
|
|
818
|
+
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(toStringTag in val) && !(iterator in val);
|
|
817
819
|
};
|
|
818
820
|
|
|
819
821
|
/**
|
|
@@ -1165,10 +1167,10 @@
|
|
|
1165
1167
|
* @returns {void}
|
|
1166
1168
|
*/
|
|
1167
1169
|
var forEachEntry = function forEachEntry(obj, fn) {
|
|
1168
|
-
var generator = obj && obj[
|
|
1169
|
-
var
|
|
1170
|
+
var generator = obj && obj[iterator];
|
|
1171
|
+
var _iterator = generator.call(obj);
|
|
1170
1172
|
var result;
|
|
1171
|
-
while ((result =
|
|
1173
|
+
while ((result = _iterator.next()) && !result.done) {
|
|
1172
1174
|
var pair = result.value;
|
|
1173
1175
|
fn.call(obj, pair[0], pair[1]);
|
|
1174
1176
|
}
|
|
@@ -1275,7 +1277,7 @@
|
|
|
1275
1277
|
* @returns {boolean}
|
|
1276
1278
|
*/
|
|
1277
1279
|
function isSpecCompliantForm(thing) {
|
|
1278
|
-
return !!(thing && isFunction(thing.append) && thing[
|
|
1280
|
+
return !!(thing && isFunction(thing.append) && thing[toStringTag] === 'FormData' && thing[iterator]);
|
|
1279
1281
|
}
|
|
1280
1282
|
var toJSONObject = function toJSONObject(obj) {
|
|
1281
1283
|
var stack = new Array(10);
|
|
@@ -1331,6 +1333,9 @@
|
|
|
1331
1333
|
|
|
1332
1334
|
// *********************
|
|
1333
1335
|
|
|
1336
|
+
var isIterable = function isIterable(thing) {
|
|
1337
|
+
return thing != null && isFunction(thing[iterator]);
|
|
1338
|
+
};
|
|
1334
1339
|
var utils$1 = {
|
|
1335
1340
|
isArray: isArray,
|
|
1336
1341
|
isArrayBuffer: isArrayBuffer,
|
|
@@ -1387,7 +1392,8 @@
|
|
|
1387
1392
|
isAsyncFn: isAsyncFn,
|
|
1388
1393
|
isThenable: isThenable,
|
|
1389
1394
|
setImmediate: _setImmediate,
|
|
1390
|
-
asap: asap
|
|
1395
|
+
asap: asap,
|
|
1396
|
+
isIterable: isIterable
|
|
1391
1397
|
};
|
|
1392
1398
|
|
|
1393
1399
|
/**
|
|
@@ -1580,6 +1586,9 @@
|
|
|
1580
1586
|
if (utils$1.isDate(value)) {
|
|
1581
1587
|
return value.toISOString();
|
|
1582
1588
|
}
|
|
1589
|
+
if (utils$1.isBoolean(value)) {
|
|
1590
|
+
return value.toString();
|
|
1591
|
+
}
|
|
1583
1592
|
if (!useBlob && utils$1.isBlob(value)) {
|
|
1584
1593
|
throw new AxiosError('Blob is not supported. Use a Buffer instead.');
|
|
1585
1594
|
}
|
|
@@ -2227,21 +2236,26 @@
|
|
|
2227
2236
|
setHeaders(header, valueOrRewrite);
|
|
2228
2237
|
} else if (utils$1.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
|
|
2229
2238
|
setHeaders(parseHeaders(header), valueOrRewrite);
|
|
2230
|
-
} else if (utils$1.
|
|
2231
|
-
var
|
|
2239
|
+
} else if (utils$1.isObject(header) && utils$1.isIterable(header)) {
|
|
2240
|
+
var obj = {},
|
|
2241
|
+
dest,
|
|
2242
|
+
key;
|
|
2243
|
+
var _iterator = _createForOfIteratorHelper(header),
|
|
2232
2244
|
_step;
|
|
2233
2245
|
try {
|
|
2234
2246
|
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
2235
|
-
var
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2247
|
+
var entry = _step.value;
|
|
2248
|
+
if (!utils$1.isArray(entry)) {
|
|
2249
|
+
throw TypeError('Object iterator must return a key-value pair');
|
|
2250
|
+
}
|
|
2251
|
+
obj[key = entry[0]] = (dest = obj[key]) ? utils$1.isArray(dest) ? [].concat(_toConsumableArray(dest), [entry[1]]) : [dest, entry[1]] : entry[1];
|
|
2239
2252
|
}
|
|
2240
2253
|
} catch (err) {
|
|
2241
2254
|
_iterator.e(err);
|
|
2242
2255
|
} finally {
|
|
2243
2256
|
_iterator.f();
|
|
2244
2257
|
}
|
|
2258
|
+
setHeaders(obj, valueOrRewrite);
|
|
2245
2259
|
} else {
|
|
2246
2260
|
header != null && setHeader(valueOrRewrite, header, rewrite);
|
|
2247
2261
|
}
|
|
@@ -2372,6 +2386,11 @@
|
|
|
2372
2386
|
return header + ': ' + value;
|
|
2373
2387
|
}).join('\n');
|
|
2374
2388
|
}
|
|
2389
|
+
}, {
|
|
2390
|
+
key: "getSetCookie",
|
|
2391
|
+
value: function getSetCookie() {
|
|
2392
|
+
return this.get("set-cookie") || [];
|
|
2393
|
+
}
|
|
2375
2394
|
}, {
|
|
2376
2395
|
key: _Symbol$toStringTag,
|
|
2377
2396
|
get: function get() {
|
|
@@ -3482,7 +3501,7 @@
|
|
|
3482
3501
|
credentials: isCredentialsSupported ? withCredentials : undefined
|
|
3483
3502
|
}));
|
|
3484
3503
|
_context4.next = 20;
|
|
3485
|
-
return fetch(request);
|
|
3504
|
+
return fetch(request, fetchOptions);
|
|
3486
3505
|
case 20:
|
|
3487
3506
|
response = _context4.sent;
|
|
3488
3507
|
isStreamResponse = supportsResponseStream && (responseType === 'stream' || responseType === 'response');
|
|
@@ -3521,7 +3540,7 @@
|
|
|
3521
3540
|
_context4.prev = 33;
|
|
3522
3541
|
_context4.t2 = _context4["catch"](4);
|
|
3523
3542
|
unsubscribe && unsubscribe();
|
|
3524
|
-
if (!(_context4.t2 && _context4.t2.name === 'TypeError' && /fetch/i.test(_context4.t2.message))) {
|
|
3543
|
+
if (!(_context4.t2 && _context4.t2.name === 'TypeError' && /Load failed|fetch/i.test(_context4.t2.message))) {
|
|
3525
3544
|
_context4.next = 38;
|
|
3526
3545
|
break;
|
|
3527
3546
|
}
|
|
@@ -3658,7 +3677,7 @@
|
|
|
3658
3677
|
});
|
|
3659
3678
|
}
|
|
3660
3679
|
|
|
3661
|
-
var VERSION = "1.
|
|
3680
|
+
var VERSION = "1.10.0";
|
|
3662
3681
|
|
|
3663
3682
|
var validators$1 = {};
|
|
3664
3683
|
|
|
@@ -3754,7 +3773,7 @@
|
|
|
3754
3773
|
var Axios = /*#__PURE__*/function () {
|
|
3755
3774
|
function Axios(instanceConfig) {
|
|
3756
3775
|
_classCallCheck(this, Axios);
|
|
3757
|
-
this.defaults = instanceConfig;
|
|
3776
|
+
this.defaults = instanceConfig || {};
|
|
3758
3777
|
this.interceptors = {
|
|
3759
3778
|
request: new InterceptorManager$1(),
|
|
3760
3779
|
response: new InterceptorManager$1()
|