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 #42119

Merged
merged 1 commit into from Dec 8, 2023
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
44 changes: 38 additions & 6 deletions apps/files_sharing/openapi.json
Expand Up @@ -537,7 +537,11 @@
},
"hide_download": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"id": {
"type": "string"
Expand Down Expand Up @@ -578,7 +582,11 @@
},
"mail_send": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"mimetype": {
"type": "string"
Expand Down Expand Up @@ -2792,8 +2800,20 @@
"in": "query",
"description": "Limit to specific share types",
"schema": {
"type": "string",
"nullable": true
"nullable": true,
"oneOf": [
{
"type": "integer",
"format": "int64"
},
{
"type": "array",
"items": {
"type": "integer",
"format": "int64"
}
}
]
}
},
{
Expand Down Expand Up @@ -2897,8 +2917,20 @@
"in": "query",
"description": "Limit to specific share types",
"schema": {
"type": "string",
"nullable": true
"nullable": true,
"oneOf": [
{
"type": "integer",
"format": "int64"
},
{
"type": "array",
"items": {
"type": "integer",
"format": "int64"
}
}
]
}
},
{
Expand Down
3 changes: 2 additions & 1 deletion apps/theming/openapi.json
Expand Up @@ -303,7 +303,8 @@
"description": "ID of the app",
"required": true,
"schema": {
"type": "string"
"type": "string",
"default": "core"
}
}
],
Expand Down
30 changes: 26 additions & 4 deletions core/openapi.json
Expand Up @@ -430,7 +430,14 @@
},
"status": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2,
3,
4
]
},
"userId": {
"type": "string",
Expand Down Expand Up @@ -476,7 +483,14 @@
},
"status": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2,
3,
4
]
},
"userId": {
"type": "string",
Expand Down Expand Up @@ -4080,8 +4094,16 @@
"in": "query",
"description": "Offset for searching",
"schema": {
"type": "string",
"nullable": true
"nullable": true,
"oneOf": [
{
"type": "integer",
"format": "int64"
},
{
"type": "string"
}
]
}
},
{
Expand Down
20 changes: 10 additions & 10 deletions vendor-bin/openapi-extractor/composer.lock

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