mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
chore(assets): Recompile assets
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
7c8e3bc5aa
commit
baedd609a5
8 changed files with 32 additions and 4 deletions
|
|
@ -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`"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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`"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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`"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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`"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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"];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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"];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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"] & {
|
||||
|
|
|
|||
|
|
@ -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"] & {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue