diff --git a/openapi-administration.json b/openapi-administration.json index fa4e80bed788..b02dca1cfa7b 100644 --- a/openapi-administration.json +++ b/openapi-administration.json @@ -149,7 +149,8 @@ "sip-dialout-enabled", "can-enable-sip", "start-without-media", - "max-duration" + "max-duration", + "blur-background" ], "properties": { "enabled": { @@ -195,6 +196,9 @@ "max-duration": { "type": "integer", "format": "int64" + }, + "blur-background": { + "type": "boolean" } } }, diff --git a/openapi-backend-recording.json b/openapi-backend-recording.json index f6b1d452627e..1db0bfc4f003 100644 --- a/openapi-backend-recording.json +++ b/openapi-backend-recording.json @@ -82,7 +82,8 @@ "sip-dialout-enabled", "can-enable-sip", "start-without-media", - "max-duration" + "max-duration", + "blur-background" ], "properties": { "enabled": { @@ -128,6 +129,9 @@ "max-duration": { "type": "integer", "format": "int64" + }, + "blur-background": { + "type": "boolean" } } }, diff --git a/openapi-backend-signaling.json b/openapi-backend-signaling.json index ad42624f2900..c65fe7e8ec69 100644 --- a/openapi-backend-signaling.json +++ b/openapi-backend-signaling.json @@ -82,7 +82,8 @@ "sip-dialout-enabled", "can-enable-sip", "start-without-media", - "max-duration" + "max-duration", + "blur-background" ], "properties": { "enabled": { @@ -128,6 +129,9 @@ "max-duration": { "type": "integer", "format": "int64" + }, + "blur-background": { + "type": "boolean" } } }, diff --git a/openapi-backend-sipbridge.json b/openapi-backend-sipbridge.json index 5df0b9eeb46f..9d4709d271df 100644 --- a/openapi-backend-sipbridge.json +++ b/openapi-backend-sipbridge.json @@ -125,7 +125,8 @@ "sip-dialout-enabled", "can-enable-sip", "start-without-media", - "max-duration" + "max-duration", + "blur-background" ], "properties": { "enabled": { @@ -171,6 +172,9 @@ "max-duration": { "type": "integer", "format": "int64" + }, + "blur-background": { + "type": "boolean" } } }, diff --git a/openapi-bots.json b/openapi-bots.json index 8f24560fe4b6..3c6d837a031f 100644 --- a/openapi-bots.json +++ b/openapi-bots.json @@ -82,7 +82,8 @@ "sip-dialout-enabled", "can-enable-sip", "start-without-media", - "max-duration" + "max-duration", + "blur-background" ], "properties": { "enabled": { @@ -128,6 +129,9 @@ "max-duration": { "type": "integer", "format": "int64" + }, + "blur-background": { + "type": "boolean" } } }, diff --git a/openapi-federation.json b/openapi-federation.json index 1b2274d22c79..62faf73b8463 100644 --- a/openapi-federation.json +++ b/openapi-federation.json @@ -125,7 +125,8 @@ "sip-dialout-enabled", "can-enable-sip", "start-without-media", - "max-duration" + "max-duration", + "blur-background" ], "properties": { "enabled": { @@ -171,6 +172,9 @@ "max-duration": { "type": "integer", "format": "int64" + }, + "blur-background": { + "type": "boolean" } } }, diff --git a/openapi-full.json b/openapi-full.json index 60054b6c5fa4..e5b619cc6d93 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -301,7 +301,8 @@ "sip-dialout-enabled", "can-enable-sip", "start-without-media", - "max-duration" + "max-duration", + "blur-background" ], "properties": { "enabled": { @@ -347,6 +348,9 @@ "max-duration": { "type": "integer", "format": "int64" + }, + "blur-background": { + "type": "boolean" } } }, @@ -16368,7 +16372,8 @@ "attachment_folder", "read_status_privacy", "typing_privacy", - "play_sounds" + "play_sounds", + "blur_background" ], "description": "Key to update" }, diff --git a/openapi.json b/openapi.json index c14042aad270..8e489961b779 100644 --- a/openapi.json +++ b/openapi.json @@ -242,7 +242,8 @@ "sip-dialout-enabled", "can-enable-sip", "start-without-media", - "max-duration" + "max-duration", + "blur-background" ], "properties": { "enabled": { @@ -288,6 +289,9 @@ "max-duration": { "type": "integer", "format": "int64" + }, + "blur-background": { + "type": "boolean" } } }, @@ -16502,7 +16506,8 @@ "attachment_folder", "read_status_privacy", "typing_privacy", - "play_sounds" + "play_sounds", + "blur_background" ], "description": "Key to update" }, diff --git a/src/types/openapi/openapi-administration.ts b/src/types/openapi/openapi-administration.ts index e960be1a0785..31bccface247 100644 --- a/src/types/openapi/openapi-administration.ts +++ b/src/types/openapi/openapi-administration.ts @@ -231,6 +231,7 @@ export type components = { "start-without-media": boolean; /** Format: int64 */ "max-duration": number; + "blur-background": boolean; }; chat: { /** Format: int64 */ diff --git a/src/types/openapi/openapi-backend-recording.ts b/src/types/openapi/openapi-backend-recording.ts index 63f3a3b86021..e3dbe861da51 100644 --- a/src/types/openapi/openapi-backend-recording.ts +++ b/src/types/openapi/openapi-backend-recording.ts @@ -65,6 +65,7 @@ export type components = { "start-without-media": boolean; /** Format: int64 */ "max-duration": number; + "blur-background": boolean; }; chat: { /** Format: int64 */ diff --git a/src/types/openapi/openapi-backend-signaling.ts b/src/types/openapi/openapi-backend-signaling.ts index 54bf7d5d98bf..ebd108916a14 100644 --- a/src/types/openapi/openapi-backend-signaling.ts +++ b/src/types/openapi/openapi-backend-signaling.ts @@ -51,6 +51,7 @@ export type components = { "start-without-media": boolean; /** Format: int64 */ "max-duration": number; + "blur-background": boolean; }; chat: { /** Format: int64 */ diff --git a/src/types/openapi/openapi-backend-sipbridge.ts b/src/types/openapi/openapi-backend-sipbridge.ts index 84e84856e367..e9c6a1546287 100644 --- a/src/types/openapi/openapi-backend-sipbridge.ts +++ b/src/types/openapi/openapi-backend-sipbridge.ts @@ -146,6 +146,7 @@ export type components = { "start-without-media": boolean; /** Format: int64 */ "max-duration": number; + "blur-background": boolean; }; chat: { /** Format: int64 */ diff --git a/src/types/openapi/openapi-bots.ts b/src/types/openapi/openapi-bots.ts index 5e29b8e77958..4c7d939eca8b 100644 --- a/src/types/openapi/openapi-bots.ts +++ b/src/types/openapi/openapi-bots.ts @@ -69,6 +69,7 @@ export type components = { "start-without-media": boolean; /** Format: int64 */ "max-duration": number; + "blur-background": boolean; }; chat: { /** Format: int64 */ diff --git a/src/types/openapi/openapi-federation.ts b/src/types/openapi/openapi-federation.ts index b498f99f0f71..212d592a85e9 100644 --- a/src/types/openapi/openapi-federation.ts +++ b/src/types/openapi/openapi-federation.ts @@ -177,6 +177,7 @@ export type components = { "start-without-media": boolean; /** Format: int64 */ "max-duration": number; + "blur-background": boolean; }; chat: { /** Format: int64 */ diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index 3cddddd4be93..3913619a2c82 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -1927,6 +1927,7 @@ export type components = { "start-without-media": boolean; /** Format: int64 */ "max-duration": number; + "blur-background": boolean; }; chat: { /** Format: int64 */ @@ -8281,7 +8282,7 @@ export interface operations { * @description Key to update * @enum {string} */ - key: "attachment_folder" | "read_status_privacy" | "typing_privacy" | "play_sounds"; + key: "attachment_folder" | "read_status_privacy" | "typing_privacy" | "play_sounds" | "blur_background"; /** @description New value for the key */ value?: (string | number) | null; }; diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index ee0fa97d878d..168e79d2e2e6 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -1424,6 +1424,7 @@ export type components = { "start-without-media": boolean; /** Format: int64 */ "max-duration": number; + "blur-background": boolean; }; chat: { /** Format: int64 */ @@ -7862,7 +7863,7 @@ export interface operations { * @description Key to update * @enum {string} */ - key: "attachment_folder" | "read_status_privacy" | "typing_privacy" | "play_sounds"; + key: "attachment_folder" | "read_status_privacy" | "typing_privacy" | "play_sounds" | "blur_background"; /** @description New value for the key */ value?: (string | number) | null; };