aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_versions
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-08-19 11:08:28 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2024-08-21 11:21:33 +0000
commit9f037c3ef352c150da129abc1119dea3c4219fd0 (patch)
tree50880d3a856a196f9256093028dadb7092833265 /apps/files_versions
parentccc39a41bbc2d9f9ff50a297a101fc55773d88ab (diff)
downloadnextcloud-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.json70
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",