send messages to telegram from RQCP (ReadQrcodeChatPage) with link to MQCP (ManageQrcodeChatPage)
Deploy app frontend / app frontend (push) Successful in 2m43s
Deploy db-migrations / db-migrations (push) Successful in 1m8s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Successful in 1m30s
Deploy service tg-bot / service tg-bot (push) Failing after 1m54s

This commit is contained in:
2024-12-14 23:58:29 +02:00
parent 90fe585ff8
commit d71b405277
22 changed files with 396 additions and 127 deletions
+6 -4
View File
@@ -2,7 +2,7 @@
"name": "@hereconnect/service-tg-bot",
"version": "1.0.0",
"description": "",
"main": "dist/server.ts",
"main": "dist/service.js",
"type": "module",
"license": "@hereconnect/license",
"private": true,
@@ -29,17 +29,18 @@
"contributors": [],
"scripts": {
"build": "tsc",
"dev": "tsx src/bot/index.ts",
"dev:watch": "tsx --watch src/bot/index.ts",
"dev": "tsx src/service.ts",
"dev:watch": "tsx --watch src/service.ts",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"validate": "npm run type-check && npm run lint",
"start": "node --import=extensionless/register dist/bot/index.js"
"start": "node --import=extensionless/register dist/service.js"
},
"dependencies": {
"@grammyjs/conversations": "^1.2.0",
"@grammyjs/parse-mode": "^1.10.0",
"@hereconnect/constants": "workspace:^",
"@hereconnect/couchdb-changes-stream": "workspace:^",
"@hereconnect/lib-service-health-checkserver": "workspace:^",
@@ -71,6 +72,7 @@
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"tsx": "^4.19.2",
"type-fest": "^4.30.1",
"typescript": "^5.7.2"
}
}