From fe2c6d4227270af60be0db17f21170224d6bc553 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Fri, 8 Dec 2023 11:06:05 +0100 Subject: chore(deps): Update openapi-extractor Signed-off-by: jld3103 --- apps/dashboard/openapi.json | 8 ++++++-- apps/files_sharing/openapi.json | 44 +++++++++++++++++++++++++++++++++++------ apps/theming/openapi.json | 3 ++- 3 files changed, 46 insertions(+), 9 deletions(-) (limited to 'apps') 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" } } ], -- cgit v1.2.3