feat(tv): seerr

This commit is contained in:
Fredrik Burmester
2026-01-20 22:15:00 +01:00
parent e3b4952c60
commit 0353a718f3
17 changed files with 1675 additions and 58 deletions

View File

@@ -0,0 +1,13 @@
import { atom } from "jotai";
import type { MediaType } from "@/utils/jellyseerr/server/constants/media";
import type { MediaRequestBody } from "@/utils/jellyseerr/server/interfaces/api/requestInterfaces";
export type TVRequestModalState = {
requestBody: MediaRequestBody;
title: string;
id: number;
mediaType: MediaType;
onRequested: () => void;
} | null;
export const tvRequestModalAtom = atom<TVRequestModalState>(null);