feat: add conversation entries API (#148)

This commit is contained in:
2026-06-18 17:19:47 +01:00
committed by GitHub
parent 6cc0f7669a
commit 769fd5c77d
5 changed files with 327 additions and 27 deletions

View File

@@ -0,0 +1,11 @@
export class ConversationNotFoundError extends Error {
readonly conversationId: string
readonly userId: string
constructor(conversationId: string, userId: string) {
super(`Conversation "${conversationId}" not found for user "${userId}"`)
this.name = "ConversationNotFoundError"
this.conversationId = conversationId
this.userId = userId
}
}