From a14af787f1d30ca158650d0c5f262b8bd2215bff Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 28 Aug 2024 17:13:28 +0200 Subject: [PATCH] chore(assets): Recompile assets Signed-off-by: Joas Schilling --- openapi-full.json | 62 +++++++++++++++++++----- openapi.json | 78 +++++++++++++++++++++++++------ src/types/openapi/openapi-full.ts | 15 ++++-- src/types/openapi/openapi.ts | 20 ++++++-- 4 files changed, 141 insertions(+), 34 deletions(-) diff --git a/openapi-full.json b/openapi-full.json index 17ebdf1963..99d6e2907e 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -12214,7 +12214,8 @@ "enum": [ "breakout-room", "mode", - "type" + "type", + "value" ] } } @@ -14916,7 +14917,23 @@ "meta": { "$ref": "#/components/schemas/OCSMeta" }, - "data": {} + "data": { + "type": "object", + "required": [ + "error" + ], + "properties": { + "error": { + "type": "string", + "enum": [ + "breakout-room", + "object", + "type", + "value" + ] + } + } + } } } } @@ -15031,8 +15048,8 @@ } } }, - "400": { - "description": "Updating SIP enabled state is not possible", + "401": { + "description": "User not found", "content": { "application/json": { "schema": { @@ -15059,8 +15076,8 @@ } } }, - "401": { - "description": "User not found", + "403": { + "description": "Missing permissions to update SIP enabled state", "content": { "application/json": { "schema": { @@ -15087,8 +15104,8 @@ } } }, - "403": { - "description": "Missing permissions to update SIP enabled state", + "412": { + "description": "SIP not configured", "content": { "application/json": { "schema": { @@ -15115,8 +15132,8 @@ } } }, - "412": { - "description": "SIP not configured", + "400": { + "description": "Updating SIP enabled state is not possible", "content": { "application/json": { "schema": { @@ -15135,7 +15152,23 @@ "meta": { "$ref": "#/components/schemas/OCSMeta" }, - "data": {} + "data": { + "type": "object", + "required": [ + "error" + ], + "properties": { + "error": { + "type": "string", + "enum": [ + "breakout-room", + "token", + "type", + "value" + ] + } + } + } } } } @@ -15272,7 +15305,12 @@ ], "properties": { "error": { - "type": "string" + "type": "string", + "enum": [ + "breakout-room", + "call", + "value" + ] } } } diff --git a/openapi.json b/openapi.json index b1c4193eef..24c01677c9 100644 --- a/openapi.json +++ b/openapi.json @@ -11175,7 +11175,21 @@ "meta": { "$ref": "#/components/schemas/OCSMeta" }, - "data": {} + "data": { + "type": "object", + "required": [ + "error" + ], + "properties": { + "error": { + "type": "string", + "enum": [ + "type", + "value" + ] + } + } + } } } } @@ -12334,7 +12348,8 @@ "enum": [ "breakout-room", "mode", - "type" + "type", + "value" ] } } @@ -15036,7 +15051,23 @@ "meta": { "$ref": "#/components/schemas/OCSMeta" }, - "data": {} + "data": { + "type": "object", + "required": [ + "error" + ], + "properties": { + "error": { + "type": "string", + "enum": [ + "breakout-room", + "object", + "type", + "value" + ] + } + } + } } } } @@ -15151,8 +15182,8 @@ } } }, - "400": { - "description": "Updating SIP enabled state is not possible", + "401": { + "description": "User not found", "content": { "application/json": { "schema": { @@ -15179,8 +15210,8 @@ } } }, - "401": { - "description": "User not found", + "403": { + "description": "Missing permissions to update SIP enabled state", "content": { "application/json": { "schema": { @@ -15207,8 +15238,8 @@ } } }, - "403": { - "description": "Missing permissions to update SIP enabled state", + "412": { + "description": "SIP not configured", "content": { "application/json": { "schema": { @@ -15235,8 +15266,8 @@ } } }, - "412": { - "description": "SIP not configured", + "400": { + "description": "Updating SIP enabled state is not possible", "content": { "application/json": { "schema": { @@ -15255,7 +15286,23 @@ "meta": { "$ref": "#/components/schemas/OCSMeta" }, - "data": {} + "data": { + "type": "object", + "required": [ + "error" + ], + "properties": { + "error": { + "type": "string", + "enum": [ + "breakout-room", + "token", + "type", + "value" + ] + } + } + } } } } @@ -15392,7 +15439,12 @@ ], "properties": { "error": { - "type": "string" + "type": "string", + "enum": [ + "breakout-room", + "call", + "value" + ] } } } diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index 02bd64a7c1..2bc804d300 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -6516,7 +6516,7 @@ export interface operations { meta: components["schemas"]["OCSMeta"]; data: { /** @enum {string} */ - error: "breakout-room" | "mode" | "type"; + error: "breakout-room" | "mode" | "type" | "value"; }; }; }; @@ -7657,7 +7657,10 @@ export interface operations { "application/json": { ocs: { meta: components["schemas"]["OCSMeta"]; - data: unknown; + data: { + /** @enum {string} */ + error: "breakout-room" | "object" | "type" | "value"; + }; }; }; }; @@ -7713,7 +7716,10 @@ export interface operations { "application/json": { ocs: { meta: components["schemas"]["OCSMeta"]; - data: unknown; + data: { + /** @enum {string} */ + error: "breakout-room" | "token" | "type" | "value"; + }; }; }; }; @@ -7812,7 +7818,8 @@ export interface operations { ocs: { meta: components["schemas"]["OCSMeta"]; data: { - error: string; + /** @enum {string} */ + error: "breakout-room" | "call" | "value"; }; }; }; diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index 9b26544936..f8c06b8417 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -5621,7 +5621,10 @@ export interface operations { "application/json": { ocs: { meta: components["schemas"]["OCSMeta"]; - data: unknown; + data: { + /** @enum {string} */ + error: "type" | "value"; + }; }; }; }; @@ -6094,7 +6097,7 @@ export interface operations { meta: components["schemas"]["OCSMeta"]; data: { /** @enum {string} */ - error: "breakout-room" | "mode" | "type"; + error: "breakout-room" | "mode" | "type" | "value"; }; }; }; @@ -7235,7 +7238,10 @@ export interface operations { "application/json": { ocs: { meta: components["schemas"]["OCSMeta"]; - data: unknown; + data: { + /** @enum {string} */ + error: "breakout-room" | "object" | "type" | "value"; + }; }; }; }; @@ -7291,7 +7297,10 @@ export interface operations { "application/json": { ocs: { meta: components["schemas"]["OCSMeta"]; - data: unknown; + data: { + /** @enum {string} */ + error: "breakout-room" | "token" | "type" | "value"; + }; }; }; }; @@ -7390,7 +7399,8 @@ export interface operations { ocs: { meta: components["schemas"]["OCSMeta"]; data: { - error: string; + /** @enum {string} */ + error: "breakout-room" | "call" | "value"; }; }; };