mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
30 lines
739 B
TypeScript
30 lines
739 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/oauth2/scopes.ts
|
||
|
|
||
|
|
||
|
/** https://discord.com/developers/docs/topics/oauth2#shared-resources-oauth2-scopes */
|
||
|
export type DiscordOAuth2Scopes =
|
||
|
| "bot"
|
||
|
| "connections"
|
||
|
| "email"
|
||
|
| "identify"
|
||
|
| "guilds"
|
||
|
| "guilds.join"
|
||
|
| "gdm.join"
|
||
|
| "messages.read"
|
||
|
| "rpc"
|
||
|
| "rpc.api"
|
||
|
| "rpc.activities.write"
|
||
|
| "rpc.notifications.read"
|
||
|
| "rpc.voice.read"
|
||
|
| "rpc.voice.write"
|
||
|
| "webhook.incomming"
|
||
|
| "applications.builds.upload"
|
||
|
| "applications.builds.read"
|
||
|
| "applications.store.update"
|
||
|
| "applications.entitlements"
|
||
|
| "relationships.read"
|
||
|
| "activities.read"
|
||
|
| "activities.write"
|
||
|
| "applications.commands"
|
||
|
| "applications.commands.update";
|