aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/openapi.json
diff options
context:
space:
mode:
authorjld3103 <jld3103yt@gmail.com>2023-12-08 11:06:05 +0100
committerjld3103 <jld3103yt@gmail.com>2023-12-08 13:02:44 +0100
commit0f320e352fa3ee8070c6f626b64117e382f8f7cd (patch)
treef9724563c55cbc22b1e2ed566a6b8abfb002f815 /apps/files_sharing/openapi.json
parentcd428124ffc62b18f89d920a44664ca5ebc7530e (diff)
downloadnextcloud-server-0f320e352fa3ee8070c6f626b64117e382f8f7cd.tar.gz
nextcloud-server-0f320e352fa3ee8070c6f626b64117e382f8f7cd.zip
chore(deps): Update openapi-extractor
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'apps/files_sharing/openapi.json')
-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"
+ }
+ }
+ ]
}
},
{