diff --git a/lib/ResponseDefinitions.php b/lib/ResponseDefinitions.php index 2d0c766b805..82a5f2cbd31 100644 --- a/lib/ResponseDefinitions.php +++ b/lib/ResponseDefinitions.php @@ -84,6 +84,10 @@ * visibility?: '0'|'1', * assignable?: '0'|'1', * conversation?: string, + * etag?: string, + * permissions?: string, + * width?: string, + * height?: string, * } * * @psalm-type TalkBaseMessage = array{ diff --git a/openapi-backend-sipbridge.json b/openapi-backend-sipbridge.json index 0110456944c..b878bb8f9fc 100644 --- a/openapi-backend-sipbridge.json +++ b/openapi-backend-sipbridge.json @@ -483,6 +483,18 @@ }, "conversation": { "type": "string" + }, + "etag": { + "type": "string" + }, + "permissions": { + "type": "string" + }, + "width": { + "type": "string" + }, + "height": { + "type": "string" } } }, diff --git a/openapi-federation.json b/openapi-federation.json index 1fcab6197c6..9b7b96c4372 100644 --- a/openapi-federation.json +++ b/openapi-federation.json @@ -537,6 +537,18 @@ }, "conversation": { "type": "string" + }, + "etag": { + "type": "string" + }, + "permissions": { + "type": "string" + }, + "width": { + "type": "string" + }, + "height": { + "type": "string" } } }, diff --git a/openapi-full.json b/openapi-full.json index 2ed95da515d..2faa008caae 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -1039,6 +1039,18 @@ }, "conversation": { "type": "string" + }, + "etag": { + "type": "string" + }, + "permissions": { + "type": "string" + }, + "width": { + "type": "string" + }, + "height": { + "type": "string" } } }, diff --git a/openapi.json b/openapi.json index cd0f449cf2b..fb44c6b3338 100644 --- a/openapi.json +++ b/openapi.json @@ -926,6 +926,18 @@ }, "conversation": { "type": "string" + }, + "etag": { + "type": "string" + }, + "permissions": { + "type": "string" + }, + "width": { + "type": "string" + }, + "height": { + "type": "string" } } }, diff --git a/src/types/openapi/openapi-backend-sipbridge.ts b/src/types/openapi/openapi-backend-sipbridge.ts index f7c859b20c0..028f2a4b6a0 100644 --- a/src/types/openapi/openapi-backend-sipbridge.ts +++ b/src/types/openapi/openapi-backend-sipbridge.ts @@ -168,6 +168,10 @@ export type components = { /** @enum {string} */ assignable?: "0" | "1"; conversation?: string; + etag?: string; + permissions?: string; + width?: string; + height?: string; }; Room: { actorId: string; diff --git a/src/types/openapi/openapi-federation.ts b/src/types/openapi/openapi-federation.ts index 27b299c533f..5cb6d31c246 100644 --- a/src/types/openapi/openapi-federation.ts +++ b/src/types/openapi/openapi-federation.ts @@ -199,6 +199,10 @@ export type components = { /** @enum {string} */ assignable?: "0" | "1"; conversation?: string; + etag?: string; + permissions?: string; + width?: string; + height?: string; }; Room: { actorId: string; diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index 4b42a621069..2caa37af7cf 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -834,6 +834,10 @@ export type components = { /** @enum {string} */ assignable?: "0" | "1"; conversation?: string; + etag?: string; + permissions?: string; + width?: string; + height?: string; }; Room: { actorId: string; diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index 7158c684aa3..7192cee515c 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -657,6 +657,10 @@ export type components = { /** @enum {string} */ assignable?: "0" | "1"; conversation?: string; + etag?: string; + permissions?: string; + width?: string; + height?: string; }; Room: { actorId: string;