mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00

* feat: view other users' watchlists * test: add cypress tests * feat(lang): translation keys * refactor: yarn format * fix: manage requests perm is parent of view watchlist perm
20 lines
341 B
TypeScript
20 lines
341 B
TypeScript
export interface GenreSliderItem {
|
|
id: number;
|
|
name: string;
|
|
backdrops: string[];
|
|
}
|
|
|
|
export interface WatchlistItem {
|
|
ratingKey: string;
|
|
tmdbId: number;
|
|
mediaType: 'movie' | 'tv';
|
|
title: string;
|
|
}
|
|
|
|
export interface WatchlistResponse {
|
|
page: number;
|
|
totalPages: number;
|
|
totalResults: number;
|
|
results: WatchlistItem[];
|
|
}
|