diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-12-08 12:36:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 12:36:46 +0100 |
commit | da97e10b658b4603e5847f31739c66eefef8d862 (patch) | |
tree | 32319f16953f8525fd83df180248463731978743 /apps/files_sharing | |
parent | b0a60de1f604b9466f4a2f5d2a6456d8fdd69954 (diff) | |
parent | fe2c6d4227270af60be0db17f21170224d6bc553 (diff) | |
download | nextcloud-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.json | 44 |
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" + } + } + ] } }, { |