nestjs-telegraf
nestjs-telegraf copied to clipboard
🤖 Powerful Nest module for easy and fast creation Telegram bots
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.54.0 to 6.8.0. Release notes Sourced from @typescript-eslint/eslint-plugin's releases. v6.8.0 6.8.0 (2023-10-16) Bug Fixes eslint-plugin: [consistent-type-imports] import assertion checks added (#7722) (afdae37) eslint-plugin: [no-shadow] fix static class...
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.14.7 to 7.23.2. Release notes Sourced from @babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...
Hello every body, I am encountering an issue with my Telegraf bot integrated into a NestJS application. When the bot encounters an error, it causes my entire application to crash,...
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.27 to 8.4.31. Release notes Sourced from postcss's releases. 8.4.31 Fixed \r parsing to fix CVE-2023-44270. 8.4.30 Improved source map performance (by @romainmenke). 8.4.29 Fixed Node#source.offset (by...
I am always annoyed when my app is deployed to Vercel which is serverless (so the app must be started at every function call), there's always a chance for the...
### Issue: Found an issue with `middlewares`: regular `middlewares` doesn't fire when the user moves through scenes. ### Solution: Add a `UseStage` decorator that will work similar to the `Use`...
``` import { Ctx, Message, On, Wizard, WizardStep } from 'nestjs-telegraf'; import { WizardContext } from 'telegraf/typings/scenes'; import { FONT_SCENE_ID } from '../../../constants/app.constants'; import { Markup } from 'telegraf'; const...
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 8.8.0 to 9.0.0. Changelog Sourced from eslint-config-prettier's changelog. Version 9.0.0 (2023-08-05) Added: The CLI helper tool now works with eslint.config.js (flat config). Just like ESLint itself, the...
Example code: ```ts export class AppModule implements NestModule { constructor(private lazyModuleLoader: LazyModuleLoader) {} onModuleInit() { this.lazyModuleLoader.load(() => TelegrafModule.forRootAsync({ useFactory: async () => ({ token: config.bot.token }), }) ); } }...
I am using telegraf-test library for e2e testing. It is my first experience, and I dont know which libraries may be better for that. After including webhook to the server...