Describe the solution you'd like
I'd like to make axios requests with the onDownloadProgress option.
For that I need ApiRequestOptions to include readonly onDownloadProgress?: (progressEvent: ProgressEvent) => void;
Furthermore I need this field to be unwrapped into the requestConfig of the sendRequest method.
Maybe in general a way of extending axios request options would be nice?
Describe the solution you'd like
I'd like to make axios requests with the
onDownloadProgressoption.For that I need
ApiRequestOptionsto includereadonly onDownloadProgress?: (progressEvent: ProgressEvent) => void;Furthermore I need this field to be unwrapped into the
requestConfigof thesendRequestmethod.Maybe in general a way of extending axios request options would be nice?