├── .eslintrc.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml └── workflows │ ├── code-ql.yml │ └── node-ci.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── PRIVACY.md ├── README.md ├── docs ├── .nojekyll ├── _navbar.md ├── commands │ ├── edit.md │ ├── help.md │ ├── oneHundred.md │ └── view.md ├── img │ ├── edit-confirm.png │ ├── edit.png │ ├── get-id.png │ ├── help.png │ ├── oneHundred.png │ ├── slash-edit.png │ ├── slash.png │ └── view.png ├── index.html └── index.md ├── package.json ├── renovate.json ├── sample.env ├── src ├── commands │ ├── _CommandList.ts │ ├── edit.ts │ ├── help.ts │ ├── oneHundred.ts │ ├── reset.ts │ └── view.ts ├── config │ └── IntentOptions.ts ├── database │ ├── connectDatabase.ts │ └── models │ │ └── CamperModel.ts ├── events │ ├── onInteraction.ts │ └── onReady.ts ├── index.ts ├── interfaces │ └── CommandInt.ts ├── modules │ ├── getCamperData.ts │ └── updateCamperData.ts └── utils │ ├── errorHandler.ts │ ├── logHandler.ts │ └── validateEnv.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: freecodecamp 2 | -------------------------------------------------------------------------------- /.github/workflows/code-ql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/.github/workflows/code-ql.yml -------------------------------------------------------------------------------- /.github/workflows/node-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/.github/workflows/node-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/_navbar.md -------------------------------------------------------------------------------- /docs/commands/edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/commands/edit.md -------------------------------------------------------------------------------- /docs/commands/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/commands/help.md -------------------------------------------------------------------------------- /docs/commands/oneHundred.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/commands/oneHundred.md -------------------------------------------------------------------------------- /docs/commands/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/commands/view.md -------------------------------------------------------------------------------- /docs/img/edit-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/img/edit-confirm.png -------------------------------------------------------------------------------- /docs/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/img/edit.png -------------------------------------------------------------------------------- /docs/img/get-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/img/get-id.png -------------------------------------------------------------------------------- /docs/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/img/help.png -------------------------------------------------------------------------------- /docs/img/oneHundred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/img/oneHundred.png -------------------------------------------------------------------------------- /docs/img/slash-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/img/slash-edit.png -------------------------------------------------------------------------------- /docs/img/slash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/img/slash.png -------------------------------------------------------------------------------- /docs/img/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/img/view.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/docs/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/renovate.json -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/sample.env -------------------------------------------------------------------------------- /src/commands/_CommandList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/commands/_CommandList.ts -------------------------------------------------------------------------------- /src/commands/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/commands/edit.ts -------------------------------------------------------------------------------- /src/commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/commands/help.ts -------------------------------------------------------------------------------- /src/commands/oneHundred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/commands/oneHundred.ts -------------------------------------------------------------------------------- /src/commands/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/commands/reset.ts -------------------------------------------------------------------------------- /src/commands/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/commands/view.ts -------------------------------------------------------------------------------- /src/config/IntentOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/config/IntentOptions.ts -------------------------------------------------------------------------------- /src/database/connectDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/database/connectDatabase.ts -------------------------------------------------------------------------------- /src/database/models/CamperModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/database/models/CamperModel.ts -------------------------------------------------------------------------------- /src/events/onInteraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/events/onInteraction.ts -------------------------------------------------------------------------------- /src/events/onReady.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/events/onReady.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/CommandInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/interfaces/CommandInt.ts -------------------------------------------------------------------------------- /src/modules/getCamperData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/modules/getCamperData.ts -------------------------------------------------------------------------------- /src/modules/updateCamperData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/modules/updateCamperData.ts -------------------------------------------------------------------------------- /src/utils/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/utils/errorHandler.ts -------------------------------------------------------------------------------- /src/utils/logHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/utils/logHandler.ts -------------------------------------------------------------------------------- /src/utils/validateEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/src/utils/validateEnv.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/100DaysOfCode-discord-bot/HEAD/tsconfig.json --------------------------------------------------------------------------------