madcam

Results 9 comments of madcam

hi, A break has been introduced in this version. https://github.com/bamada/nest-slack-bolt/releases/tag/1.0.0 Please check whether you have updated the module import as follows ` imports: [SlackModule.forRoot()],`

I ran a test with the latest version of the module `1.1.1` and Nestjs `v10.3.2`. I didn't get any error. Could you tell me which version you use for Nestjs...

In your implementation, you don't take into account the `challenge` part that is not managed by this module. doc: https://api.slack.com/events/url_verification Moreover, you can also use [@Event](https://github.com/bamada/nest-slack-bolt?tab=readme-ov-file#handling-an-event) annotation to subscribe to...

After a few investigations, I considered several potential solutions to this problem: 1. Creating a custom scope that mimics REQUEST scope but works with Slack events. 2. Implementing a middleware...

Hi, sorry for the delay. Were you able to fix the issue? If not, could you please provide steps to reproduce it? I haven't encountered this error before.

Thanks for your interest in this module! This issue is related to the Slack Bolt library itself. There's an ongoing [GitHub issue](https://github.com/slackapi/bolt-js/issues/796) that addresses this exact TypeScript typing problem. The...

Hi, sorry for the delay. Here are the relevant versions from my package.json dependencies: "dependencies": { "@nestjs/common": "^10.0.0 || ^11.0.0", "@nestjs/config": "4.0.2", "@nestjs/core": "^10.0.0 || ^11.0.0", "@slack/bolt": "4.2.1", "reflect-metadata": "0.2.2"...

I'm going to fix it thanks for the report

> I tested the `nestjs-slack-bolt@^1.3.1` version and it works fine! Thanks @bamada! Thanks