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 committed Aug 22, 2024
1 parent a7819ab commit d3da61f
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 8 deletions.
19 changes: 17 additions & 2 deletions openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -12138,7 +12138,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 +12211,22 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"breakout-room",
"mode",
"type"
]
}
}
}
}
}
}
Expand Down
19 changes: 17 additions & 2 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -12258,7 +12258,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 +12331,22 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "string",
"enum": [
"breakout-room",
"mode",
"type"
]
}
}
}
}
}
}
Expand Down
7 changes: 5 additions & 2 deletions src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6476,7 +6476,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 +6516,10 @@ export interface operations {
"application/json": {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: unknown;
data: {
/** @enum {string} */
error: "breakout-room" | "mode" | "type";
};
};
};
};
Expand Down
7 changes: 5 additions & 2 deletions src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6054,7 +6054,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 +6094,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 d3da61f

Please sign in to comment.