diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-01-10 07:11:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 07:11:01 +0100 |
commit | 5203d7720fed17550a4a6271d52544508978b71c (patch) | |
tree | 3296739440ee1b2d26ce4f6bc0c87d6f89c92c0a /core | |
parent | 77b783a9cb3bb3198d0f7b19d139e5c8dbf2a19c (diff) | |
parent | 1c157647d9bd69a197b85342d3267896a36e312b (diff) | |
download | nextcloud-server-5203d7720fed17550a4a6271d52544508978b71c.tar.gz nextcloud-server-5203d7720fed17550a4a6271d52544508978b71c.zip |
Merge pull request #42666 from nextcloud/chore/deps/update-openapi-extractor
chore(deps): Update openapi-extractor
Diffstat (limited to 'core')
-rw-r--r-- | core/openapi.json | 65 |
1 files changed, 54 insertions, 11 deletions
diff --git a/core/openapi.json b/core/openapi.json index 2314c0df413..52e684ee729 100644 --- a/core/openapi.json +++ b/core/openapi.json @@ -864,7 +864,11 @@ "schema": { "type": "integer", "nullable": true, - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -1046,7 +1050,11 @@ "description": "Whether to not crop the preview", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -1055,7 +1063,11 @@ "description": "Force returning an icon", "schema": { "type": "integer", - "default": 1 + "default": 1, + "enum": [ + 0, + 1 + ] } }, { @@ -1073,7 +1085,11 @@ "description": "Whether to fallback to the mime icon if no preview is available", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } } ], @@ -1177,7 +1193,11 @@ "description": "Whether to not crop the preview", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -1186,7 +1206,11 @@ "description": "Force returning an icon", "schema": { "type": "integer", - "default": 1 + "default": 1, + "enum": [ + 0, + 1 + ] } }, { @@ -1204,7 +1228,11 @@ "description": "Whether to fallback to the mime icon if no preview is available", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } } ], @@ -1435,7 +1463,10 @@ "headers": { "X-NEXTCLOUD-OCM-PROVIDERS": { "schema": { - "type": "boolean" + "type": "boolean", + "enum": [ + true + ] } } }, @@ -1648,7 +1679,11 @@ "description": "Rewrite URLs to absolute ones", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -1749,7 +1784,11 @@ "description": "Rewrite URLs to absolute ones", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -3632,7 +3671,11 @@ "description": "Resolve the references", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { |