From 3f0b367ae027370a81df716eb75c05703a1af905 Mon Sep 17 00:00:00 2001 From: Ritesh Ghosh Date: Sun, 14 Jul 2024 00:09:11 +0530 Subject: [PATCH] feat: add `airingTimestamp` and `secondsUntilAiring` to `/anime/schedule` endpoint --- src/types/parsers/estimatedSchedule.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/parsers/estimatedSchedule.ts b/src/types/parsers/estimatedSchedule.ts index f62dd14..6207904 100644 --- a/src/types/parsers/estimatedSchedule.ts +++ b/src/types/parsers/estimatedSchedule.ts @@ -3,6 +3,8 @@ type EstimatedSchedule = { time: string | null; name: string | null; jname: string | null; + airingTimestamp: number; + secondsUntilAiring: number; }; export type ScrapedEstimatedSchedule = {