diff --git a/openapi-administration.json b/openapi-administration.json index ee71cda388..97284c754a 100644 --- a/openapi-administration.json +++ b/openapi-administration.json @@ -230,7 +230,8 @@ "has-translation-providers", "has-translation-task-providers", "typing-privacy", - "summary-threshold" + "summary-threshold", + "style" ], "properties": { "max-length": { @@ -255,6 +256,13 @@ "type": "integer", "format": "int64", "minimum": 1 + }, + "style": { + "type": "string", + "enum": [ + "split", + "unified" + ] } } }, diff --git a/openapi-backend-recording.json b/openapi-backend-recording.json index 31a0c91d34..516d85f7d4 100644 --- a/openapi-backend-recording.json +++ b/openapi-backend-recording.json @@ -163,7 +163,8 @@ "has-translation-providers", "has-translation-task-providers", "typing-privacy", - "summary-threshold" + "summary-threshold", + "style" ], "properties": { "max-length": { @@ -188,6 +189,13 @@ "type": "integer", "format": "int64", "minimum": 1 + }, + "style": { + "type": "string", + "enum": [ + "split", + "unified" + ] } } }, diff --git a/openapi-backend-signaling.json b/openapi-backend-signaling.json index 0c38db9d61..94aa669b4f 100644 --- a/openapi-backend-signaling.json +++ b/openapi-backend-signaling.json @@ -163,7 +163,8 @@ "has-translation-providers", "has-translation-task-providers", "typing-privacy", - "summary-threshold" + "summary-threshold", + "style" ], "properties": { "max-length": { @@ -188,6 +189,13 @@ "type": "integer", "format": "int64", "minimum": 1 + }, + "style": { + "type": "string", + "enum": [ + "split", + "unified" + ] } } }, diff --git a/openapi-backend-sipbridge.json b/openapi-backend-sipbridge.json index 99c622f241..18185dc434 100644 --- a/openapi-backend-sipbridge.json +++ b/openapi-backend-sipbridge.json @@ -206,7 +206,8 @@ "has-translation-providers", "has-translation-task-providers", "typing-privacy", - "summary-threshold" + "summary-threshold", + "style" ], "properties": { "max-length": { @@ -231,6 +232,13 @@ "type": "integer", "format": "int64", "minimum": 1 + }, + "style": { + "type": "string", + "enum": [ + "split", + "unified" + ] } } }, diff --git a/openapi-bots.json b/openapi-bots.json index 38f5faf059..74ff534c86 100644 --- a/openapi-bots.json +++ b/openapi-bots.json @@ -163,7 +163,8 @@ "has-translation-providers", "has-translation-task-providers", "typing-privacy", - "summary-threshold" + "summary-threshold", + "style" ], "properties": { "max-length": { @@ -188,6 +189,13 @@ "type": "integer", "format": "int64", "minimum": 1 + }, + "style": { + "type": "string", + "enum": [ + "split", + "unified" + ] } } }, diff --git a/openapi-federation.json b/openapi-federation.json index 4081cd3f1f..ff4a4a6999 100644 --- a/openapi-federation.json +++ b/openapi-federation.json @@ -206,7 +206,8 @@ "has-translation-providers", "has-translation-task-providers", "typing-privacy", - "summary-threshold" + "summary-threshold", + "style" ], "properties": { "max-length": { @@ -231,6 +232,13 @@ "type": "integer", "format": "int64", "minimum": 1 + }, + "style": { + "type": "string", + "enum": [ + "split", + "unified" + ] } } }, diff --git a/openapi-full.json b/openapi-full.json index 37b0d01026..3afe12982c 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -364,7 +364,8 @@ "has-translation-providers", "has-translation-task-providers", "typing-privacy", - "summary-threshold" + "summary-threshold", + "style" ], "properties": { "max-length": { @@ -389,6 +390,13 @@ "type": "integer", "format": "int64", "minimum": 1 + }, + "style": { + "type": "string", + "enum": [ + "split", + "unified" + ] } } }, diff --git a/openapi.json b/openapi.json index f7c5be1459..b6c8d71ba4 100644 --- a/openapi.json +++ b/openapi.json @@ -323,7 +323,8 @@ "has-translation-providers", "has-translation-task-providers", "typing-privacy", - "summary-threshold" + "summary-threshold", + "style" ], "properties": { "max-length": { @@ -348,6 +349,13 @@ "type": "integer", "format": "int64", "minimum": 1 + }, + "style": { + "type": "string", + "enum": [ + "split", + "unified" + ] } } }, diff --git a/src/types/openapi/openapi-administration.ts b/src/types/openapi/openapi-administration.ts index b34a866904..9c3ccd6a02 100644 --- a/src/types/openapi/openapi-administration.ts +++ b/src/types/openapi/openapi-administration.ts @@ -249,6 +249,8 @@ export type components = { "typing-privacy": number; /** Format: int64 */ "summary-threshold": number; + /** @enum {string} */ + style: "split" | "unified"; }; conversations: { "can-create": boolean; diff --git a/src/types/openapi/openapi-backend-recording.ts b/src/types/openapi/openapi-backend-recording.ts index 117aca838f..283f3227ad 100644 --- a/src/types/openapi/openapi-backend-recording.ts +++ b/src/types/openapi/openapi-backend-recording.ts @@ -83,6 +83,8 @@ export type components = { "typing-privacy": number; /** Format: int64 */ "summary-threshold": number; + /** @enum {string} */ + style: "split" | "unified"; }; conversations: { "can-create": boolean; diff --git a/src/types/openapi/openapi-backend-signaling.ts b/src/types/openapi/openapi-backend-signaling.ts index 2185cd3473..3b92cc0dac 100644 --- a/src/types/openapi/openapi-backend-signaling.ts +++ b/src/types/openapi/openapi-backend-signaling.ts @@ -69,6 +69,8 @@ export type components = { "typing-privacy": number; /** Format: int64 */ "summary-threshold": number; + /** @enum {string} */ + style: "split" | "unified"; }; conversations: { "can-create": boolean; diff --git a/src/types/openapi/openapi-backend-sipbridge.ts b/src/types/openapi/openapi-backend-sipbridge.ts index 2c42f836fe..f465b58780 100644 --- a/src/types/openapi/openapi-backend-sipbridge.ts +++ b/src/types/openapi/openapi-backend-sipbridge.ts @@ -184,6 +184,8 @@ export type components = { "typing-privacy": number; /** Format: int64 */ "summary-threshold": number; + /** @enum {string} */ + style: "split" | "unified"; }; conversations: { "can-create": boolean; diff --git a/src/types/openapi/openapi-bots.ts b/src/types/openapi/openapi-bots.ts index 1c80ac17f3..7bcb2d8078 100644 --- a/src/types/openapi/openapi-bots.ts +++ b/src/types/openapi/openapi-bots.ts @@ -87,6 +87,8 @@ export type components = { "typing-privacy": number; /** Format: int64 */ "summary-threshold": number; + /** @enum {string} */ + style: "split" | "unified"; }; conversations: { "can-create": boolean; diff --git a/src/types/openapi/openapi-federation.ts b/src/types/openapi/openapi-federation.ts index 1d6414ee9f..ff302c9885 100644 --- a/src/types/openapi/openapi-federation.ts +++ b/src/types/openapi/openapi-federation.ts @@ -195,6 +195,8 @@ export type components = { "typing-privacy": number; /** Format: int64 */ "summary-threshold": number; + /** @enum {string} */ + style: "split" | "unified"; }; conversations: { "can-create": boolean; diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index 7a724159d4..20053457d8 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -2391,6 +2391,8 @@ export type components = { "typing-privacy": number; /** Format: int64 */ "summary-threshold": number; + /** @enum {string} */ + style: "split" | "unified"; }; conversations: { "can-create": boolean; diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index b598fcb5dc..1dfd1afc8f 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -1869,6 +1869,8 @@ export type components = { "typing-privacy": number; /** Format: int64 */ "summary-threshold": number; + /** @enum {string} */ + style: "split" | "unified"; }; conversations: { "can-create": boolean;