You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, the Error thrown by uploadFiles has an untyped field result. It's useful, but since it's not typed and is optional, we have to type it by ourselves.
I think it's better that they are consistent and there is a dedicated type of Error for http error responses.
The text was updated successfully, but these errors were encountered:
Yes, I agree. uploadFiles() got recently updated, because of #48 / PR #49, but I had not arrived to update downloadFile() in the similar way. Please, submit a PR if you need it and have capacity to do it.
Hi,
I noticed that in
uploadFiles
the http status code that is greater than or equal to 400 is handled internally and is thrown as an error. See codeBut
downloadFile
doesn't do the same. See code.Also, the Error thrown by
uploadFiles
has an untyped fieldresult
. It's useful, but since it's not typed and is optional, we have to type it by ourselves.I think it's better that they are consistent and there is a dedicated type of Error for http error responses.
The text was updated successfully, but these errors were encountered: