Skip to content

Commit d105d7d

Browse files
dsinghvigithub-actions[bot]
authored andcommitted
update changelogs
1 parent f660bcc commit d105d7d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## 2.9.1
2+
**`(fix):`** Introduce a custom configuration called `flattenRequestParameters` which collapses referenced bodies into the
3+
request instead of nesting under a body key.
4+
5+
**Before**:
6+
```ts
7+
client.users.create({
8+
userId: "...",
9+
body: {
10+
"name": "Joe Scott"
11+
}
12+
});
13+
```
14+
15+
**After**
16+
```ts
17+
client.users.create({
18+
userId: "...",
19+
"name": "Joe Scott"
20+
});
21+
```
22+
23+

0 commit comments

Comments
 (0)