chore(assets): Recompile assets

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2025-09-02 14:26:15 +02:00
parent 22f876b199
commit e957a83e29
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0
8 changed files with 40 additions and 0 deletions

View file

@ -439,6 +439,13 @@
},
"isThread": {
"type": "boolean"
},
"threadTitle": {
"type": "string"
},
"threadReplies": {
"type": "integer",
"format": "int64"
}
}
}

View file

@ -439,6 +439,13 @@
},
"isThread": {
"type": "boolean"
},
"threadTitle": {
"type": "string"
},
"threadReplies": {
"type": "integer",
"format": "int64"
}
}
}

View file

@ -639,6 +639,13 @@
},
"isThread": {
"type": "boolean"
},
"threadTitle": {
"type": "string"
},
"threadReplies": {
"type": "integer",
"format": "int64"
}
}
}

View file

@ -598,6 +598,13 @@
},
"isThread": {
"type": "boolean"
},
"threadTitle": {
"type": "string"
},
"threadReplies": {
"type": "integer",
"format": "int64"
}
}
}

View file

@ -248,6 +248,9 @@ export type components = {
/** Format: int64 */
threadId?: number;
isThread?: boolean;
threadTitle?: string;
/** Format: int64 */
threadReplies?: number;
};
ChatProxyMessage: components["schemas"]["BaseMessage"];
OCSMeta: {

View file

@ -259,6 +259,9 @@ export type components = {
/** Format: int64 */
threadId?: number;
isThread?: boolean;
threadTitle?: string;
/** Format: int64 */
threadReplies?: number;
};
ChatProxyMessage: components["schemas"]["BaseMessage"];
FederationInvite: {

View file

@ -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"];

View file

@ -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"];