♻️ Export bot-engine code into its own package
This commit is contained in:
13
packages/bot-engine/queries/getSession.ts
Normal file
13
packages/bot-engine/queries/getSession.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import prisma from '@typebot.io/lib/prisma'
|
||||
import { ChatSession, sessionStateSchema } from '@typebot.io/schemas'
|
||||
|
||||
export const getSession = async (
|
||||
sessionId: string
|
||||
): Promise<Pick<ChatSession, 'state' | 'id'> | null> => {
|
||||
const session = await prisma.chatSession.findUnique({
|
||||
where: { id: sessionId },
|
||||
select: { id: true, state: true },
|
||||
})
|
||||
if (!session) return null
|
||||
return { ...session, state: sessionStateSchema.parse(session.state) }
|
||||
}
|
||||
Reference in New Issue
Block a user