Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(deps): Update openapi-extractor
Signed-off-by: jld3103 <[email protected]>
  • Loading branch information
provokateurin committed Dec 8, 2023
commit 0f320e352fa3ee8070c6f626b64117e382f8f7cd
44 changes: 38 additions & 6 deletions apps/files_sharing/openapi.json
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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.