chore(assets): Recompile assets

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2025-03-28 15:23:35 +01:00
commit baedd609a5
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0
8 changed files with 32 additions and 4 deletions

View file

@ -588,7 +588,8 @@
"unreadMention",
"unreadMentionDirect",
"unreadMessages",
"isArchived"
"isArchived",
"isImportant"
],
"properties": {
"actorId": {
@ -813,6 +814,10 @@
},
"isArchived": {
"type": "boolean"
},
"isImportant": {
"type": "boolean",
"description": "Required capability: `important-conversations`"
}
}
},

View file

@ -642,7 +642,8 @@
"unreadMention",
"unreadMentionDirect",
"unreadMessages",
"isArchived"
"isArchived",
"isImportant"
],
"properties": {
"actorId": {
@ -867,6 +868,10 @@
},
"isArchived": {
"type": "boolean"
},
"isImportant": {
"type": "boolean",
"description": "Required capability: `important-conversations`"
}
}
},

View file

@ -1242,7 +1242,8 @@
"unreadMention",
"unreadMentionDirect",
"unreadMessages",
"isArchived"
"isArchived",
"isImportant"
],
"properties": {
"actorId": {
@ -1467,6 +1468,10 @@
},
"isArchived": {
"type": "boolean"
},
"isImportant": {
"type": "boolean",
"description": "Required capability: `important-conversations`"
}
}
},

View file

@ -1147,7 +1147,8 @@
"unreadMention",
"unreadMentionDirect",
"unreadMessages",
"isArchived"
"isArchived",
"isImportant"
],
"properties": {
"actorId": {
@ -1372,6 +1373,10 @@
},
"isArchived": {
"type": "boolean"
},
"isImportant": {
"type": "boolean",
"description": "Required capability: `important-conversations`"
}
}
},

View file

@ -353,6 +353,8 @@ export type components = {
/** Format: int64 */
unreadMessages: number;
isArchived: boolean;
/** @description Required capability: `important-conversations` */
isImportant: boolean;
};
RoomLastMessage: components["schemas"]["ChatMessage"] | components["schemas"]["ChatProxyMessage"];
};

View file

@ -400,6 +400,8 @@ export type components = {
/** Format: int64 */
unreadMessages: number;
isArchived: boolean;
/** @description Required capability: `important-conversations` */
isImportant: boolean;
};
RoomLastMessage: components["schemas"]["ChatMessage"] | components["schemas"]["ChatProxyMessage"];
};

View file

@ -2385,6 +2385,8 @@ export type components = {
/** Format: int64 */
unreadMessages: number;
isArchived: boolean;
/** @description Required capability: `important-conversations` */
isImportant: boolean;
};
RoomLastMessage: components["schemas"]["ChatMessage"] | components["schemas"]["ChatProxyMessage"];
RoomWithInvalidInvitations: components["schemas"]["Room"] & {

View file

@ -1867,6 +1867,8 @@ export type components = {
/** Format: int64 */
unreadMessages: number;
isArchived: boolean;
/** @description Required capability: `important-conversations` */
isImportant: boolean;
};
RoomLastMessage: components["schemas"]["ChatMessage"] | components["schemas"]["ChatProxyMessage"];
RoomWithInvalidInvitations: components["schemas"]["Room"] & {