add flags property to voice state update

This commit is contained in:
Puyodead1
2023-05-06 23:51:26 -04:00
parent 91aecf2a77
commit dedb20d64f

View File

@@ -26,6 +26,7 @@ export interface VoiceStateUpdateSchema {
preferred_region?: string;
request_to_speak_timestamp?: Date;
suppress?: boolean;
flags?: number;
}
export const VoiceStateUpdateSchema = {
@@ -37,4 +38,5 @@ export const VoiceStateUpdateSchema = {
$preferred_region: String,
$request_to_speak_timestamp: Date,
$suppress: Boolean,
$flags: Number,
};