Browse Source

fix(ResponseDefinitions): define 'hide-download' field to message parameters

- from 682ef4ec52

Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
pull/15434/head
Maksim Sukharev 5 months ago
parent
commit
66ea63fb34
  1. 1
      lib/ResponseDefinitions.php
  2. 7
      openapi-backend-sipbridge.json
  3. 7
      openapi-federation.json
  4. 7
      openapi-full.json
  5. 7
      openapi.json
  6. 2
      src/types/openapi/openapi-backend-sipbridge.ts
  7. 2
      src/types/openapi/openapi-federation.ts
  8. 2
      src/types/openapi/openapi-full.ts
  9. 2
      src/types/openapi/openapi.ts

1
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,

7
openapi-backend-sipbridge.json

@ -534,6 +534,13 @@
"no"
]
},
"hide-download": {
"type": "string",
"enum": [
"yes",
"no"
]
},
"mtime": {
"type": "string"
},

7
openapi-federation.json

@ -588,6 +588,13 @@
"no"
]
},
"hide-download": {
"type": "string",
"enum": [
"yes",
"no"
]
},
"mtime": {
"type": "string"
},

7
openapi-full.json

@ -1385,6 +1385,13 @@
"no"
]
},
"hide-download": {
"type": "string",
"enum": [
"yes",
"no"
]
},
"mtime": {
"type": "string"
},

7
openapi.json

@ -1290,6 +1290,13 @@
"no"
]
},
"hide-download": {
"type": "string",
"enum": [
"yes",
"no"
]
},
"mtime": {
"type": "string"
},

2
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;

2
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;

2
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;

2
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;

Loading…
Cancel
Save