feat: add mediaAlbumId to TelegramMessage and TelegramPhoto interfaces

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-25 22:23:11 +01:00
parent e4398caebe
commit ad7790c07b
2 changed files with 2 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ export interface TelegramMessage {
fileId: string;
fileSize: bigint;
date: Date;
mediaAlbumId?: string;
}
export interface ArchiveSet {

View File

@@ -10,6 +10,7 @@ export interface TelegramPhoto {
/** The smallest photo size available — used as thumbnail. */
fileId: string;
fileSize: number;
mediaAlbumId?: string;
}
export interface ArchiveRef {