@@ -470,6 +470,7 @@ export namespace Permissions {
470470 export const USE_EXTERNAL_SOUNDS = 35184372088832n ; // 1 << 45
471471 export const SEND_VOICE_MESSAGES = 70368744177664n ; // 1 << 46
472472 export const USE_CLYDE_AI = 140737488355328n ; // 1 << 47
473+ export const SET_VOICE_CHANNEL_STATUS = 281474976710656n ; // 1 << 48
473474}
474475
475476// bigints can't be used as object keys, so we need to convert them to strings
@@ -533,7 +534,8 @@ export const VoicePermissions = [
533534 Permissions . USE_SOUNDBOARD ,
534535 Permissions . USE_EXTERNAL_SOUNDS ,
535536 Permissions . SEND_VOICE_MESSAGES ,
536- Permissions . USE_CLYDE_AI
537+ Permissions . USE_CLYDE_AI ,
538+ Permissions . SET_VOICE_CHANNEL_STATUS
537539] as const ;
538540export const AllVoicePermissions = VoicePermissions . reduce ( ( all , p ) => all | p , 0n ) ;
539541export const AllVoicePermissionNames = VoicePermissions . map ( p => PermissionValueToName [ String ( p ) as `${typeof p } `] ) ;
@@ -919,8 +921,10 @@ export enum AuditLogActionTypes {
919921
920922 HARMFUL_LINKS_BLOCKED_MESSAGE = 180 ,
921923
922- HOME_SETTINGS_CREATE = 190 ,
923- HOME_SETTINGS_UPDATE = 191 ,
924+ HOME_SETTINGS_CREATE = 190 ,
925+ HOME_SETTINGS_UPDATE = 191 ,
926+ VOICE_CHANNEL_STATUS_CREATE = 192 ,
927+ VOICE_CHANNEL_STATUS_DELETE = 193 ,
924928}
925929
926930export enum ApplicationCommandTypes {
0 commit comments