Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cli): Add inline property to type references from properties in Fern definition with OpenAPI importer #5248

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
10 changes: 10 additions & 0 deletions api-yml.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1015,6 +1015,16 @@
"type": {
"type": "string"
},
"inline": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"default": {
"oneOf": [
{
Expand Down
40 changes: 40 additions & 0 deletions fern.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,16 @@
},
"type": {
"type": "string"
},
"inline": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
}
},
"required": [
Expand Down Expand Up @@ -1434,6 +1444,16 @@
"type": {
"type": "string"
},
"inline": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"default": {
"oneOf": [
{
Expand Down Expand Up @@ -1546,6 +1566,16 @@
"type": {
"type": "string"
},
"inline": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"default": {
"oneOf": [
{
Expand Down Expand Up @@ -1683,6 +1713,16 @@
"type": {
"type": "string"
},
"inline": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"default": {
"oneOf": [
{
Expand Down
Loading
Loading