We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f660bcc commit d105d7dCopy full SHA for d105d7d
fern/products/sdks/overview/typescript/changelog/2025-08-22.mdx
@@ -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
17
18
19
20
21
22
23
0 commit comments