forked from fern-api/fern
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli): Add
inline
property to type references from properties i…
…n Fern definition with OpenAPI importer (fern-api#5248) Add support for inline in Fern definition and IR + update OpenAPI importer to configure inline in Fern definition
- Loading branch information
1 parent
399772a
commit 9770c58
Showing
265 changed files
with
21,432 additions
and
1,540 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
imports: | ||
imports: | ||
availability: availability.yml | ||
|
||
types: | ||
WithDocsSchema: | ||
properties: | ||
types: | ||
WithDocsSchema: | ||
properties: | ||
docs: optional<string> | ||
WithName: | ||
properties: | ||
|
||
WithName: | ||
properties: | ||
name: optional<string> | ||
WithAvailability: | ||
properties: | ||
|
||
WithAvailability: | ||
properties: | ||
availability: optional<availability.AvailabilityUnionSchema> | ||
WithDisplayName: | ||
properties: | ||
|
||
WithDisplayName: | ||
properties: | ||
display-name: optional<string> | ||
WithAudiences: | ||
properties: | ||
|
||
WithAudiences: | ||
properties: | ||
audiences: optional<list<string>> | ||
DeclarationSchema: | ||
extends: | ||
|
||
DeclarationSchema: | ||
extends: | ||
- WithDocsSchema | ||
- WithAvailability | ||
- WithAudiences | ||
DeclarationWithoutDocsSchema: | ||
extends: | ||
|
||
DeclarationWithoutDocsSchema: | ||
extends: | ||
- WithAvailability | ||
- WithAudiences | ||
DeclarationWithNameSchema: | ||
extends: | ||
|
||
DeclarationWithNameSchema: | ||
extends: | ||
- DeclarationSchema | ||
- WithName | ||
- WithName |
Oops, something went wrong.