This commit is contained in:
2025-09-28 07:46:11 -04:00
parent d55049dfc4
commit a5e7fa4bc6
17 changed files with 687 additions and 1096 deletions

View File

@@ -88,10 +88,16 @@ export interface Message {
createdAt: string;
deleted: boolean;
updatedAt: string;
replyToId?: string | null;
replies: MessageReply;
user?: BackendUser;
}
export interface MessageReply {
id: string;
repliesToId: string;
repliesToText: string;
}
// Enhanced fetch wrapper with auth and error handling
export class ApiClient {
private baseUrl: string;