2.9.1

(fix): Introduce a custom configuration called flattenRequestParameters which collapses referenced bodies into the request instead of nesting under a body key.

Before:

1client.users.create({
2 userId: "...",
3 body: {
4 "name": "Joe Scott"
5 }
6});

After

1client.users.create({
2 userId: "...",
3 "name": "Joe Scott"
4});