Skip to content

Commit

Permalink
chore(assets): Recompile assets
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Aug 28, 2024
1 parent 26bd4a6 commit a14af78
Show file tree
Hide file tree
Showing 4 changed files with 141 additions and 34 deletions.
62 changes: 50 additions & 12 deletions openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -12214,7 +12214,8 @@
"enum": [
"breakout-room",
"mode",
"type"
"type",
"value"
]
}
}
Expand Down Expand Up @@ -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"
]
}
}
}
}
}
}
Expand Down Expand Up @@ -15031,8 +15048,8 @@
}
}
},
"400": {
"description": "Updating SIP enabled state is not possible",
"401": {
"description": "User not found",
"content": {
"application/json": {
"schema": {
Expand All @@ -15059,8 +15076,8 @@
}
}
},
"401": {
"description": "User not found",
"403": {
"description": "Missing permissions to update SIP enabled state",
"content": {
"application/json": {
"schema": {
Expand All @@ -15087,8 +15104,8 @@
}
}
},
"403": {
"description": "Missing permissions to update SIP enabled state",
"412": {
"description": "SIP not configured",
"content": {
"application/json": {
"schema": {
Expand All @@ -15115,8 +15132,8 @@
}
}
},
"412": {
"description": "SIP not configured",
"400": {
"description": "Updating SIP enabled state is not possible",
"content": {
"application/json": {
"schema": {
Expand All @@ -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"
]
}
}
}
}
}
}
Expand Down Expand Up @@ -15272,7 +15305,12 @@
],
"properties": {
"error": {
"type": "string"
"type": "string",
"enum": [
"breakout-room",
"call",
"value"
]
}
}
}
Expand Down
78 changes: 65 additions & 13 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -11175,7 +11175,21 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"type",
"value"
]
}
}
}
}
}
}
Expand Down Expand Up @@ -12334,7 +12348,8 @@
"enum": [
"breakout-room",
"mode",
"type"
"type",
"value"
]
}
}
Expand Down Expand Up @@ -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"
]
}
}
}
}
}
}
Expand Down Expand Up @@ -15151,8 +15182,8 @@
}
}
},
"400": {
"description": "Updating SIP enabled state is not possible",
"401": {
"description": "User not found",
"content": {
"application/json": {
"schema": {
Expand All @@ -15179,8 +15210,8 @@
}
}
},
"401": {
"description": "User not found",
"403": {
"description": "Missing permissions to update SIP enabled state",
"content": {
"application/json": {
"schema": {
Expand All @@ -15207,8 +15238,8 @@
}
}
},
"403": {
"description": "Missing permissions to update SIP enabled state",
"412": {
"description": "SIP not configured",
"content": {
"application/json": {
"schema": {
Expand All @@ -15235,8 +15266,8 @@
}
}
},
"412": {
"description": "SIP not configured",
"400": {
"description": "Updating SIP enabled state is not possible",
"content": {
"application/json": {
"schema": {
Expand All @@ -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"
]
}
}
}
}
}
}
Expand Down Expand Up @@ -15392,7 +15439,12 @@
],
"properties": {
"error": {
"type": "string"
"type": "string",
"enum": [
"breakout-room",
"call",
"value"
]
}
}
}
Expand Down
15 changes: 11 additions & 4 deletions src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
};
};
};
Expand Down Expand Up @@ -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";
};
};
};
};
Expand Down Expand Up @@ -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";
};
};
};
};
Expand Down Expand Up @@ -7812,7 +7818,8 @@ export interface operations {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: {
error: string;
/** @enum {string} */
error: "breakout-room" | "call" | "value";
};
};
};
Expand Down
20 changes: 15 additions & 5 deletions src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5621,7 +5621,10 @@ export interface operations {
"application/json": {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: unknown;
data: {
/** @enum {string} */
error: "type" | "value";
};
};
};
};
Expand Down Expand Up @@ -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";
};
};
};
Expand Down Expand Up @@ -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";
};
};
};
};
Expand Down Expand Up @@ -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";
};
};
};
};
Expand Down Expand Up @@ -7390,7 +7399,8 @@ export interface operations {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: {
error: string;
/** @enum {string} */
error: "breakout-room" | "call" | "value";
};
};
};
Expand Down

0 comments on commit a14af78

Please sign in to comment.