-
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
Changes from 10 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
a190123
SDK regeneration
fern-api[bot] 0d3b8be
ci yarn -> pnpm
twitchard 35f82ae
Fix TS9008 errors: Add explicit return type annotations to methods
twitchard 082b4f3
Fix TS9009 errors: Add explicit type annotations to getter accessors
twitchard 086c3e9
Fix TS1205 errors: Use export type for type re-exports
twitchard 8414fd0
Fix TS9013 errors: Add explicit return type to _getCustomAuthorizatio…
twitchard bcc5af5
Fix TS9007 errors: Add explicit return type annotations to functions
twitchard cf387d4
fix ci format command
twitchard 89be73e
experiment with generating ci?
twitchard c12ae7e
SDK regeneration
fern-api[bot] 2082260
Revert "SDK regeneration"
twitchard 047509d
Revert "experiment with generating ci?"
twitchard 1f87399
wip
twitchard 0b7bf4e
jest -> vi
twitchard 5f63e64
Mock better the vi way
twitchard 85fcfb2
restore this file
twitchard 17d3828
fix ci
twitchard 1b20b05
wip
twitchard bf7a7c8
Remove browser test from CI workflow
twitchard 183cbfa
SDK regeneration
fern-api[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ eslint.config.mjs | |
| justfile | ||
| tsconfig.dev.json | ||
| .nvmrc | ||
| .github | ||
| #.github | ||
| .prettierignore | ||
|
|
||
|
|
||
|
|
||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| { | ||
| "organization" : "hume", | ||
| "version" : "0.99.1" | ||
| "version" : "0.93.2" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ tests | |
| .github | ||
| .fernignore | ||
| .prettierrc.yml | ||
| biome.json | ||
| tsconfig.json | ||
| yarn.lock | ||
| pnpm-lock.yaml | ||
This file was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| { | ||
| "$schema": "https://biomejs.dev/schemas/2.3.1/schema.json", | ||
| "root": true, | ||
| "vcs": { | ||
| "enabled": false | ||
| }, | ||
| "files": { | ||
| "ignoreUnknown": true, | ||
| "includes": [ | ||
| "**", | ||
| "!!dist", | ||
| "!!**/dist", | ||
| "!!lib", | ||
| "!!**/lib", | ||
| "!!_tmp_*", | ||
| "!!**/_tmp_*", | ||
| "!!*.tmp", | ||
| "!!**/*.tmp", | ||
| "!!.tmp/", | ||
| "!!**/.tmp/", | ||
| "!!*.log", | ||
| "!!**/*.log", | ||
| "!!**/.DS_Store", | ||
| "!!**/Thumbs.db" | ||
| ] | ||
| }, | ||
| "formatter": { | ||
| "enabled": true, | ||
| "indentStyle": "space", | ||
| "indentWidth": 4, | ||
| "lineWidth": 120 | ||
| }, | ||
| "javascript": { | ||
| "formatter": { | ||
| "quoteStyle": "double" | ||
| } | ||
| }, | ||
| "assist": { | ||
| "enabled": true, | ||
| "actions": { | ||
| "source": { | ||
| "organizeImports": "on" | ||
| } | ||
| } | ||
| }, | ||
| "linter": { | ||
| "rules": { | ||
| "style": { | ||
| "useNodejsImportProtocol": "off" | ||
| }, | ||
| "suspicious": { | ||
| "noAssignInExpressions": "warn", | ||
| "noUselessEscapeInString": { | ||
| "level": "warn", | ||
| "fix": "none", | ||
| "options": {} | ||
| }, | ||
| "noThenProperty": "warn", | ||
| "useIterableCallbackReturn": "warn", | ||
| "noShadowRestrictedNames": "warn", | ||
| "noTsIgnore": { | ||
| "level": "warn", | ||
| "fix": "none", | ||
| "options": {} | ||
| }, | ||
| "noConfusingVoidType": { | ||
| "level": "warn", | ||
| "fix": "none", | ||
| "options": {} | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.