├── .env.example ├── .gitignore ├── Dockerfile ├── README.MD ├── package.json ├── pnpm-lock.yaml ├── src ├── app.ts ├── application │ └── lead.create.ts ├── domain │ ├── lead-external.repository.ts │ ├── lead.repository.ts │ └── lead.ts └── infrastructure │ ├── controller │ └── lead.ctrl.ts │ ├── ioc.ts │ ├── repositories │ ├── baileys.repository.ts │ ├── meta.repository.ts │ ├── mock.repository.ts │ ├── twilio.repository.ts │ ├── venom.repository.ts │ └── ws.external.ts │ └── router │ ├── index.ts │ └── lead.route.ts ├── tmp └── .gitkeep └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/README.MD -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/application/lead.create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/application/lead.create.ts -------------------------------------------------------------------------------- /src/domain/lead-external.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/domain/lead-external.repository.ts -------------------------------------------------------------------------------- /src/domain/lead.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/domain/lead.repository.ts -------------------------------------------------------------------------------- /src/domain/lead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/domain/lead.ts -------------------------------------------------------------------------------- /src/infrastructure/controller/lead.ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/controller/lead.ctrl.ts -------------------------------------------------------------------------------- /src/infrastructure/ioc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/ioc.ts -------------------------------------------------------------------------------- /src/infrastructure/repositories/baileys.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/repositories/baileys.repository.ts -------------------------------------------------------------------------------- /src/infrastructure/repositories/meta.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/repositories/meta.repository.ts -------------------------------------------------------------------------------- /src/infrastructure/repositories/mock.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/repositories/mock.repository.ts -------------------------------------------------------------------------------- /src/infrastructure/repositories/twilio.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/repositories/twilio.repository.ts -------------------------------------------------------------------------------- /src/infrastructure/repositories/venom.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/repositories/venom.repository.ts -------------------------------------------------------------------------------- /src/infrastructure/repositories/ws.external.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/repositories/ws.external.ts -------------------------------------------------------------------------------- /src/infrastructure/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/router/index.ts -------------------------------------------------------------------------------- /src/infrastructure/router/lead.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/src/infrastructure/router/lead.route.ts -------------------------------------------------------------------------------- /tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leifermendez/api-whatsapp-ts/HEAD/tsconfig.json --------------------------------------------------------------------------------