feat:支持探索扩展

This commit is contained in:
jxxghp
2025-02-06 18:04:49 +08:00
parent b03ae41ac7
commit b14e927e6c
3 changed files with 80 additions and 0 deletions

View File

@@ -1204,3 +1204,17 @@ export interface TransferQueue {
state: string
}[]
}
// 探索的数据源
export interface DiscoverSource {
// 数据源名称
name: string
// 媒体ID的前缀不含:
mediaid_prefix: string
// 媒体数据源API地址
api_path: string
// 过滤参数
filter_params: { [key: string]: any }
// 过滤参数UI配置
filter_ui: RenderProps[]
}