mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-24 01:35:12 +02:00
feat: show recently played from library on front pages
This commit is contained in:
@@ -166,13 +166,21 @@ export interface PaginatedResponseDto {
|
||||
export interface MovieDto {
|
||||
id?: string;
|
||||
tmdbId: string;
|
||||
tmdbMovie?: object;
|
||||
}
|
||||
|
||||
export interface Series {
|
||||
id?: string;
|
||||
tmdbId: string;
|
||||
tmdbSeries?: object;
|
||||
}
|
||||
|
||||
export interface LibraryItemDto {
|
||||
tmdbId: string;
|
||||
mediaType: 'Movie' | 'Series' | 'Episode';
|
||||
playStates?: PlayStateDto[];
|
||||
metadata?: MovieDto;
|
||||
movieMetadata?: MovieDto;
|
||||
seriesMetadata?: Series;
|
||||
}
|
||||
|
||||
export interface SuccessResponseDto {
|
||||
|
||||
Reference in New Issue
Block a user