v0.11.0 Release
-
Aliased/soft-deprecated
ClientResponseError.data
in favor ofClientResponseError.response
to avoid the stuttering when accessing the inner error responsedata
key (aka.err.data.data
now iserr.response.data
).
TheClientResponseError.data
will still work but it is recommend for new code to use theresponse
key. -
Added
getFullList(queryParams = {})
overload since the default batch size in most cases doesn't need to change (it can be defined as query parameter).
The old formgetFullList(batch = 200, queryParams = {})
will still work, but it is recommend for new code to use the shorter form.