Fix cache IDs and discover route for music/book types
Some checks failed
Rebuild Issue Index / build-index (push) Has been cancelled
Close Stale Issues and PRs / Close stale issues and PRs (push) Has been cancelled
Trivy Container Vulnerability Scan / Scan latest container image (push) Has been cancelled
Check Docs Links / Verify external links in Markdown and MDX (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled

This commit is contained in:
root
2026-04-04 12:31:10 -05:00
parent 206f586a11
commit 2dc143faf7
2 changed files with 7 additions and 1 deletions

View File

@@ -4,6 +4,8 @@ export type AvailableCacheIds =
| 'tmdb'
| 'radarr'
| 'sonarr'
| 'lidarr'
| 'readarr'
| 'rt'
| 'imdb'
| 'github'
@@ -50,6 +52,8 @@ class CacheManager {
}),
radarr: new Cache('radarr', 'Radarr API'),
sonarr: new Cache('sonarr', 'Sonarr API'),
lidarr: new Cache('lidarr', 'Lidarr API'),
readarr: new Cache('readarr', 'Readarr API'),
rt: new Cache('rt', 'Rotten Tomatoes API', {
stdTtl: 43200,
checkPeriod: 60 * 30,