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
c43930d869
commit
e4e9f72de8
4 changed files with 12 additions and 22 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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} */
|
||||
|
|
|
|||
|
|
@ -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} */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue