Fixed get_conversations

This commit is contained in:
Alois 2026-03-27 00:13:11 +00:00
commit 294205e873
3 changed files with 4 additions and 2 deletions

View file

@ -4,6 +4,7 @@ export const conversation = z.object({
user_id: z.number(),
calls: z.array(z.uuidv4()).optional(),
last_message_at: z.number(),
username: z.string().optional(), // Todo: Remove this
});
export const community = z.object({