feat: Add NATS integration and update Baileys service

- Create Nats table in PostgreSQL migration
- Disable message recovery logic in Baileys service
- Remove console log in instance creation route
This commit is contained in:
Davidson Gomes
2025-02-25 15:42:40 -03:00
parent b58d9e957f
commit 8a54efe11c
3 changed files with 30 additions and 14 deletions

View File

@@ -15,7 +15,6 @@ export class InstanceRouter extends RouterBroker {
super();
this.router
.post('/create', ...guards, async (req, res) => {
console.log('create instance', req.body);
const response = await this.dataValidate<InstanceDto>({
request: req,
schema: instanceSchema,