├── .editorconfig ├── .env.example ├── .github ├── logo.png └── workflows │ ├── contributors.yml │ └── deploy.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierrc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── commitlint.config.ts ├── ecosystem.config.js ├── generi.json ├── package.json ├── pnpm-lock.yaml ├── src ├── client │ ├── logger.ts │ └── ticker.ts ├── commands │ ├── announce.ts │ ├── apoiase.ts │ ├── ask.ts │ ├── badge │ │ └── badge_redeem.ts │ ├── ban.ts │ ├── chat.ts │ ├── clear.ts │ ├── code.ts │ ├── color.ts │ ├── daily.ts │ ├── dynamic_voice │ │ ├── dynamic_voice_create.ts │ │ ├── dynamic_voice_owner.ts │ │ ├── dynamic_voice_size.ts │ │ └── dynamic_voice_title.ts │ ├── example.ts │ ├── forum │ │ ├── forum_close.ts │ │ └── forum_create.ts │ ├── index.ts │ ├── introduction.ts │ ├── judge.ts │ ├── medal │ │ ├── medal_add.ts │ │ └── medal_set.ts │ ├── onboarding │ │ ├── onboarding_finalize.ts │ │ ├── onboarding_quit.ts │ │ ├── onboarding_require.ts │ │ ├── onboarding_voluntary.ts │ │ └── onboarding_why.ts │ ├── profile │ │ ├── profile_get.ts │ │ └── profile_put.ts │ ├── ranking.ts │ ├── reputation.ts │ ├── role │ │ ├── role_delete.ts │ │ └── role_post.ts │ ├── say.ts │ ├── stage │ │ ├── stage_ata.ts │ │ ├── stage_finish.ts │ │ └── stage_start.ts │ ├── suggest_introduction.ts │ ├── timeout.ts │ ├── unban.ts │ ├── version.ts │ └── watch │ │ ├── watch_get.ts │ │ ├── watch_remove.ts │ │ └── watch_set.ts ├── defines │ ├── commands.json │ ├── ids.json │ ├── ids_development.json │ ├── localisation │ │ ├── commands │ │ │ ├── announce.json │ │ │ ├── apoiase.json │ │ │ ├── ask.json │ │ │ ├── badge_post.json │ │ │ ├── badge_redeem.json │ │ │ ├── ban.json │ │ │ ├── chat.json │ │ │ ├── clear.json │ │ │ ├── color.json │ │ │ ├── daily.json │ │ │ ├── dynamic_voice.json │ │ │ ├── forum_close.json │ │ │ ├── forum_create.json │ │ │ ├── introduction.json │ │ │ ├── judge.json │ │ │ ├── medal.json │ │ │ ├── onboarding_finalize.json │ │ │ ├── profile.json │ │ │ ├── profile_put.json │ │ │ ├── ranking.json │ │ │ ├── reputation.json │ │ │ ├── role_create.json │ │ │ ├── role_delete.json │ │ │ ├── say.json │ │ │ ├── shared.json │ │ │ ├── special.json │ │ │ ├── stage_ata.json │ │ │ ├── stage_finish.json │ │ │ ├── stage_start.json │ │ │ ├── suggest_introduction.json │ │ │ ├── timeout.json │ │ │ ├── unban.json │ │ │ └── watch.json │ │ ├── defaults │ │ │ ├── display.json │ │ │ └── reply.json │ │ └── events │ │ │ ├── guild_enter.json │ │ │ ├── nitro_boost.json │ │ │ └── pomodoro.json │ ├── values.json │ └── values_development.json ├── events │ ├── cron │ │ ├── apoiase.ts │ │ ├── breakfast.ts │ │ └── index.ts │ ├── discord │ │ ├── channel.ts │ │ ├── guild.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── role.ts │ │ └── voice.ts │ └── ticker │ │ ├── dynamic_voice.ts │ │ ├── index.ts │ │ ├── medals.ts │ │ ├── pomodoro.ts │ │ ├── presence.ts │ │ └── voice_xp.ts ├── global.d.ts ├── http │ ├── firebase.ts │ └── index.ts ├── index.ts ├── main.ts ├── types.ts └── utils.ts ├── tsconfig.json ├── tsup.development.config.ts └── tsup.production.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/.env.example -------------------------------------------------------------------------------- /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/.github/logo.png -------------------------------------------------------------------------------- /.github/workflows/contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/.github/workflows/contributors.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | } 4 | -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /generi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/generi.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/client/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/client/logger.ts -------------------------------------------------------------------------------- /src/client/ticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/client/ticker.ts -------------------------------------------------------------------------------- /src/commands/announce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/announce.ts -------------------------------------------------------------------------------- /src/commands/apoiase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/apoiase.ts -------------------------------------------------------------------------------- /src/commands/ask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/ask.ts -------------------------------------------------------------------------------- /src/commands/badge/badge_redeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/badge/badge_redeem.ts -------------------------------------------------------------------------------- /src/commands/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/ban.ts -------------------------------------------------------------------------------- /src/commands/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/chat.ts -------------------------------------------------------------------------------- /src/commands/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/clear.ts -------------------------------------------------------------------------------- /src/commands/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/code.ts -------------------------------------------------------------------------------- /src/commands/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/color.ts -------------------------------------------------------------------------------- /src/commands/daily.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/daily.ts -------------------------------------------------------------------------------- /src/commands/dynamic_voice/dynamic_voice_create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/dynamic_voice/dynamic_voice_create.ts -------------------------------------------------------------------------------- /src/commands/dynamic_voice/dynamic_voice_owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/dynamic_voice/dynamic_voice_owner.ts -------------------------------------------------------------------------------- /src/commands/dynamic_voice/dynamic_voice_size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/dynamic_voice/dynamic_voice_size.ts -------------------------------------------------------------------------------- /src/commands/dynamic_voice/dynamic_voice_title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/dynamic_voice/dynamic_voice_title.ts -------------------------------------------------------------------------------- /src/commands/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/example.ts -------------------------------------------------------------------------------- /src/commands/forum/forum_close.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/forum/forum_close.ts -------------------------------------------------------------------------------- /src/commands/forum/forum_create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/forum/forum_create.ts -------------------------------------------------------------------------------- /src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/index.ts -------------------------------------------------------------------------------- /src/commands/introduction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/introduction.ts -------------------------------------------------------------------------------- /src/commands/judge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/judge.ts -------------------------------------------------------------------------------- /src/commands/medal/medal_add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/medal/medal_add.ts -------------------------------------------------------------------------------- /src/commands/medal/medal_set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/medal/medal_set.ts -------------------------------------------------------------------------------- /src/commands/onboarding/onboarding_finalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/onboarding/onboarding_finalize.ts -------------------------------------------------------------------------------- /src/commands/onboarding/onboarding_quit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/onboarding/onboarding_quit.ts -------------------------------------------------------------------------------- /src/commands/onboarding/onboarding_require.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/onboarding/onboarding_require.ts -------------------------------------------------------------------------------- /src/commands/onboarding/onboarding_voluntary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/onboarding/onboarding_voluntary.ts -------------------------------------------------------------------------------- /src/commands/onboarding/onboarding_why.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/onboarding/onboarding_why.ts -------------------------------------------------------------------------------- /src/commands/profile/profile_get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/profile/profile_get.ts -------------------------------------------------------------------------------- /src/commands/profile/profile_put.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/profile/profile_put.ts -------------------------------------------------------------------------------- /src/commands/ranking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/ranking.ts -------------------------------------------------------------------------------- /src/commands/reputation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/reputation.ts -------------------------------------------------------------------------------- /src/commands/role/role_delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/role/role_delete.ts -------------------------------------------------------------------------------- /src/commands/role/role_post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/role/role_post.ts -------------------------------------------------------------------------------- /src/commands/say.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/say.ts -------------------------------------------------------------------------------- /src/commands/stage/stage_ata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/stage/stage_ata.ts -------------------------------------------------------------------------------- /src/commands/stage/stage_finish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/stage/stage_finish.ts -------------------------------------------------------------------------------- /src/commands/stage/stage_start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/stage/stage_start.ts -------------------------------------------------------------------------------- /src/commands/suggest_introduction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/suggest_introduction.ts -------------------------------------------------------------------------------- /src/commands/timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/timeout.ts -------------------------------------------------------------------------------- /src/commands/unban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/unban.ts -------------------------------------------------------------------------------- /src/commands/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/version.ts -------------------------------------------------------------------------------- /src/commands/watch/watch_get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/watch/watch_get.ts -------------------------------------------------------------------------------- /src/commands/watch/watch_remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/watch/watch_remove.ts -------------------------------------------------------------------------------- /src/commands/watch/watch_set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/commands/watch/watch_set.ts -------------------------------------------------------------------------------- /src/defines/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/commands.json -------------------------------------------------------------------------------- /src/defines/ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/ids.json -------------------------------------------------------------------------------- /src/defines/ids_development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/ids_development.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/announce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/announce.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/apoiase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/apoiase.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/ask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/ask.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/badge_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/badge_post.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/badge_redeem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/badge_redeem.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/ban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/ban.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/chat.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/clear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/clear.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/color.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/daily.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/dynamic_voice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/dynamic_voice.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/forum_close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/forum_close.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/forum_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/forum_create.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/introduction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/introduction.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/judge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/judge.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/medal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/medal.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/onboarding_finalize.json: -------------------------------------------------------------------------------- 1 | { 2 | "MEMBER_OPTION": "Indique o usuário que você ajudou." 3 | } 4 | -------------------------------------------------------------------------------- /src/defines/localisation/commands/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/profile.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/profile_put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/profile_put.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/ranking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/ranking.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/reputation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/reputation.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/role_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/role_create.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/role_delete.json: -------------------------------------------------------------------------------- 1 | { 2 | "ROLE_OPTION": "O cargo que deseja remover." 3 | } 4 | -------------------------------------------------------------------------------- /src/defines/localisation/commands/say.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/say.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/shared.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/special.json: -------------------------------------------------------------------------------- 1 | { 2 | "TYPE_OPTION": "Escolha o tipo de usuário que deseja ver a mensagem." 3 | } 4 | -------------------------------------------------------------------------------- /src/defines/localisation/commands/stage_ata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/stage_ata.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/stage_finish.json: -------------------------------------------------------------------------------- 1 | { 2 | "MEETING_OPTION": "Insira o id de uma reunião existente aqui." 3 | } 4 | -------------------------------------------------------------------------------- /src/defines/localisation/commands/stage_start.json: -------------------------------------------------------------------------------- 1 | { 2 | "MEETING_OPTION": "Insira o id de uma reunião existente aqui." 3 | } 4 | -------------------------------------------------------------------------------- /src/defines/localisation/commands/suggest_introduction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/suggest_introduction.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/timeout.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/unban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/unban.json -------------------------------------------------------------------------------- /src/defines/localisation/commands/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/commands/watch.json -------------------------------------------------------------------------------- /src/defines/localisation/defaults/display.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/defaults/display.json -------------------------------------------------------------------------------- /src/defines/localisation/defaults/reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/defaults/reply.json -------------------------------------------------------------------------------- /src/defines/localisation/events/guild_enter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/events/guild_enter.json -------------------------------------------------------------------------------- /src/defines/localisation/events/nitro_boost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/events/nitro_boost.json -------------------------------------------------------------------------------- /src/defines/localisation/events/pomodoro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/localisation/events/pomodoro.json -------------------------------------------------------------------------------- /src/defines/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/values.json -------------------------------------------------------------------------------- /src/defines/values_development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/defines/values_development.json -------------------------------------------------------------------------------- /src/events/cron/apoiase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/cron/apoiase.ts -------------------------------------------------------------------------------- /src/events/cron/breakfast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/cron/breakfast.ts -------------------------------------------------------------------------------- /src/events/cron/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/cron/index.ts -------------------------------------------------------------------------------- /src/events/discord/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/discord/channel.ts -------------------------------------------------------------------------------- /src/events/discord/guild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/discord/guild.ts -------------------------------------------------------------------------------- /src/events/discord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/discord/index.ts -------------------------------------------------------------------------------- /src/events/discord/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/discord/logger.ts -------------------------------------------------------------------------------- /src/events/discord/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/discord/role.ts -------------------------------------------------------------------------------- /src/events/discord/voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/discord/voice.ts -------------------------------------------------------------------------------- /src/events/ticker/dynamic_voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/ticker/dynamic_voice.ts -------------------------------------------------------------------------------- /src/events/ticker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/ticker/index.ts -------------------------------------------------------------------------------- /src/events/ticker/medals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/ticker/medals.ts -------------------------------------------------------------------------------- /src/events/ticker/pomodoro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/ticker/pomodoro.ts -------------------------------------------------------------------------------- /src/events/ticker/presence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/ticker/presence.ts -------------------------------------------------------------------------------- /src/events/ticker/voice_xp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/events/ticker/voice_xp.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/http/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/http/firebase.ts -------------------------------------------------------------------------------- /src/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/http/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.development.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/tsup.development.config.ts -------------------------------------------------------------------------------- /tsup.production.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/he4rt/he4rt-bot-next/HEAD/tsup.production.config.ts --------------------------------------------------------------------------------