Skip to content
Merged
Changes from all 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
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 3.57.2
**`(fix):`** Fix map types with unknown/any value types to not include spurious `| undefined`.
Previously, `map<string, UnknownType>` generated `Record<string, UnknownType | undefined>`
instead of `Record<string, UnknownType>`. The `| undefined` is now correctly omitted
from map value types.


## 3.57.1
**`(fix):`** Fix passthrough `fetch()` method producing 404s when the SDK environment is an
object (e.g. `{ base: string; production: string }`) instead of a plain string URL.
Expand Down
Loading