├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── auto-merge.yml ├── dependabot.yml ├── stale.yml └── workflows │ ├── dependabot-automerge.yml │ └── test-and-release.yml ├── .gitignore ├── .npmignore ├── .releaseconfig.json ├── LICENSE ├── README.md ├── admin ├── admin.d.ts ├── blockly.js ├── i18n │ ├── de │ │ └── translations.json │ ├── en │ │ └── translations.json │ ├── es │ │ └── translations.json │ ├── fr │ │ └── translations.json │ ├── it │ │ └── translations.json │ ├── nl │ │ └── translations.json │ ├── pl │ │ └── translations.json │ ├── pt │ │ └── translations.json │ ├── ru │ │ └── translations.json │ ├── uk │ │ └── translations.json │ └── zh-cn │ │ └── translations.json ├── index_m.html ├── style.css ├── tsconfig.json ├── whatsapp-cmb.png └── words.js ├── img ├── blockly.png └── whatsapp.jpg ├── io-package.json ├── lib └── adapter-config.d.ts ├── main.js ├── package.json ├── test ├── .mocharc.json ├── integration.js ├── mocha.custom.opts ├── mocha.setup.js ├── package.js ├── tsconfig.json └── unit.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.github/workflows/dependabot-automerge.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.github/workflows/test-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/.npmignore -------------------------------------------------------------------------------- /.releaseconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["iobroker", "license"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/README.md -------------------------------------------------------------------------------- /admin/admin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/admin.d.ts -------------------------------------------------------------------------------- /admin/blockly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/blockly.js -------------------------------------------------------------------------------- /admin/i18n/de/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/de/translations.json -------------------------------------------------------------------------------- /admin/i18n/en/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/en/translations.json -------------------------------------------------------------------------------- /admin/i18n/es/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/es/translations.json -------------------------------------------------------------------------------- /admin/i18n/fr/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/fr/translations.json -------------------------------------------------------------------------------- /admin/i18n/it/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/it/translations.json -------------------------------------------------------------------------------- /admin/i18n/nl/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/nl/translations.json -------------------------------------------------------------------------------- /admin/i18n/pl/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/pl/translations.json -------------------------------------------------------------------------------- /admin/i18n/pt/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/pt/translations.json -------------------------------------------------------------------------------- /admin/i18n/ru/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/ru/translations.json -------------------------------------------------------------------------------- /admin/i18n/uk/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/uk/translations.json -------------------------------------------------------------------------------- /admin/i18n/zh-cn/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/i18n/zh-cn/translations.json -------------------------------------------------------------------------------- /admin/index_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/index_m.html -------------------------------------------------------------------------------- /admin/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/style.css -------------------------------------------------------------------------------- /admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/tsconfig.json -------------------------------------------------------------------------------- /admin/whatsapp-cmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/whatsapp-cmb.png -------------------------------------------------------------------------------- /admin/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/admin/words.js -------------------------------------------------------------------------------- /img/blockly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/img/blockly.png -------------------------------------------------------------------------------- /img/whatsapp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/img/whatsapp.jpg -------------------------------------------------------------------------------- /io-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/io-package.json -------------------------------------------------------------------------------- /lib/adapter-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/lib/adapter-config.d.ts -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/package.json -------------------------------------------------------------------------------- /test/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/test/.mocharc.json -------------------------------------------------------------------------------- /test/integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/test/integration.js -------------------------------------------------------------------------------- /test/mocha.custom.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/test/mocha.custom.opts -------------------------------------------------------------------------------- /test/mocha.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/test/mocha.setup.js -------------------------------------------------------------------------------- /test/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/test/package.js -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/test/unit.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioBroker/ioBroker.whatsapp-cmb/HEAD/tsconfig.json --------------------------------------------------------------------------------