私人影库增加追番订阅功能

This commit is contained in:
mtvpls
2026-02-18 17:20:37 +08:00
parent e4a76b3f9d
commit 96b08dc0bd
11 changed files with 1455 additions and 1 deletions

View File

@@ -249,6 +249,21 @@ export interface AdminConfig {
OpenListCachePath?: string; // OpenList缓存目录路径
OpenListCacheProxyEnabled?: boolean; // 启用缓存代理返回(默认开启)
};
AnimeSubscriptionConfig?: {
Enabled: boolean; // 是否启用追番功能
Subscriptions: Array<{
id: string;
title: string;
filterText: string;
source: 'acgrip' | 'mikan' | 'dmhy';
enabled: boolean;
lastCheckTime: number;
lastEpisode: number;
createdAt: number;
updatedAt: number;
createdBy: string;
}>;
};
}
export interface AdminConfigResult {