Merge branch 'v2' into v2

This commit is contained in:
jxxghp
2026-01-25 15:49:15 +08:00
committed by GitHub
6 changed files with 758 additions and 2 deletions

View File

@@ -1448,3 +1448,18 @@ export interface ApiResponse<T = any> {
message?: string
data: T
}
// 分类规则
export interface CategoryRule {
genre_ids?: string
original_language?: string
production_countries?: string
origin_country?: string
release_year?: string
}
// 分类配置
export interface CategoryConfig {
movie?: { [key: string]: CategoryRule }
tv?: { [key: string]: CategoryRule }
}