15 lines
278 B
TypeScript
15 lines
278 B
TypeScript
export interface GetUserChatsQuery {
|
|
userId: string;
|
|
includeArchived?: boolean;
|
|
}
|
|
|
|
export interface GetChatHistoryQuery {
|
|
chatId: string;
|
|
userId: string; // For authorization
|
|
}
|
|
|
|
export interface GetArchivedChatsQuery {
|
|
userId: string;
|
|
gameId?: string;
|
|
}
|