diff options
author | provokateurin <kate@provokateurin.de> | 2024-08-19 11:08:28 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-08-21 11:21:33 +0000 |
commit | 9f037c3ef352c150da129abc1119dea3c4219fd0 (patch) | |
tree | 50880d3a856a196f9256093028dadb7092833265 /apps/files_versions | |
parent | ccc39a41bbc2d9f9ff50a297a101fc55773d88ab (diff) | |
download | nextcloud-server-9f037c3ef352c150da129abc1119dea3c4219fd0.tar.gz nextcloud-server-9f037c3ef352c150da129abc1119dea3c4219fd0.zip |
chore(deps): Update openapi-extractor to v1.0.0
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/files_versions')
-rw-r--r-- | apps/files_versions/openapi.json | 70 |
1 files changed, 38 insertions, 32 deletions
diff --git a/apps/files_versions/openapi.json b/apps/files_versions/openapi.json index ee81923c905..9c6a7e5f473 100644 --- a/apps/files_versions/openapi.json +++ b/apps/files_versions/openapi.json @@ -65,40 +65,46 @@ "basic_auth": [] } ], - "requestBody": { - "required": false, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "file": { - "type": "string", - "default": "", - "description": "Path of the file" - }, - "x": { - "type": "integer", - "format": "int64", - "default": 44, - "description": "Width of the preview" - }, - "y": { - "type": "integer", - "format": "int64", - "default": 44, - "description": "Height of the preview" - }, - "version": { - "type": "string", - "default": "", - "description": "Version of the file to get the preview for" - } - } - } + "parameters": [ + { + "name": "file", + "in": "query", + "description": "Path of the file", + "schema": { + "type": "string", + "default": "" + } + }, + { + "name": "x", + "in": "query", + "description": "Width of the preview", + "schema": { + "type": "integer", + "format": "int64", + "default": 44 + } + }, + { + "name": "y", + "in": "query", + "description": "Height of the preview", + "schema": { + "type": "integer", + "format": "int64", + "default": 44 + } + }, + { + "name": "version", + "in": "query", + "description": "Version of the file to get the preview for", + "schema": { + "type": "string", + "default": "" } } - }, + ], "responses": { "200": { "description": "Preview returned", |