2.0.0 (2024-10-20)
⚠ BREAKING CHANGES
- Change the first parameter of
ResponseError
to expect aRetrieveResponse
object instead of aResponse
object. How to update: Replacenew ResponseError(response, ...)
withnew ResponseError({ response, data: null }, ...)
.
Features
-
add data to ResponseError (bdddbdc)
Add a new
data
property toResponseError
s holding the same deserialized value as thedata
property onRetrieveResponse
objects. If an exception occurs during deserialization, the value will benull
.BREAKING CHANGE: Change the first parameter of
ResponseError
to expect aRetrieveResponse
object instead of aResponse
object. How to update: Replacenew ResponseError(response, ...)
withnew ResponseError({ response, data: null }, ...)
.