mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
chore(assets): Recompile assets
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
22f876b199
commit
e957a83e29
8 changed files with 40 additions and 0 deletions
|
|
@ -439,6 +439,13 @@
|
|||
},
|
||||
"isThread": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"threadTitle": {
|
||||
"type": "string"
|
||||
},
|
||||
"threadReplies": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -439,6 +439,13 @@
|
|||
},
|
||||
"isThread": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"threadTitle": {
|
||||
"type": "string"
|
||||
},
|
||||
"threadReplies": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -639,6 +639,13 @@
|
|||
},
|
||||
"isThread": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"threadTitle": {
|
||||
"type": "string"
|
||||
},
|
||||
"threadReplies": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -598,6 +598,13 @@
|
|||
},
|
||||
"isThread": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"threadTitle": {
|
||||
"type": "string"
|
||||
},
|
||||
"threadReplies": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -248,6 +248,9 @@ export type components = {
|
|||
/** Format: int64 */
|
||||
threadId?: number;
|
||||
isThread?: boolean;
|
||||
threadTitle?: string;
|
||||
/** Format: int64 */
|
||||
threadReplies?: number;
|
||||
};
|
||||
ChatProxyMessage: components["schemas"]["BaseMessage"];
|
||||
OCSMeta: {
|
||||
|
|
|
|||
|
|
@ -259,6 +259,9 @@ export type components = {
|
|||
/** Format: int64 */
|
||||
threadId?: number;
|
||||
isThread?: boolean;
|
||||
threadTitle?: string;
|
||||
/** Format: int64 */
|
||||
threadReplies?: number;
|
||||
};
|
||||
ChatProxyMessage: components["schemas"]["BaseMessage"];
|
||||
FederationInvite: {
|
||||
|
|
|
|||
|
|
@ -2417,6 +2417,9 @@ export type components = {
|
|||
/** Format: int64 */
|
||||
threadId?: number;
|
||||
isThread?: boolean;
|
||||
threadTitle?: string;
|
||||
/** Format: int64 */
|
||||
threadReplies?: number;
|
||||
};
|
||||
ChatMessageWithParent: components["schemas"]["ChatMessage"] & {
|
||||
parent?: components["schemas"]["ChatMessage"] | components["schemas"]["DeletedChatMessage"];
|
||||
|
|
|
|||
|
|
@ -1895,6 +1895,9 @@ export type components = {
|
|||
/** Format: int64 */
|
||||
threadId?: number;
|
||||
isThread?: boolean;
|
||||
threadTitle?: string;
|
||||
/** Format: int64 */
|
||||
threadReplies?: number;
|
||||
};
|
||||
ChatMessageWithParent: components["schemas"]["ChatMessage"] & {
|
||||
parent?: components["schemas"]["ChatMessage"] | components["schemas"]["DeletedChatMessage"];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue