Description
InternalAxiosRequestConfig type in interceptors does not contain body (only data).
but in runtime it is there (for post method`):
{
....
"headers": {
"Accept": "application/json, text/plain, */*",
"Content-Type": "application/json"
},
"baseURL": "",
"throwOnError": true,
"responseType": "json",
"url": "https://test.com/api//v1/some/endpoint",
"client": {
"sse": {}
},
"body": {
"test": "test_value"
},
"data": {
"test": "test_value"
}