Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
properties:
typesReferencedOnlyByService:
docs: "Types referenced by exactly one service."
type: map<commons.ServiceId, list<commons.TypeId>>
type: `map<commons.ServiceId, list<commons.TypeId>>`
sharedTypes:
docs: "Types referenced by either zero or multiple services."
type: list<commons.TypeId>
type: `list<commons.TypeId>`
```

Original file line number Diff line number Diff line change
Expand Up @@ -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 <url>`
**`(chore):`** - Support specifying instance when running docs generation `fern generate --docs --instance` `<url>`

4 changes: 2 additions & 2 deletions fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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: <path to openapi>
openapi-overrides: <path to openapi overrides>
openapi: `<path to openapi>`
openapi-overrides: `<path to openapi overrides>`
```


Expand Down
4 changes: 2 additions & 2 deletions fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ use them in alias declarations to minimize code duplication:

```yml
types:
GenericTest<T>:
`GenericTest<T>`:
properties:
value: T
other-value: string

GenericApplication:
type: GenericTest<string>
type: `GenericTest<string>`
```

More information can be found here: https://buildwithfern.com/learn/api-definition/fern/types#generics.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ types:
User:
properties:
name: string
email: nullable<string>
email: `nullable<string>`
```


Original file line number Diff line number Diff line change
Expand Up @@ -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: <path to openrpc file>
openrpc: `<path to openrpc file>`
```


Expand Down
6 changes: 3 additions & 3 deletions fern/products/cli-api-reference/cli-changelog/2025-08-14.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ service:
request:
body:
properties:
author: optional<string>
tags: optional<list<string>>
title: optional<string>
author: `optional<string>`
tags: `optional<list<string>>`
title: `optional<string>`
content-type: application/json
name: UploadDocumentRequest
...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down