├── .eslintrc.js ├── .github ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml └── workflows │ └── codeql.yml ├── .gitignore ├── .nvmrc ├── ERD.svg ├── LICENSE.md ├── README.md ├── assets └── DTel.jpeg ├── package.json ├── prisma └── schema.prisma ├── src ├── commands │ ├── call │ │ ├── hangup.ts │ │ ├── hold.ts │ │ └── status.ts │ ├── maintainer │ │ ├── addvip.ts │ │ ├── eval.ts │ │ └── stats.ts │ ├── standard │ │ ├── balance.ts │ │ ├── block.ts │ │ ├── call.ts │ │ ├── daily.ts │ │ ├── help.ts │ │ ├── info.ts │ │ ├── invite.ts │ │ ├── links.ts │ │ ├── mailbox clear.ts │ │ ├── mailbox delete.ts │ │ ├── mailbox messages.ts │ │ ├── mailbox settings.ts │ │ ├── mention list.ts │ │ ├── mention remove.ts │ │ ├── mention toggle.ts │ │ ├── pay common.ts │ │ ├── pay id.ts │ │ ├── pay user.ts │ │ ├── ping.ts │ │ ├── rcall.ts │ │ ├── report.ts │ │ ├── strikes.ts │ │ ├── vote.ts │ │ └── wizard.ts │ └── support │ │ ├── addcredit.ts │ │ ├── blacklist.ts │ │ ├── cinfo.ts │ │ ├── deassign.ts │ │ ├── ninfo.ts │ │ ├── reassign.ts │ │ ├── strike add.ts │ │ ├── strike remove.ts │ │ └── uinfo.ts ├── config │ ├── commands.ts │ └── config.ts ├── database │ └── db.ts ├── dtel.ts ├── embed.js ├── events │ ├── allShardsReady.ts │ ├── guildCreate.ts │ ├── guildDelete.ts │ ├── interactionCreate.ts │ ├── messageCreate.ts │ ├── messageDelete.ts │ ├── messageUpdate.ts │ ├── ready.ts │ ├── sharderMessage.ts │ └── typingStart.ts ├── index.ts ├── interactions │ ├── call │ │ ├── 233-open.ts │ │ ├── 233-renew.ts │ │ ├── 411-manage-add-modal.ts │ │ ├── 411-manage-delete-cancel.ts │ │ ├── 411-manage-delete-confirm.ts │ │ ├── 411-manage-edit-modal.ts │ │ ├── 411-manage-selector.ts │ │ ├── 411-search-exit.ts │ │ ├── 411-search-modal-submit.ts │ │ ├── 411-search-next.ts │ │ ├── 411-search-prev.ts │ │ ├── 411-search-search.ts │ │ ├── 411-selector.ts │ │ ├── 411-vip-customname-modal-submit.ts │ │ ├── 411-vip-hide-selector.ts │ │ ├── 411-vip-selector.ts │ │ ├── 411-vip-upgrade-length.ts │ │ ├── hangup.ts │ │ └── pickup.ts │ ├── mailbox │ │ ├── clear │ │ │ └── confirm.ts │ │ ├── delete │ │ │ └── select.ts │ │ ├── messages │ │ │ ├── next.ts │ │ │ └── prev.ts │ │ ├── send │ │ │ ├── initiate.ts │ │ │ └── modal.ts │ │ └── settings │ │ │ └── update.ts │ ├── mention │ │ └── remove │ │ │ └── selector.ts │ └── wizard │ │ ├── modalSubmit.ts │ │ └── ready.ts ├── interfaces │ ├── commandData.ts │ ├── constructable.ts │ └── numbersWithGuilds.ts ├── internals │ ├── 411 │ │ └── vip.ts │ ├── callClient.ts │ ├── client.ts │ ├── commandProcessor.ts │ ├── componentProcessor.ts │ ├── console.ts │ ├── folder.md │ ├── jobs.ts │ ├── modalProcessor.ts │ ├── processor.ts │ └── utils.ts └── internationalization │ ├── data │ └── english.ts │ ├── folder.md │ └── i18n.ts ├── target └── npmlist.json └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/.github/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 -------------------------------------------------------------------------------- /ERD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/ERD.svg -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/README.md -------------------------------------------------------------------------------- /assets/DTel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/assets/DTel.jpeg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/package.json -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /src/commands/call/hangup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/call/hangup.ts -------------------------------------------------------------------------------- /src/commands/call/hold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/call/hold.ts -------------------------------------------------------------------------------- /src/commands/call/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/call/status.ts -------------------------------------------------------------------------------- /src/commands/maintainer/addvip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/maintainer/addvip.ts -------------------------------------------------------------------------------- /src/commands/maintainer/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/maintainer/eval.ts -------------------------------------------------------------------------------- /src/commands/maintainer/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/maintainer/stats.ts -------------------------------------------------------------------------------- /src/commands/standard/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/balance.ts -------------------------------------------------------------------------------- /src/commands/standard/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/block.ts -------------------------------------------------------------------------------- /src/commands/standard/call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/call.ts -------------------------------------------------------------------------------- /src/commands/standard/daily.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/daily.ts -------------------------------------------------------------------------------- /src/commands/standard/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/help.ts -------------------------------------------------------------------------------- /src/commands/standard/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/info.ts -------------------------------------------------------------------------------- /src/commands/standard/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/invite.ts -------------------------------------------------------------------------------- /src/commands/standard/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/links.ts -------------------------------------------------------------------------------- /src/commands/standard/mailbox clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/mailbox clear.ts -------------------------------------------------------------------------------- /src/commands/standard/mailbox delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/mailbox delete.ts -------------------------------------------------------------------------------- /src/commands/standard/mailbox messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/mailbox messages.ts -------------------------------------------------------------------------------- /src/commands/standard/mailbox settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/mailbox settings.ts -------------------------------------------------------------------------------- /src/commands/standard/mention list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/mention list.ts -------------------------------------------------------------------------------- /src/commands/standard/mention remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/mention remove.ts -------------------------------------------------------------------------------- /src/commands/standard/mention toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/mention toggle.ts -------------------------------------------------------------------------------- /src/commands/standard/pay common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/pay common.ts -------------------------------------------------------------------------------- /src/commands/standard/pay id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/pay id.ts -------------------------------------------------------------------------------- /src/commands/standard/pay user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/pay user.ts -------------------------------------------------------------------------------- /src/commands/standard/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/ping.ts -------------------------------------------------------------------------------- /src/commands/standard/rcall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/rcall.ts -------------------------------------------------------------------------------- /src/commands/standard/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/report.ts -------------------------------------------------------------------------------- /src/commands/standard/strikes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/strikes.ts -------------------------------------------------------------------------------- /src/commands/standard/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/vote.ts -------------------------------------------------------------------------------- /src/commands/standard/wizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/standard/wizard.ts -------------------------------------------------------------------------------- /src/commands/support/addcredit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/support/addcredit.ts -------------------------------------------------------------------------------- /src/commands/support/blacklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/support/blacklist.ts -------------------------------------------------------------------------------- /src/commands/support/cinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/support/cinfo.ts -------------------------------------------------------------------------------- /src/commands/support/deassign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/support/deassign.ts -------------------------------------------------------------------------------- /src/commands/support/ninfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/support/ninfo.ts -------------------------------------------------------------------------------- /src/commands/support/reassign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/support/reassign.ts -------------------------------------------------------------------------------- /src/commands/support/strike add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/support/strike add.ts -------------------------------------------------------------------------------- /src/commands/support/strike remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/support/strike remove.ts -------------------------------------------------------------------------------- /src/commands/support/uinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/commands/support/uinfo.ts -------------------------------------------------------------------------------- /src/config/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/config/commands.ts -------------------------------------------------------------------------------- /src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/config/config.ts -------------------------------------------------------------------------------- /src/database/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/database/db.ts -------------------------------------------------------------------------------- /src/dtel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/dtel.ts -------------------------------------------------------------------------------- /src/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/embed.js -------------------------------------------------------------------------------- /src/events/allShardsReady.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/allShardsReady.ts -------------------------------------------------------------------------------- /src/events/guildCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/guildCreate.ts -------------------------------------------------------------------------------- /src/events/guildDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/guildDelete.ts -------------------------------------------------------------------------------- /src/events/interactionCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/interactionCreate.ts -------------------------------------------------------------------------------- /src/events/messageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/messageCreate.ts -------------------------------------------------------------------------------- /src/events/messageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/messageDelete.ts -------------------------------------------------------------------------------- /src/events/messageUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/messageUpdate.ts -------------------------------------------------------------------------------- /src/events/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/ready.ts -------------------------------------------------------------------------------- /src/events/sharderMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/sharderMessage.ts -------------------------------------------------------------------------------- /src/events/typingStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/events/typingStart.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interactions/call/233-open.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/233-open.ts -------------------------------------------------------------------------------- /src/interactions/call/233-renew.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/233-renew.ts -------------------------------------------------------------------------------- /src/interactions/call/411-manage-add-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-manage-add-modal.ts -------------------------------------------------------------------------------- /src/interactions/call/411-manage-delete-cancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-manage-delete-cancel.ts -------------------------------------------------------------------------------- /src/interactions/call/411-manage-delete-confirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-manage-delete-confirm.ts -------------------------------------------------------------------------------- /src/interactions/call/411-manage-edit-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-manage-edit-modal.ts -------------------------------------------------------------------------------- /src/interactions/call/411-manage-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-manage-selector.ts -------------------------------------------------------------------------------- /src/interactions/call/411-search-exit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-search-exit.ts -------------------------------------------------------------------------------- /src/interactions/call/411-search-modal-submit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-search-modal-submit.ts -------------------------------------------------------------------------------- /src/interactions/call/411-search-next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-search-next.ts -------------------------------------------------------------------------------- /src/interactions/call/411-search-prev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-search-prev.ts -------------------------------------------------------------------------------- /src/interactions/call/411-search-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-search-search.ts -------------------------------------------------------------------------------- /src/interactions/call/411-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-selector.ts -------------------------------------------------------------------------------- /src/interactions/call/411-vip-customname-modal-submit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-vip-customname-modal-submit.ts -------------------------------------------------------------------------------- /src/interactions/call/411-vip-hide-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-vip-hide-selector.ts -------------------------------------------------------------------------------- /src/interactions/call/411-vip-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-vip-selector.ts -------------------------------------------------------------------------------- /src/interactions/call/411-vip-upgrade-length.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/411-vip-upgrade-length.ts -------------------------------------------------------------------------------- /src/interactions/call/hangup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/hangup.ts -------------------------------------------------------------------------------- /src/interactions/call/pickup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/call/pickup.ts -------------------------------------------------------------------------------- /src/interactions/mailbox/clear/confirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/mailbox/clear/confirm.ts -------------------------------------------------------------------------------- /src/interactions/mailbox/delete/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/mailbox/delete/select.ts -------------------------------------------------------------------------------- /src/interactions/mailbox/messages/next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/mailbox/messages/next.ts -------------------------------------------------------------------------------- /src/interactions/mailbox/messages/prev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/mailbox/messages/prev.ts -------------------------------------------------------------------------------- /src/interactions/mailbox/send/initiate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/mailbox/send/initiate.ts -------------------------------------------------------------------------------- /src/interactions/mailbox/send/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/mailbox/send/modal.ts -------------------------------------------------------------------------------- /src/interactions/mailbox/settings/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/mailbox/settings/update.ts -------------------------------------------------------------------------------- /src/interactions/mention/remove/selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/mention/remove/selector.ts -------------------------------------------------------------------------------- /src/interactions/wizard/modalSubmit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/wizard/modalSubmit.ts -------------------------------------------------------------------------------- /src/interactions/wizard/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interactions/wizard/ready.ts -------------------------------------------------------------------------------- /src/interfaces/commandData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interfaces/commandData.ts -------------------------------------------------------------------------------- /src/interfaces/constructable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interfaces/constructable.ts -------------------------------------------------------------------------------- /src/interfaces/numbersWithGuilds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/interfaces/numbersWithGuilds.ts -------------------------------------------------------------------------------- /src/internals/411/vip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/411/vip.ts -------------------------------------------------------------------------------- /src/internals/callClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/callClient.ts -------------------------------------------------------------------------------- /src/internals/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/client.ts -------------------------------------------------------------------------------- /src/internals/commandProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/commandProcessor.ts -------------------------------------------------------------------------------- /src/internals/componentProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/componentProcessor.ts -------------------------------------------------------------------------------- /src/internals/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/console.ts -------------------------------------------------------------------------------- /src/internals/folder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/folder.md -------------------------------------------------------------------------------- /src/internals/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/jobs.ts -------------------------------------------------------------------------------- /src/internals/modalProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/modalProcessor.ts -------------------------------------------------------------------------------- /src/internals/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/processor.ts -------------------------------------------------------------------------------- /src/internals/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internals/utils.ts -------------------------------------------------------------------------------- /src/internationalization/data/english.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internationalization/data/english.ts -------------------------------------------------------------------------------- /src/internationalization/folder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internationalization/folder.md -------------------------------------------------------------------------------- /src/internationalization/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/src/internationalization/i18n.ts -------------------------------------------------------------------------------- /target/npmlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/target/npmlist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTel-HQ/dtel/HEAD/tsconfig.json --------------------------------------------------------------------------------