chore(services): update components based on recent changes

Changes:
 services/frontend/src/shared/api/client.ts | 8 ++++++++
 1 file changed, 8 insertions(+)
This commit is contained in:
MythEclipse
2026-06-13 16:53:30 +07:00
parent d0d2c316cf
commit e76a874f11
@@ -72,11 +72,19 @@ export interface Channel {
parentId?: string | null;
}
export interface GuildVoiceEntry {
guildId: string;
channelId: string;
channelName: string;
connectedAt: number;
}
export interface VoiceStatus {
connected: boolean;
activeGuildId: string | null;
activeChannelId: string | null;
activeChannelName: string | null;
connections: GuildVoiceEntry[];
}
export interface ActiveSpeaker {