chore(assets): Recompile assets

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2024-07-24 09:55:15 +02:00
commit e4e9f72de8
No known key found for this signature in database
GPG key ID: 74434EFE0D2E2205
4 changed files with 12 additions and 22 deletions

View file

@ -391,11 +391,7 @@
"id",
"label",
"source",
"mentionId",
"status",
"statusClearAt",
"statusIcon",
"statusMessage"
"mentionId"
],
"properties": {
"id": {
@ -411,8 +407,7 @@
"type": "string"
},
"status": {
"type": "string",
"nullable": true
"type": "string"
},
"statusClearAt": {
"type": "integer",

View file

@ -332,11 +332,7 @@
"id",
"label",
"source",
"mentionId",
"status",
"statusClearAt",
"statusIcon",
"statusMessage"
"mentionId"
],
"properties": {
"id": {
@ -352,8 +348,7 @@
"type": "string"
},
"status": {
"type": "string",
"nullable": true
"type": "string"
},
"statusClearAt": {
"type": "integer",

View file

@ -635,11 +635,11 @@ export type components = {
label: string;
source: string;
mentionId: string;
status: string | null;
status?: string;
/** Format: int64 */
statusClearAt: number | null;
statusIcon: string | null;
statusMessage: string | null;
statusClearAt?: number | null;
statusIcon?: string | null;
statusMessage?: string | null;
};
ChatMessage: components["schemas"]["BaseMessage"] & {
/** @enum {boolean} */

View file

@ -474,11 +474,11 @@ export type components = {
label: string;
source: string;
mentionId: string;
status: string | null;
status?: string;
/** Format: int64 */
statusClearAt: number | null;
statusIcon: string | null;
statusMessage: string | null;
statusClearAt?: number | null;
statusIcon?: string | null;
statusMessage?: string | null;
};
ChatMessage: components["schemas"]["BaseMessage"] & {
/** @enum {boolean} */