Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions fern/products/sdks/reference/generators-yml-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ groups:
generators:
- name: fernapi/fern-typescript-node-sdk
version: 0.9.0
smart-casing: true
```

Individual generator settings within a group.
Expand All @@ -405,6 +406,14 @@ The Fern generator package name (e.g., fernapi/fern-typescript-node-sdk)
Specific version of the generator to use
</ParamField>

<ParamField path="smart-casing" type="boolean" default="false">
Enables intelligent case conversion that preserves numbers and common programming patterns:
- Numbers stay intact (e.g., `v2` instead of `v_2`, `getUsersV2` instead of `getUsersV_2`)
- Initialisms are preserved (e.g., `CustomerID` instead of `CustomerId`)
- Acronyms remain correct (e.g., `HTTPSConnection` stays `HTTPSConnection`)
</ParamField>


#### output

Configuration for where and how to publish the generated SDK
Expand Down