From b6f328aa0fc8677498f319aa2e3443a1ffc28e1c Mon Sep 17 00:00:00 2001 From: Danial Raza Date: Sun, 30 Nov 2025 13:40:06 +0100 Subject: [PATCH] chore(PermissionFlagsBits): mark `BypassSlowmode` as stable (#1456) --- deno/payloads/common.ts | 4 ++-- payloads/common.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deno/payloads/common.ts b/deno/payloads/common.ts index d176b04c..4da7f318 100644 --- a/deno/payloads/common.ts +++ b/deno/payloads/common.ts @@ -295,9 +295,9 @@ export const PermissionFlagsBits = { */ PinMessages: 1n << 51n, /** - * @unstable Allows for bypassing slowmode restrictions. Not (yet) documented. + * Allows bypassing slowmode restrictions * - * Applies to text-based and thread-based channel types. + * Applies to channel types: Text, Voice, Stage */ BypassSlowmode: 1n << 52n, } as const; diff --git a/payloads/common.ts b/payloads/common.ts index 25bc3b65..d66a40d7 100644 --- a/payloads/common.ts +++ b/payloads/common.ts @@ -295,9 +295,9 @@ export const PermissionFlagsBits = { */ PinMessages: 1n << 51n, /** - * @unstable Allows for bypassing slowmode restrictions. Not (yet) documented. + * Allows bypassing slowmode restrictions * - * Applies to text-based and thread-based channel types. + * Applies to channel types: Text, Voice, Stage */ BypassSlowmode: 1n << 52n, } as const;