├── .env.example ├── .eslintignore ├── .eslintrc ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── crowdin.yml ├── .gitignore ├── .lintstagedrc.js ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── assets ├── Banner.png ├── BannerWide.png ├── Logo.png ├── LogoWhiteBackground.png └── SVG-NO_BG.svg ├── crowdin.yml ├── files └── .gitignore ├── logs └── .gitignore ├── package.json ├── scripts └── writeEnUsJson.js ├── src ├── Config.ts ├── commands │ ├── Admin │ │ ├── eval.ts │ │ └── stats.ts │ ├── Bot │ │ ├── about.ts │ │ ├── github.ts │ │ ├── invite.ts │ │ ├── license.ts │ │ ├── ping.ts │ │ ├── privacypolicy.ts │ │ └── uptime.ts │ ├── Configuration │ │ ├── banpool.ts │ │ ├── banpool │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ ├── info.ts │ │ │ ├── invite.ts │ │ │ ├── join.ts │ │ │ ├── leave.ts │ │ │ ├── list.ts │ │ │ └── remove.ts │ │ ├── configure.ts │ │ ├── configure │ │ │ ├── actionsOnInfo.ts │ │ │ ├── automod.ts │ │ │ ├── automod │ │ │ │ ├── add.ts │ │ │ │ ├── enable.ts │ │ │ │ ├── limit.ts │ │ │ │ ├── overview.ts │ │ │ │ └── punishment.ts │ │ │ ├── autorole.ts │ │ │ ├── language.ts │ │ │ ├── logging.ts │ │ │ ├── main.ts │ │ │ ├── manualNicknameInf.ts │ │ │ ├── quickReasons.ts │ │ │ ├── rolesOnLeave.ts │ │ │ └── timezone.ts │ │ ├── messageclear.ts │ │ └── settings.ts │ ├── Context │ │ ├── clean.ts │ │ ├── infSearch.ts │ │ ├── mute.ts │ │ └── warn.ts │ ├── Information │ │ ├── channelinfo.ts │ │ ├── charinfo.ts │ │ ├── inviteinfo.ts │ │ ├── messageinfo.ts │ │ ├── roleinfo.ts │ │ ├── serverinfo.ts │ │ └── userinfo.ts │ ├── Miscellaneous │ │ ├── avatar.ts │ │ ├── id.ts │ │ ├── jumbo.ts │ │ ├── permissions.ts │ │ ├── remind.ts │ │ ├── remind │ │ │ ├── list.ts │ │ │ ├── remove.ts │ │ │ └── set.ts │ │ └── snowflake.ts │ └── Moderation │ │ ├── archive.ts │ │ ├── archive │ │ ├── channel.ts │ │ └── user.ts │ │ ├── ban.ts │ │ ├── crossban.ts │ │ ├── deafen.ts │ │ ├── infraction.ts │ │ ├── infraction │ │ ├── claim.ts │ │ ├── info.ts │ │ ├── modsearch.ts │ │ ├── offendersearch.ts │ │ ├── remove.ts │ │ ├── search.ts │ │ └── update.ts │ │ ├── kick.ts │ │ ├── lockdown.ts │ │ ├── mute.ts │ │ ├── nickname.ts │ │ ├── prune.ts │ │ ├── purge.ts │ │ ├── purge │ │ ├── all.ts │ │ ├── between.ts │ │ ├── bots.ts │ │ ├── contains.ts │ │ ├── embeds.ts │ │ ├── emojis.ts │ │ ├── images.ts │ │ ├── until.ts │ │ └── user.ts │ │ ├── slowmode.ts │ │ ├── tempban.ts │ │ ├── unban.ts │ │ ├── undeafen.ts │ │ ├── unmute.ts │ │ ├── verification.ts │ │ └── warn.ts ├── emotes.json ├── events │ ├── bot │ │ ├── interactionCreate.ts │ │ ├── invalidated.ts │ │ ├── rateLimit.ts │ │ └── ready.ts │ ├── guild │ │ ├── channels │ │ │ ├── channelCreate.ts │ │ │ ├── channelDelete.ts │ │ │ ├── channelUpdate.ts │ │ │ ├── inviteCreate.ts │ │ │ └── inviteDelete.ts │ │ ├── guildBanAdd.ts │ │ ├── guildBanRemove.ts │ │ ├── guildCreate.ts │ │ ├── guildDelete.ts │ │ ├── guildUnavailable.ts │ │ ├── guildUpdate.ts │ │ ├── member │ │ │ ├── guildMemberAdd.ts │ │ │ ├── guildMemberRemove.ts │ │ │ └── guildMemberUpdate.ts │ │ ├── roles │ │ │ ├── roleCreate.ts │ │ │ ├── roleDelete.ts │ │ │ └── roleUpdate.ts │ │ ├── scheduledEvents │ │ │ ├── guildScheduledEventCreate.ts │ │ │ ├── guildScheduledEventDelete.ts │ │ │ └── guildScheduledEventUpdate.ts │ │ └── threads │ │ │ ├── threadCreate.ts │ │ │ └── threadDelete.ts │ └── message │ │ ├── messageCreate.ts │ │ ├── messageDelete.ts │ │ └── messageUpdate.ts ├── index.ts ├── interactions │ └── select │ │ ├── infraction.ts │ │ └── reminders.ts ├── languages │ ├── ar-SA.json │ ├── cs-CZ.json │ ├── de-DE.json │ ├── en-PT.json │ ├── en-US.json │ ├── en-US.ts │ ├── es-ES.json │ ├── fil-PH.json │ ├── fr-FR.json │ ├── ga-IE.json │ ├── hi-IN.json │ ├── hu-HU.json │ ├── it-IT.json │ ├── nl-NL.json │ ├── no-NO.json │ ├── owo.json │ ├── pl-PL.json │ ├── pt-BR.json │ ├── ro-RO.json │ ├── ru-RU.json │ ├── sk-SK.json │ ├── sv-SE.json │ ├── tr-TR.json │ └── vi-VN.json ├── prisma.ts ├── prisma │ ├── migrations │ │ ├── 20220619213819_initial_migration │ │ │ └── migration.sql │ │ ├── 20220619215119_indexes │ │ │ └── migration.sql │ │ ├── 20220619222254_less_nullable │ │ │ └── migration.sql │ │ ├── 20220620015416_sync │ │ │ └── migration.sql │ │ ├── 20220620015538_created_at_default_now │ │ │ └── migration.sql │ │ ├── 20220620030305_mute_role │ │ │ └── migration.sql │ │ ├── 20220620033405_unique_banpool_name │ │ │ └── migration.sql │ │ ├── 20220620035701_rename_guild_id │ │ │ └── migration.sql │ │ ├── 20220620044201_unique_banpool_key │ │ │ └── migration.sql │ │ ├── 20220620051634_unique_experiments_per_guild │ │ │ └── migration.sql │ │ ├── 20220625160923_active_to_boolean │ │ │ └── migration.sql │ │ ├── 20220625162546_non_nullable_booleans │ │ │ └── migration.sql │ │ ├── 20220625165700_punishment_enum │ │ │ └── migration.sql │ │ ├── 20220625192345_non_nullable_bulb_guild │ │ │ └── migration.sql │ │ ├── 20220625192746_drop_override_models │ │ │ └── migration.sql │ │ ├── 20220723095504_19_snowflake │ │ │ └── migration.sql │ │ ├── 20220814171734_drop_old_tables │ │ │ └── migration.sql │ │ ├── 20220814231655_drop_active_default │ │ │ └── migration.sql │ │ ├── 20220818104256_remove_prefix_and_muterole │ │ │ └── migration.sql │ │ └── migration_lock.toml │ └── schema.prisma ├── structures │ ├── ApplicationCommand.ts │ ├── ApplicationSubCommand.ts │ ├── AutoModCache.ts │ ├── BulbBotClient.ts │ ├── Event.ts │ ├── Util.ts │ └── exceptions │ │ ├── AutoModException.ts │ │ ├── ClientException.ts │ │ ├── CommandContextException.ts │ │ ├── CommandException.ts │ │ └── EventException.ts └── utils │ ├── AutoMod.ts │ ├── BulbBotFetch.ts │ ├── BulbBotUtils.ts │ ├── Crons.ts │ ├── InteractionCommands.ts │ ├── Logger.ts │ ├── Prometheus.ts │ ├── Regex.ts │ ├── Restoration.ts │ ├── helpers.ts │ ├── managers │ ├── AutoModManager.ts │ ├── BanpoolManager.ts │ ├── DatabaseManager.ts │ ├── ExperimentManager.ts │ ├── InfractionsManager.ts │ ├── LoggingManager.ts │ ├── ReminderManager.ts │ └── TempbanManager.ts │ ├── typechecks.ts │ └── types │ ├── ActionTypes.ts │ ├── AutoModListOperation.ts │ ├── AutoModPart.ts │ ├── AutoModSetup.ts │ ├── BanType.ts │ ├── BanpoolInvite.ts │ ├── ConfigPart.ts │ ├── GuildFeaturesDescriptions.ts │ ├── GuildSetup.ts │ ├── Localization.ts │ ├── LoggingPart.ts │ ├── LoggingSetup.ts │ ├── MuteType.ts │ ├── PunishmentType.ts │ ├── TranslateOptions.ts │ ├── TranslateString.ts │ └── UserHandle.ts ├── tsconfig.json ├── types.d.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.github/workflows/crowdin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/README.md -------------------------------------------------------------------------------- /assets/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/assets/Banner.png -------------------------------------------------------------------------------- /assets/BannerWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/assets/BannerWide.png -------------------------------------------------------------------------------- /assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/assets/Logo.png -------------------------------------------------------------------------------- /assets/LogoWhiteBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/assets/LogoWhiteBackground.png -------------------------------------------------------------------------------- /assets/SVG-NO_BG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/assets/SVG-NO_BG.svg -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/crowdin.yml -------------------------------------------------------------------------------- /files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/package.json -------------------------------------------------------------------------------- /scripts/writeEnUsJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/scripts/writeEnUsJson.js -------------------------------------------------------------------------------- /src/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/Config.ts -------------------------------------------------------------------------------- /src/commands/Admin/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Admin/eval.ts -------------------------------------------------------------------------------- /src/commands/Admin/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Admin/stats.ts -------------------------------------------------------------------------------- /src/commands/Bot/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Bot/about.ts -------------------------------------------------------------------------------- /src/commands/Bot/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Bot/github.ts -------------------------------------------------------------------------------- /src/commands/Bot/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Bot/invite.ts -------------------------------------------------------------------------------- /src/commands/Bot/license.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Bot/license.ts -------------------------------------------------------------------------------- /src/commands/Bot/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Bot/ping.ts -------------------------------------------------------------------------------- /src/commands/Bot/privacypolicy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Bot/privacypolicy.ts -------------------------------------------------------------------------------- /src/commands/Bot/uptime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Bot/uptime.ts -------------------------------------------------------------------------------- /src/commands/Configuration/banpool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/banpool.ts -------------------------------------------------------------------------------- /src/commands/Configuration/banpool/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/banpool/create.ts -------------------------------------------------------------------------------- /src/commands/Configuration/banpool/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/banpool/delete.ts -------------------------------------------------------------------------------- /src/commands/Configuration/banpool/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/banpool/info.ts -------------------------------------------------------------------------------- /src/commands/Configuration/banpool/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/banpool/invite.ts -------------------------------------------------------------------------------- /src/commands/Configuration/banpool/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/banpool/join.ts -------------------------------------------------------------------------------- /src/commands/Configuration/banpool/leave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/banpool/leave.ts -------------------------------------------------------------------------------- /src/commands/Configuration/banpool/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/banpool/list.ts -------------------------------------------------------------------------------- /src/commands/Configuration/banpool/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/banpool/remove.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/actionsOnInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/actionsOnInfo.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/automod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/automod.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/automod/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/automod/add.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/automod/enable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/automod/enable.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/automod/limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/automod/limit.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/automod/overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/automod/overview.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/automod/punishment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/automod/punishment.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/autorole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/autorole.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/language.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/logging.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/main.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/manualNicknameInf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/manualNicknameInf.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/quickReasons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/quickReasons.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/rolesOnLeave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/rolesOnLeave.ts -------------------------------------------------------------------------------- /src/commands/Configuration/configure/timezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/configure/timezone.ts -------------------------------------------------------------------------------- /src/commands/Configuration/messageclear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/messageclear.ts -------------------------------------------------------------------------------- /src/commands/Configuration/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Configuration/settings.ts -------------------------------------------------------------------------------- /src/commands/Context/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Context/clean.ts -------------------------------------------------------------------------------- /src/commands/Context/infSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Context/infSearch.ts -------------------------------------------------------------------------------- /src/commands/Context/mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Context/mute.ts -------------------------------------------------------------------------------- /src/commands/Context/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Context/warn.ts -------------------------------------------------------------------------------- /src/commands/Information/channelinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Information/channelinfo.ts -------------------------------------------------------------------------------- /src/commands/Information/charinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Information/charinfo.ts -------------------------------------------------------------------------------- /src/commands/Information/inviteinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Information/inviteinfo.ts -------------------------------------------------------------------------------- /src/commands/Information/messageinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Information/messageinfo.ts -------------------------------------------------------------------------------- /src/commands/Information/roleinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Information/roleinfo.ts -------------------------------------------------------------------------------- /src/commands/Information/serverinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Information/serverinfo.ts -------------------------------------------------------------------------------- /src/commands/Information/userinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Information/userinfo.ts -------------------------------------------------------------------------------- /src/commands/Miscellaneous/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Miscellaneous/avatar.ts -------------------------------------------------------------------------------- /src/commands/Miscellaneous/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Miscellaneous/id.ts -------------------------------------------------------------------------------- /src/commands/Miscellaneous/jumbo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Miscellaneous/jumbo.ts -------------------------------------------------------------------------------- /src/commands/Miscellaneous/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Miscellaneous/permissions.ts -------------------------------------------------------------------------------- /src/commands/Miscellaneous/remind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Miscellaneous/remind.ts -------------------------------------------------------------------------------- /src/commands/Miscellaneous/remind/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Miscellaneous/remind/list.ts -------------------------------------------------------------------------------- /src/commands/Miscellaneous/remind/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Miscellaneous/remind/remove.ts -------------------------------------------------------------------------------- /src/commands/Miscellaneous/remind/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Miscellaneous/remind/set.ts -------------------------------------------------------------------------------- /src/commands/Miscellaneous/snowflake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Miscellaneous/snowflake.ts -------------------------------------------------------------------------------- /src/commands/Moderation/archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/archive.ts -------------------------------------------------------------------------------- /src/commands/Moderation/archive/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/archive/channel.ts -------------------------------------------------------------------------------- /src/commands/Moderation/archive/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/archive/user.ts -------------------------------------------------------------------------------- /src/commands/Moderation/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/ban.ts -------------------------------------------------------------------------------- /src/commands/Moderation/crossban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/crossban.ts -------------------------------------------------------------------------------- /src/commands/Moderation/deafen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/deafen.ts -------------------------------------------------------------------------------- /src/commands/Moderation/infraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/infraction.ts -------------------------------------------------------------------------------- /src/commands/Moderation/infraction/claim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/infraction/claim.ts -------------------------------------------------------------------------------- /src/commands/Moderation/infraction/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/infraction/info.ts -------------------------------------------------------------------------------- /src/commands/Moderation/infraction/modsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/infraction/modsearch.ts -------------------------------------------------------------------------------- /src/commands/Moderation/infraction/offendersearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/infraction/offendersearch.ts -------------------------------------------------------------------------------- /src/commands/Moderation/infraction/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/infraction/remove.ts -------------------------------------------------------------------------------- /src/commands/Moderation/infraction/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/infraction/search.ts -------------------------------------------------------------------------------- /src/commands/Moderation/infraction/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/infraction/update.ts -------------------------------------------------------------------------------- /src/commands/Moderation/kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/kick.ts -------------------------------------------------------------------------------- /src/commands/Moderation/lockdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/lockdown.ts -------------------------------------------------------------------------------- /src/commands/Moderation/mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/mute.ts -------------------------------------------------------------------------------- /src/commands/Moderation/nickname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/nickname.ts -------------------------------------------------------------------------------- /src/commands/Moderation/prune.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/prune.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge/all.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge/between.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge/between.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge/bots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge/bots.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge/contains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge/contains.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge/embeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge/embeds.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge/emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge/emojis.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge/images.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge/until.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge/until.ts -------------------------------------------------------------------------------- /src/commands/Moderation/purge/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/purge/user.ts -------------------------------------------------------------------------------- /src/commands/Moderation/slowmode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/slowmode.ts -------------------------------------------------------------------------------- /src/commands/Moderation/tempban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/tempban.ts -------------------------------------------------------------------------------- /src/commands/Moderation/unban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/unban.ts -------------------------------------------------------------------------------- /src/commands/Moderation/undeafen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/undeafen.ts -------------------------------------------------------------------------------- /src/commands/Moderation/unmute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/unmute.ts -------------------------------------------------------------------------------- /src/commands/Moderation/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/verification.ts -------------------------------------------------------------------------------- /src/commands/Moderation/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/commands/Moderation/warn.ts -------------------------------------------------------------------------------- /src/emotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/emotes.json -------------------------------------------------------------------------------- /src/events/bot/interactionCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/bot/interactionCreate.ts -------------------------------------------------------------------------------- /src/events/bot/invalidated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/bot/invalidated.ts -------------------------------------------------------------------------------- /src/events/bot/rateLimit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/bot/rateLimit.ts -------------------------------------------------------------------------------- /src/events/bot/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/bot/ready.ts -------------------------------------------------------------------------------- /src/events/guild/channels/channelCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/channels/channelCreate.ts -------------------------------------------------------------------------------- /src/events/guild/channels/channelDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/channels/channelDelete.ts -------------------------------------------------------------------------------- /src/events/guild/channels/channelUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/channels/channelUpdate.ts -------------------------------------------------------------------------------- /src/events/guild/channels/inviteCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/channels/inviteCreate.ts -------------------------------------------------------------------------------- /src/events/guild/channels/inviteDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/channels/inviteDelete.ts -------------------------------------------------------------------------------- /src/events/guild/guildBanAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/guildBanAdd.ts -------------------------------------------------------------------------------- /src/events/guild/guildBanRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/guildBanRemove.ts -------------------------------------------------------------------------------- /src/events/guild/guildCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/guildCreate.ts -------------------------------------------------------------------------------- /src/events/guild/guildDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/guildDelete.ts -------------------------------------------------------------------------------- /src/events/guild/guildUnavailable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/guildUnavailable.ts -------------------------------------------------------------------------------- /src/events/guild/guildUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/guildUpdate.ts -------------------------------------------------------------------------------- /src/events/guild/member/guildMemberAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/member/guildMemberAdd.ts -------------------------------------------------------------------------------- /src/events/guild/member/guildMemberRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/member/guildMemberRemove.ts -------------------------------------------------------------------------------- /src/events/guild/member/guildMemberUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/member/guildMemberUpdate.ts -------------------------------------------------------------------------------- /src/events/guild/roles/roleCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/roles/roleCreate.ts -------------------------------------------------------------------------------- /src/events/guild/roles/roleDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/roles/roleDelete.ts -------------------------------------------------------------------------------- /src/events/guild/roles/roleUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/roles/roleUpdate.ts -------------------------------------------------------------------------------- /src/events/guild/scheduledEvents/guildScheduledEventCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/scheduledEvents/guildScheduledEventCreate.ts -------------------------------------------------------------------------------- /src/events/guild/scheduledEvents/guildScheduledEventDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/scheduledEvents/guildScheduledEventDelete.ts -------------------------------------------------------------------------------- /src/events/guild/scheduledEvents/guildScheduledEventUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/scheduledEvents/guildScheduledEventUpdate.ts -------------------------------------------------------------------------------- /src/events/guild/threads/threadCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/threads/threadCreate.ts -------------------------------------------------------------------------------- /src/events/guild/threads/threadDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/guild/threads/threadDelete.ts -------------------------------------------------------------------------------- /src/events/message/messageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/message/messageCreate.ts -------------------------------------------------------------------------------- /src/events/message/messageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/message/messageDelete.ts -------------------------------------------------------------------------------- /src/events/message/messageUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/events/message/messageUpdate.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interactions/select/infraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/interactions/select/infraction.ts -------------------------------------------------------------------------------- /src/interactions/select/reminders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/interactions/select/reminders.ts -------------------------------------------------------------------------------- /src/languages/ar-SA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/ar-SA.json -------------------------------------------------------------------------------- /src/languages/cs-CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/cs-CZ.json -------------------------------------------------------------------------------- /src/languages/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/de-DE.json -------------------------------------------------------------------------------- /src/languages/en-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/en-PT.json -------------------------------------------------------------------------------- /src/languages/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/en-US.json -------------------------------------------------------------------------------- /src/languages/en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/en-US.ts -------------------------------------------------------------------------------- /src/languages/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/es-ES.json -------------------------------------------------------------------------------- /src/languages/fil-PH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/fil-PH.json -------------------------------------------------------------------------------- /src/languages/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/fr-FR.json -------------------------------------------------------------------------------- /src/languages/ga-IE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/ga-IE.json -------------------------------------------------------------------------------- /src/languages/hi-IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/hi-IN.json -------------------------------------------------------------------------------- /src/languages/hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/hu-HU.json -------------------------------------------------------------------------------- /src/languages/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/it-IT.json -------------------------------------------------------------------------------- /src/languages/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/nl-NL.json -------------------------------------------------------------------------------- /src/languages/no-NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/no-NO.json -------------------------------------------------------------------------------- /src/languages/owo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/owo.json -------------------------------------------------------------------------------- /src/languages/pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/pl-PL.json -------------------------------------------------------------------------------- /src/languages/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/pt-BR.json -------------------------------------------------------------------------------- /src/languages/ro-RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/ro-RO.json -------------------------------------------------------------------------------- /src/languages/ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/ru-RU.json -------------------------------------------------------------------------------- /src/languages/sk-SK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/sk-SK.json -------------------------------------------------------------------------------- /src/languages/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/sv-SE.json -------------------------------------------------------------------------------- /src/languages/tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/tr-TR.json -------------------------------------------------------------------------------- /src/languages/vi-VN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/languages/vi-VN.json -------------------------------------------------------------------------------- /src/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma.ts -------------------------------------------------------------------------------- /src/prisma/migrations/20220619213819_initial_migration/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220619213819_initial_migration/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220619215119_indexes/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220619215119_indexes/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220619222254_less_nullable/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220619222254_less_nullable/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220620015416_sync/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220620015416_sync/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220620015538_created_at_default_now/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220620015538_created_at_default_now/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220620030305_mute_role/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220620030305_mute_role/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220620033405_unique_banpool_name/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220620033405_unique_banpool_name/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220620035701_rename_guild_id/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220620035701_rename_guild_id/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220620044201_unique_banpool_key/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220620044201_unique_banpool_key/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220620051634_unique_experiments_per_guild/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220620051634_unique_experiments_per_guild/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220625160923_active_to_boolean/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220625160923_active_to_boolean/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220625162546_non_nullable_booleans/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220625162546_non_nullable_booleans/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220625165700_punishment_enum/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220625165700_punishment_enum/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220625192345_non_nullable_bulb_guild/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220625192345_non_nullable_bulb_guild/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220625192746_drop_override_models/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220625192746_drop_override_models/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220723095504_19_snowflake/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220723095504_19_snowflake/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220814171734_drop_old_tables/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220814171734_drop_old_tables/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220814231655_drop_active_default/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220814231655_drop_active_default/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/20220818104256_remove_prefix_and_muterole/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/20220818104256_remove_prefix_and_muterole/migration.sql -------------------------------------------------------------------------------- /src/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /src/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/prisma/schema.prisma -------------------------------------------------------------------------------- /src/structures/ApplicationCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/ApplicationCommand.ts -------------------------------------------------------------------------------- /src/structures/ApplicationSubCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/ApplicationSubCommand.ts -------------------------------------------------------------------------------- /src/structures/AutoModCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/AutoModCache.ts -------------------------------------------------------------------------------- /src/structures/BulbBotClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/BulbBotClient.ts -------------------------------------------------------------------------------- /src/structures/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/Event.ts -------------------------------------------------------------------------------- /src/structures/Util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/Util.ts -------------------------------------------------------------------------------- /src/structures/exceptions/AutoModException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/exceptions/AutoModException.ts -------------------------------------------------------------------------------- /src/structures/exceptions/ClientException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/exceptions/ClientException.ts -------------------------------------------------------------------------------- /src/structures/exceptions/CommandContextException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/exceptions/CommandContextException.ts -------------------------------------------------------------------------------- /src/structures/exceptions/CommandException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/exceptions/CommandException.ts -------------------------------------------------------------------------------- /src/structures/exceptions/EventException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/structures/exceptions/EventException.ts -------------------------------------------------------------------------------- /src/utils/AutoMod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/AutoMod.ts -------------------------------------------------------------------------------- /src/utils/BulbBotFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/BulbBotFetch.ts -------------------------------------------------------------------------------- /src/utils/BulbBotUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/BulbBotUtils.ts -------------------------------------------------------------------------------- /src/utils/Crons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/Crons.ts -------------------------------------------------------------------------------- /src/utils/InteractionCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/InteractionCommands.ts -------------------------------------------------------------------------------- /src/utils/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/Logger.ts -------------------------------------------------------------------------------- /src/utils/Prometheus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/Prometheus.ts -------------------------------------------------------------------------------- /src/utils/Regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/Regex.ts -------------------------------------------------------------------------------- /src/utils/Restoration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/Restoration.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/managers/AutoModManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/managers/AutoModManager.ts -------------------------------------------------------------------------------- /src/utils/managers/BanpoolManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/managers/BanpoolManager.ts -------------------------------------------------------------------------------- /src/utils/managers/DatabaseManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/managers/DatabaseManager.ts -------------------------------------------------------------------------------- /src/utils/managers/ExperimentManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/managers/ExperimentManager.ts -------------------------------------------------------------------------------- /src/utils/managers/InfractionsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/managers/InfractionsManager.ts -------------------------------------------------------------------------------- /src/utils/managers/LoggingManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/managers/LoggingManager.ts -------------------------------------------------------------------------------- /src/utils/managers/ReminderManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/managers/ReminderManager.ts -------------------------------------------------------------------------------- /src/utils/managers/TempbanManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/managers/TempbanManager.ts -------------------------------------------------------------------------------- /src/utils/typechecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/typechecks.ts -------------------------------------------------------------------------------- /src/utils/types/ActionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/ActionTypes.ts -------------------------------------------------------------------------------- /src/utils/types/AutoModListOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/AutoModListOperation.ts -------------------------------------------------------------------------------- /src/utils/types/AutoModPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/AutoModPart.ts -------------------------------------------------------------------------------- /src/utils/types/AutoModSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/AutoModSetup.ts -------------------------------------------------------------------------------- /src/utils/types/BanType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/BanType.ts -------------------------------------------------------------------------------- /src/utils/types/BanpoolInvite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/BanpoolInvite.ts -------------------------------------------------------------------------------- /src/utils/types/ConfigPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/ConfigPart.ts -------------------------------------------------------------------------------- /src/utils/types/GuildFeaturesDescriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/GuildFeaturesDescriptions.ts -------------------------------------------------------------------------------- /src/utils/types/GuildSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/GuildSetup.ts -------------------------------------------------------------------------------- /src/utils/types/Localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/Localization.ts -------------------------------------------------------------------------------- /src/utils/types/LoggingPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/LoggingPart.ts -------------------------------------------------------------------------------- /src/utils/types/LoggingSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/LoggingSetup.ts -------------------------------------------------------------------------------- /src/utils/types/MuteType.ts: -------------------------------------------------------------------------------- 1 | export enum MuteType { 2 | MANUAL, 3 | AUTO, 4 | } 5 | -------------------------------------------------------------------------------- /src/utils/types/PunishmentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/PunishmentType.ts -------------------------------------------------------------------------------- /src/utils/types/TranslateOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/TranslateOptions.ts -------------------------------------------------------------------------------- /src/utils/types/TranslateString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/TranslateString.ts -------------------------------------------------------------------------------- /src/utils/types/UserHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/src/utils/types/UserHandle.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/types.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBulbbot/bulbbot/HEAD/yarn.lock --------------------------------------------------------------------------------