Add episode_group param to TMDB episode requests

This commit is contained in:
HenryZZZZZ
2026-01-23 11:08:55 +08:00
parent 64a4a7aff5
commit 1dab013436
3 changed files with 7 additions and 3 deletions

View File

@@ -272,6 +272,8 @@ export interface MediaInfo {
vote_average?: number
// 描述
overview?: string
// 自定义剧集组
episode_group?: string
// 二级分类
category?: string
// 详情页面
@@ -1445,4 +1447,4 @@ export interface ApiResponse<T = any> {
success: boolean
message?: string
data: T
}
}