├── .env.exemplo ├── .gitignore ├── README.md ├── coffee-qrcode.png ├── minios3.png ├── n8nwebhook.png ├── package.json ├── scripts └── install.sh ├── src ├── config │ └── index.ts ├── index.ts ├── services │ ├── fileService.ts │ ├── storageService.ts │ └── webhookService.ts └── utils │ └── cronJobs.ts ├── teste.sh └── tsconfig.json /.env.exemplo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/.env.exemplo -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/README.md -------------------------------------------------------------------------------- /coffee-qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/coffee-qrcode.png -------------------------------------------------------------------------------- /minios3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/minios3.png -------------------------------------------------------------------------------- /n8nwebhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/n8nwebhook.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/package.json -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/services/fileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/src/services/fileService.ts -------------------------------------------------------------------------------- /src/services/storageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/src/services/storageService.ts -------------------------------------------------------------------------------- /src/services/webhookService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/src/services/webhookService.ts -------------------------------------------------------------------------------- /src/utils/cronJobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/src/utils/cronJobs.ts -------------------------------------------------------------------------------- /teste.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/teste.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilhermejansen/whaticket_deep_cleaning/HEAD/tsconfig.json --------------------------------------------------------------------------------