From e76a874f11f8bcd288a2e62455a26111fbe1892e Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Sat, 13 Jun 2026 16:53:30 +0700 Subject: [PATCH] chore(services): update components based on recent changes Changes: services/frontend/src/shared/api/client.ts | 8 ++++++++ 1 file changed, 8 insertions(+) --- services/frontend/src/shared/api/client.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/services/frontend/src/shared/api/client.ts b/services/frontend/src/shared/api/client.ts index 550d775..dae5162 100644 --- a/services/frontend/src/shared/api/client.ts +++ b/services/frontend/src/shared/api/client.ts @@ -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 {