feat: add YouTube channel ID to chat message data model

This commit is contained in:
Yusuf İpek
2025-10-06 00:02:02 +03:00
parent 7d502c26ea
commit c131913b8a
2 changed files with 5 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ export type ChatMessage = {
id: string;
author: string;
authorPhoto?: string;
authorChannelId?: string;
text: string;
publishedAt: string;
badges?: Badge[];