-
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
bb7721b
commit d6d01b2
Showing
12 changed files
with
178 additions
and
88 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
16 changes: 16 additions & 0 deletions
16
...ion/src/docs-yml/schemas/sdk/api/resources/docs/types/ApiReferencePackageConfiguration.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 FernDocsConfig from "../../.."; | ||
|
||
export interface ApiReferencePackageConfiguration { | ||
package: string; | ||
/** Relative path to the markdown file. This summary is displayed at the top of the API section. */ | ||
summary?: string; | ||
contents: FernDocsConfig.ApiNavigationItems; | ||
slug?: string; | ||
icon?: string; | ||
hidden?: boolean; | ||
skipSlug?: boolean; | ||
} |
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
34 changes: 34 additions & 0 deletions
34
...cs-yml/schemas/sdk/serialization/resources/docs/types/ApiReferenceSectionConfiguration.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,34 @@ | ||
/** | ||
* 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 ApiReferenceSectionConfiguration: core.serialization.ObjectSchema< | ||
serializers.ApiReferenceSectionConfiguration.Raw, | ||
FernDocsConfig.ApiReferenceSectionConfiguration | ||
> = core.serialization.object({ | ||
section: core.serialization.string(), | ||
package: core.serialization.lazy(async () => (await import("../../..")).SubpackageOrSubpackages).optional(), | ||
summary: core.serialization.string().optional(), | ||
contents: core.serialization.lazy(async () => (await import("../../..")).ApiNavigationItems), | ||
slug: core.serialization.string().optional(), | ||
icon: core.serialization.string().optional(), | ||
hidden: core.serialization.boolean().optional(), | ||
skipSlug: core.serialization.property("skip-slug", core.serialization.boolean().optional()), | ||
}); | ||
|
||
export declare namespace ApiReferenceSectionConfiguration { | ||
interface Raw { | ||
section: string; | ||
package?: serializers.SubpackageOrSubpackages.Raw | null; | ||
summary?: string | null; | ||
contents: serializers.ApiNavigationItems.Raw; | ||
slug?: string | null; | ||
icon?: string | null; | ||
hidden?: boolean | null; | ||
"skip-slug"?: boolean | null; | ||
} | ||
} |
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
Oops, something went wrong.