2.8.0

(feat): Choose to use pnpm or yarn as the package manager for the generated SDK. Configure this in generators.yml like so:

1# In generators.yml
2groups:
3 ts-sdk:
4 generators:
5 - name: fernapi/fern-typescript-sdk
6 config:
7 packageManager: pnpm

The default is yarn.

2.6.8

(fix): Export BinaryResponse using export type { BinaryResponse } ... syntax to fix an issue with the SWC compiler.

2.6.7

(feat): Improve logging inside of wire tests for when a JSON body fails to parse to JSON.

2.6.5

(fix): If an enum wire value is not found, use the first enum value as a fallback.

2.6.1

(chore): Add additional query string parameters section to the generated README.md file.

2.6.0

(feat): Users can now pass in queryParams as part of the request options.

1await client.foo.bar(..., {
2 queryParams: {
3 foo: "bar"
4 }
5});