Skip to content

Commit

Permalink
Merge pull request #42115 from nextcloud/chore/deps/update-openapi-ex…
Browse files Browse the repository at this point in the history
…tractor

chore(deps): Update openapi-extractor
  • Loading branch information
nickvergessen authored Dec 8, 2023
2 parents b0a60de + fe2c6d4 commit da97e10
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 23 deletions.
8 changes: 6 additions & 2 deletions apps/dashboard/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,9 @@
"schema": {
"type": "integer",
"format": "int64",
"default": 7
"default": 7,
"minimum": 1,
"maximum": 30
}
},
{
Expand Down Expand Up @@ -364,7 +366,9 @@
"schema": {
"type": "integer",
"format": "int64",
"default": 7
"default": 7,
"minimum": 1,
"maximum": 30
}
},
{
Expand Down
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.

0 comments on commit da97e10

Please sign in to comment.