From 7aed376d407c804391b6c1323e1b3ef6d609d68f Mon Sep 17 00:00:00 2001 From: rosefighter <104164859+rosefighter@users.noreply.github.com> Date: Sun, 19 Nov 2023 12:29:42 -0600 Subject: [PATCH] adding document use of external sounds permission (#3187) --- packages/types/src/shared.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/types/src/shared.ts b/packages/types/src/shared.ts index 2462b0bb7..a64bd0372 100644 --- a/packages/types/src/shared.ts +++ b/packages/types/src/shared.ts @@ -636,6 +636,10 @@ export enum BitwisePermissionFlags { VIEW_CREATOR_MONETIZATION_ANALYTICS = 0x0000020000000000, /** Allows for using soundboard in a voice channel. */ USE_SOUNDBOARD = 0x0000040000000000, + /** Allows the usage of custom soundboards sounds from other servers*/ + USE_EXTERNAL_SOUNDS = 0x0000200000000000, + /** Allows sending voice messages */ + SEND_VOICE_MESSAGES = 0x0000400000000000, } export type PermissionStrings = keyof typeof BitwisePermissionFlags