diff --git a/CHANGELOG.md b/CHANGELOG.md index 4393e6d8..1b67354e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ -# 1.6.0 (develop) +# 1.6.1 (develop) + +### Fixed + +* Fixed Lid Messages + +# 1.6.0 (2023-12-12 17:24) ### Feature * Added AWS SQS Integration @@ -13,7 +19,6 @@ * Adjusts in proxy * Adjusts in start session for Typebot * Added mimetype field when sending media -* Fixed lids messages * Ajusts in validations to messages.upsert * Fixed messages not received: error handling when updating contact in chatwoot * Fix workaround to manage param data as an array in mongodb @@ -32,7 +37,7 @@ ### Integrations - Chatwoot: v3.3.1 -- Typebot: v2.16.0 +- Typebot: v2.20.0 # 1.5.4 (2023-10-09 20:43) diff --git a/package.json b/package.json index f2730fe1..19891113 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "@figuro/chatwoot-sdk": "^1.1.16", "@hapi/boom": "^10.0.1", "@sentry/node": "^7.59.2", - "@whiskeysockets/baileys": "github:WhiskeySockets/Baileys#fix-lids", + "@whiskeysockets/baileys": "^6.5.0", "amqplib": "^0.10.3", "aws-sdk": "^2.1499.0", "axios": "^1.3.5", diff --git a/src/config/env.config.ts b/src/config/env.config.ts index 42c8826a..da491505 100644 --- a/src/config/env.config.ts +++ b/src/config/env.config.ts @@ -303,7 +303,7 @@ export class ConfigService { COLOR: process.env.QRCODE_COLOR || '#198754', }, TYPEBOT: { - API_VERSION: process.env?.TYPEBOT_API_VERSION || 'v1', + API_VERSION: process.env?.TYPEBOT_API_VERSION || 'old', }, AUTHENTICATION: { TYPE: process.env.AUTHENTICATION_TYPE as 'apikey', diff --git a/src/dev-env.yml b/src/dev-env.yml index 7c4e2f53..117226a2 100644 --- a/src/dev-env.yml +++ b/src/dev-env.yml @@ -147,7 +147,7 @@ QRCODE: COLOR: "#198754" TYPEBOT: - API_VERSION: 'latest' # old | latest + API_VERSION: 'old' # old | latest # Defines an authentication type for the api # We recommend using the apikey because it will allow you to use a custom token,