omni_chat: consume receiver.flow and persist inbound telegram

This commit is contained in:
Ruslan Bakiev
2026-02-22 10:56:20 +07:00
parent 5679f22f7f
commit 2fd97f6593
6 changed files with 1467 additions and 8 deletions

View File

@@ -4,11 +4,17 @@
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"postinstall": "node ./node_modules/prisma/build/index.js generate --schema ./prisma/schema.prisma"
},
"devDependencies": {
"@types/node": "^22.13.9",
"prisma": "^6.16.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"dependencies": {
"@prisma/client": "^6.16.1",
"bullmq": "^5.70.0"
}
}