-
Notifications
You must be signed in to change notification settings - Fork 17
🌿 Fern Regeneration -- October 30, 2025 #580
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
fern-api
wants to merge
20
commits into
main
Choose a base branch
from
fern-bot/2025-10-30T07-37Z
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Added `:void` return type annotations to 9 methods that required explicit types with --isolatedDeclarations: - Socket.ts: on() method - ws.ts: close(), reconnect(), send() methods - EVIWebAudioPlayer.ts: stop(), setVolume(), mute(), unmute(), dispose() methods 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
Added `: number` type annotations to 4 getter accessors in ReconnectingWebSocket that required explicit types with --isolatedDeclarations: - CONNECTING getter - OPEN getter - CLOSING getter - CLOSED getter 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
When 'isolatedModules' is enabled, type re-exports must use 'export type' syntax. Fixed 3 type re-exports: - src/index.ts: HumeEnvironmentUrls type export - src/wrapper/index.ts: EVIWebAudioPlayerFFTOptions and EVIWebAudioPlayerOptions type exports 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
…nHeaders Added explicit return type annotation `Record<string, string | undefined>` to the _getCustomAuthorizationHeaders method in Chat client. This fixes the 'Expression type can't be inferred' errors with --isolatedDeclarations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
Added explicit return type annotations to 2 exported functions:
- checkForAudioTracks.ts: added `: void` return type
- wrapper/index.ts: added `Promise<typeof import("./SilenceFiller.js").SilenceFiller>` return type to createSilenceFiller
Also fixed type annotation for _getCustomAuthorizationHeaders to accept null values.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
This reverts commit c12ae7e.
This reverts commit 89be73e.
The browser tests were redundant - the regular test suite already covers Web ReadableStream, Blob, File, ArrayBuffer and other browser APIs in the Node.js environment. Maintaining a separate browser test environment adds complexity without meaningful additional coverage.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR regenerates code to match the latest API Definition.