0.20.4

(fix): Functionality to generate integration tests against a mock server has been disabled.

0.20.2

(fix): The OAuth token provider supports SDKs that enable the neverThrowErrors setting. If the OAuth token provider fails to retrieve and/or refresh an access token, an error will not be thrown. Instead, the original access token will be used and the user will be able to act upon an error available on the response. For example,

1const response = await client.user.get(...)
2if (!response.ok) {
3 // Handle the response.error ...
4}

0.20.1

(fix): Remove node:stream imports for Webpack and Next.js compatibility

(fix): Fix URL encoded body encoding in fetcher

0.20.1-rc0

(fix): URL encoded bodies are now appropriately encoded within the fetcher.