diff --git a/lib/ResponseDefinitions.php b/lib/ResponseDefinitions.php index ed6f0d3199..cbb84530a6 100644 --- a/lib/ResponseDefinitions.php +++ b/lib/ResponseDefinitions.php @@ -76,6 +76,7 @@ namespace OCA\Talk; * path?: string, * mimetype?: string, * 'preview-available'?: 'yes'|'no', + * 'hide-download'?: 'yes'|'no', * mtime?: string, * latitude?: string, * longitude?: string, diff --git a/openapi-backend-sipbridge.json b/openapi-backend-sipbridge.json index 41615247c6..8b7eb7c890 100644 --- a/openapi-backend-sipbridge.json +++ b/openapi-backend-sipbridge.json @@ -534,6 +534,13 @@ "no" ] }, + "hide-download": { + "type": "string", + "enum": [ + "yes", + "no" + ] + }, "mtime": { "type": "string" }, diff --git a/openapi-federation.json b/openapi-federation.json index 74afd87807..d47176c53b 100644 --- a/openapi-federation.json +++ b/openapi-federation.json @@ -588,6 +588,13 @@ "no" ] }, + "hide-download": { + "type": "string", + "enum": [ + "yes", + "no" + ] + }, "mtime": { "type": "string" }, diff --git a/openapi-full.json b/openapi-full.json index 30930d1fdf..0ff85ead40 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -1385,6 +1385,13 @@ "no" ] }, + "hide-download": { + "type": "string", + "enum": [ + "yes", + "no" + ] + }, "mtime": { "type": "string" }, diff --git a/openapi.json b/openapi.json index 420a118f93..1d3673f156 100644 --- a/openapi.json +++ b/openapi.json @@ -1290,6 +1290,13 @@ "no" ] }, + "hide-download": { + "type": "string", + "enum": [ + "yes", + "no" + ] + }, "mtime": { "type": "string" }, diff --git a/src/types/openapi/openapi-backend-sipbridge.ts b/src/types/openapi/openapi-backend-sipbridge.ts index 1e9e285ab6..8549f47121 100644 --- a/src/types/openapi/openapi-backend-sipbridge.ts +++ b/src/types/openapi/openapi-backend-sipbridge.ts @@ -276,6 +276,8 @@ export type components = { mimetype?: string; /** @enum {string} */ "preview-available"?: "yes" | "no"; + /** @enum {string} */ + "hide-download"?: "yes" | "no"; mtime?: string; latitude?: string; longitude?: string; diff --git a/src/types/openapi/openapi-federation.ts b/src/types/openapi/openapi-federation.ts index 271ca85ca5..a4d9a09c3e 100644 --- a/src/types/openapi/openapi-federation.ts +++ b/src/types/openapi/openapi-federation.ts @@ -303,6 +303,8 @@ export type components = { mimetype?: string; /** @enum {string} */ "preview-available"?: "yes" | "no"; + /** @enum {string} */ + "hide-download"?: "yes" | "no"; mtime?: string; latitude?: string; longitude?: string; diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index 59a7636bed..33d5ea1e6a 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -2544,6 +2544,8 @@ export type components = { mimetype?: string; /** @enum {string} */ "preview-available"?: "yes" | "no"; + /** @enum {string} */ + "hide-download"?: "yes" | "no"; mtime?: string; latitude?: string; longitude?: string; diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index 5b232a5506..043a25a011 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -2006,6 +2006,8 @@ export type components = { mimetype?: string; /** @enum {string} */ "preview-available"?: "yes" | "no"; + /** @enum {string} */ + "hide-download"?: "yes" | "no"; mtime?: string; latitude?: string; longitude?: string;