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 | |
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')
-rw-r--r-- | apps/dashboard/openapi.json | 8 | ||||
-rw-r--r-- | apps/files_sharing/openapi.json | 44 | ||||
-rw-r--r-- | apps/theming/openapi.json | 3 |
3 files changed, 46 insertions, 9 deletions
diff --git a/apps/dashboard/openapi.json b/apps/dashboard/openapi.json index 138f06df83b..fb093d5d36f 100644 --- a/apps/dashboard/openapi.json +++ b/apps/dashboard/openapi.json @@ -267,7 +267,9 @@ "schema": { "type": "integer", "format": "int64", - "default": 7 + "default": 7, + "minimum": 1, + "maximum": 30 } }, { @@ -364,7 +366,9 @@ "schema": { "type": "integer", "format": "int64", - "default": 7 + "default": 7, + "minimum": 1, + "maximum": 30 } }, { 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" + } + } + ] } }, { diff --git a/apps/theming/openapi.json b/apps/theming/openapi.json index cce79444c95..7ed98467e96 100644 --- a/apps/theming/openapi.json +++ b/apps/theming/openapi.json @@ -303,7 +303,8 @@ "description": "ID of the app", "required": true, "schema": { - "type": "string" + "type": "string", + "default": "core" } } ], |