Fix TypeScript type errors for new media types

- Update BlocklistItem interface to accept music/book media types
- Update RequestList MediaType union to include music/book
This commit is contained in:
root
2026-04-03 21:50:03 -05:00
parent af6579163b
commit 9a63f4a4dd
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ import type { PaginatedResponse } from '@server/interfaces/api/common';
export interface BlocklistItem {
tmdbId: number;
mediaType: 'movie' | 'tv';
mediaType: 'movie' | 'tv' | 'music' | 'book';
title?: string;
createdAt?: Date;
user?: User;