diff --git a/openapi-administration.json b/openapi-administration.json index 5b78166d6de..b0f5a4c0448 100644 --- a/openapi-administration.json +++ b/openapi-administration.json @@ -242,7 +242,8 @@ "type": "object", "required": [ "can-create", - "force-passwords" + "force-passwords", + "list-style" ], "properties": { "can-create": { @@ -250,6 +251,13 @@ }, "force-passwords": { "type": "boolean" + }, + "list-style": { + "type": "string", + "enum": [ + "two-lines", + "compact" + ] } } }, diff --git a/openapi-backend-recording.json b/openapi-backend-recording.json index 216bbf0c33a..8eeafdee0f7 100644 --- a/openapi-backend-recording.json +++ b/openapi-backend-recording.json @@ -175,7 +175,8 @@ "type": "object", "required": [ "can-create", - "force-passwords" + "force-passwords", + "list-style" ], "properties": { "can-create": { @@ -183,6 +184,13 @@ }, "force-passwords": { "type": "boolean" + }, + "list-style": { + "type": "string", + "enum": [ + "two-lines", + "compact" + ] } } }, diff --git a/openapi-backend-signaling.json b/openapi-backend-signaling.json index 65f96abcf66..0c4a2d77212 100644 --- a/openapi-backend-signaling.json +++ b/openapi-backend-signaling.json @@ -175,7 +175,8 @@ "type": "object", "required": [ "can-create", - "force-passwords" + "force-passwords", + "list-style" ], "properties": { "can-create": { @@ -183,6 +184,13 @@ }, "force-passwords": { "type": "boolean" + }, + "list-style": { + "type": "string", + "enum": [ + "two-lines", + "compact" + ] } } }, diff --git a/openapi-backend-sipbridge.json b/openapi-backend-sipbridge.json index 5bdb40d2711..8d57966f54c 100644 --- a/openapi-backend-sipbridge.json +++ b/openapi-backend-sipbridge.json @@ -218,7 +218,8 @@ "type": "object", "required": [ "can-create", - "force-passwords" + "force-passwords", + "list-style" ], "properties": { "can-create": { @@ -226,6 +227,13 @@ }, "force-passwords": { "type": "boolean" + }, + "list-style": { + "type": "string", + "enum": [ + "two-lines", + "compact" + ] } } }, diff --git a/openapi-bots.json b/openapi-bots.json index 6191015e49c..de3654a817c 100644 --- a/openapi-bots.json +++ b/openapi-bots.json @@ -175,7 +175,8 @@ "type": "object", "required": [ "can-create", - "force-passwords" + "force-passwords", + "list-style" ], "properties": { "can-create": { @@ -183,6 +184,13 @@ }, "force-passwords": { "type": "boolean" + }, + "list-style": { + "type": "string", + "enum": [ + "two-lines", + "compact" + ] } } }, diff --git a/openapi-federation.json b/openapi-federation.json index a7c190cff9b..95ddde2a170 100644 --- a/openapi-federation.json +++ b/openapi-federation.json @@ -218,7 +218,8 @@ "type": "object", "required": [ "can-create", - "force-passwords" + "force-passwords", + "list-style" ], "properties": { "can-create": { @@ -226,6 +227,13 @@ }, "force-passwords": { "type": "boolean" + }, + "list-style": { + "type": "string", + "enum": [ + "two-lines", + "compact" + ] } } }, diff --git a/openapi-full.json b/openapi-full.json index 6dff86acbb6..074047cc0bd 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -376,7 +376,8 @@ "type": "object", "required": [ "can-create", - "force-passwords" + "force-passwords", + "list-style" ], "properties": { "can-create": { @@ -384,6 +385,13 @@ }, "force-passwords": { "type": "boolean" + }, + "list-style": { + "type": "string", + "enum": [ + "two-lines", + "compact" + ] } } }, diff --git a/openapi.json b/openapi.json index df2397ebf40..416b718429d 100644 --- a/openapi.json +++ b/openapi.json @@ -335,7 +335,8 @@ "type": "object", "required": [ "can-create", - "force-passwords" + "force-passwords", + "list-style" ], "properties": { "can-create": { @@ -343,6 +344,13 @@ }, "force-passwords": { "type": "boolean" + }, + "list-style": { + "type": "string", + "enum": [ + "two-lines", + "compact" + ] } } }, diff --git a/src/types/openapi/openapi-administration.ts b/src/types/openapi/openapi-administration.ts index 2a4049aa9f3..ae5b92d560d 100644 --- a/src/types/openapi/openapi-administration.ts +++ b/src/types/openapi/openapi-administration.ts @@ -248,6 +248,8 @@ export type components = { conversations: { "can-create": boolean; "force-passwords": boolean; + /** @enum {string} */ + "list-style": "two-lines" | "compact"; }; federation: { enabled: boolean; diff --git a/src/types/openapi/openapi-backend-recording.ts b/src/types/openapi/openapi-backend-recording.ts index c34d7441dbe..7eac70ec36a 100644 --- a/src/types/openapi/openapi-backend-recording.ts +++ b/src/types/openapi/openapi-backend-recording.ts @@ -82,6 +82,8 @@ export type components = { conversations: { "can-create": boolean; "force-passwords": boolean; + /** @enum {string} */ + "list-style": "two-lines" | "compact"; }; federation: { enabled: boolean; diff --git a/src/types/openapi/openapi-backend-signaling.ts b/src/types/openapi/openapi-backend-signaling.ts index f344fd8f709..ce84f4178bb 100644 --- a/src/types/openapi/openapi-backend-signaling.ts +++ b/src/types/openapi/openapi-backend-signaling.ts @@ -68,6 +68,8 @@ export type components = { conversations: { "can-create": boolean; "force-passwords": boolean; + /** @enum {string} */ + "list-style": "two-lines" | "compact"; }; federation: { enabled: boolean; diff --git a/src/types/openapi/openapi-backend-sipbridge.ts b/src/types/openapi/openapi-backend-sipbridge.ts index d94e13eca8d..9a66b8ac04a 100644 --- a/src/types/openapi/openapi-backend-sipbridge.ts +++ b/src/types/openapi/openapi-backend-sipbridge.ts @@ -163,6 +163,8 @@ export type components = { conversations: { "can-create": boolean; "force-passwords": boolean; + /** @enum {string} */ + "list-style": "two-lines" | "compact"; }; federation: { enabled: boolean; diff --git a/src/types/openapi/openapi-bots.ts b/src/types/openapi/openapi-bots.ts index 35a8d291d00..c3edbdf6f11 100644 --- a/src/types/openapi/openapi-bots.ts +++ b/src/types/openapi/openapi-bots.ts @@ -86,6 +86,8 @@ export type components = { conversations: { "can-create": boolean; "force-passwords": boolean; + /** @enum {string} */ + "list-style": "two-lines" | "compact"; }; federation: { enabled: boolean; diff --git a/src/types/openapi/openapi-federation.ts b/src/types/openapi/openapi-federation.ts index 469be07a639..241c301d990 100644 --- a/src/types/openapi/openapi-federation.ts +++ b/src/types/openapi/openapi-federation.ts @@ -194,6 +194,8 @@ export type components = { conversations: { "can-create": boolean; "force-passwords": boolean; + /** @enum {string} */ + "list-style": "two-lines" | "compact"; }; federation: { enabled: boolean; diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index 9dd7dd543cb..b645172f892 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -2031,6 +2031,8 @@ export type components = { conversations: { "can-create": boolean; "force-passwords": boolean; + /** @enum {string} */ + "list-style": "two-lines" | "compact"; }; federation: { enabled: boolean; diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index f3eb66da936..dada9d413a7 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -1531,6 +1531,8 @@ export type components = { conversations: { "can-create": boolean; "force-passwords": boolean; + /** @enum {string} */ + "list-style": "two-lines" | "compact"; }; federation: { enabled: boolean;