({ userId, chatId }: { userId: string; chatId: string })
| 48 | }): Promise<{ newOrUpdatedChat: IChatDocument; initialMessages: IMessageDocument[] }>; |
| 49 | |
| 50 | delete({ userId, chatId }: { userId: string; chatId: string }): Promise<{ teamId: string }>; |
| 51 | |
| 52 | clearHistory({ userId, chatId }: { userId: string; chatId: string }): Promise<{ teamId: string }>; |
| 53 |
no outgoing calls
no test coverage detected