├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierrc ├── README.md ├── images └── bot.jpeg ├── package.json ├── src ├── .DS_Store ├── components │ ├── Alert.js │ ├── Bot.js │ ├── Session.js │ └── Shell.js ├── config │ └── session.json ├── index.js └── run │ └── Sefaz.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /lib -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/README.md -------------------------------------------------------------------------------- /images/bot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/images/bot.jpeg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/components/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/src/components/Alert.js -------------------------------------------------------------------------------- /src/components/Bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/src/components/Bot.js -------------------------------------------------------------------------------- /src/components/Session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/src/components/Session.js -------------------------------------------------------------------------------- /src/components/Shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/src/components/Shell.js -------------------------------------------------------------------------------- /src/config/session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/src/config/session.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/src/index.js -------------------------------------------------------------------------------- /src/run/Sefaz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/src/run/Sefaz.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedroentringer/bot-whatsapp-services/HEAD/yarn.lock --------------------------------------------------------------------------------