diff --git a/CHANGELOG.md b/CHANGELOG.md index b627c2eb..b7026190 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * Added AWS SQS Integration * Added compatibility with typebot v2 * Added endpoint sendPresence +* New Instance Manager ### Fixed diff --git a/README.md b/README.md index c5c4bc37..13e68151 100644 --- a/README.md +++ b/README.md @@ -39,12 +39,13 @@ This code was produced based on the baileys library and it is still under develo -#### Buy me coffe +#### Buy me coffe - PIX
- + +

CHAVE PIX (Telefone): (74)99987-9409


\ No newline at end of file diff --git a/public/images/qrcode-pix.png b/public/images/qrcode-pix.png new file mode 100644 index 00000000..36ef00c6 Binary files /dev/null and b/public/images/qrcode-pix.png differ diff --git a/src/whatsapp/routers/index.router.ts b/src/whatsapp/routers/index.router.ts index fbe28ddd..3dd4492b 100644 --- a/src/whatsapp/routers/index.router.ts +++ b/src/whatsapp/routers/index.router.ts @@ -42,6 +42,7 @@ router message: 'Welcome to the Evolution API, it is working!', version: packageJson.version, documentation: `${req.protocol}://${req.get('host')}/docs`, + manager: `${req.protocol}://${req.get('host')}/manager`, }); }) .use('/instance', new InstanceRouter(configService, ...guards).router) diff --git a/src/whatsapp/services/whatsapp.service.ts b/src/whatsapp/services/whatsapp.service.ts index c45fbf8b..c673d245 100644 --- a/src/whatsapp/services/whatsapp.service.ts +++ b/src/whatsapp/services/whatsapp.service.ts @@ -3423,6 +3423,7 @@ export class WAStartupService { } else { throw new BadRequestException('"profilePicture" must be a url or a base64'); } + await this.client.updateProfilePicture(this.instance.wuid, pic); this.logger.verbose('Profile picture updated');