export type SendMessageInput = { content: string; userId: string; reply?: boolean; replyTo?: string | null; }; export type UserProfile = { id: string; username: string | null | undefined; }; export type SendMessageInput = { content: string; createdAt: string; author: { id: string; username: string; }; };