├── .env.sample ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc.js ├── .vscode └── launch.json ├── README.md ├── asset ├── arrows.png ├── bot.jpg ├── curved-arrow.png ├── db_schema.png ├── donation.jpg ├── image.jpg ├── sticker.webp └── style.css ├── index.html ├── package.json ├── src ├── bot.ts ├── commands │ ├── admins │ │ ├── add.ts │ │ ├── adminList.ts │ │ ├── badgeAdd.ts │ │ ├── badgeRemove.ts │ │ ├── bday.ts │ │ ├── blacklist.ts │ │ ├── blacklistAdd.ts │ │ ├── blacklistRemove.ts │ │ ├── demote.ts │ │ ├── disable.ts │ │ ├── enable.ts │ │ ├── expertAdd.ts │ │ ├── expertRemove.ts │ │ ├── mute.ts │ │ ├── promote.ts │ │ ├── remove.ts │ │ ├── rt.ts │ │ ├── setLink.ts │ │ ├── tagAll.ts │ │ ├── today.ts │ │ ├── unmute.ts │ │ ├── warn.ts │ │ ├── warnClear.ts │ │ ├── warnList.ts │ │ ├── warnListAll.ts │ │ ├── warnReduce.ts │ │ └── websiteLink.ts │ ├── coc │ │ ├── addCocTag.ts │ │ ├── clan.ts │ │ ├── clanMembers.ts │ │ ├── cocDetails.ts │ │ └── tagClan.ts │ ├── members │ │ ├── ai.ts │ │ ├── badge.ts │ │ ├── checkVote.ts │ │ ├── count.ts │ │ ├── expert.ts │ │ ├── fb.ts │ │ ├── gender.ts │ │ ├── horo.ts │ │ ├── image.ts │ │ ├── imageSearch.ts │ │ ├── insta.ts │ │ ├── movie.ts │ │ ├── pvxStats.ts │ │ ├── pvxg.ts │ │ ├── pvxgg.ts │ │ ├── pvxm.ts │ │ ├── pvxt.ts │ │ ├── pvxt5.ts │ │ ├── pvxtm.ts │ │ ├── pvxtt.ts │ │ ├── pvxv.ts │ │ ├── quote.ts │ │ ├── rank.ts │ │ ├── ranks.ts │ │ ├── rules.ts │ │ ├── score.ts │ │ ├── scoreCard.ts │ │ ├── song.ts │ │ ├── startVote.ts │ │ ├── startc.ts │ │ ├── sticker.ts │ │ ├── stickerSearch.ts │ │ ├── stopVote.ts │ │ ├── tagAdmins.ts │ │ ├── tagExpert.ts │ │ ├── techNews.ts │ │ ├── text.ts │ │ ├── vote.ts │ │ ├── warnCheck.ts │ │ ├── yta.ts │ │ ├── ytv.ts │ │ └── zero.ts │ ├── owner │ │ ├── badgeAddText.ts │ │ ├── broadcast.ts │ │ ├── donationAdd.ts │ │ ├── getLink.ts │ │ └── tg.ts │ └── public │ │ ├── alive.ts │ │ ├── ask.ts │ │ ├── cricketCommand.ts │ │ ├── delete.ts │ │ ├── dev.ts │ │ ├── donation.ts │ │ ├── feedback.ts │ │ ├── help.ts │ │ ├── helpa.ts │ │ ├── helpo.ts │ │ ├── link.ts │ │ ├── search.ts │ │ ├── source.ts │ │ ├── steal.ts │ │ └── voteCommand.ts ├── connectionUpdate.ts ├── db │ ├── authDB.ts │ ├── backupDB.ts │ ├── badgeDB.ts │ ├── birthdayDB.ts │ ├── blacklistDB.ts │ ├── cocDb.ts │ ├── countMemberDB.ts │ ├── countMemberMonthDB.ts │ ├── countMemberTodayDB.ts │ ├── membersDB.ts │ ├── metaDB.ts │ ├── newsDB.ts │ ├── pool.ts │ ├── pvxGroupDB.ts │ ├── unknownCmdDB.ts │ ├── votingAllDB.ts │ ├── votingDB.ts │ └── warningDB.ts ├── functions │ ├── addCommands.ts │ ├── addDefaultBadges.ts │ ├── addMemberCheck.ts │ ├── checkTodayBday.ts │ ├── checkValue.ts │ ├── countRemainder.ts │ ├── cricket.ts │ ├── forwardSticker.ts │ ├── getGroupAdmins.ts │ ├── getIndianDateTime.ts │ ├── getIndianNumber.ts │ ├── getMessage.ts │ ├── getParticipant.ts │ ├── getRandomFileName.ts │ ├── getTechNews.ts │ ├── kickZeroMano.ts │ ├── postStudyInfo.ts │ ├── postTechNews.ts │ ├── pvxFunctions.ts │ └── todayStats.ts ├── groupParticipantsUpdate.ts ├── groupsUpdate.ts ├── groupsUpsert.ts ├── index.ts ├── interfaces │ ├── Bot.ts │ ├── Chats.ts │ ├── Coc.ts │ ├── CommandsObj.ts │ ├── GroupData.ts │ └── msgInfoObj.ts ├── messagesUpsert.ts └── utils │ ├── cache.ts │ ├── coc │ ├── apis.ts │ ├── constants.ts │ └── helpers.ts │ ├── config.ts │ ├── constants.ts │ ├── dbTables.ts │ └── logger.ts ├── test ├── bdayData.ts ├── dbMigrate.js ├── error.txt ├── messageCountGroupShift.js ├── messageCountNumberShift.ts ├── test.js ├── test.ts ├── test.txt └── videoCountShift.ts └── tsconfig.json /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/README.md -------------------------------------------------------------------------------- /asset/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/asset/arrows.png -------------------------------------------------------------------------------- /asset/bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/asset/bot.jpg -------------------------------------------------------------------------------- /asset/curved-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/asset/curved-arrow.png -------------------------------------------------------------------------------- /asset/db_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/asset/db_schema.png -------------------------------------------------------------------------------- /asset/donation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/asset/donation.jpg -------------------------------------------------------------------------------- /asset/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/asset/image.jpg -------------------------------------------------------------------------------- /asset/sticker.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/asset/sticker.webp -------------------------------------------------------------------------------- /asset/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/asset/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/package.json -------------------------------------------------------------------------------- /src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/bot.ts -------------------------------------------------------------------------------- /src/commands/admins/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/add.ts -------------------------------------------------------------------------------- /src/commands/admins/adminList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/adminList.ts -------------------------------------------------------------------------------- /src/commands/admins/badgeAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/badgeAdd.ts -------------------------------------------------------------------------------- /src/commands/admins/badgeRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/badgeRemove.ts -------------------------------------------------------------------------------- /src/commands/admins/bday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/bday.ts -------------------------------------------------------------------------------- /src/commands/admins/blacklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/blacklist.ts -------------------------------------------------------------------------------- /src/commands/admins/blacklistAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/blacklistAdd.ts -------------------------------------------------------------------------------- /src/commands/admins/blacklistRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/blacklistRemove.ts -------------------------------------------------------------------------------- /src/commands/admins/demote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/demote.ts -------------------------------------------------------------------------------- /src/commands/admins/disable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/disable.ts -------------------------------------------------------------------------------- /src/commands/admins/enable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/enable.ts -------------------------------------------------------------------------------- /src/commands/admins/expertAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/expertAdd.ts -------------------------------------------------------------------------------- /src/commands/admins/expertRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/expertRemove.ts -------------------------------------------------------------------------------- /src/commands/admins/mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/mute.ts -------------------------------------------------------------------------------- /src/commands/admins/promote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/promote.ts -------------------------------------------------------------------------------- /src/commands/admins/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/remove.ts -------------------------------------------------------------------------------- /src/commands/admins/rt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/rt.ts -------------------------------------------------------------------------------- /src/commands/admins/setLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/setLink.ts -------------------------------------------------------------------------------- /src/commands/admins/tagAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/tagAll.ts -------------------------------------------------------------------------------- /src/commands/admins/today.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/today.ts -------------------------------------------------------------------------------- /src/commands/admins/unmute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/unmute.ts -------------------------------------------------------------------------------- /src/commands/admins/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/warn.ts -------------------------------------------------------------------------------- /src/commands/admins/warnClear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/warnClear.ts -------------------------------------------------------------------------------- /src/commands/admins/warnList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/warnList.ts -------------------------------------------------------------------------------- /src/commands/admins/warnListAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/warnListAll.ts -------------------------------------------------------------------------------- /src/commands/admins/warnReduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/warnReduce.ts -------------------------------------------------------------------------------- /src/commands/admins/websiteLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/admins/websiteLink.ts -------------------------------------------------------------------------------- /src/commands/coc/addCocTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/coc/addCocTag.ts -------------------------------------------------------------------------------- /src/commands/coc/clan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/coc/clan.ts -------------------------------------------------------------------------------- /src/commands/coc/clanMembers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/coc/clanMembers.ts -------------------------------------------------------------------------------- /src/commands/coc/cocDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/coc/cocDetails.ts -------------------------------------------------------------------------------- /src/commands/coc/tagClan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/coc/tagClan.ts -------------------------------------------------------------------------------- /src/commands/members/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/ai.ts -------------------------------------------------------------------------------- /src/commands/members/badge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/badge.ts -------------------------------------------------------------------------------- /src/commands/members/checkVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/checkVote.ts -------------------------------------------------------------------------------- /src/commands/members/count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/count.ts -------------------------------------------------------------------------------- /src/commands/members/expert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/expert.ts -------------------------------------------------------------------------------- /src/commands/members/fb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/fb.ts -------------------------------------------------------------------------------- /src/commands/members/gender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/gender.ts -------------------------------------------------------------------------------- /src/commands/members/horo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/horo.ts -------------------------------------------------------------------------------- /src/commands/members/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/image.ts -------------------------------------------------------------------------------- /src/commands/members/imageSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/imageSearch.ts -------------------------------------------------------------------------------- /src/commands/members/insta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/insta.ts -------------------------------------------------------------------------------- /src/commands/members/movie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/movie.ts -------------------------------------------------------------------------------- /src/commands/members/pvxStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/pvxStats.ts -------------------------------------------------------------------------------- /src/commands/members/pvxg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/pvxg.ts -------------------------------------------------------------------------------- /src/commands/members/pvxgg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/pvxgg.ts -------------------------------------------------------------------------------- /src/commands/members/pvxm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/pvxm.ts -------------------------------------------------------------------------------- /src/commands/members/pvxt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/pvxt.ts -------------------------------------------------------------------------------- /src/commands/members/pvxt5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/pvxt5.ts -------------------------------------------------------------------------------- /src/commands/members/pvxtm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/pvxtm.ts -------------------------------------------------------------------------------- /src/commands/members/pvxtt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/pvxtt.ts -------------------------------------------------------------------------------- /src/commands/members/pvxv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/pvxv.ts -------------------------------------------------------------------------------- /src/commands/members/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/quote.ts -------------------------------------------------------------------------------- /src/commands/members/rank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/rank.ts -------------------------------------------------------------------------------- /src/commands/members/ranks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/ranks.ts -------------------------------------------------------------------------------- /src/commands/members/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/rules.ts -------------------------------------------------------------------------------- /src/commands/members/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/score.ts -------------------------------------------------------------------------------- /src/commands/members/scoreCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/scoreCard.ts -------------------------------------------------------------------------------- /src/commands/members/song.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/song.ts -------------------------------------------------------------------------------- /src/commands/members/startVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/startVote.ts -------------------------------------------------------------------------------- /src/commands/members/startc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/startc.ts -------------------------------------------------------------------------------- /src/commands/members/sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/sticker.ts -------------------------------------------------------------------------------- /src/commands/members/stickerSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/stickerSearch.ts -------------------------------------------------------------------------------- /src/commands/members/stopVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/stopVote.ts -------------------------------------------------------------------------------- /src/commands/members/tagAdmins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/tagAdmins.ts -------------------------------------------------------------------------------- /src/commands/members/tagExpert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/tagExpert.ts -------------------------------------------------------------------------------- /src/commands/members/techNews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/techNews.ts -------------------------------------------------------------------------------- /src/commands/members/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/text.ts -------------------------------------------------------------------------------- /src/commands/members/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/vote.ts -------------------------------------------------------------------------------- /src/commands/members/warnCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/warnCheck.ts -------------------------------------------------------------------------------- /src/commands/members/yta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/yta.ts -------------------------------------------------------------------------------- /src/commands/members/ytv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/ytv.ts -------------------------------------------------------------------------------- /src/commands/members/zero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/members/zero.ts -------------------------------------------------------------------------------- /src/commands/owner/badgeAddText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/owner/badgeAddText.ts -------------------------------------------------------------------------------- /src/commands/owner/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/owner/broadcast.ts -------------------------------------------------------------------------------- /src/commands/owner/donationAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/owner/donationAdd.ts -------------------------------------------------------------------------------- /src/commands/owner/getLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/owner/getLink.ts -------------------------------------------------------------------------------- /src/commands/owner/tg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/owner/tg.ts -------------------------------------------------------------------------------- /src/commands/public/alive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/alive.ts -------------------------------------------------------------------------------- /src/commands/public/ask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/ask.ts -------------------------------------------------------------------------------- /src/commands/public/cricketCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/cricketCommand.ts -------------------------------------------------------------------------------- /src/commands/public/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/delete.ts -------------------------------------------------------------------------------- /src/commands/public/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/dev.ts -------------------------------------------------------------------------------- /src/commands/public/donation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/donation.ts -------------------------------------------------------------------------------- /src/commands/public/feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/feedback.ts -------------------------------------------------------------------------------- /src/commands/public/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/help.ts -------------------------------------------------------------------------------- /src/commands/public/helpa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/helpa.ts -------------------------------------------------------------------------------- /src/commands/public/helpo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/helpo.ts -------------------------------------------------------------------------------- /src/commands/public/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/link.ts -------------------------------------------------------------------------------- /src/commands/public/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/search.ts -------------------------------------------------------------------------------- /src/commands/public/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/source.ts -------------------------------------------------------------------------------- /src/commands/public/steal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/steal.ts -------------------------------------------------------------------------------- /src/commands/public/voteCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/commands/public/voteCommand.ts -------------------------------------------------------------------------------- /src/connectionUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/connectionUpdate.ts -------------------------------------------------------------------------------- /src/db/authDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/authDB.ts -------------------------------------------------------------------------------- /src/db/backupDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/backupDB.ts -------------------------------------------------------------------------------- /src/db/badgeDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/badgeDB.ts -------------------------------------------------------------------------------- /src/db/birthdayDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/birthdayDB.ts -------------------------------------------------------------------------------- /src/db/blacklistDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/blacklistDB.ts -------------------------------------------------------------------------------- /src/db/cocDb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/cocDb.ts -------------------------------------------------------------------------------- /src/db/countMemberDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/countMemberDB.ts -------------------------------------------------------------------------------- /src/db/countMemberMonthDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/countMemberMonthDB.ts -------------------------------------------------------------------------------- /src/db/countMemberTodayDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/countMemberTodayDB.ts -------------------------------------------------------------------------------- /src/db/membersDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/membersDB.ts -------------------------------------------------------------------------------- /src/db/metaDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/metaDB.ts -------------------------------------------------------------------------------- /src/db/newsDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/newsDB.ts -------------------------------------------------------------------------------- /src/db/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/pool.ts -------------------------------------------------------------------------------- /src/db/pvxGroupDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/pvxGroupDB.ts -------------------------------------------------------------------------------- /src/db/unknownCmdDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/unknownCmdDB.ts -------------------------------------------------------------------------------- /src/db/votingAllDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/votingAllDB.ts -------------------------------------------------------------------------------- /src/db/votingDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/votingDB.ts -------------------------------------------------------------------------------- /src/db/warningDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/db/warningDB.ts -------------------------------------------------------------------------------- /src/functions/addCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/addCommands.ts -------------------------------------------------------------------------------- /src/functions/addDefaultBadges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/addDefaultBadges.ts -------------------------------------------------------------------------------- /src/functions/addMemberCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/addMemberCheck.ts -------------------------------------------------------------------------------- /src/functions/checkTodayBday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/checkTodayBday.ts -------------------------------------------------------------------------------- /src/functions/checkValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/checkValue.ts -------------------------------------------------------------------------------- /src/functions/countRemainder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/countRemainder.ts -------------------------------------------------------------------------------- /src/functions/cricket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/cricket.ts -------------------------------------------------------------------------------- /src/functions/forwardSticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/forwardSticker.ts -------------------------------------------------------------------------------- /src/functions/getGroupAdmins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/getGroupAdmins.ts -------------------------------------------------------------------------------- /src/functions/getIndianDateTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/getIndianDateTime.ts -------------------------------------------------------------------------------- /src/functions/getIndianNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/getIndianNumber.ts -------------------------------------------------------------------------------- /src/functions/getMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/getMessage.ts -------------------------------------------------------------------------------- /src/functions/getParticipant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/getParticipant.ts -------------------------------------------------------------------------------- /src/functions/getRandomFileName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/getRandomFileName.ts -------------------------------------------------------------------------------- /src/functions/getTechNews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/getTechNews.ts -------------------------------------------------------------------------------- /src/functions/kickZeroMano.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/kickZeroMano.ts -------------------------------------------------------------------------------- /src/functions/postStudyInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/postStudyInfo.ts -------------------------------------------------------------------------------- /src/functions/postTechNews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/postTechNews.ts -------------------------------------------------------------------------------- /src/functions/pvxFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/pvxFunctions.ts -------------------------------------------------------------------------------- /src/functions/todayStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/functions/todayStats.ts -------------------------------------------------------------------------------- /src/groupParticipantsUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/groupParticipantsUpdate.ts -------------------------------------------------------------------------------- /src/groupsUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/groupsUpdate.ts -------------------------------------------------------------------------------- /src/groupsUpsert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/groupsUpsert.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/Bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/interfaces/Bot.ts -------------------------------------------------------------------------------- /src/interfaces/Chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/interfaces/Chats.ts -------------------------------------------------------------------------------- /src/interfaces/Coc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/interfaces/Coc.ts -------------------------------------------------------------------------------- /src/interfaces/CommandsObj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/interfaces/CommandsObj.ts -------------------------------------------------------------------------------- /src/interfaces/GroupData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/interfaces/GroupData.ts -------------------------------------------------------------------------------- /src/interfaces/msgInfoObj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/interfaces/msgInfoObj.ts -------------------------------------------------------------------------------- /src/messagesUpsert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/messagesUpsert.ts -------------------------------------------------------------------------------- /src/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/utils/cache.ts -------------------------------------------------------------------------------- /src/utils/coc/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/utils/coc/apis.ts -------------------------------------------------------------------------------- /src/utils/coc/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/utils/coc/constants.ts -------------------------------------------------------------------------------- /src/utils/coc/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/utils/coc/helpers.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/dbTables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/utils/dbTables.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /test/bdayData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/test/bdayData.ts -------------------------------------------------------------------------------- /test/dbMigrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/test/dbMigrate.js -------------------------------------------------------------------------------- /test/error.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/messageCountGroupShift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/test/messageCountGroupShift.js -------------------------------------------------------------------------------- /test/messageCountNumberShift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/test/messageCountNumberShift.ts -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/test/test.ts -------------------------------------------------------------------------------- /test/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/test/test.txt -------------------------------------------------------------------------------- /test/videoCountShift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/test/videoCountShift.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamrawat5/whatsapp-bot-ts/HEAD/tsconfig.json --------------------------------------------------------------------------------