├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── README.MD └── examples │ ├── v0 │ ├── command-bot.js │ ├── custom-context-bot.js │ ├── echo-bot.js │ ├── hello-bot.js │ ├── keys-bot.js │ ├── launch-bot.js │ ├── media-bot.js │ └── scene-bot.js │ └── v1 │ ├── hello-bot.js │ ├── media-bot.js │ ├── simple-reg-bot.js │ └── simple-reg-bot.ts ├── package.json └── src ├── api-utils.js ├── composer.js ├── context.js ├── core ├── network │ ├── client.js │ ├── error.js │ ├── multipart-stream.js │ └── webhook.js └── replicators.js ├── extra.js ├── green-api-v0.js ├── green-api-v1.js ├── markup.js ├── router.js ├── scenes ├── base.js ├── context.js └── wizard │ ├── context.js │ └── index.js ├── session.js ├── stage.js ├── telegram.js ├── typings ├── composer.d.ts ├── context.d.ts ├── extra.d.ts ├── green-api-v0.d.ts ├── green-api-v1.d.ts ├── index.d.ts ├── markup.d.ts ├── router.d.ts ├── session.d.ts ├── stage.d.ts ├── telegram-types.d.ts ├── telegram.d.ts └── whatsappbot.d.ts └── whatsappbot.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/README.MD -------------------------------------------------------------------------------- /docs/examples/v0/command-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v0/command-bot.js -------------------------------------------------------------------------------- /docs/examples/v0/custom-context-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v0/custom-context-bot.js -------------------------------------------------------------------------------- /docs/examples/v0/echo-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v0/echo-bot.js -------------------------------------------------------------------------------- /docs/examples/v0/hello-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v0/hello-bot.js -------------------------------------------------------------------------------- /docs/examples/v0/keys-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v0/keys-bot.js -------------------------------------------------------------------------------- /docs/examples/v0/launch-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v0/launch-bot.js -------------------------------------------------------------------------------- /docs/examples/v0/media-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v0/media-bot.js -------------------------------------------------------------------------------- /docs/examples/v0/scene-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v0/scene-bot.js -------------------------------------------------------------------------------- /docs/examples/v1/hello-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v1/hello-bot.js -------------------------------------------------------------------------------- /docs/examples/v1/media-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v1/media-bot.js -------------------------------------------------------------------------------- /docs/examples/v1/simple-reg-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v1/simple-reg-bot.js -------------------------------------------------------------------------------- /docs/examples/v1/simple-reg-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/docs/examples/v1/simple-reg-bot.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/package.json -------------------------------------------------------------------------------- /src/api-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/api-utils.js -------------------------------------------------------------------------------- /src/composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/composer.js -------------------------------------------------------------------------------- /src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/context.js -------------------------------------------------------------------------------- /src/core/network/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/core/network/client.js -------------------------------------------------------------------------------- /src/core/network/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/core/network/error.js -------------------------------------------------------------------------------- /src/core/network/multipart-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/core/network/multipart-stream.js -------------------------------------------------------------------------------- /src/core/network/webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/core/network/webhook.js -------------------------------------------------------------------------------- /src/core/replicators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/core/replicators.js -------------------------------------------------------------------------------- /src/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/extra.js -------------------------------------------------------------------------------- /src/green-api-v0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/green-api-v0.js -------------------------------------------------------------------------------- /src/green-api-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/green-api-v1.js -------------------------------------------------------------------------------- /src/markup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/markup.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/router.js -------------------------------------------------------------------------------- /src/scenes/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/scenes/base.js -------------------------------------------------------------------------------- /src/scenes/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/scenes/context.js -------------------------------------------------------------------------------- /src/scenes/wizard/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/scenes/wizard/context.js -------------------------------------------------------------------------------- /src/scenes/wizard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/scenes/wizard/index.js -------------------------------------------------------------------------------- /src/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/session.js -------------------------------------------------------------------------------- /src/stage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/stage.js -------------------------------------------------------------------------------- /src/telegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/telegram.js -------------------------------------------------------------------------------- /src/typings/composer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/composer.d.ts -------------------------------------------------------------------------------- /src/typings/context.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/context.d.ts -------------------------------------------------------------------------------- /src/typings/extra.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/extra.d.ts -------------------------------------------------------------------------------- /src/typings/green-api-v0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/green-api-v0.d.ts -------------------------------------------------------------------------------- /src/typings/green-api-v1.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/green-api-v1.d.ts -------------------------------------------------------------------------------- /src/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/index.d.ts -------------------------------------------------------------------------------- /src/typings/markup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/markup.d.ts -------------------------------------------------------------------------------- /src/typings/router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/router.d.ts -------------------------------------------------------------------------------- /src/typings/session.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/session.d.ts -------------------------------------------------------------------------------- /src/typings/stage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/stage.d.ts -------------------------------------------------------------------------------- /src/typings/telegram-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/telegram-types.d.ts -------------------------------------------------------------------------------- /src/typings/telegram.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/telegram.d.ts -------------------------------------------------------------------------------- /src/typings/whatsappbot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/typings/whatsappbot.d.ts -------------------------------------------------------------------------------- /src/whatsappbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-api/whatsapp-chatbot-js/HEAD/src/whatsappbot.js --------------------------------------------------------------------------------