Media: add refresh methods for movies, shows & people#809
Merged
Conversation
vladjerca
approved these changes
Jun 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Adds VIP metadata/artwork refresh endpoints to the
movies,shows, andpeoplecontracts, plus the JustWatch link refresh formoviesandshows. All paths map to existing API routes — no backend changes required.New methods
movies.refreshPUT /movies/:id/refresh?images=trueto also refresh images)movies.justwatch.refreshPUT /movies/:id/refresh/justwatchshows.refreshPUT /shows/:id/refresh?images=trueto also refresh images)shows.justwatch.refreshPUT /shows/:id/refresh/justwatchpeople.refreshPUT /people/:id/refresh?images=trueto also refresh images)All five are
PUT, require 🔥 VIP + 🔒 OAuth, and return201with no body once the refresh is queued.Usage
Notes
imagesas a query param. A singlerefreshmethod handles both metadata-only and metadata+images via the optionalimagesflag, so there's no separate images endpoint./refresh/justwatch, nested alongside the existingjustwatch.linkGET.refreshQuerySchema(images: boolean) added under_internal/request/and reused by all three contracts.Verification
deno fmt/deno lint— cleandeno check(movies, shows, people) — passesdeno task openapi:validate— passes (exit 0); all five paths generate as expected