Skip to content

Commit

Permalink
Merge branch 'main' of github.com:fern-api/fern into amckinney/nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
amckinney committed Jan 14, 2025
2 parents 30dfee2 + 151378b commit 4e5820e
Show file tree
Hide file tree
Showing 834 changed files with 25,189 additions and 410 deletions.
8 changes: 6 additions & 2 deletions fern/pages/fern-docs/content/frontmatter.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,15 @@ You can override the site-wide logo for a page by setting a field named `logo` i
```mdx
---
logo:
light: /path/to/page-logo.png
dark: /path/to/page-logo.png
light: https://link-to-image.com/image-light-mode.png
dark: https://link-to-image.com/image-dark-mode.png
---
```

<Info>
Currently, relative paths are _not_ supported for this field.
</Info>

</CodeBlock>

This field specifies the logo for this page. If no logo is set, the site-wide [logo configuration](/learn/docs/getting-started/global-configuration#logo-configuration) is used.
Expand Down
9 changes: 8 additions & 1 deletion packages/cli/cli/versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@
```
type: feat
irVersion: 53
version: 0.47.5
version: 0.48.0

- changelogEntry:
- summary: |
The IR now pulls in additional request properties from the OAuth getToken endpoint to support custom OAuth schemas.
type: feat
irVersion: 54
version: 0.47.6

- changelogEntry:
- summary: |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "object",
"properties": {
"access_token": {
"type": "string"
},
"expires_in": {
"type": "integer"
},
"refresh_token": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"access_token",
"expires_in"
],
"additionalProperties": false,
"definitions": {}
}
Loading

0 comments on commit 4e5820e

Please sign in to comment.