├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .github ├── FUNDING.yml ├── assets │ └── logo.png └── workflows │ └── lint.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs └── ARCHITECTURE.md ├── module.d.ts ├── package.json ├── renovate.json ├── src ├── app │ ├── commands │ │ ├── CepCommand.ts │ │ ├── EconomyCommand.ts │ │ ├── HelpCommand.ts │ │ ├── ProfileCommand.ts │ │ ├── QuoteCommand.ts │ │ ├── SmsCommand.ts │ │ └── index.ts │ ├── interfaces │ │ ├── Cep.ts │ │ └── ICommand.ts │ └── utils │ │ ├── BaseCommand.ts │ │ └── CommandDispatcher.ts ├── config │ └── integrantes.json ├── data │ └── .gitkeep ├── index.ts └── services │ ├── mobizon.ts │ └── whatsapp.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [caioagiani] 2 | -------------------------------------------------------------------------------- /.github/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/.github/assets/logo.png -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/README.md -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /module.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'qrcode-terminal'; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/renovate.json -------------------------------------------------------------------------------- /src/app/commands/CepCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/commands/CepCommand.ts -------------------------------------------------------------------------------- /src/app/commands/EconomyCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/commands/EconomyCommand.ts -------------------------------------------------------------------------------- /src/app/commands/HelpCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/commands/HelpCommand.ts -------------------------------------------------------------------------------- /src/app/commands/ProfileCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/commands/ProfileCommand.ts -------------------------------------------------------------------------------- /src/app/commands/QuoteCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/commands/QuoteCommand.ts -------------------------------------------------------------------------------- /src/app/commands/SmsCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/commands/SmsCommand.ts -------------------------------------------------------------------------------- /src/app/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/commands/index.ts -------------------------------------------------------------------------------- /src/app/interfaces/Cep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/interfaces/Cep.ts -------------------------------------------------------------------------------- /src/app/interfaces/ICommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/interfaces/ICommand.ts -------------------------------------------------------------------------------- /src/app/utils/BaseCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/utils/BaseCommand.ts -------------------------------------------------------------------------------- /src/app/utils/CommandDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/app/utils/CommandDispatcher.ts -------------------------------------------------------------------------------- /src/config/integrantes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/config/integrantes.json -------------------------------------------------------------------------------- /src/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/services/mobizon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/services/mobizon.ts -------------------------------------------------------------------------------- /src/services/whatsapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/src/services/whatsapp.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caioagiani/whatsapp-bot/HEAD/tsconfig.json --------------------------------------------------------------------------------