Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(InviteScope): added missing 'bot' scope #6052

Merged
merged 2 commits into from Jul 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions src/util/Constants.js
Expand Up @@ -314,6 +314,7 @@ exports.WSEvents = keyMirror([
* * `applications.commands`: allows this bot to create commands in the server
* * `applications.entitlements`: allows reading entitlements for a users applications
* * `applications.store.update`: allows reading and updating of store data for a users applications
* * `bot`: makes the bot join the selected guild
* * `connections`: makes the endpoint for getting a users connections available
* * `email`: allows the `/users/@me` endpoint return with an email
* * `identify`: allows the `/users/@me` endpoint without an email
Expand Down
1 change: 1 addition & 0 deletions typings/index.d.ts
Expand Up @@ -3556,6 +3556,7 @@ export type InviteScope =
| 'applications.commands'
| 'applications.entitlements'
| 'applications.store.update'
| 'bot'
| 'connections'
| 'email'
| 'identity'
Expand Down