diff --git a/src/util/Constants.js b/src/util/Constants.js index 0a8990bd96b2..92caafbef7f3 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -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 diff --git a/typings/index.d.ts b/typings/index.d.ts index 258f2df9a8c1..022e9800fbe4 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -3553,6 +3553,7 @@ export type InviteScope = | 'applications.commands' | 'applications.entitlements' | 'applications.store.update' + | 'bot' | 'connections' | 'email' | 'identity'