mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-30 07:14:44 +00:00
Added /guilds/:id/voice-states apis
This commit is contained in:
@@ -92,3 +92,15 @@ export interface GuildUpdateWelcomeScreenSchema {
|
||||
enabled?: boolean;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
export const VoiceStateUpdateSchema = {
|
||||
channel_id: String, // Snowflake
|
||||
$suppress: Boolean,
|
||||
$request_to_speak_timestamp: String // ISO8601 timestamp
|
||||
};
|
||||
|
||||
export interface VoiceStateUpdateSchema {
|
||||
channel_id: string; // Snowflake
|
||||
suppress?: boolean;
|
||||
request_to_speak_timestamp?: string // ISO8601 timestamp
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user