diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx index 1c5358b86..5e202bbda 100644 --- a/fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx @@ -5,9 +5,9 @@ properties: typesReferencedOnlyByService: docs: "Types referenced by exactly one service." - type: map> + type: `map>` sharedTypes: docs: "Types referenced by either zero or multiple services." - type: list + type: `list` ``` diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-06.mdx index 1b4f258bd..3c6bf4718 100644 --- a/fern/products/cli-api-reference/cli-changelog/2023-09-06.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-06.mdx @@ -2,5 +2,5 @@ **`(chore):`** - Validate markdown for documentation (@dsinghvi) ## 0.15.0-rc14 -**`(chore):`** - Support specifying instance when running docs generation `fern generate --docs --instance ` +**`(chore):`** - Support specifying instance when running docs generation `fern generate --docs --instance` `` diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx index 6f3919356..fd4511f40 100644 --- a/fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx @@ -10,8 +10,8 @@ * feature: allow specifying OpenAPI overrides in generators.yml by @dsinghvi in https://github.com/fern-api/fern/pull/2613 ```yaml # generators.yml - openapi: - openapi-overrides: + openapi: `` + openapi-overrides: `` ``` diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx index 44eee0021..43f646c40 100644 --- a/fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx @@ -48,13 +48,13 @@ use them in alias declarations to minimize code duplication: ```yml types: - GenericTest: + `GenericTest`: properties: value: T other-value: string GenericApplication: - type: GenericTest + type: `GenericTest` ``` More information can be found here: https://buildwithfern.com/learn/api-definition/fern/types#generics. diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx index 7aa62fa3a..e19e315d2 100644 --- a/fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx @@ -24,7 +24,7 @@ types: User: properties: name: string - email: nullable + email: `nullable` ``` diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-15.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-15.mdx index 5dfca6fc7..2c953737a 100644 --- a/fern/products/cli-api-reference/cli-changelog/2025-01-15.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-15.mdx @@ -10,7 +10,7 @@ simply define an API section in your docs.yml and point at an openrpc spec. ```yml docs.yml navigation: - api: API Reference - openrpc: + openrpc: `` ``` diff --git a/fern/products/cli-api-reference/cli-changelog/2025-08-14.mdx b/fern/products/cli-api-reference/cli-changelog/2025-08-14.mdx index d9009552a..860ef3341 100644 --- a/fern/products/cli-api-reference/cli-changelog/2025-08-14.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2025-08-14.mdx @@ -40,9 +40,9 @@ service: request: body: properties: - author: optional - tags: optional> - title: optional + author: `optional` + tags: `optional>` + title: `optional` content-type: application/json name: UploadDocumentRequest ... diff --git a/fern/products/cli-api-reference/cli-changelog/2025-09-26.mdx b/fern/products/cli-api-reference/cli-changelog/2025-09-26.mdx index 98edd15cf..487a7f49c 100644 --- a/fern/products/cli-api-reference/cli-changelog/2025-09-26.mdx +++ b/fern/products/cli-api-reference/cli-changelog/2025-09-26.mdx @@ -6,7 +6,7 @@ **`(fix):`** Allow `wrap-references-to-nullable-in-optional` setting in more API specs. ## 0.82.2 -**`(fix):`** Update display names for undiscriminated unions without titles. +**`(fix):`** Update display names for undiscriminated unions without titles. Now, if no title or description is provided, and one cannot be generated from the object properties, the display name will be undefined.