From 80a1f250f7079692731973d594b487c8f5697ac3 Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Wed, 30 Apr 2025 20:14:45 -0400 Subject: [PATCH] update README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index db3e49c..62df9c2 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ See https://docs.api.jikan.moe/#tag/anime/operation/getAnimeSearch for parameter Additional parameters supported: - `allow_duplicates`: skips de-duplication of results +- `merge_seasons`: skips seasons of already included shows Example request: ```bash @@ -48,6 +49,7 @@ Parameters: - sort: [[MediaSort]](https://studio.apollographql.com/sandbox/schema/reference/enums/MediaSort) - limit: Int - allowDuplicates: Boolean +- mergeSeasons: Boolean Example request: ```bash @@ -57,8 +59,7 @@ curl "http://localhost:3333/v1/anilist/anime?format=TV,ONA&sort=TRENDING_DESC&is ## Environment One configuration environment variable is supported: -- `ALWAYS_SKIP_MAL_IDS`: Comma-separated list of MyAnimeList IDs to always skip. These do not count towards the return limit. -- `ALWAYS_SKIP_ANILIST_IDS`: Comma-separated list of AniList IDs to always skip. These do not count towards the return limit. +- `ALWAYS_SKIP_TVDB_IDS`: Comma-separated list of TVDB IDs to always skip. These do not count towards the return limit. ## Docker Compose ```yaml @@ -69,8 +70,7 @@ services: ports: - 3333:3333 environment: - - ALWAYS_SKIP_MAL_IDS=12345,67890 # Comma-separated - - ALWAYS_SKIP_ANILIST_IDS=01234,56789 # Comma-separated + - ALWAYS_SKIP_TVDB_IDS=12345,67890 # Comma-separated restart: unless-stopped ```