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 <coding@schilljs.com>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed Aug 22, 2024
1 parent 456b965 commit 2f22b2c
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 36 deletions.
28 changes: 18 additions & 10 deletions openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -4071,14 +4071,6 @@
"minimum": 0,
"maximum": 15
},
"forcePermissions": {
"type": "integer",
"format": "int64",
"nullable": true,
"description": "In-call permissions",
"minimum": 0,
"maximum": 255
},
"silent": {
"type": "boolean",
"default": false,
Expand Down Expand Up @@ -12138,7 +12130,7 @@
{
"name": "mode",
"in": "path",
"description": "Level of the permissions ('call', 'default')",
"description": "Level of the permissions ('call' (removed in Talk 20), 'default')",
"required": true,
"schema": {
"type": "string",
Expand Down Expand Up @@ -12211,7 +12203,22 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"breakout-room",
"mode",
"type"
]
}
}
}
}
}
}
Expand Down Expand Up @@ -13268,6 +13275,7 @@
"put": {
"operationId": "room-set-all-attendees-permissions",
"summary": "Update the permissions of all attendees",
"deprecated": true,
"tags": [
"room"
],
Expand Down
28 changes: 18 additions & 10 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3958,14 +3958,6 @@
"minimum": 0,
"maximum": 15
},
"forcePermissions": {
"type": "integer",
"format": "int64",
"nullable": true,
"description": "In-call permissions",
"minimum": 0,
"maximum": 255
},
"silent": {
"type": "boolean",
"default": false,
Expand Down Expand Up @@ -12258,7 +12250,7 @@
{
"name": "mode",
"in": "path",
"description": "Level of the permissions ('call', 'default')",
"description": "Level of the permissions ('call' (removed in Talk 20), 'default')",
"required": true,
"schema": {
"type": "string",
Expand Down Expand Up @@ -12331,7 +12323,22 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"breakout-room",
"mode",
"type"
]
}
}
}
}
}
}
Expand Down Expand Up @@ -13388,6 +13395,7 @@
"put": {
"operationId": "room-set-all-attendees-permissions",
"summary": "Update the permissions of all attendees",
"deprecated": true,
"tags": [
"room"
],
Expand Down
17 changes: 9 additions & 8 deletions src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,10 @@ export type paths = {
cookie?: never;
};
get?: never;
/** Update the permissions of all attendees */
/**
* Update the permissions of all attendees
* @deprecated
*/
put: operations["room-set-all-attendees-permissions"];
post?: never;
delete?: never;
Expand Down Expand Up @@ -3277,11 +3280,6 @@ export interface operations {
* @description In-Call flags
*/
flags?: number | null;
/**
* Format: int64
* @description In-call permissions
*/
forcePermissions?: number | null;
/**
* @description Join the call silently
* @default false
Expand Down Expand Up @@ -6476,7 +6474,7 @@ export interface operations {
path: {
apiVersion: "v4";
token: string;
/** @description Level of the permissions ('call', 'default') */
/** @description Level of the permissions ('call' (removed in Talk 20), 'default') */
mode: "call" | "default";
};
cookie?: never;
Expand Down Expand Up @@ -6516,7 +6514,10 @@ export interface operations {
"application/json": {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: unknown;
data: {
/** @enum {string} */
error: "breakout-room" | "mode" | "type";
};
};
};
};
Expand Down
17 changes: 9 additions & 8 deletions src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,10 @@ export type paths = {
cookie?: never;
};
get?: never;
/** Update the permissions of all attendees */
/**
* Update the permissions of all attendees
* @deprecated
*/
put: operations["room-set-all-attendees-permissions"];
post?: never;
delete?: never;
Expand Down Expand Up @@ -2758,11 +2761,6 @@ export interface operations {
* @description In-Call flags
*/
flags?: number | null;
/**
* Format: int64
* @description In-call permissions
*/
forcePermissions?: number | null;
/**
* @description Join the call silently
* @default false
Expand Down Expand Up @@ -6054,7 +6052,7 @@ export interface operations {
path: {
apiVersion: "v4";
token: string;
/** @description Level of the permissions ('call', 'default') */
/** @description Level of the permissions ('call' (removed in Talk 20), 'default') */
mode: "call" | "default";
};
cookie?: never;
Expand Down Expand Up @@ -6094,7 +6092,10 @@ export interface operations {
"application/json": {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: unknown;
data: {
/** @enum {string} */
error: "breakout-room" | "mode" | "type";
};
};
};
};
Expand Down

0 comments on commit 2f22b2c

Please sign in to comment.