1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-25 19:52:36 +01:00

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
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

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,
};