chore: Updated dependencies and added new manager

In this commit, the following changes were made:

- Updated the version of the project to 2.0.4-beta.
- Added the new manager with version 2.0.0.
- Updated the Baileys version.
- Modified several files such as CHANGELOG.md, Dockerfile, package.json, src/api/routes/index.router.ts, and src/api/routes/view.router.ts.
- Deleted the views/manager.hbs file and added the manager/ folder.

These changes update the dependencies and include a new manager, which may impact the application's functionality.
This commit is contained in:
Davidson Gomes
2024-07-30 09:17:49 -03:00
parent 5047e6281a
commit 95bc5e6b21
10 changed files with 403 additions and 44 deletions

View File

@@ -3,7 +3,7 @@ FROM node:20-alpine AS builder
RUN apk update && \
apk add git ffmpeg wget curl bash
LABEL version="2.0.0" description="Api to control whatsapp features through http requests."
LABEL version="2.0.4-beta" description="Api to control whatsapp features through http requests."
LABEL maintainer="Davidson Gomes" git="https://github.com/DavidsonGomes"
LABEL contact="contato@agenciadgcode.com"
@@ -16,7 +16,7 @@ RUN npm install
COPY ./src ./src
COPY ./public ./public
COPY ./prisma ./prisma
COPY ./views ./views
COPY ./manager ./manager
COPY ./.env.example ./.env
COPY ./Docker ./Docker
@@ -43,8 +43,8 @@ RUN npm install --omit=dev
COPY --from=builder /evolution/dist ./dist
COPY --from=builder /evolution/prisma ./prisma
COPY --from=builder /evolution/manager ./manager
COPY --from=builder /evolution/public ./public
COPY --from=builder /evolution/views ./views
COPY --from=builder /evolution/.env ./.env
COPY --from=builder /evolution/Docker ./Docker