buster/packages/database/src/queries/chats/index.ts

21 lines
401 B
TypeScript

// Export all chat-related functionality
export {
createChat,
updateChat,
getChatWithDetails,
createMessage,
CreateChatInputSchema,
GetChatInputSchema,
CreateMessageInputSchema,
type CreateChatInput,
type GetChatInput,
type CreateMessageInput,
type Chat,
} from './chats';
export {
getChatTitle,
GetChatTitleInputSchema,
type GetChatTitleInput,
} from './get-chat-title';