mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
fix(types): BitwisePermissionFlags REQUEST_TO_SPEAK & add(types): BitwisePermissionFlags USE_EXTERNAL_STICKERS
discords versioning is just the best
This commit is contained in:
@@ -65,13 +65,15 @@ export enum DiscordBitwisePermissionFlags {
|
||||
/** Allows members to use slash commands in text channels */
|
||||
USE_SLASH_COMMANDS = 0x80000000,
|
||||
/** Allows for requesting to speak in stage channels. */
|
||||
REQUEST_TO_SPEAK = 0x100000001,
|
||||
REQUEST_TO_SPEAK = 0x0100000000,
|
||||
/** Allows for deleting and archiving threads, and viewing all private threads */
|
||||
MANAGE_THREADS = 0x0400000000,
|
||||
/** Allows for creating and participating in threads */
|
||||
USE_PUBLIC_THREADS = 0x0800000000,
|
||||
/** Allows for creating and participating in private threads */
|
||||
USE_PRIVATE_THREADS = 0x1000000000,
|
||||
/** Allows the usage of custom stickers from other servers */
|
||||
USE_EXTERNAL_STICKERS = 0x2000000000,
|
||||
}
|
||||
|
||||
export type BitwisePermissions = DiscordBitwisePermissionFlags;
|
||||
|
||||
Reference in New Issue
Block a user