0.42.1

(feat): Added support for passing additional headers in request options. For example:

1const response = await client.someEndpoint(..., {
2 headers: {
3 'X-Custom-Header': 'custom value'
4 }
5});