Browse Source

chore(assets): Recompile assets

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

28
openapi-full.json

@ -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,
@ -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",
@ -12211,7 +12203,22 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"breakout-room",
"mode",
"type"
]
}
}
}
}
}
}
@ -13268,6 +13275,7 @@
"put": {
"operationId": "room-set-all-attendees-permissions",
"summary": "Update the permissions of all attendees",
"deprecated": true,
"tags": [
"room"
],

28
openapi.json

@ -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,
@ -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",
@ -12331,7 +12323,22 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"breakout-room",
"mode",
"type"
]
}
}
}
}
}
}
@ -13388,6 +13395,7 @@
"put": {
"operationId": "room-set-all-attendees-permissions",
"summary": "Update the permissions of all attendees",
"deprecated": true,
"tags": [
"room"
],

17
src/types/openapi/openapi-full.ts

@ -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;
@ -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
@ -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;
@ -6516,7 +6514,10 @@ export interface operations {
"application/json": {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: unknown;
data: {
/** @enum {string} */
error: "breakout-room" | "mode" | "type";
};
};
};
};

17
src/types/openapi/openapi.ts

@ -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;
@ -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
@ -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;
@ -6094,7 +6092,10 @@ export interface operations {
"application/json": {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: unknown;
data: {
/** @enum {string} */
error: "breakout-room" | "mode" | "type";
};
};
};
};

Loading…
Cancel
Save