Skip to content

Commit 356ae39

Browse files
Update changelogs from fern repo (#1014)
Co-authored-by: tstanmay13 <[email protected]>
1 parent 59a3151 commit 356ae39

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
properties:
66
typesReferencedOnlyByService:
77
docs: "Types referenced by exactly one service."
8-
type: map<commons.ServiceId, list<commons.TypeId>>
8+
type: `map<commons.ServiceId, list<commons.TypeId>>`
99
sharedTypes:
1010
docs: "Types referenced by either zero or multiple services."
11-
type: list<commons.TypeId>
11+
type: `list<commons.TypeId>`
1212
```
1313

fern/products/cli-api-reference/cli-changelog/2023-09-06.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
**`(chore):`** - Validate markdown for documentation (@dsinghvi)
33

44
## 0.15.0-rc14
5-
**`(chore):`** - Support specifying instance when running docs generation `fern generate --docs --instance <url>`
5+
**`(chore):`** - Support specifying instance when running docs generation `fern generate --docs --instance` `<url>`
66

fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
* feature: allow specifying OpenAPI overrides in generators.yml by @dsinghvi in https://github.com/fern-api/fern/pull/2613
1111
```yaml
1212
# generators.yml
13-
openapi: <path to openapi>
14-
openapi-overrides: <path to openapi overrides>
13+
openapi: `<path to openapi>`
14+
openapi-overrides: `<path to openapi overrides>`
1515
```
1616
1717

fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ use them in alias declarations to minimize code duplication:
4848

4949
```yml
5050
types:
51-
GenericTest<T>:
51+
`GenericTest<T>`:
5252
properties:
5353
value: T
5454
other-value: string
5555

5656
GenericApplication:
57-
type: GenericTest<string>
57+
type: `GenericTest<string>`
5858
```
5959
6060
More information can be found here: https://buildwithfern.com/learn/api-definition/fern/types#generics.

fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ types:
2424
User:
2525
properties:
2626
name: string
27-
email: nullable<string>
27+
email: `nullable<string>`
2828
```
2929

3030

fern/products/cli-api-reference/cli-changelog/2025-01-15.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ simply define an API section in your docs.yml and point at an openrpc spec.
1010
```yml docs.yml
1111
navigation:
1212
- api: API Reference
13-
openrpc: <path to openrpc file>
13+
openrpc: `<path to openrpc file>`
1414
```
1515
1616

fern/products/cli-api-reference/cli-changelog/2025-08-14.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ service:
4040
request:
4141
body:
4242
properties:
43-
author: optional<string>
44-
tags: optional<list<string>>
45-
title: optional<string>
43+
author: `optional<string>`
44+
tags: `optional<list<string>>`
45+
title: `optional<string>`
4646
content-type: application/json
4747
name: UploadDocumentRequest
4848
...

fern/products/cli-api-reference/cli-changelog/2025-09-26.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
**`(fix):`** Allow `wrap-references-to-nullable-in-optional` setting in more API specs.
77

88
## 0.82.2
9-
**`(fix):`** Update display names for undiscriminated unions without titles.
9+
**`(fix):`** Update display names for undiscriminated unions without titles.
1010

1111
Now, if no title or description is provided, and one cannot be generated from the object properties, the display name will be undefined.
1212

0 commit comments

Comments
 (0)