export const TWITCH_CHANNELS_BY_DISCORD_ID: Record<string, string> = {
  "286577400157044736": "theonlygamer35",
  "257896226366816257": "minniiminh",
  "197667147487379456": "patrick15a",
};

export type CommunityStreamer = {
  discordId: string;
  discordUsername: string;
  discordDisplayName: string;
  twitchLogin: string;
  twitchDisplayName: string;
  twitchUrl: string;
  profileImageUrl: string | null;
  offlineImageUrl: string | null;
  isLive: boolean;
  title: string | null;
  gameName: string | null;
  viewerCount: number | null;
  thumbnailUrl: string | null;
  startedAt: string | null;
};

export type CommunityStreamerResponse = {
  ok: boolean;
  configured: boolean;
  count: number;
  liveCount: number;
  streamers: CommunityStreamer[];
  error?: string;
};
