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

[stable28] chore(deps): Update openapi-extractor #42673

Merged
merged 1 commit into from Jan 10, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion apps/files/openapi.json
Expand Up @@ -1172,7 +1172,11 @@
"description": "Whether to copy the system templates to the template directory",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down
18 changes: 15 additions & 3 deletions apps/files_sharing/openapi.json
Expand Up @@ -1483,7 +1483,11 @@
"description": "Whether to not crop the preview",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -2178,7 +2182,11 @@
"description": "Include tags in the share",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -2822,7 +2830,11 @@
"description": "If a global lookup should be performed too",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down
6 changes: 5 additions & 1 deletion apps/files_trashbin/openapi.json
Expand Up @@ -94,7 +94,11 @@
"description": "Whether to not crop the preview",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
}
],
Expand Down
18 changes: 15 additions & 3 deletions apps/theming/openapi.json
Expand Up @@ -162,7 +162,11 @@
"description": "Let the browser decide the CSS priority",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand All @@ -171,7 +175,11 @@
"description": "Include custom CSS",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -232,7 +240,11 @@
"description": "Return image as SVG",
"schema": {
"type": "integer",
"default": 1
"default": 1,
"enum": [
0,
1
]
}
},
{
Expand Down
6 changes: 5 additions & 1 deletion apps/user_ldap/openapi.json
Expand Up @@ -140,7 +140,11 @@
"description": "Whether to show the password",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down
65 changes: 54 additions & 11 deletions core/openapi.json
Expand Up @@ -864,7 +864,11 @@
"schema": {
"type": "integer",
"nullable": true,
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -1046,7 +1050,11 @@
"description": "Whether to not crop the preview",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand All @@ -1055,7 +1063,11 @@
"description": "Force returning an icon",
"schema": {
"type": "integer",
"default": 1
"default": 1,
"enum": [
0,
1
]
}
},
{
Expand All @@ -1073,7 +1085,11 @@
"description": "Whether to fallback to the mime icon if no preview is available",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
}
],
Expand Down Expand Up @@ -1177,7 +1193,11 @@
"description": "Whether to not crop the preview",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand All @@ -1186,7 +1206,11 @@
"description": "Force returning an icon",
"schema": {
"type": "integer",
"default": 1
"default": 1,
"enum": [
0,
1
]
}
},
{
Expand All @@ -1204,7 +1228,11 @@
"description": "Whether to fallback to the mime icon if no preview is available",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
}
],
Expand Down Expand Up @@ -1435,7 +1463,10 @@
"headers": {
"X-NEXTCLOUD-OCM-PROVIDERS": {
"schema": {
"type": "boolean"
"type": "boolean",
"enum": [
true
]
}
}
},
Expand Down Expand Up @@ -1648,7 +1679,11 @@
"description": "Rewrite URLs to absolute ones",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -1749,7 +1784,11 @@
"description": "Rewrite URLs to absolute ones",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -3632,7 +3671,11 @@
"description": "Resolve the references",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down
49 changes: 33 additions & 16 deletions vendor-bin/openapi-extractor/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.