aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2023-12-08 12:36:46 +0100
committerGitHub <noreply@github.com>2023-12-08 12:36:46 +0100
commitda97e10b658b4603e5847f31739c66eefef8d862 (patch)
tree32319f16953f8525fd83df180248463731978743 /apps/files_sharing
parentb0a60de1f604b9466f4a2f5d2a6456d8fdd69954 (diff)
parentfe2c6d4227270af60be0db17f21170224d6bc553 (diff)
downloadnextcloud-server-da97e10b658b4603e5847f31739c66eefef8d862.tar.gz
nextcloud-server-da97e10b658b4603e5847f31739c66eefef8d862.zip
Merge pull request #42115 from nextcloud/chore/deps/update-openapi-extractor
chore(deps): Update openapi-extractor
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/openapi.json44
1 files changed, 38 insertions, 6 deletions
diff --git a/apps/files_sharing/openapi.json b/apps/files_sharing/openapi.json
index b77cc1bd6b6..bc8128df0d2 100644
--- a/apps/files_sharing/openapi.json
+++ b/apps/files_sharing/openapi.json
@@ -537,7 +537,11 @@
},
"hide_download": {
"type": "integer",
- "format": "int64"
+ "format": "int64",
+ "enum": [
+ 0,
+ 1
+ ]
},
"id": {
"type": "string"
@@ -578,7 +582,11 @@
},
"mail_send": {
"type": "integer",
- "format": "int64"
+ "format": "int64",
+ "enum": [
+ 0,
+ 1
+ ]
},
"mimetype": {
"type": "string"
@@ -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"
+ }
+ }
+ ]
}
},
{
@@ -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"
+ }
+ }
+ ]
}
},
{