feat: tmdb cache, plugin support changes, series page, episode page, movie page streaming updated

This commit is contained in:
Aleksi Lassila
2025-01-31 18:54:04 +02:00
parent dc295ed203
commit cf289872f7
37 changed files with 3373 additions and 4380 deletions

View File

@@ -5,6 +5,7 @@ import {
PrimaryGeneratedColumn,
UpdateDateColumn,
} from 'typeorm';
import { TmdbMovieFull } from './tmdb/tmdb.dto';
@Entity()
export class Movie {
@@ -17,7 +18,7 @@ export class Movie {
tmdbId: string;
@Column('json')
tmdbMovie: any
tmdbMovie: TmdbMovieFull;
@UpdateDateColumn()
updatedAt: Date;