diff --git a/CHANGELOG.md b/CHANGELOG.md index 84d7cb59..e6496521 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ ### Fixed * Fix on get profilePicture +* Added S3_REGION on minio settings # 2.0.9 (2024-08-15 12:31) diff --git a/Dockerfile b/Dockerfile index 5a22601a..27b6333c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:20-alpine AS builder RUN apk update && \ apk add git ffmpeg wget curl bash -LABEL version="2.0.9" description="Api to control whatsapp features through http requests." +LABEL version="2.0.10" description="Api to control whatsapp features through http requests." LABEL maintainer="Davidson Gomes" git="https://github.com/DavidsonGomes" LABEL contact="contato@agenciadgcode.com" diff --git a/src/api/dto/chat.dto.ts b/src/api/dto/chat.dto.ts index 00da7fdd..fc2ff5d3 100644 --- a/src/api/dto/chat.dto.ts +++ b/src/api/dto/chat.dto.ts @@ -1,11 +1,4 @@ -import { - proto, - WAPresence, - WAPrivacyGroupAddValue, - WAPrivacyOnlineValue, - WAPrivacyValue, - WAReadReceiptsValue, -} from 'baileys'; +import { proto, WAPresence, WAPrivacyOnlineValue, WAPrivacyValue, WAReadReceiptsValue } from 'baileys'; export class OnWhatsAppDto { constructor( @@ -91,7 +84,7 @@ export class PrivacySettingDto { status: WAPrivacyValue; online: WAPrivacyOnlineValue; last: WAPrivacyValue; - groupadd: WAPrivacyGroupAddValue; + groupadd: WAPrivacyValue; } export class DeleteMessage {