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 /apps | |
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 'apps')
-rw-r--r-- | apps/files/openapi.json | 6 | ||||
-rw-r--r-- | apps/files_sharing/openapi.json | 18 | ||||
-rw-r--r-- | apps/files_trashbin/openapi.json | 6 | ||||
-rw-r--r-- | apps/theming/openapi.json | 18 | ||||
-rw-r--r-- | apps/user_ldap/openapi.json | 6 |
5 files changed, 45 insertions, 9 deletions
diff --git a/apps/files/openapi.json b/apps/files/openapi.json index c897790f205..4df81800846 100644 --- a/apps/files/openapi.json +++ b/apps/files/openapi.json @@ -1172,7 +1172,11 @@ "description": "Whether to copy the system templates to the template directory", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { diff --git a/apps/files_sharing/openapi.json b/apps/files_sharing/openapi.json index abbc3d250a6..1cf1de460ba 100644 --- a/apps/files_sharing/openapi.json +++ b/apps/files_sharing/openapi.json @@ -1491,7 +1491,11 @@ "description": "Whether to not crop the preview", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -2186,7 +2190,11 @@ "description": "Include tags in the share", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -2830,7 +2838,11 @@ "description": "If a global lookup should be performed too", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { diff --git a/apps/files_trashbin/openapi.json b/apps/files_trashbin/openapi.json index a96cf5f189d..afa0ccfdafd 100644 --- a/apps/files_trashbin/openapi.json +++ b/apps/files_trashbin/openapi.json @@ -94,7 +94,11 @@ "description": "Whether to not crop the preview", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } } ], diff --git a/apps/theming/openapi.json b/apps/theming/openapi.json index 7ed98467e96..f85f916dcaa 100644 --- a/apps/theming/openapi.json +++ b/apps/theming/openapi.json @@ -162,7 +162,11 @@ "description": "Let the browser decide the CSS priority", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -171,7 +175,11 @@ "description": "Include custom CSS", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { @@ -232,7 +240,11 @@ "description": "Return image as SVG", "schema": { "type": "integer", - "default": 1 + "default": 1, + "enum": [ + 0, + 1 + ] } }, { diff --git a/apps/user_ldap/openapi.json b/apps/user_ldap/openapi.json index f775726c8dc..fcad9c62fd8 100644 --- a/apps/user_ldap/openapi.json +++ b/apps/user_ldap/openapi.json @@ -140,7 +140,11 @@ "description": "Whether to show the password", "schema": { "type": "integer", - "default": 0 + "default": 0, + "enum": [ + 0, + 1 + ] } }, { |