Skip to content

Commit 2736687

Browse files
authored
feat(PermissionFlagsBits): add BypassSlowmode (#1427)
1 parent 388faf3 commit 2736687

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

deno/payloads/common.ts

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

payloads/common.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,12 @@ export const PermissionFlagsBits = {
294294
* Applies to channel types: Text
295295
*/
296296
PinMessages: 1n << 51n,
297+
/**
298+
* @unstable Allows for bypassing slowmode restrictions. Not (yet) documented.
299+
*
300+
* Applies to text-based and thread-based channel types.
301+
*/
302+
BypassSlowmode: 1n << 52n,
297303
} as const;
298304

299305
/**

0 commit comments

Comments
 (0)