feat(PermissionFlagsBits): add BypassSlowmode (#1427)

This commit is contained in:
Jiralite
2025-11-08 08:04:25 +00:00
committed by GitHub
parent 388faf3d33
commit 2736687283
2 changed files with 12 additions and 0 deletions

View File

@@ -294,6 +294,12 @@ export const PermissionFlagsBits = {
* Applies to channel types: Text
*/
PinMessages: 1n << 51n,
/**
* @unstable Allows for bypassing slowmode restrictions. Not (yet) documented.
*
* Applies to text-based and thread-based channel types.
*/
BypassSlowmode: 1n << 52n,
} as const;
/**

View File

@@ -294,6 +294,12 @@ export const PermissionFlagsBits = {
* Applies to channel types: Text
*/
PinMessages: 1n << 51n,
/**
* @unstable Allows for bypassing slowmode restrictions. Not (yet) documented.
*
* Applies to text-based and thread-based channel types.
*/
BypassSlowmode: 1n << 52n,
} as const;
/**