Browse Source

chore(assets): Recompile assets

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/13167/head
Joas Schilling 1 year ago
parent
commit
a14af787f1
No known key found for this signature in database GPG Key ID: 74434EFE0D2E2205
  1. 62
      openapi-full.json
  2. 78
      openapi.json
  3. 15
      src/types/openapi/openapi-full.ts
  4. 20
      src/types/openapi/openapi.ts

62
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"
]
}
}
}

78
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"
]
}
}
}

15
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";
};
};
};

20
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";
};
};
};

Loading…
Cancel
Save