├── .env.example ├── .gitignore ├── README.md ├── package.json ├── src ├── controllers │ └── ConversationController.ts ├── index.ts ├── languages │ └── translations.ts ├── models │ └── ConversationFlow.ts ├── services │ ├── LanguageManager.ts │ └── WhatsAppService.ts └── utils │ └── helpers.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/package.json -------------------------------------------------------------------------------- /src/controllers/ConversationController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/src/controllers/ConversationController.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/languages/translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/src/languages/translations.ts -------------------------------------------------------------------------------- /src/models/ConversationFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/src/models/ConversationFlow.ts -------------------------------------------------------------------------------- /src/services/LanguageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/src/services/LanguageManager.ts -------------------------------------------------------------------------------- /src/services/WhatsAppService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/src/services/WhatsAppService.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchukwuemeka424/whatsapp-chatbot/HEAD/tsconfig.json --------------------------------------------------------------------------------