-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0fe609a
commit c03f8df
Showing
12 changed files
with
76 additions
and
31 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 |
---|---|---|
|
@@ -8,5 +8,4 @@ export interface PageConfiguration { | |
slug?: string; | ||
icon?: string; | ||
hidden?: boolean; | ||
noindex?: boolean; | ||
} |
17 changes: 17 additions & 0 deletions
17
...cli/configuration/src/docs-yml/schemas/sdk/api/resources/docs/types/SearchbarPlacement.ts
This file contains 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,17 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
export type SearchbarPlacement = | ||
| "header" | ||
/** | ||
* The searchbar will be placed in the header, but on the tabs row. If the tabs row is hidden, the searchbar will be placed in the header instead. | ||
* This is a good option if you want to keep the searchbar visible, but save space in the header for more navbar links. */ | ||
| "header-tabs" | ||
| "sidebar"; | ||
|
||
export const SearchbarPlacement = { | ||
Header: "header", | ||
HeaderTabs: "header-tabs", | ||
Sidebar: "sidebar", | ||
} as const; |
This file contains 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 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 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
16 changes: 16 additions & 0 deletions
16
...uration/src/docs-yml/schemas/sdk/serialization/resources/docs/types/SearchbarPlacement.ts
This file contains 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,16 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as serializers from "../../.."; | ||
import * as FernDocsConfig from "../../../../api"; | ||
import * as core from "../../../../core"; | ||
|
||
export const SearchbarPlacement: core.serialization.Schema< | ||
serializers.SearchbarPlacement.Raw, | ||
FernDocsConfig.SearchbarPlacement | ||
> = core.serialization.enum_(["header", "header-tabs", "sidebar"]); | ||
|
||
export declare namespace SearchbarPlacement { | ||
type Raw = "header" | "header-tabs" | "sidebar"; | ||
} |
16 changes: 0 additions & 16 deletions
16
...n/src/docs-yml/schemas/sdk/serialization/resources/docs/types/SidebarOrHeaderPlacement.ts
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
...onfiguration/src/docs-yml/schemas/sdk/serialization/resources/docs/types/TabsPlacement.ts
This file contains 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,14 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as serializers from "../../.."; | ||
import * as FernDocsConfig from "../../../../api"; | ||
import * as core from "../../../../core"; | ||
|
||
export const TabsPlacement: core.serialization.Schema<serializers.TabsPlacement.Raw, FernDocsConfig.TabsPlacement> = | ||
core.serialization.enum_(["header", "sidebar"]); | ||
|
||
export declare namespace TabsPlacement { | ||
type Raw = "header" | "sidebar"; | ||
} |
This file contains 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