@tmdb-graphql-api/resolvers 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/cjs/index.cjs +3435 -0
- package/dist/cjs/index.cjs.map +1 -0
- package/dist/esm/index.mjs +3432 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/types/cjs/constants.d.cts +54 -0
- package/dist/types/cjs/constants.d.cts.map +1 -0
- package/dist/types/cjs/helpers/decodeId.d.cts +3 -0
- package/dist/types/cjs/helpers/decodeId.d.cts.map +1 -0
- package/dist/types/cjs/helpers/defaultFieldResolver.d.cts +4 -0
- package/dist/types/cjs/helpers/defaultFieldResolver.d.cts.map +1 -0
- package/dist/types/cjs/helpers/encodeId.d.cts +3 -0
- package/dist/types/cjs/helpers/encodeId.d.cts.map +1 -0
- package/dist/types/cjs/helpers/formatDirectionalSuffixes.d.cts +3 -0
- package/dist/types/cjs/helpers/formatDirectionalSuffixes.d.cts.map +1 -0
- package/dist/types/cjs/helpers/formatQueryParams.d.cts +6 -0
- package/dist/types/cjs/helpers/formatQueryParams.d.cts.map +1 -0
- package/dist/types/cjs/helpers/getAppendToResponseKeys.d.cts +4 -0
- package/dist/types/cjs/helpers/getAppendToResponseKeys.d.cts.map +1 -0
- package/dist/types/cjs/helpers/getTvIdSeasonAndEpisode.d.cts +8 -0
- package/dist/types/cjs/helpers/getTvIdSeasonAndEpisode.d.cts.map +1 -0
- package/dist/types/cjs/helpers/makeFallbackFieldResolvers.d.cts +3 -0
- package/dist/types/cjs/helpers/makeFallbackFieldResolvers.d.cts.map +1 -0
- package/dist/types/cjs/helpers/removeNullValues.d.cts +3 -0
- package/dist/types/cjs/helpers/removeNullValues.d.cts.map +1 -0
- package/dist/types/cjs/helpers/snakeCasePropNames.d.cts +4 -0
- package/dist/types/cjs/helpers/snakeCasePropNames.d.cts.map +1 -0
- package/dist/types/cjs/helpers/typePropNames.d.cts +2 -0
- package/dist/types/cjs/helpers/typePropNames.d.cts.map +1 -0
- package/dist/types/cjs/index.d.cts +3 -0
- package/dist/types/cjs/index.d.cts.map +1 -0
- package/dist/types/cjs/main.d.cts +3 -0
- package/dist/types/cjs/main.d.cts.map +1 -0
- package/dist/types/cjs/queries/certifications.d.cts +5 -0
- package/dist/types/cjs/queries/certifications.d.cts.map +1 -0
- package/dist/types/cjs/queries/collection.d.cts +3401 -0
- package/dist/types/cjs/queries/collection.d.cts.map +1 -0
- package/dist/types/cjs/queries/collectionImages.d.cts +14 -0
- package/dist/types/cjs/queries/collectionImages.d.cts.map +1 -0
- package/dist/types/cjs/queries/collectionTranslations.d.cts +18 -0
- package/dist/types/cjs/queries/collectionTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/company.d.cts +15 -0
- package/dist/types/cjs/queries/company.d.cts.map +1 -0
- package/dist/types/cjs/queries/companyAlternativeNames.d.cts +10 -0
- package/dist/types/cjs/queries/companyAlternativeNames.d.cts.map +1 -0
- package/dist/types/cjs/queries/companyLogos.d.cts +14 -0
- package/dist/types/cjs/queries/companyLogos.d.cts.map +1 -0
- package/dist/types/cjs/queries/configuration.d.cts +16 -0
- package/dist/types/cjs/queries/configuration.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationCountries.d.cts +4 -0
- package/dist/types/cjs/queries/configurationCountries.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationJobs.d.cts +4 -0
- package/dist/types/cjs/queries/configurationJobs.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationLanguages.d.cts +4 -0
- package/dist/types/cjs/queries/configurationLanguages.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationPrimaryTranslations.d.cts +4 -0
- package/dist/types/cjs/queries/configurationPrimaryTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/configurationTimezones.d.cts +4 -0
- package/dist/types/cjs/queries/configurationTimezones.d.cts.map +1 -0
- package/dist/types/cjs/queries/credit.d.cts +4196 -0
- package/dist/types/cjs/queries/credit.d.cts.map +1 -0
- package/dist/types/cjs/queries/discoverMovies.d.cts +15 -0
- package/dist/types/cjs/queries/discoverMovies.d.cts.map +1 -0
- package/dist/types/cjs/queries/discoverTv.d.cts +15 -0
- package/dist/types/cjs/queries/discoverTv.d.cts.map +1 -0
- package/dist/types/cjs/queries/episode.d.cts +98 -0
- package/dist/types/cjs/queries/episode.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeCredits.d.cts +33 -0
- package/dist/types/cjs/queries/episodeCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeExternalIds.d.cts +16 -0
- package/dist/types/cjs/queries/episodeExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeStills.d.cts +6 -0
- package/dist/types/cjs/queries/episodeStills.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/episodeTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/episodeVideos.d.cts +16 -0
- package/dist/types/cjs/queries/episodeVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/find.d.cts +1803 -0
- package/dist/types/cjs/queries/find.d.cts.map +1 -0
- package/dist/types/cjs/queries/genres.d.cts +9 -0
- package/dist/types/cjs/queries/genres.d.cts.map +1 -0
- package/dist/types/cjs/queries/keyword.d.cts +9 -0
- package/dist/types/cjs/queries/keyword.d.cts.map +1 -0
- package/dist/types/cjs/queries/movie.d.cts +3597 -0
- package/dist/types/cjs/queries/movie.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieAlternativeTitles.d.cts +7 -0
- package/dist/types/cjs/queries/movieAlternativeTitles.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieCredits.d.cts +33 -0
- package/dist/types/cjs/queries/movieCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieExternalIds.d.cts +16 -0
- package/dist/types/cjs/queries/movieExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieImages.d.cts +6 -0
- package/dist/types/cjs/queries/movieImages.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieKeywords.d.cts +6 -0
- package/dist/types/cjs/queries/movieKeywords.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieRecommendations.d.cts +1866 -0
- package/dist/types/cjs/queries/movieRecommendations.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieReleaseDates.d.cts +13 -0
- package/dist/types/cjs/queries/movieReleaseDates.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieReviews.d.cts +1866 -0
- package/dist/types/cjs/queries/movieReviews.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieSimilarMovies.d.cts +1866 -0
- package/dist/types/cjs/queries/movieSimilarMovies.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/movieTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieVideos.d.cts +16 -0
- package/dist/types/cjs/queries/movieVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/movieWatchProviders.d.cts +1375 -0
- package/dist/types/cjs/queries/movieWatchProviders.d.cts.map +1 -0
- package/dist/types/cjs/queries/network.d.cts +26 -0
- package/dist/types/cjs/queries/network.d.cts.map +1 -0
- package/dist/types/cjs/queries/networkAlternativeNames.d.cts +10 -0
- package/dist/types/cjs/queries/networkAlternativeNames.d.cts.map +1 -0
- package/dist/types/cjs/queries/networkLogos.d.cts +14 -0
- package/dist/types/cjs/queries/networkLogos.d.cts.map +1 -0
- package/dist/types/cjs/queries/person.d.cts +46 -0
- package/dist/types/cjs/queries/person.d.cts.map +1 -0
- package/dist/types/cjs/queries/personCombinedCredits.d.cts +6 -0
- package/dist/types/cjs/queries/personCombinedCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/personExternalIds.d.cts +6 -0
- package/dist/types/cjs/queries/personExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/personMovieCredits.d.cts +6 -0
- package/dist/types/cjs/queries/personMovieCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/personProfiles.d.cts +6 -0
- package/dist/types/cjs/queries/personProfiles.d.cts.map +1 -0
- package/dist/types/cjs/queries/personTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/personTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/personTvCredits.d.cts +6 -0
- package/dist/types/cjs/queries/personTvCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/rated.d.cts +17 -0
- package/dist/types/cjs/queries/rated.d.cts.map +1 -0
- package/dist/types/cjs/queries/review.d.cts +28 -0
- package/dist/types/cjs/queries/review.d.cts.map +1 -0
- package/dist/types/cjs/queries/search.d.cts +17 -0
- package/dist/types/cjs/queries/search.d.cts.map +1 -0
- package/dist/types/cjs/queries/season.d.cts +282 -0
- package/dist/types/cjs/queries/season.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonCredits.d.cts +33 -0
- package/dist/types/cjs/queries/seasonCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonEpisodeCount.d.cts +3 -0
- package/dist/types/cjs/queries/seasonEpisodeCount.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonExternalIds.d.cts +6 -0
- package/dist/types/cjs/queries/seasonExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonPosters.d.cts +6 -0
- package/dist/types/cjs/queries/seasonPosters.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/seasonTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/seasonVideos.d.cts +16 -0
- package/dist/types/cjs/queries/seasonVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/trending.d.cts +17 -0
- package/dist/types/cjs/queries/trending.d.cts.map +1 -0
- package/dist/types/cjs/queries/tv.d.cts +10460 -0
- package/dist/types/cjs/queries/tv.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvAlternativeTitles.d.cts +12 -0
- package/dist/types/cjs/queries/tvAlternativeTitles.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvContentRatings.d.cts +10 -0
- package/dist/types/cjs/queries/tvContentRatings.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvCredits.d.cts +33 -0
- package/dist/types/cjs/queries/tvCredits.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvEpisodeGroups.d.cts +41 -0
- package/dist/types/cjs/queries/tvEpisodeGroups.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvExternalIds.d.cts +16 -0
- package/dist/types/cjs/queries/tvExternalIds.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvImages.d.cts +16 -0
- package/dist/types/cjs/queries/tvImages.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvKeywords.d.cts +10 -0
- package/dist/types/cjs/queries/tvKeywords.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvRecommendations.d.cts +5373 -0
- package/dist/types/cjs/queries/tvRecommendations.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvReviews.d.cts +5373 -0
- package/dist/types/cjs/queries/tvReviews.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvSimilarTvShows.d.cts +5373 -0
- package/dist/types/cjs/queries/tvSimilarTvShows.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvTranslations.d.cts +20 -0
- package/dist/types/cjs/queries/tvTranslations.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvVideos.d.cts +16 -0
- package/dist/types/cjs/queries/tvVideos.d.cts.map +1 -0
- package/dist/types/cjs/queries/tvWatchProviders.d.cts +1375 -0
- package/dist/types/cjs/queries/tvWatchProviders.d.cts.map +1 -0
- package/dist/types/cjs/queries/videoType.d.cts +3 -0
- package/dist/types/cjs/queries/videoType.d.cts.map +1 -0
- package/dist/types/cjs/types.d.cts +326 -0
- package/dist/types/cjs/types.d.cts.map +1 -0
- package/dist/types/esm/constants.d.ts +54 -0
- package/dist/types/esm/constants.d.ts.map +1 -0
- package/dist/types/esm/helpers/decodeId.d.ts +3 -0
- package/dist/types/esm/helpers/decodeId.d.ts.map +1 -0
- package/dist/types/esm/helpers/defaultFieldResolver.d.ts +4 -0
- package/dist/types/esm/helpers/defaultFieldResolver.d.ts.map +1 -0
- package/dist/types/esm/helpers/encodeId.d.ts +3 -0
- package/dist/types/esm/helpers/encodeId.d.ts.map +1 -0
- package/dist/types/esm/helpers/formatDirectionalSuffixes.d.ts +3 -0
- package/dist/types/esm/helpers/formatDirectionalSuffixes.d.ts.map +1 -0
- package/dist/types/esm/helpers/formatQueryParams.d.ts +6 -0
- package/dist/types/esm/helpers/formatQueryParams.d.ts.map +1 -0
- package/dist/types/esm/helpers/getAppendToResponseKeys.d.ts +4 -0
- package/dist/types/esm/helpers/getAppendToResponseKeys.d.ts.map +1 -0
- package/dist/types/esm/helpers/getTvIdSeasonAndEpisode.d.ts +8 -0
- package/dist/types/esm/helpers/getTvIdSeasonAndEpisode.d.ts.map +1 -0
- package/dist/types/esm/helpers/makeFallbackFieldResolvers.d.ts +3 -0
- package/dist/types/esm/helpers/makeFallbackFieldResolvers.d.ts.map +1 -0
- package/dist/types/esm/helpers/removeNullValues.d.ts +3 -0
- package/dist/types/esm/helpers/removeNullValues.d.ts.map +1 -0
- package/dist/types/esm/helpers/snakeCasePropNames.d.ts +4 -0
- package/dist/types/esm/helpers/snakeCasePropNames.d.ts.map +1 -0
- package/dist/types/esm/helpers/typePropNames.d.ts +2 -0
- package/dist/types/esm/helpers/typePropNames.d.ts.map +1 -0
- package/dist/types/esm/index.d.ts +3 -0
- package/dist/types/esm/index.d.ts.map +1 -0
- package/dist/types/esm/main.d.ts +3 -0
- package/dist/types/esm/main.d.ts.map +1 -0
- package/dist/types/esm/queries/certifications.d.ts +5 -0
- package/dist/types/esm/queries/certifications.d.ts.map +1 -0
- package/dist/types/esm/queries/collection.d.ts +3401 -0
- package/dist/types/esm/queries/collection.d.ts.map +1 -0
- package/dist/types/esm/queries/collectionImages.d.ts +14 -0
- package/dist/types/esm/queries/collectionImages.d.ts.map +1 -0
- package/dist/types/esm/queries/collectionTranslations.d.ts +18 -0
- package/dist/types/esm/queries/collectionTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/company.d.ts +15 -0
- package/dist/types/esm/queries/company.d.ts.map +1 -0
- package/dist/types/esm/queries/companyAlternativeNames.d.ts +10 -0
- package/dist/types/esm/queries/companyAlternativeNames.d.ts.map +1 -0
- package/dist/types/esm/queries/companyLogos.d.ts +14 -0
- package/dist/types/esm/queries/companyLogos.d.ts.map +1 -0
- package/dist/types/esm/queries/configuration.d.ts +16 -0
- package/dist/types/esm/queries/configuration.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationCountries.d.ts +4 -0
- package/dist/types/esm/queries/configurationCountries.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationJobs.d.ts +4 -0
- package/dist/types/esm/queries/configurationJobs.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationLanguages.d.ts +4 -0
- package/dist/types/esm/queries/configurationLanguages.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationPrimaryTranslations.d.ts +4 -0
- package/dist/types/esm/queries/configurationPrimaryTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/configurationTimezones.d.ts +4 -0
- package/dist/types/esm/queries/configurationTimezones.d.ts.map +1 -0
- package/dist/types/esm/queries/credit.d.ts +4196 -0
- package/dist/types/esm/queries/credit.d.ts.map +1 -0
- package/dist/types/esm/queries/discoverMovies.d.ts +15 -0
- package/dist/types/esm/queries/discoverMovies.d.ts.map +1 -0
- package/dist/types/esm/queries/discoverTv.d.ts +15 -0
- package/dist/types/esm/queries/discoverTv.d.ts.map +1 -0
- package/dist/types/esm/queries/episode.d.ts +98 -0
- package/dist/types/esm/queries/episode.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeCredits.d.ts +33 -0
- package/dist/types/esm/queries/episodeCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeExternalIds.d.ts +16 -0
- package/dist/types/esm/queries/episodeExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeStills.d.ts +6 -0
- package/dist/types/esm/queries/episodeStills.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeTranslations.d.ts +20 -0
- package/dist/types/esm/queries/episodeTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/episodeVideos.d.ts +16 -0
- package/dist/types/esm/queries/episodeVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/find.d.ts +1803 -0
- package/dist/types/esm/queries/find.d.ts.map +1 -0
- package/dist/types/esm/queries/genres.d.ts +9 -0
- package/dist/types/esm/queries/genres.d.ts.map +1 -0
- package/dist/types/esm/queries/keyword.d.ts +9 -0
- package/dist/types/esm/queries/keyword.d.ts.map +1 -0
- package/dist/types/esm/queries/movie.d.ts +3597 -0
- package/dist/types/esm/queries/movie.d.ts.map +1 -0
- package/dist/types/esm/queries/movieAlternativeTitles.d.ts +7 -0
- package/dist/types/esm/queries/movieAlternativeTitles.d.ts.map +1 -0
- package/dist/types/esm/queries/movieCredits.d.ts +33 -0
- package/dist/types/esm/queries/movieCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/movieExternalIds.d.ts +16 -0
- package/dist/types/esm/queries/movieExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/movieImages.d.ts +6 -0
- package/dist/types/esm/queries/movieImages.d.ts.map +1 -0
- package/dist/types/esm/queries/movieKeywords.d.ts +6 -0
- package/dist/types/esm/queries/movieKeywords.d.ts.map +1 -0
- package/dist/types/esm/queries/movieRecommendations.d.ts +1866 -0
- package/dist/types/esm/queries/movieRecommendations.d.ts.map +1 -0
- package/dist/types/esm/queries/movieReleaseDates.d.ts +13 -0
- package/dist/types/esm/queries/movieReleaseDates.d.ts.map +1 -0
- package/dist/types/esm/queries/movieReviews.d.ts +1866 -0
- package/dist/types/esm/queries/movieReviews.d.ts.map +1 -0
- package/dist/types/esm/queries/movieSimilarMovies.d.ts +1866 -0
- package/dist/types/esm/queries/movieSimilarMovies.d.ts.map +1 -0
- package/dist/types/esm/queries/movieTranslations.d.ts +20 -0
- package/dist/types/esm/queries/movieTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/movieVideos.d.ts +16 -0
- package/dist/types/esm/queries/movieVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/movieWatchProviders.d.ts +1375 -0
- package/dist/types/esm/queries/movieWatchProviders.d.ts.map +1 -0
- package/dist/types/esm/queries/network.d.ts +26 -0
- package/dist/types/esm/queries/network.d.ts.map +1 -0
- package/dist/types/esm/queries/networkAlternativeNames.d.ts +10 -0
- package/dist/types/esm/queries/networkAlternativeNames.d.ts.map +1 -0
- package/dist/types/esm/queries/networkLogos.d.ts +14 -0
- package/dist/types/esm/queries/networkLogos.d.ts.map +1 -0
- package/dist/types/esm/queries/person.d.ts +46 -0
- package/dist/types/esm/queries/person.d.ts.map +1 -0
- package/dist/types/esm/queries/personCombinedCredits.d.ts +6 -0
- package/dist/types/esm/queries/personCombinedCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/personExternalIds.d.ts +6 -0
- package/dist/types/esm/queries/personExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/personMovieCredits.d.ts +6 -0
- package/dist/types/esm/queries/personMovieCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/personProfiles.d.ts +6 -0
- package/dist/types/esm/queries/personProfiles.d.ts.map +1 -0
- package/dist/types/esm/queries/personTranslations.d.ts +20 -0
- package/dist/types/esm/queries/personTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/personTvCredits.d.ts +6 -0
- package/dist/types/esm/queries/personTvCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/rated.d.ts +17 -0
- package/dist/types/esm/queries/rated.d.ts.map +1 -0
- package/dist/types/esm/queries/review.d.ts +28 -0
- package/dist/types/esm/queries/review.d.ts.map +1 -0
- package/dist/types/esm/queries/search.d.ts +17 -0
- package/dist/types/esm/queries/search.d.ts.map +1 -0
- package/dist/types/esm/queries/season.d.ts +282 -0
- package/dist/types/esm/queries/season.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonCredits.d.ts +33 -0
- package/dist/types/esm/queries/seasonCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonEpisodeCount.d.ts +3 -0
- package/dist/types/esm/queries/seasonEpisodeCount.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonExternalIds.d.ts +6 -0
- package/dist/types/esm/queries/seasonExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonPosters.d.ts +6 -0
- package/dist/types/esm/queries/seasonPosters.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonTranslations.d.ts +20 -0
- package/dist/types/esm/queries/seasonTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/seasonVideos.d.ts +16 -0
- package/dist/types/esm/queries/seasonVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/trending.d.ts +17 -0
- package/dist/types/esm/queries/trending.d.ts.map +1 -0
- package/dist/types/esm/queries/tv.d.ts +10460 -0
- package/dist/types/esm/queries/tv.d.ts.map +1 -0
- package/dist/types/esm/queries/tvAlternativeTitles.d.ts +12 -0
- package/dist/types/esm/queries/tvAlternativeTitles.d.ts.map +1 -0
- package/dist/types/esm/queries/tvContentRatings.d.ts +10 -0
- package/dist/types/esm/queries/tvContentRatings.d.ts.map +1 -0
- package/dist/types/esm/queries/tvCredits.d.ts +33 -0
- package/dist/types/esm/queries/tvCredits.d.ts.map +1 -0
- package/dist/types/esm/queries/tvEpisodeGroups.d.ts +41 -0
- package/dist/types/esm/queries/tvEpisodeGroups.d.ts.map +1 -0
- package/dist/types/esm/queries/tvExternalIds.d.ts +16 -0
- package/dist/types/esm/queries/tvExternalIds.d.ts.map +1 -0
- package/dist/types/esm/queries/tvImages.d.ts +16 -0
- package/dist/types/esm/queries/tvImages.d.ts.map +1 -0
- package/dist/types/esm/queries/tvKeywords.d.ts +10 -0
- package/dist/types/esm/queries/tvKeywords.d.ts.map +1 -0
- package/dist/types/esm/queries/tvRecommendations.d.ts +5373 -0
- package/dist/types/esm/queries/tvRecommendations.d.ts.map +1 -0
- package/dist/types/esm/queries/tvReviews.d.ts +5373 -0
- package/dist/types/esm/queries/tvReviews.d.ts.map +1 -0
- package/dist/types/esm/queries/tvSimilarTvShows.d.ts +5373 -0
- package/dist/types/esm/queries/tvSimilarTvShows.d.ts.map +1 -0
- package/dist/types/esm/queries/tvTranslations.d.ts +20 -0
- package/dist/types/esm/queries/tvTranslations.d.ts.map +1 -0
- package/dist/types/esm/queries/tvVideos.d.ts +16 -0
- package/dist/types/esm/queries/tvVideos.d.ts.map +1 -0
- package/dist/types/esm/queries/tvWatchProviders.d.ts +1375 -0
- package/dist/types/esm/queries/tvWatchProviders.d.ts.map +1 -0
- package/dist/types/esm/queries/videoType.d.ts +3 -0
- package/dist/types/esm/queries/videoType.d.ts.map +1 -0
- package/dist/types/esm/types.d.ts +326 -0
- package/dist/types/esm/types.d.ts.map +1 -0
- package/dist/types/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +71 -0
- package/src/__testUtils__/helpers/buildEndpoint.ts +21 -0
- package/src/__testUtils__/helpers/buildResolveInfoArg.ts +34 -0
- package/src/__testUtils__/helpers/createRestClient.ts +9 -0
- package/src/constants.ts +71 -0
- package/src/helpers/__snapshots__/typePropNames.test.ts.snap +708 -0
- package/src/helpers/decodeId.ts +4 -0
- package/src/helpers/defaultFieldResolver.ts +19 -0
- package/src/helpers/encodeId.ts +4 -0
- package/src/helpers/formatDirectionalSuffixes.ts +15 -0
- package/src/helpers/formatQueryParams.ts +8 -0
- package/src/helpers/getAppendToResponseKeys.ts +28 -0
- package/src/helpers/getTvIdSeasonAndEpisode.ts +25 -0
- package/src/helpers/makeFallbackFieldResolvers.ts +11 -0
- package/src/helpers/removeNullValues.ts +11 -0
- package/src/helpers/snakeCasePropNames.ts +9 -0
- package/src/helpers/typePropNames.test.ts +7 -0
- package/src/helpers/typePropNames.ts +14 -0
- package/src/index.ts +2 -0
- package/src/main.ts +215 -0
- package/src/queries/__snapshots__/certifications.test.ts.snap +1365 -0
- package/src/queries/__snapshots__/collection.test.ts.snap +195 -0
- package/src/queries/__snapshots__/collectionImages.test.ts.snap +29 -0
- package/src/queries/__snapshots__/collectionTranslations.test.ts.snap +391 -0
- package/src/queries/__snapshots__/company.test.ts.snap +14 -0
- package/src/queries/__snapshots__/companyAlternativeNames.test.ts.snap +14 -0
- package/src/queries/__snapshots__/companyLogos.test.ts.snap +46 -0
- package/src/queries/__snapshots__/configuration.test.ts.snap +101 -0
- package/src/queries/__snapshots__/configurationCountries.test.ts.snap +1241 -0
- package/src/queries/__snapshots__/configurationJobs.test.ts.snap +1007 -0
- package/src/queries/__snapshots__/configurationLanguages.test.ts.snap +941 -0
- package/src/queries/__snapshots__/configurationPrimaryTranslations.test.ts.snap +76 -0
- package/src/queries/__snapshots__/configurationTimezones.test.ts.snap +1678 -0
- package/src/queries/__snapshots__/credit.test.ts.snap +106 -0
- package/src/queries/__snapshots__/discoverMovies.test.ts.snap +481 -0
- package/src/queries/__snapshots__/discoverTv.test.ts.snap +443 -0
- package/src/queries/__snapshots__/episode.test.ts.snap +360 -0
- package/src/queries/__snapshots__/episodeCredits.test.ts.snap +866 -0
- package/src/queries/__snapshots__/episodeExternalIds.test.ts.snap +21 -0
- package/src/queries/__snapshots__/episodeStills.test.ts.snap +281 -0
- package/src/queries/__snapshots__/episodeTranslations.test.ts.snap +1059 -0
- package/src/queries/__snapshots__/episodeVideos.test.ts.snap +5 -0
- package/src/queries/__snapshots__/find.test.ts.snap +86 -0
- package/src/queries/__snapshots__/genres.test.ts.snap +151 -0
- package/src/queries/__snapshots__/keyword.test.ts.snap +8 -0
- package/src/queries/__snapshots__/movie.test.ts.snap +73 -0
- package/src/queries/__snapshots__/movieAlternativeTitles.test.ts.snap +611 -0
- package/src/queries/__snapshots__/movieCredits.test.ts.snap +2690 -0
- package/src/queries/__snapshots__/movieExternalIds.test.ts.snap +19 -0
- package/src/queries/__snapshots__/movieImages.test.ts.snap +7 -0
- package/src/queries/__snapshots__/movieKeywords.test.ts.snap +147 -0
- package/src/queries/__snapshots__/movieRecommendations.test.ts.snap +727 -0
- package/src/queries/__snapshots__/movieReleaseDates.test.ts.snap +755 -0
- package/src/queries/__snapshots__/movieReviews.test.ts.snap +509 -0
- package/src/queries/__snapshots__/movieSimilarMovies.test.ts.snap +693 -0
- package/src/queries/__snapshots__/movieTranslations.test.ts.snap +1079 -0
- package/src/queries/__snapshots__/movieVideos.test.ts.snap +179 -0
- package/src/queries/__snapshots__/movieWatchProviders.test.ts.snap +5321 -0
- package/src/queries/__snapshots__/network.test.ts.snap +12 -0
- package/src/queries/__snapshots__/networkAlternativeNames.test.ts.snap +18 -0
- package/src/queries/__snapshots__/networkLogos.test.ts.snap +16 -0
- package/src/queries/__snapshots__/person.test.ts.snap +35 -0
- package/src/queries/__snapshots__/personCombinedCredits.test.ts.snap +7249 -0
- package/src/queries/__snapshots__/personExternalIds.test.ts.snap +25 -0
- package/src/queries/__snapshots__/personMovieCredits.test.ts.snap +5595 -0
- package/src/queries/__snapshots__/personProfiles.test.ts.snap +155 -0
- package/src/queries/__snapshots__/personTranslations.test.ts.snap +389 -0
- package/src/queries/__snapshots__/personTvCredits.test.ts.snap +1361 -0
- package/src/queries/__snapshots__/rated.test.ts.snap +547 -0
- package/src/queries/__snapshots__/review.test.ts.snap +31 -0
- package/src/queries/__snapshots__/search.test.ts.snap +2479 -0
- package/src/queries/__snapshots__/season.test.ts.snap +4694 -0
- package/src/queries/__snapshots__/seasonCredits.test.ts.snap +692 -0
- package/src/queries/__snapshots__/seasonExternalIds.test.ts.snap +19 -0
- package/src/queries/__snapshots__/seasonPosters.test.ts.snap +5 -0
- package/src/queries/__snapshots__/seasonTranslations.test.ts.snap +1073 -0
- package/src/queries/__snapshots__/seasonVideos.test.ts.snap +395 -0
- package/src/queries/__snapshots__/trending.test.ts.snap +481 -0
- package/src/queries/__snapshots__/tv.test.ts.snap +220 -0
- package/src/queries/__snapshots__/tvAlternativeTitles.test.ts.snap +211 -0
- package/src/queries/__snapshots__/tvContentRatings.test.ts.snap +115 -0
- package/src/queries/__snapshots__/tvCredits.test.ts.snap +809 -0
- package/src/queries/__snapshots__/tvEpisodeGroups.test.ts.snap +39 -0
- package/src/queries/__snapshots__/tvExternalIds.test.ts.snap +27 -0
- package/src/queries/__snapshots__/tvImages.test.ts.snap +7 -0
- package/src/queries/__snapshots__/tvKeywords.test.ts.snap +59 -0
- package/src/queries/__snapshots__/tvRecommendations.test.ts.snap +757 -0
- package/src/queries/__snapshots__/tvReviews.test.ts.snap +562 -0
- package/src/queries/__snapshots__/tvSimilarTvShows.test.ts.snap +759 -0
- package/src/queries/__snapshots__/tvTranslations.test.ts.snap +1267 -0
- package/src/queries/__snapshots__/tvVideos.test.ts.snap +107 -0
- package/src/queries/__snapshots__/tvWatchProviders.test.ts.snap +2817 -0
- package/src/queries/certifications.test.ts +66 -0
- package/src/queries/certifications.ts +29 -0
- package/src/queries/collection.test.ts +47 -0
- package/src/queries/collection.ts +40 -0
- package/src/queries/collectionImages.test.ts +90 -0
- package/src/queries/collectionImages.ts +30 -0
- package/src/queries/collectionTranslations.test.ts +45 -0
- package/src/queries/collectionTranslations.ts +28 -0
- package/src/queries/company.test.ts +45 -0
- package/src/queries/company.ts +40 -0
- package/src/queries/companyAlternativeNames.test.ts +45 -0
- package/src/queries/companyAlternativeNames.ts +29 -0
- package/src/queries/companyLogos.test.ts +45 -0
- package/src/queries/companyLogos.ts +28 -0
- package/src/queries/configuration.test.ts +44 -0
- package/src/queries/configuration.ts +23 -0
- package/src/queries/configurationCountries.test.ts +45 -0
- package/src/queries/configurationCountries.ts +28 -0
- package/src/queries/configurationJobs.test.ts +45 -0
- package/src/queries/configurationJobs.ts +28 -0
- package/src/queries/configurationLanguages.test.ts +45 -0
- package/src/queries/configurationLanguages.ts +28 -0
- package/src/queries/configurationPrimaryTranslations.test.ts +45 -0
- package/src/queries/configurationPrimaryTranslations.ts +29 -0
- package/src/queries/configurationTimezones.test.ts +45 -0
- package/src/queries/configurationTimezones.ts +28 -0
- package/src/queries/credit.test.ts +45 -0
- package/src/queries/credit.ts +26 -0
- package/src/queries/discoverMovies.test.ts +202 -0
- package/src/queries/discoverMovies.ts +65 -0
- package/src/queries/discoverTv.test.ts +142 -0
- package/src/queries/discoverTv.ts +66 -0
- package/src/queries/episode.test.ts +82 -0
- package/src/queries/episode.ts +73 -0
- package/src/queries/episodeCredits.test.ts +134 -0
- package/src/queries/episodeCredits.ts +41 -0
- package/src/queries/episodeExternalIds.test.ts +104 -0
- package/src/queries/episodeExternalIds.ts +40 -0
- package/src/queries/episodeStills.test.ts +96 -0
- package/src/queries/episodeStills.ts +38 -0
- package/src/queries/episodeTranslations.test.ts +96 -0
- package/src/queries/episodeTranslations.ts +38 -0
- package/src/queries/episodeVideos.test.ts +96 -0
- package/src/queries/episodeVideos.ts +38 -0
- package/src/queries/find.test.ts +48 -0
- package/src/queries/find.ts +35 -0
- package/src/queries/genres.test.ts +66 -0
- package/src/queries/genres.ts +29 -0
- package/src/queries/keyword.test.ts +45 -0
- package/src/queries/keyword.ts +28 -0
- package/src/queries/movie.test.ts +81 -0
- package/src/queries/movie.ts +87 -0
- package/src/queries/movieAlternativeTitles.test.ts +95 -0
- package/src/queries/movieAlternativeTitles.ts +37 -0
- package/src/queries/movieCredits.test.ts +118 -0
- package/src/queries/movieCredits.ts +35 -0
- package/src/queries/movieExternalIds.test.ts +95 -0
- package/src/queries/movieExternalIds.ts +35 -0
- package/src/queries/movieImages.test.ts +118 -0
- package/src/queries/movieImages.ts +35 -0
- package/src/queries/movieKeywords.test.ts +95 -0
- package/src/queries/movieKeywords.ts +33 -0
- package/src/queries/movieRecommendations.test.ts +173 -0
- package/src/queries/movieRecommendations.ts +74 -0
- package/src/queries/movieReleaseDates.test.ts +103 -0
- package/src/queries/movieReleaseDates.ts +34 -0
- package/src/queries/movieReviews.test.ts +152 -0
- package/src/queries/movieReviews.ts +74 -0
- package/src/queries/movieSimilarMovies.test.ts +173 -0
- package/src/queries/movieSimilarMovies.ts +74 -0
- package/src/queries/movieTranslations.test.ts +99 -0
- package/src/queries/movieTranslations.ts +33 -0
- package/src/queries/movieVideos.test.ts +95 -0
- package/src/queries/movieVideos.ts +33 -0
- package/src/queries/movieWatchProviders.test.ts +103 -0
- package/src/queries/movieWatchProviders.ts +33 -0
- package/src/queries/network.test.ts +45 -0
- package/src/queries/network.ts +40 -0
- package/src/queries/networkAlternativeNames.test.ts +45 -0
- package/src/queries/networkAlternativeNames.ts +29 -0
- package/src/queries/networkLogos.test.ts +45 -0
- package/src/queries/networkLogos.ts +28 -0
- package/src/queries/person.test.ts +81 -0
- package/src/queries/person.ts +67 -0
- package/src/queries/personCombinedCredits.test.ts +99 -0
- package/src/queries/personCombinedCredits.ts +35 -0
- package/src/queries/personExternalIds.test.ts +99 -0
- package/src/queries/personExternalIds.ts +35 -0
- package/src/queries/personMovieCredits.test.ts +99 -0
- package/src/queries/personMovieCredits.ts +35 -0
- package/src/queries/personProfiles.test.ts +98 -0
- package/src/queries/personProfiles.ts +33 -0
- package/src/queries/personTranslations.test.ts +99 -0
- package/src/queries/personTranslations.ts +33 -0
- package/src/queries/personTvCredits.test.ts +99 -0
- package/src/queries/personTvCredits.ts +35 -0
- package/src/queries/rated.test.ts +170 -0
- package/src/queries/rated.ts +70 -0
- package/src/queries/review.test.ts +45 -0
- package/src/queries/review.ts +40 -0
- package/src/queries/search.test.ts +426 -0
- package/src/queries/search.ts +73 -0
- package/src/queries/season.test.ts +82 -0
- package/src/queries/season.ts +78 -0
- package/src/queries/seasonCredits.test.ts +118 -0
- package/src/queries/seasonCredits.ts +35 -0
- package/src/queries/seasonEpisodeCount.ts +9 -0
- package/src/queries/seasonExternalIds.test.ts +103 -0
- package/src/queries/seasonExternalIds.ts +35 -0
- package/src/queries/seasonPosters.test.ts +94 -0
- package/src/queries/seasonPosters.ts +33 -0
- package/src/queries/seasonTranslations.test.ts +102 -0
- package/src/queries/seasonTranslations.ts +33 -0
- package/src/queries/seasonVideos.test.ts +102 -0
- package/src/queries/seasonVideos.ts +33 -0
- package/src/queries/trending.test.ts +165 -0
- package/src/queries/trending.ts +70 -0
- package/src/queries/tv.test.ts +81 -0
- package/src/queries/tv.ts +98 -0
- package/src/queries/tvAlternativeTitles.test.ts +103 -0
- package/src/queries/tvAlternativeTitles.ts +35 -0
- package/src/queries/tvContentRatings.test.ts +103 -0
- package/src/queries/tvContentRatings.ts +35 -0
- package/src/queries/tvCredits.test.ts +118 -0
- package/src/queries/tvCredits.ts +35 -0
- package/src/queries/tvEpisodeGroups.test.ts +103 -0
- package/src/queries/tvEpisodeGroups.ts +34 -0
- package/src/queries/tvExternalIds.test.ts +103 -0
- package/src/queries/tvExternalIds.ts +35 -0
- package/src/queries/tvImages.test.ts +118 -0
- package/src/queries/tvImages.ts +35 -0
- package/src/queries/tvKeywords.test.ts +103 -0
- package/src/queries/tvKeywords.ts +33 -0
- package/src/queries/tvRecommendations.test.ts +173 -0
- package/src/queries/tvRecommendations.ts +74 -0
- package/src/queries/tvReviews.test.ts +168 -0
- package/src/queries/tvReviews.ts +74 -0
- package/src/queries/tvSimilarTvShows.test.ts +168 -0
- package/src/queries/tvSimilarTvShows.ts +74 -0
- package/src/queries/tvTranslations.test.ts +103 -0
- package/src/queries/tvTranslations.ts +33 -0
- package/src/queries/tvVideos.test.ts +103 -0
- package/src/queries/tvVideos.ts +33 -0
- package/src/queries/tvWatchProviders.test.ts +103 -0
- package/src/queries/tvWatchProviders.ts +33 -0
- package/src/queries/videoType.ts +4 -0
- package/src/types.ts +476 -0
- package/tsconfig.build.json +11 -0
- package/tsconfig.json +18 -0
|
@@ -0,0 +1,1866 @@
|
|
|
1
|
+
import { Core } from '@cachemap/core';
|
|
2
|
+
import { type Getters } from '@graphql-box/connection-resolver';
|
|
3
|
+
import type { MovieSimilarMoviesArgs } from '@tmdb-graphql-api/schema';
|
|
4
|
+
import type { FetchResponse } from 'getta';
|
|
5
|
+
import type { Context, RawMovie, RawMovieSimilarMovies, RawMovieWithAppendToResponse } from '../types.cts';
|
|
6
|
+
export declare const createMakeCursors: (obj: RawMovie) => {
|
|
7
|
+
makeGroupCursor: () => string;
|
|
8
|
+
makeIDCursor: (id: string | number) => string;
|
|
9
|
+
};
|
|
10
|
+
export declare const createResourceResolver: (obj: RawMovieWithAppendToResponse & {
|
|
11
|
+
__headers?: Headers;
|
|
12
|
+
}, _args: MovieSimilarMoviesArgs, { requestID, restClient, setCacheMetadata, tmdbGuestSessionId }: Context) => ({ page }: {
|
|
13
|
+
page: number;
|
|
14
|
+
}) => Promise<FetchResponse<RawMovieSimilarMovies>>;
|
|
15
|
+
export declare const cursorCache: Core;
|
|
16
|
+
export declare const getters: Getters<RawMovieSimilarMovies, RawMovie>;
|
|
17
|
+
export declare const resolveMovieSimilarMovies: (source: {
|
|
18
|
+
genres: ({
|
|
19
|
+
id: string | number;
|
|
20
|
+
__typename?: "Genre" | undefined;
|
|
21
|
+
name: string;
|
|
22
|
+
} | null)[];
|
|
23
|
+
logos?: ({
|
|
24
|
+
__typename?: "Image" | undefined;
|
|
25
|
+
aspect_radio?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
26
|
+
file_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
27
|
+
file_type?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
28
|
+
height?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
29
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
30
|
+
vote_average?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
31
|
+
vote_count?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
32
|
+
width?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
33
|
+
} | null)[] | null | undefined;
|
|
34
|
+
__typename?: "Movie" | undefined;
|
|
35
|
+
title: string;
|
|
36
|
+
id: string | number;
|
|
37
|
+
backdrop_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
38
|
+
overview: string;
|
|
39
|
+
poster_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
40
|
+
homepage?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
41
|
+
adult: boolean;
|
|
42
|
+
media_type?: import("@tmdb-graphql-api/schema").Maybe<import("@tmdb-graphql-api/schema").MediaType> | undefined;
|
|
43
|
+
original_language: string;
|
|
44
|
+
original_title: string;
|
|
45
|
+
popularity: number;
|
|
46
|
+
release_date?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
47
|
+
video: boolean;
|
|
48
|
+
vote_average: number;
|
|
49
|
+
vote_count: number;
|
|
50
|
+
belongs_to_collection?: {
|
|
51
|
+
id: string | number;
|
|
52
|
+
__typename?: "Collection" | undefined;
|
|
53
|
+
backdrop_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
54
|
+
backdrops?: ({
|
|
55
|
+
__typename?: "Image" | undefined;
|
|
56
|
+
aspect_radio?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
57
|
+
file_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
58
|
+
file_type?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
59
|
+
height?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
60
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
61
|
+
vote_average?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
62
|
+
vote_count?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
63
|
+
width?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
64
|
+
} | null)[] | null | undefined;
|
|
65
|
+
name: string;
|
|
66
|
+
overview: string;
|
|
67
|
+
parts: ({
|
|
68
|
+
id: string | number;
|
|
69
|
+
__typename?: "Movie" | undefined;
|
|
70
|
+
adult: boolean;
|
|
71
|
+
alternative_titles?: ({
|
|
72
|
+
__typename?: "AlternativeName" | undefined;
|
|
73
|
+
iso_3166_1?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
74
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
75
|
+
title?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
76
|
+
type: string;
|
|
77
|
+
} | null)[] | null | undefined;
|
|
78
|
+
backdrop_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
79
|
+
backdrops?: ({
|
|
80
|
+
__typename?: "Image" | undefined;
|
|
81
|
+
aspect_radio?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
82
|
+
file_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
83
|
+
file_type?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
84
|
+
height?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
85
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
86
|
+
vote_average?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
87
|
+
vote_count?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
88
|
+
width?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
89
|
+
} | null)[] | null | undefined;
|
|
90
|
+
belongs_to_collection?: any | null | undefined;
|
|
91
|
+
budget: number;
|
|
92
|
+
cast?: ({
|
|
93
|
+
id: string | number;
|
|
94
|
+
__typename?: "Cast" | undefined;
|
|
95
|
+
adult?: import("@tmdb-graphql-api/schema").Maybe<boolean> | undefined;
|
|
96
|
+
cast_id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
97
|
+
character?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
98
|
+
credit_id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
99
|
+
gender?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
100
|
+
known_for_department?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
101
|
+
name: string;
|
|
102
|
+
order?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
103
|
+
original_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
104
|
+
popularity?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
105
|
+
profile_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
106
|
+
} | null)[] | null | undefined;
|
|
107
|
+
crew?: ({
|
|
108
|
+
id: string | number;
|
|
109
|
+
__typename?: "Crew" | undefined;
|
|
110
|
+
adult?: import("@tmdb-graphql-api/schema").Maybe<boolean> | undefined;
|
|
111
|
+
credit_id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
112
|
+
department?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
113
|
+
gender?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
114
|
+
job?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
115
|
+
known_for_department?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
116
|
+
name: string;
|
|
117
|
+
original_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
118
|
+
popularity?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
119
|
+
profile_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
120
|
+
} | null)[] | null | undefined;
|
|
121
|
+
external_ids?: {
|
|
122
|
+
__typename?: "ExternalIds" | undefined;
|
|
123
|
+
facebook_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
124
|
+
freebase_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
125
|
+
freebase_mid?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
126
|
+
imdb_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
127
|
+
instagram_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
128
|
+
tvdb_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
129
|
+
tvrage_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
130
|
+
twitter_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
131
|
+
} | null | undefined;
|
|
132
|
+
genres: ({
|
|
133
|
+
id: string | number;
|
|
134
|
+
__typename?: "Genre" | undefined;
|
|
135
|
+
name: string;
|
|
136
|
+
} | null)[];
|
|
137
|
+
homepage?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
138
|
+
imdb_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
139
|
+
keywords?: ({
|
|
140
|
+
__typename?: "Keyword" | undefined;
|
|
141
|
+
id: string | number;
|
|
142
|
+
name: string;
|
|
143
|
+
} | null)[] | null | undefined;
|
|
144
|
+
logos?: ({
|
|
145
|
+
__typename?: "Image" | undefined;
|
|
146
|
+
aspect_radio?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
147
|
+
file_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
148
|
+
file_type?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
149
|
+
height?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
150
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
151
|
+
vote_average?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
152
|
+
vote_count?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
153
|
+
width?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
154
|
+
} | null)[] | null | undefined;
|
|
155
|
+
media_type?: import("@tmdb-graphql-api/schema").Maybe<import("@tmdb-graphql-api/schema").MediaType> | undefined;
|
|
156
|
+
original_language: string;
|
|
157
|
+
original_title: string;
|
|
158
|
+
overview: string;
|
|
159
|
+
popularity: number;
|
|
160
|
+
poster_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
161
|
+
posters?: ({
|
|
162
|
+
__typename?: "Image" | undefined;
|
|
163
|
+
aspect_radio?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
164
|
+
file_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
165
|
+
file_type?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
166
|
+
height?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
167
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
168
|
+
vote_average?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
169
|
+
vote_count?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
170
|
+
width?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
171
|
+
} | null)[] | null | undefined;
|
|
172
|
+
production_companies: ({
|
|
173
|
+
id: string | number;
|
|
174
|
+
__typename?: "Company" | undefined;
|
|
175
|
+
alternative_names?: ({
|
|
176
|
+
__typename?: "AlternativeName" | undefined;
|
|
177
|
+
iso_3166_1?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
178
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
179
|
+
title?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
180
|
+
type: string;
|
|
181
|
+
} | null)[] | null | undefined;
|
|
182
|
+
description: string;
|
|
183
|
+
headquarters: string;
|
|
184
|
+
homepage?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
185
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
186
|
+
logos?: ({
|
|
187
|
+
__typename?: "Image" | undefined;
|
|
188
|
+
aspect_radio?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
189
|
+
file_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
190
|
+
file_type?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
191
|
+
height?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
192
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
193
|
+
vote_average?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
194
|
+
vote_count?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
195
|
+
width?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
196
|
+
} | null)[] | null | undefined;
|
|
197
|
+
name: string;
|
|
198
|
+
origin_country?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
199
|
+
parent_company?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
200
|
+
} | null)[];
|
|
201
|
+
production_countries: ({
|
|
202
|
+
__typename?: "Country" | undefined;
|
|
203
|
+
english_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
204
|
+
iso_3166_1: string;
|
|
205
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
206
|
+
} | null)[];
|
|
207
|
+
recommendations?: {
|
|
208
|
+
page_info: {
|
|
209
|
+
__typename?: "PageInfo" | undefined;
|
|
210
|
+
end_cursor?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
211
|
+
has_next_page: boolean;
|
|
212
|
+
has_previous_page: boolean;
|
|
213
|
+
start_cursor?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
214
|
+
};
|
|
215
|
+
__typename?: "MovieConnection" | undefined;
|
|
216
|
+
edges?: ({
|
|
217
|
+
__typename?: "MovieEdge" | undefined;
|
|
218
|
+
cursor: string;
|
|
219
|
+
node: any;
|
|
220
|
+
} | null)[] | null | undefined;
|
|
221
|
+
nodes?: (any | null)[] | null | undefined;
|
|
222
|
+
total_count: number;
|
|
223
|
+
} | null | undefined;
|
|
224
|
+
release_date?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
225
|
+
release_dates?: ({
|
|
226
|
+
__typename?: "ReleaseDates" | undefined;
|
|
227
|
+
iso_3166_1: string;
|
|
228
|
+
release_dates: ({
|
|
229
|
+
__typename?: "ReleaseDate" | undefined;
|
|
230
|
+
certification: string;
|
|
231
|
+
iso_639_1: string;
|
|
232
|
+
note: string;
|
|
233
|
+
release_date: string;
|
|
234
|
+
type: number;
|
|
235
|
+
} | null)[];
|
|
236
|
+
} | null)[] | null | undefined;
|
|
237
|
+
revenue: number;
|
|
238
|
+
reviews?: {
|
|
239
|
+
page_info: {
|
|
240
|
+
__typename?: "PageInfo" | undefined;
|
|
241
|
+
end_cursor?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
242
|
+
has_next_page: boolean;
|
|
243
|
+
has_previous_page: boolean;
|
|
244
|
+
start_cursor?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
245
|
+
};
|
|
246
|
+
__typename?: "ReviewConnection" | undefined;
|
|
247
|
+
edges?: ({
|
|
248
|
+
__typename?: "ReviewEdge" | undefined;
|
|
249
|
+
cursor: string;
|
|
250
|
+
node: {
|
|
251
|
+
id: string | number;
|
|
252
|
+
__typename?: "Review" | undefined;
|
|
253
|
+
author: string;
|
|
254
|
+
author_details?: {
|
|
255
|
+
__typename?: "AuthorDetails" | undefined;
|
|
256
|
+
avatar_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
257
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
258
|
+
rating?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
259
|
+
username?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
260
|
+
} | null | undefined;
|
|
261
|
+
content: string;
|
|
262
|
+
created_at: string;
|
|
263
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
264
|
+
media_title?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
265
|
+
media_type?: import("@tmdb-graphql-api/schema").Maybe<import("@tmdb-graphql-api/schema").ScreenType> | undefined;
|
|
266
|
+
url: string;
|
|
267
|
+
};
|
|
268
|
+
} | null)[] | null | undefined;
|
|
269
|
+
nodes?: ({
|
|
270
|
+
id: string | number;
|
|
271
|
+
__typename?: "Review" | undefined;
|
|
272
|
+
author: string;
|
|
273
|
+
author_details?: {
|
|
274
|
+
__typename?: "AuthorDetails" | undefined;
|
|
275
|
+
avatar_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
276
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
277
|
+
rating?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
278
|
+
username?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
279
|
+
} | null | undefined;
|
|
280
|
+
content: string;
|
|
281
|
+
created_at: string;
|
|
282
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
283
|
+
media_title?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
284
|
+
media_type?: import("@tmdb-graphql-api/schema").Maybe<import("@tmdb-graphql-api/schema").ScreenType> | undefined;
|
|
285
|
+
url: string;
|
|
286
|
+
} | null)[] | null | undefined;
|
|
287
|
+
total_count: number;
|
|
288
|
+
} | null | undefined;
|
|
289
|
+
runtime?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
290
|
+
similar_movies?: {
|
|
291
|
+
page_info: {
|
|
292
|
+
__typename?: "PageInfo" | undefined;
|
|
293
|
+
end_cursor?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
294
|
+
has_next_page: boolean;
|
|
295
|
+
has_previous_page: boolean;
|
|
296
|
+
start_cursor?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
297
|
+
};
|
|
298
|
+
__typename?: "MovieConnection" | undefined;
|
|
299
|
+
edges?: ({
|
|
300
|
+
__typename?: "MovieEdge" | undefined;
|
|
301
|
+
cursor: string;
|
|
302
|
+
node: any;
|
|
303
|
+
} | null)[] | null | undefined;
|
|
304
|
+
nodes?: (any | null)[] | null | undefined;
|
|
305
|
+
total_count: number;
|
|
306
|
+
} | null | undefined;
|
|
307
|
+
spoken_languages: ({
|
|
308
|
+
__typename?: "Language" | undefined;
|
|
309
|
+
english_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
310
|
+
iso_639_1: string;
|
|
311
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
312
|
+
} | null)[];
|
|
313
|
+
status: string;
|
|
314
|
+
tagline?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
315
|
+
title: string;
|
|
316
|
+
translations?: ({
|
|
317
|
+
__typename?: "Translation" | undefined;
|
|
318
|
+
data: {
|
|
319
|
+
__typename?: "TranslationData" | undefined;
|
|
320
|
+
biography?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
321
|
+
homepage?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
322
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
323
|
+
overview?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
324
|
+
title?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
325
|
+
};
|
|
326
|
+
english_name: string;
|
|
327
|
+
iso_639_1: string;
|
|
328
|
+
iso_3166_1: string;
|
|
329
|
+
name: string;
|
|
330
|
+
} | null)[] | null | undefined;
|
|
331
|
+
video: boolean;
|
|
332
|
+
videos?: ({
|
|
333
|
+
id: string | number;
|
|
334
|
+
__typename?: "Video" | undefined;
|
|
335
|
+
iso_639_1: string;
|
|
336
|
+
iso_3166_1: string;
|
|
337
|
+
key: string;
|
|
338
|
+
name: string;
|
|
339
|
+
site: import("@tmdb-graphql-api/schema").VideoSite;
|
|
340
|
+
size: number;
|
|
341
|
+
type: import("@tmdb-graphql-api/schema").VideoType;
|
|
342
|
+
} | null)[] | null | undefined;
|
|
343
|
+
vote_average: number;
|
|
344
|
+
vote_count: number;
|
|
345
|
+
watch_providers?: {
|
|
346
|
+
__typename?: "WatchProviders" | undefined;
|
|
347
|
+
ar?: {
|
|
348
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
349
|
+
ads?: ({
|
|
350
|
+
__typename?: "WatchProvider" | undefined;
|
|
351
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
352
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
353
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
354
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
355
|
+
} | null)[] | null | undefined;
|
|
356
|
+
buy?: ({
|
|
357
|
+
__typename?: "WatchProvider" | undefined;
|
|
358
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
359
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
360
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
361
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
362
|
+
} | null)[] | null | undefined;
|
|
363
|
+
flatrate?: ({
|
|
364
|
+
__typename?: "WatchProvider" | undefined;
|
|
365
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
366
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
367
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
368
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
369
|
+
} | null)[] | null | undefined;
|
|
370
|
+
free?: ({
|
|
371
|
+
__typename?: "WatchProvider" | undefined;
|
|
372
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
373
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
374
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
375
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
376
|
+
} | null)[] | null | undefined;
|
|
377
|
+
rent?: ({
|
|
378
|
+
__typename?: "WatchProvider" | undefined;
|
|
379
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
380
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
381
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
382
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
383
|
+
} | null)[] | null | undefined;
|
|
384
|
+
} | null | undefined;
|
|
385
|
+
at?: {
|
|
386
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
387
|
+
ads?: ({
|
|
388
|
+
__typename?: "WatchProvider" | undefined;
|
|
389
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
390
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
391
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
392
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
393
|
+
} | null)[] | null | undefined;
|
|
394
|
+
buy?: ({
|
|
395
|
+
__typename?: "WatchProvider" | undefined;
|
|
396
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
397
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
398
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
399
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
400
|
+
} | null)[] | null | undefined;
|
|
401
|
+
flatrate?: ({
|
|
402
|
+
__typename?: "WatchProvider" | undefined;
|
|
403
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
404
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
405
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
406
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
407
|
+
} | null)[] | null | undefined;
|
|
408
|
+
free?: ({
|
|
409
|
+
__typename?: "WatchProvider" | undefined;
|
|
410
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
411
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
412
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
413
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
414
|
+
} | null)[] | null | undefined;
|
|
415
|
+
rent?: ({
|
|
416
|
+
__typename?: "WatchProvider" | undefined;
|
|
417
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
418
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
419
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
420
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
421
|
+
} | null)[] | null | undefined;
|
|
422
|
+
} | null | undefined;
|
|
423
|
+
au?: {
|
|
424
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
425
|
+
ads?: ({
|
|
426
|
+
__typename?: "WatchProvider" | undefined;
|
|
427
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
428
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
429
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
430
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
431
|
+
} | null)[] | null | undefined;
|
|
432
|
+
buy?: ({
|
|
433
|
+
__typename?: "WatchProvider" | undefined;
|
|
434
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
435
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
436
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
437
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
438
|
+
} | null)[] | null | undefined;
|
|
439
|
+
flatrate?: ({
|
|
440
|
+
__typename?: "WatchProvider" | undefined;
|
|
441
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
442
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
443
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
444
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
445
|
+
} | null)[] | null | undefined;
|
|
446
|
+
free?: ({
|
|
447
|
+
__typename?: "WatchProvider" | undefined;
|
|
448
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
449
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
450
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
451
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
452
|
+
} | null)[] | null | undefined;
|
|
453
|
+
rent?: ({
|
|
454
|
+
__typename?: "WatchProvider" | undefined;
|
|
455
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
456
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
457
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
458
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
459
|
+
} | null)[] | null | undefined;
|
|
460
|
+
} | null | undefined;
|
|
461
|
+
be?: {
|
|
462
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
463
|
+
ads?: ({
|
|
464
|
+
__typename?: "WatchProvider" | undefined;
|
|
465
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
466
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
467
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
468
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
469
|
+
} | null)[] | null | undefined;
|
|
470
|
+
buy?: ({
|
|
471
|
+
__typename?: "WatchProvider" | undefined;
|
|
472
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
473
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
474
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
475
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
476
|
+
} | null)[] | null | undefined;
|
|
477
|
+
flatrate?: ({
|
|
478
|
+
__typename?: "WatchProvider" | undefined;
|
|
479
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
480
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
481
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
482
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
483
|
+
} | null)[] | null | undefined;
|
|
484
|
+
free?: ({
|
|
485
|
+
__typename?: "WatchProvider" | undefined;
|
|
486
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
487
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
488
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
489
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
490
|
+
} | null)[] | null | undefined;
|
|
491
|
+
rent?: ({
|
|
492
|
+
__typename?: "WatchProvider" | undefined;
|
|
493
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
494
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
495
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
496
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
497
|
+
} | null)[] | null | undefined;
|
|
498
|
+
} | null | undefined;
|
|
499
|
+
br?: {
|
|
500
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
501
|
+
ads?: ({
|
|
502
|
+
__typename?: "WatchProvider" | undefined;
|
|
503
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
504
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
505
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
506
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
507
|
+
} | null)[] | null | undefined;
|
|
508
|
+
buy?: ({
|
|
509
|
+
__typename?: "WatchProvider" | undefined;
|
|
510
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
511
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
512
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
513
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
514
|
+
} | null)[] | null | undefined;
|
|
515
|
+
flatrate?: ({
|
|
516
|
+
__typename?: "WatchProvider" | undefined;
|
|
517
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
518
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
519
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
520
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
521
|
+
} | null)[] | null | undefined;
|
|
522
|
+
free?: ({
|
|
523
|
+
__typename?: "WatchProvider" | undefined;
|
|
524
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
525
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
526
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
527
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
528
|
+
} | null)[] | null | undefined;
|
|
529
|
+
rent?: ({
|
|
530
|
+
__typename?: "WatchProvider" | undefined;
|
|
531
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
532
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
533
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
534
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
535
|
+
} | null)[] | null | undefined;
|
|
536
|
+
} | null | undefined;
|
|
537
|
+
ca?: {
|
|
538
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
539
|
+
ads?: ({
|
|
540
|
+
__typename?: "WatchProvider" | undefined;
|
|
541
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
542
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
543
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
544
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
545
|
+
} | null)[] | null | undefined;
|
|
546
|
+
buy?: ({
|
|
547
|
+
__typename?: "WatchProvider" | undefined;
|
|
548
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
549
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
550
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
551
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
552
|
+
} | null)[] | null | undefined;
|
|
553
|
+
flatrate?: ({
|
|
554
|
+
__typename?: "WatchProvider" | undefined;
|
|
555
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
556
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
557
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
558
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
559
|
+
} | null)[] | null | undefined;
|
|
560
|
+
free?: ({
|
|
561
|
+
__typename?: "WatchProvider" | undefined;
|
|
562
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
563
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
564
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
565
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
566
|
+
} | null)[] | null | undefined;
|
|
567
|
+
rent?: ({
|
|
568
|
+
__typename?: "WatchProvider" | undefined;
|
|
569
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
570
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
571
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
572
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
573
|
+
} | null)[] | null | undefined;
|
|
574
|
+
} | null | undefined;
|
|
575
|
+
ch?: {
|
|
576
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
577
|
+
ads?: ({
|
|
578
|
+
__typename?: "WatchProvider" | undefined;
|
|
579
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
580
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
581
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
582
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
583
|
+
} | null)[] | null | undefined;
|
|
584
|
+
buy?: ({
|
|
585
|
+
__typename?: "WatchProvider" | undefined;
|
|
586
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
587
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
588
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
589
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
590
|
+
} | null)[] | null | undefined;
|
|
591
|
+
flatrate?: ({
|
|
592
|
+
__typename?: "WatchProvider" | undefined;
|
|
593
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
594
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
595
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
596
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
597
|
+
} | null)[] | null | undefined;
|
|
598
|
+
free?: ({
|
|
599
|
+
__typename?: "WatchProvider" | undefined;
|
|
600
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
601
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
602
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
603
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
604
|
+
} | null)[] | null | undefined;
|
|
605
|
+
rent?: ({
|
|
606
|
+
__typename?: "WatchProvider" | undefined;
|
|
607
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
608
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
609
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
610
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
611
|
+
} | null)[] | null | undefined;
|
|
612
|
+
} | null | undefined;
|
|
613
|
+
cl?: {
|
|
614
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
615
|
+
ads?: ({
|
|
616
|
+
__typename?: "WatchProvider" | undefined;
|
|
617
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
618
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
619
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
620
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
621
|
+
} | null)[] | null | undefined;
|
|
622
|
+
buy?: ({
|
|
623
|
+
__typename?: "WatchProvider" | undefined;
|
|
624
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
625
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
626
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
627
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
628
|
+
} | null)[] | null | undefined;
|
|
629
|
+
flatrate?: ({
|
|
630
|
+
__typename?: "WatchProvider" | undefined;
|
|
631
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
632
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
633
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
634
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
635
|
+
} | null)[] | null | undefined;
|
|
636
|
+
free?: ({
|
|
637
|
+
__typename?: "WatchProvider" | undefined;
|
|
638
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
639
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
640
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
641
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
642
|
+
} | null)[] | null | undefined;
|
|
643
|
+
rent?: ({
|
|
644
|
+
__typename?: "WatchProvider" | undefined;
|
|
645
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
646
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
647
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
648
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
649
|
+
} | null)[] | null | undefined;
|
|
650
|
+
} | null | undefined;
|
|
651
|
+
co?: {
|
|
652
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
653
|
+
ads?: ({
|
|
654
|
+
__typename?: "WatchProvider" | undefined;
|
|
655
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
656
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
657
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
658
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
659
|
+
} | null)[] | null | undefined;
|
|
660
|
+
buy?: ({
|
|
661
|
+
__typename?: "WatchProvider" | undefined;
|
|
662
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
663
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
664
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
665
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
666
|
+
} | null)[] | null | undefined;
|
|
667
|
+
flatrate?: ({
|
|
668
|
+
__typename?: "WatchProvider" | undefined;
|
|
669
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
670
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
671
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
672
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
673
|
+
} | null)[] | null | undefined;
|
|
674
|
+
free?: ({
|
|
675
|
+
__typename?: "WatchProvider" | undefined;
|
|
676
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
677
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
678
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
679
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
680
|
+
} | null)[] | null | undefined;
|
|
681
|
+
rent?: ({
|
|
682
|
+
__typename?: "WatchProvider" | undefined;
|
|
683
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
684
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
685
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
686
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
687
|
+
} | null)[] | null | undefined;
|
|
688
|
+
} | null | undefined;
|
|
689
|
+
cz?: {
|
|
690
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
691
|
+
ads?: ({
|
|
692
|
+
__typename?: "WatchProvider" | undefined;
|
|
693
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
694
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
695
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
696
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
697
|
+
} | null)[] | null | undefined;
|
|
698
|
+
buy?: ({
|
|
699
|
+
__typename?: "WatchProvider" | undefined;
|
|
700
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
701
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
702
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
703
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
704
|
+
} | null)[] | null | undefined;
|
|
705
|
+
flatrate?: ({
|
|
706
|
+
__typename?: "WatchProvider" | undefined;
|
|
707
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
708
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
709
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
710
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
711
|
+
} | null)[] | null | undefined;
|
|
712
|
+
free?: ({
|
|
713
|
+
__typename?: "WatchProvider" | undefined;
|
|
714
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
715
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
716
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
717
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
718
|
+
} | null)[] | null | undefined;
|
|
719
|
+
rent?: ({
|
|
720
|
+
__typename?: "WatchProvider" | undefined;
|
|
721
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
722
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
723
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
724
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
725
|
+
} | null)[] | null | undefined;
|
|
726
|
+
} | null | undefined;
|
|
727
|
+
de?: {
|
|
728
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
729
|
+
ads?: ({
|
|
730
|
+
__typename?: "WatchProvider" | undefined;
|
|
731
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
732
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
733
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
734
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
735
|
+
} | null)[] | null | undefined;
|
|
736
|
+
buy?: ({
|
|
737
|
+
__typename?: "WatchProvider" | undefined;
|
|
738
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
739
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
740
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
741
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
742
|
+
} | null)[] | null | undefined;
|
|
743
|
+
flatrate?: ({
|
|
744
|
+
__typename?: "WatchProvider" | undefined;
|
|
745
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
746
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
747
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
748
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
749
|
+
} | null)[] | null | undefined;
|
|
750
|
+
free?: ({
|
|
751
|
+
__typename?: "WatchProvider" | undefined;
|
|
752
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
753
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
754
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
755
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
756
|
+
} | null)[] | null | undefined;
|
|
757
|
+
rent?: ({
|
|
758
|
+
__typename?: "WatchProvider" | undefined;
|
|
759
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
760
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
761
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
762
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
763
|
+
} | null)[] | null | undefined;
|
|
764
|
+
} | null | undefined;
|
|
765
|
+
dk?: {
|
|
766
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
767
|
+
ads?: ({
|
|
768
|
+
__typename?: "WatchProvider" | undefined;
|
|
769
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
770
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
771
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
772
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
773
|
+
} | null)[] | null | undefined;
|
|
774
|
+
buy?: ({
|
|
775
|
+
__typename?: "WatchProvider" | undefined;
|
|
776
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
777
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
778
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
779
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
780
|
+
} | null)[] | null | undefined;
|
|
781
|
+
flatrate?: ({
|
|
782
|
+
__typename?: "WatchProvider" | undefined;
|
|
783
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
784
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
785
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
786
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
787
|
+
} | null)[] | null | undefined;
|
|
788
|
+
free?: ({
|
|
789
|
+
__typename?: "WatchProvider" | undefined;
|
|
790
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
791
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
792
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
793
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
794
|
+
} | null)[] | null | undefined;
|
|
795
|
+
rent?: ({
|
|
796
|
+
__typename?: "WatchProvider" | undefined;
|
|
797
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
798
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
799
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
800
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
801
|
+
} | null)[] | null | undefined;
|
|
802
|
+
} | null | undefined;
|
|
803
|
+
ec?: {
|
|
804
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
805
|
+
ads?: ({
|
|
806
|
+
__typename?: "WatchProvider" | undefined;
|
|
807
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
808
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
809
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
810
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
811
|
+
} | null)[] | null | undefined;
|
|
812
|
+
buy?: ({
|
|
813
|
+
__typename?: "WatchProvider" | undefined;
|
|
814
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
815
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
816
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
817
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
818
|
+
} | null)[] | null | undefined;
|
|
819
|
+
flatrate?: ({
|
|
820
|
+
__typename?: "WatchProvider" | undefined;
|
|
821
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
822
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
823
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
824
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
825
|
+
} | null)[] | null | undefined;
|
|
826
|
+
free?: ({
|
|
827
|
+
__typename?: "WatchProvider" | undefined;
|
|
828
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
829
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
830
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
831
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
832
|
+
} | null)[] | null | undefined;
|
|
833
|
+
rent?: ({
|
|
834
|
+
__typename?: "WatchProvider" | undefined;
|
|
835
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
836
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
837
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
838
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
839
|
+
} | null)[] | null | undefined;
|
|
840
|
+
} | null | undefined;
|
|
841
|
+
es?: {
|
|
842
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
843
|
+
ads?: ({
|
|
844
|
+
__typename?: "WatchProvider" | undefined;
|
|
845
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
846
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
847
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
848
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
849
|
+
} | null)[] | null | undefined;
|
|
850
|
+
buy?: ({
|
|
851
|
+
__typename?: "WatchProvider" | undefined;
|
|
852
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
853
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
854
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
855
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
856
|
+
} | null)[] | null | undefined;
|
|
857
|
+
flatrate?: ({
|
|
858
|
+
__typename?: "WatchProvider" | undefined;
|
|
859
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
860
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
861
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
862
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
863
|
+
} | null)[] | null | undefined;
|
|
864
|
+
free?: ({
|
|
865
|
+
__typename?: "WatchProvider" | undefined;
|
|
866
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
867
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
868
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
869
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
870
|
+
} | null)[] | null | undefined;
|
|
871
|
+
rent?: ({
|
|
872
|
+
__typename?: "WatchProvider" | undefined;
|
|
873
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
874
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
875
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
876
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
877
|
+
} | null)[] | null | undefined;
|
|
878
|
+
} | null | undefined;
|
|
879
|
+
fi?: {
|
|
880
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
881
|
+
ads?: ({
|
|
882
|
+
__typename?: "WatchProvider" | undefined;
|
|
883
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
884
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
885
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
886
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
887
|
+
} | null)[] | null | undefined;
|
|
888
|
+
buy?: ({
|
|
889
|
+
__typename?: "WatchProvider" | undefined;
|
|
890
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
891
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
892
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
893
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
894
|
+
} | null)[] | null | undefined;
|
|
895
|
+
flatrate?: ({
|
|
896
|
+
__typename?: "WatchProvider" | undefined;
|
|
897
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
898
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
899
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
900
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
901
|
+
} | null)[] | null | undefined;
|
|
902
|
+
free?: ({
|
|
903
|
+
__typename?: "WatchProvider" | undefined;
|
|
904
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
905
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
906
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
907
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
908
|
+
} | null)[] | null | undefined;
|
|
909
|
+
rent?: ({
|
|
910
|
+
__typename?: "WatchProvider" | undefined;
|
|
911
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
912
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
913
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
914
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
915
|
+
} | null)[] | null | undefined;
|
|
916
|
+
} | null | undefined;
|
|
917
|
+
fr?: {
|
|
918
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
919
|
+
ads?: ({
|
|
920
|
+
__typename?: "WatchProvider" | undefined;
|
|
921
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
922
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
923
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
924
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
925
|
+
} | null)[] | null | undefined;
|
|
926
|
+
buy?: ({
|
|
927
|
+
__typename?: "WatchProvider" | undefined;
|
|
928
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
929
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
930
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
931
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
932
|
+
} | null)[] | null | undefined;
|
|
933
|
+
flatrate?: ({
|
|
934
|
+
__typename?: "WatchProvider" | undefined;
|
|
935
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
936
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
937
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
938
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
939
|
+
} | null)[] | null | undefined;
|
|
940
|
+
free?: ({
|
|
941
|
+
__typename?: "WatchProvider" | undefined;
|
|
942
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
943
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
944
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
945
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
946
|
+
} | null)[] | null | undefined;
|
|
947
|
+
rent?: ({
|
|
948
|
+
__typename?: "WatchProvider" | undefined;
|
|
949
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
950
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
951
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
952
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
953
|
+
} | null)[] | null | undefined;
|
|
954
|
+
} | null | undefined;
|
|
955
|
+
gb?: {
|
|
956
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
957
|
+
ads?: ({
|
|
958
|
+
__typename?: "WatchProvider" | undefined;
|
|
959
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
960
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
961
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
962
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
963
|
+
} | null)[] | null | undefined;
|
|
964
|
+
buy?: ({
|
|
965
|
+
__typename?: "WatchProvider" | undefined;
|
|
966
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
967
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
968
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
969
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
970
|
+
} | null)[] | null | undefined;
|
|
971
|
+
flatrate?: ({
|
|
972
|
+
__typename?: "WatchProvider" | undefined;
|
|
973
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
974
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
975
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
976
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
977
|
+
} | null)[] | null | undefined;
|
|
978
|
+
free?: ({
|
|
979
|
+
__typename?: "WatchProvider" | undefined;
|
|
980
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
981
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
982
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
983
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
984
|
+
} | null)[] | null | undefined;
|
|
985
|
+
rent?: ({
|
|
986
|
+
__typename?: "WatchProvider" | undefined;
|
|
987
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
988
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
989
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
990
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
991
|
+
} | null)[] | null | undefined;
|
|
992
|
+
} | null | undefined;
|
|
993
|
+
hu?: {
|
|
994
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
995
|
+
ads?: ({
|
|
996
|
+
__typename?: "WatchProvider" | undefined;
|
|
997
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
998
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
999
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1000
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1001
|
+
} | null)[] | null | undefined;
|
|
1002
|
+
buy?: ({
|
|
1003
|
+
__typename?: "WatchProvider" | undefined;
|
|
1004
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1005
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1006
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1007
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1008
|
+
} | null)[] | null | undefined;
|
|
1009
|
+
flatrate?: ({
|
|
1010
|
+
__typename?: "WatchProvider" | undefined;
|
|
1011
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1012
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1013
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1014
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1015
|
+
} | null)[] | null | undefined;
|
|
1016
|
+
free?: ({
|
|
1017
|
+
__typename?: "WatchProvider" | undefined;
|
|
1018
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1019
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1020
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1021
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1022
|
+
} | null)[] | null | undefined;
|
|
1023
|
+
rent?: ({
|
|
1024
|
+
__typename?: "WatchProvider" | undefined;
|
|
1025
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1026
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1027
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1028
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1029
|
+
} | null)[] | null | undefined;
|
|
1030
|
+
} | null | undefined;
|
|
1031
|
+
ie?: {
|
|
1032
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1033
|
+
ads?: ({
|
|
1034
|
+
__typename?: "WatchProvider" | undefined;
|
|
1035
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1036
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1037
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1038
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1039
|
+
} | null)[] | null | undefined;
|
|
1040
|
+
buy?: ({
|
|
1041
|
+
__typename?: "WatchProvider" | undefined;
|
|
1042
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1043
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1044
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1045
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1046
|
+
} | null)[] | null | undefined;
|
|
1047
|
+
flatrate?: ({
|
|
1048
|
+
__typename?: "WatchProvider" | undefined;
|
|
1049
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1050
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1051
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1052
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1053
|
+
} | null)[] | null | undefined;
|
|
1054
|
+
free?: ({
|
|
1055
|
+
__typename?: "WatchProvider" | undefined;
|
|
1056
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1057
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1058
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1059
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1060
|
+
} | null)[] | null | undefined;
|
|
1061
|
+
rent?: ({
|
|
1062
|
+
__typename?: "WatchProvider" | undefined;
|
|
1063
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1064
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1065
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1066
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1067
|
+
} | null)[] | null | undefined;
|
|
1068
|
+
} | null | undefined;
|
|
1069
|
+
in?: {
|
|
1070
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1071
|
+
ads?: ({
|
|
1072
|
+
__typename?: "WatchProvider" | undefined;
|
|
1073
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1074
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1075
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1076
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1077
|
+
} | null)[] | null | undefined;
|
|
1078
|
+
buy?: ({
|
|
1079
|
+
__typename?: "WatchProvider" | undefined;
|
|
1080
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1081
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1082
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1083
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1084
|
+
} | null)[] | null | undefined;
|
|
1085
|
+
flatrate?: ({
|
|
1086
|
+
__typename?: "WatchProvider" | undefined;
|
|
1087
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1088
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1089
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1090
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1091
|
+
} | null)[] | null | undefined;
|
|
1092
|
+
free?: ({
|
|
1093
|
+
__typename?: "WatchProvider" | undefined;
|
|
1094
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1095
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1096
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1097
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1098
|
+
} | null)[] | null | undefined;
|
|
1099
|
+
rent?: ({
|
|
1100
|
+
__typename?: "WatchProvider" | undefined;
|
|
1101
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1102
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1103
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1104
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1105
|
+
} | null)[] | null | undefined;
|
|
1106
|
+
} | null | undefined;
|
|
1107
|
+
it?: {
|
|
1108
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1109
|
+
ads?: ({
|
|
1110
|
+
__typename?: "WatchProvider" | undefined;
|
|
1111
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1112
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1113
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1114
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1115
|
+
} | null)[] | null | undefined;
|
|
1116
|
+
buy?: ({
|
|
1117
|
+
__typename?: "WatchProvider" | undefined;
|
|
1118
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1119
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1120
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1121
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1122
|
+
} | null)[] | null | undefined;
|
|
1123
|
+
flatrate?: ({
|
|
1124
|
+
__typename?: "WatchProvider" | undefined;
|
|
1125
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1126
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1127
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1128
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1129
|
+
} | null)[] | null | undefined;
|
|
1130
|
+
free?: ({
|
|
1131
|
+
__typename?: "WatchProvider" | undefined;
|
|
1132
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1133
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1134
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1135
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1136
|
+
} | null)[] | null | undefined;
|
|
1137
|
+
rent?: ({
|
|
1138
|
+
__typename?: "WatchProvider" | undefined;
|
|
1139
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1140
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1141
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1142
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1143
|
+
} | null)[] | null | undefined;
|
|
1144
|
+
} | null | undefined;
|
|
1145
|
+
jp?: {
|
|
1146
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1147
|
+
ads?: ({
|
|
1148
|
+
__typename?: "WatchProvider" | undefined;
|
|
1149
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1150
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1151
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1152
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1153
|
+
} | null)[] | null | undefined;
|
|
1154
|
+
buy?: ({
|
|
1155
|
+
__typename?: "WatchProvider" | undefined;
|
|
1156
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1157
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1158
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1159
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1160
|
+
} | null)[] | null | undefined;
|
|
1161
|
+
flatrate?: ({
|
|
1162
|
+
__typename?: "WatchProvider" | undefined;
|
|
1163
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1164
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1165
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1166
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1167
|
+
} | null)[] | null | undefined;
|
|
1168
|
+
free?: ({
|
|
1169
|
+
__typename?: "WatchProvider" | undefined;
|
|
1170
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1171
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1172
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1173
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1174
|
+
} | null)[] | null | undefined;
|
|
1175
|
+
rent?: ({
|
|
1176
|
+
__typename?: "WatchProvider" | undefined;
|
|
1177
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1178
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1179
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1180
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1181
|
+
} | null)[] | null | undefined;
|
|
1182
|
+
} | null | undefined;
|
|
1183
|
+
mx?: {
|
|
1184
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1185
|
+
ads?: ({
|
|
1186
|
+
__typename?: "WatchProvider" | undefined;
|
|
1187
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1188
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1189
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1190
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1191
|
+
} | null)[] | null | undefined;
|
|
1192
|
+
buy?: ({
|
|
1193
|
+
__typename?: "WatchProvider" | undefined;
|
|
1194
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1195
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1196
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1197
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1198
|
+
} | null)[] | null | undefined;
|
|
1199
|
+
flatrate?: ({
|
|
1200
|
+
__typename?: "WatchProvider" | undefined;
|
|
1201
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1202
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1203
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1204
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1205
|
+
} | null)[] | null | undefined;
|
|
1206
|
+
free?: ({
|
|
1207
|
+
__typename?: "WatchProvider" | undefined;
|
|
1208
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1209
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1210
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1211
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1212
|
+
} | null)[] | null | undefined;
|
|
1213
|
+
rent?: ({
|
|
1214
|
+
__typename?: "WatchProvider" | undefined;
|
|
1215
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1216
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1217
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1218
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1219
|
+
} | null)[] | null | undefined;
|
|
1220
|
+
} | null | undefined;
|
|
1221
|
+
nl?: {
|
|
1222
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1223
|
+
ads?: ({
|
|
1224
|
+
__typename?: "WatchProvider" | undefined;
|
|
1225
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1226
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1227
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1228
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1229
|
+
} | null)[] | null | undefined;
|
|
1230
|
+
buy?: ({
|
|
1231
|
+
__typename?: "WatchProvider" | undefined;
|
|
1232
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1233
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1234
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1235
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1236
|
+
} | null)[] | null | undefined;
|
|
1237
|
+
flatrate?: ({
|
|
1238
|
+
__typename?: "WatchProvider" | undefined;
|
|
1239
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1240
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1241
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1242
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1243
|
+
} | null)[] | null | undefined;
|
|
1244
|
+
free?: ({
|
|
1245
|
+
__typename?: "WatchProvider" | undefined;
|
|
1246
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1247
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1248
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1249
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1250
|
+
} | null)[] | null | undefined;
|
|
1251
|
+
rent?: ({
|
|
1252
|
+
__typename?: "WatchProvider" | undefined;
|
|
1253
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1254
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1255
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1256
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1257
|
+
} | null)[] | null | undefined;
|
|
1258
|
+
} | null | undefined;
|
|
1259
|
+
no?: {
|
|
1260
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1261
|
+
ads?: ({
|
|
1262
|
+
__typename?: "WatchProvider" | undefined;
|
|
1263
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1264
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1265
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1266
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1267
|
+
} | null)[] | null | undefined;
|
|
1268
|
+
buy?: ({
|
|
1269
|
+
__typename?: "WatchProvider" | undefined;
|
|
1270
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1271
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1272
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1273
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1274
|
+
} | null)[] | null | undefined;
|
|
1275
|
+
flatrate?: ({
|
|
1276
|
+
__typename?: "WatchProvider" | undefined;
|
|
1277
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1278
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1279
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1280
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1281
|
+
} | null)[] | null | undefined;
|
|
1282
|
+
free?: ({
|
|
1283
|
+
__typename?: "WatchProvider" | undefined;
|
|
1284
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1285
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1286
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1287
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1288
|
+
} | null)[] | null | undefined;
|
|
1289
|
+
rent?: ({
|
|
1290
|
+
__typename?: "WatchProvider" | undefined;
|
|
1291
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1292
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1293
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1294
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1295
|
+
} | null)[] | null | undefined;
|
|
1296
|
+
} | null | undefined;
|
|
1297
|
+
nz?: {
|
|
1298
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1299
|
+
ads?: ({
|
|
1300
|
+
__typename?: "WatchProvider" | undefined;
|
|
1301
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1302
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1303
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1304
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1305
|
+
} | null)[] | null | undefined;
|
|
1306
|
+
buy?: ({
|
|
1307
|
+
__typename?: "WatchProvider" | undefined;
|
|
1308
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1309
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1310
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1311
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1312
|
+
} | null)[] | null | undefined;
|
|
1313
|
+
flatrate?: ({
|
|
1314
|
+
__typename?: "WatchProvider" | undefined;
|
|
1315
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1316
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1317
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1318
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1319
|
+
} | null)[] | null | undefined;
|
|
1320
|
+
free?: ({
|
|
1321
|
+
__typename?: "WatchProvider" | undefined;
|
|
1322
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1323
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1324
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1325
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1326
|
+
} | null)[] | null | undefined;
|
|
1327
|
+
rent?: ({
|
|
1328
|
+
__typename?: "WatchProvider" | undefined;
|
|
1329
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1330
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1331
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1332
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1333
|
+
} | null)[] | null | undefined;
|
|
1334
|
+
} | null | undefined;
|
|
1335
|
+
pe?: {
|
|
1336
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1337
|
+
ads?: ({
|
|
1338
|
+
__typename?: "WatchProvider" | undefined;
|
|
1339
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1340
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1341
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1342
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1343
|
+
} | null)[] | null | undefined;
|
|
1344
|
+
buy?: ({
|
|
1345
|
+
__typename?: "WatchProvider" | undefined;
|
|
1346
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1347
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1348
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1349
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1350
|
+
} | null)[] | null | undefined;
|
|
1351
|
+
flatrate?: ({
|
|
1352
|
+
__typename?: "WatchProvider" | undefined;
|
|
1353
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1354
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1355
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1356
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1357
|
+
} | null)[] | null | undefined;
|
|
1358
|
+
free?: ({
|
|
1359
|
+
__typename?: "WatchProvider" | undefined;
|
|
1360
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1361
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1362
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1363
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1364
|
+
} | null)[] | null | undefined;
|
|
1365
|
+
rent?: ({
|
|
1366
|
+
__typename?: "WatchProvider" | undefined;
|
|
1367
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1368
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1369
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1370
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1371
|
+
} | null)[] | null | undefined;
|
|
1372
|
+
} | null | undefined;
|
|
1373
|
+
pl?: {
|
|
1374
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1375
|
+
ads?: ({
|
|
1376
|
+
__typename?: "WatchProvider" | undefined;
|
|
1377
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1378
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1379
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1380
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1381
|
+
} | null)[] | null | undefined;
|
|
1382
|
+
buy?: ({
|
|
1383
|
+
__typename?: "WatchProvider" | undefined;
|
|
1384
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1385
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1386
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1387
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1388
|
+
} | null)[] | null | undefined;
|
|
1389
|
+
flatrate?: ({
|
|
1390
|
+
__typename?: "WatchProvider" | undefined;
|
|
1391
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1392
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1393
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1394
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1395
|
+
} | null)[] | null | undefined;
|
|
1396
|
+
free?: ({
|
|
1397
|
+
__typename?: "WatchProvider" | undefined;
|
|
1398
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1399
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1400
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1401
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1402
|
+
} | null)[] | null | undefined;
|
|
1403
|
+
rent?: ({
|
|
1404
|
+
__typename?: "WatchProvider" | undefined;
|
|
1405
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1406
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1407
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1408
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1409
|
+
} | null)[] | null | undefined;
|
|
1410
|
+
} | null | undefined;
|
|
1411
|
+
pt?: {
|
|
1412
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1413
|
+
ads?: ({
|
|
1414
|
+
__typename?: "WatchProvider" | undefined;
|
|
1415
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1416
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1417
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1418
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1419
|
+
} | null)[] | null | undefined;
|
|
1420
|
+
buy?: ({
|
|
1421
|
+
__typename?: "WatchProvider" | undefined;
|
|
1422
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1423
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1424
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1425
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1426
|
+
} | null)[] | null | undefined;
|
|
1427
|
+
flatrate?: ({
|
|
1428
|
+
__typename?: "WatchProvider" | undefined;
|
|
1429
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1430
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1431
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1432
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1433
|
+
} | null)[] | null | undefined;
|
|
1434
|
+
free?: ({
|
|
1435
|
+
__typename?: "WatchProvider" | undefined;
|
|
1436
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1437
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1438
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1439
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1440
|
+
} | null)[] | null | undefined;
|
|
1441
|
+
rent?: ({
|
|
1442
|
+
__typename?: "WatchProvider" | undefined;
|
|
1443
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1444
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1445
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1446
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1447
|
+
} | null)[] | null | undefined;
|
|
1448
|
+
} | null | undefined;
|
|
1449
|
+
ro?: {
|
|
1450
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1451
|
+
ads?: ({
|
|
1452
|
+
__typename?: "WatchProvider" | undefined;
|
|
1453
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1454
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1455
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1456
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1457
|
+
} | null)[] | null | undefined;
|
|
1458
|
+
buy?: ({
|
|
1459
|
+
__typename?: "WatchProvider" | undefined;
|
|
1460
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1461
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1462
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1463
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1464
|
+
} | null)[] | null | undefined;
|
|
1465
|
+
flatrate?: ({
|
|
1466
|
+
__typename?: "WatchProvider" | undefined;
|
|
1467
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1468
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1469
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1470
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1471
|
+
} | null)[] | null | undefined;
|
|
1472
|
+
free?: ({
|
|
1473
|
+
__typename?: "WatchProvider" | undefined;
|
|
1474
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1475
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1476
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1477
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1478
|
+
} | null)[] | null | undefined;
|
|
1479
|
+
rent?: ({
|
|
1480
|
+
__typename?: "WatchProvider" | undefined;
|
|
1481
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1482
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1483
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1484
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1485
|
+
} | null)[] | null | undefined;
|
|
1486
|
+
} | null | undefined;
|
|
1487
|
+
ru?: {
|
|
1488
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1489
|
+
ads?: ({
|
|
1490
|
+
__typename?: "WatchProvider" | undefined;
|
|
1491
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1492
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1493
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1494
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1495
|
+
} | null)[] | null | undefined;
|
|
1496
|
+
buy?: ({
|
|
1497
|
+
__typename?: "WatchProvider" | undefined;
|
|
1498
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1499
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1500
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1501
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1502
|
+
} | null)[] | null | undefined;
|
|
1503
|
+
flatrate?: ({
|
|
1504
|
+
__typename?: "WatchProvider" | undefined;
|
|
1505
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1506
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1507
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1508
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1509
|
+
} | null)[] | null | undefined;
|
|
1510
|
+
free?: ({
|
|
1511
|
+
__typename?: "WatchProvider" | undefined;
|
|
1512
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1513
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1514
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1515
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1516
|
+
} | null)[] | null | undefined;
|
|
1517
|
+
rent?: ({
|
|
1518
|
+
__typename?: "WatchProvider" | undefined;
|
|
1519
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1520
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1521
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1522
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1523
|
+
} | null)[] | null | undefined;
|
|
1524
|
+
} | null | undefined;
|
|
1525
|
+
se?: {
|
|
1526
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1527
|
+
ads?: ({
|
|
1528
|
+
__typename?: "WatchProvider" | undefined;
|
|
1529
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1530
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1531
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1532
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1533
|
+
} | null)[] | null | undefined;
|
|
1534
|
+
buy?: ({
|
|
1535
|
+
__typename?: "WatchProvider" | undefined;
|
|
1536
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1537
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1538
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1539
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1540
|
+
} | null)[] | null | undefined;
|
|
1541
|
+
flatrate?: ({
|
|
1542
|
+
__typename?: "WatchProvider" | undefined;
|
|
1543
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1544
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1545
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1546
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1547
|
+
} | null)[] | null | undefined;
|
|
1548
|
+
free?: ({
|
|
1549
|
+
__typename?: "WatchProvider" | undefined;
|
|
1550
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1551
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1552
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1553
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1554
|
+
} | null)[] | null | undefined;
|
|
1555
|
+
rent?: ({
|
|
1556
|
+
__typename?: "WatchProvider" | undefined;
|
|
1557
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1558
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1559
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1560
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1561
|
+
} | null)[] | null | undefined;
|
|
1562
|
+
} | null | undefined;
|
|
1563
|
+
tr?: {
|
|
1564
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1565
|
+
ads?: ({
|
|
1566
|
+
__typename?: "WatchProvider" | undefined;
|
|
1567
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1568
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1569
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1570
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1571
|
+
} | null)[] | null | undefined;
|
|
1572
|
+
buy?: ({
|
|
1573
|
+
__typename?: "WatchProvider" | undefined;
|
|
1574
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1575
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1576
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1577
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1578
|
+
} | null)[] | null | undefined;
|
|
1579
|
+
flatrate?: ({
|
|
1580
|
+
__typename?: "WatchProvider" | undefined;
|
|
1581
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1582
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1583
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1584
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1585
|
+
} | null)[] | null | undefined;
|
|
1586
|
+
free?: ({
|
|
1587
|
+
__typename?: "WatchProvider" | undefined;
|
|
1588
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1589
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1590
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1591
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1592
|
+
} | null)[] | null | undefined;
|
|
1593
|
+
rent?: ({
|
|
1594
|
+
__typename?: "WatchProvider" | undefined;
|
|
1595
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1596
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1597
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1598
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1599
|
+
} | null)[] | null | undefined;
|
|
1600
|
+
} | null | undefined;
|
|
1601
|
+
us?: {
|
|
1602
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1603
|
+
ads?: ({
|
|
1604
|
+
__typename?: "WatchProvider" | undefined;
|
|
1605
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1606
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1607
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1608
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1609
|
+
} | null)[] | null | undefined;
|
|
1610
|
+
buy?: ({
|
|
1611
|
+
__typename?: "WatchProvider" | undefined;
|
|
1612
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1613
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1614
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1615
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1616
|
+
} | null)[] | null | undefined;
|
|
1617
|
+
flatrate?: ({
|
|
1618
|
+
__typename?: "WatchProvider" | undefined;
|
|
1619
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1620
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1621
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1622
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1623
|
+
} | null)[] | null | undefined;
|
|
1624
|
+
free?: ({
|
|
1625
|
+
__typename?: "WatchProvider" | undefined;
|
|
1626
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1627
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1628
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1629
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1630
|
+
} | null)[] | null | undefined;
|
|
1631
|
+
rent?: ({
|
|
1632
|
+
__typename?: "WatchProvider" | undefined;
|
|
1633
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1634
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1635
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1636
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1637
|
+
} | null)[] | null | undefined;
|
|
1638
|
+
} | null | undefined;
|
|
1639
|
+
ve?: {
|
|
1640
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1641
|
+
ads?: ({
|
|
1642
|
+
__typename?: "WatchProvider" | undefined;
|
|
1643
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1644
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1645
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1646
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1647
|
+
} | null)[] | null | undefined;
|
|
1648
|
+
buy?: ({
|
|
1649
|
+
__typename?: "WatchProvider" | undefined;
|
|
1650
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1651
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1652
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1653
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1654
|
+
} | null)[] | null | undefined;
|
|
1655
|
+
flatrate?: ({
|
|
1656
|
+
__typename?: "WatchProvider" | undefined;
|
|
1657
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1658
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1659
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1660
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1661
|
+
} | null)[] | null | undefined;
|
|
1662
|
+
free?: ({
|
|
1663
|
+
__typename?: "WatchProvider" | undefined;
|
|
1664
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1665
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1666
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1667
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1668
|
+
} | null)[] | null | undefined;
|
|
1669
|
+
rent?: ({
|
|
1670
|
+
__typename?: "WatchProvider" | undefined;
|
|
1671
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1672
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1673
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1674
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1675
|
+
} | null)[] | null | undefined;
|
|
1676
|
+
} | null | undefined;
|
|
1677
|
+
za?: {
|
|
1678
|
+
__typename?: "WatchProviderCategories" | undefined;
|
|
1679
|
+
ads?: ({
|
|
1680
|
+
__typename?: "WatchProvider" | undefined;
|
|
1681
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1682
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1683
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1684
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1685
|
+
} | null)[] | null | undefined;
|
|
1686
|
+
buy?: ({
|
|
1687
|
+
__typename?: "WatchProvider" | undefined;
|
|
1688
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1689
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1690
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1691
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1692
|
+
} | null)[] | null | undefined;
|
|
1693
|
+
flatrate?: ({
|
|
1694
|
+
__typename?: "WatchProvider" | undefined;
|
|
1695
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1696
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1697
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1698
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1699
|
+
} | null)[] | null | undefined;
|
|
1700
|
+
free?: ({
|
|
1701
|
+
__typename?: "WatchProvider" | undefined;
|
|
1702
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1703
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1704
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1705
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1706
|
+
} | null)[] | null | undefined;
|
|
1707
|
+
rent?: ({
|
|
1708
|
+
__typename?: "WatchProvider" | undefined;
|
|
1709
|
+
display_priority?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1710
|
+
id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1711
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1712
|
+
provider_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1713
|
+
} | null)[] | null | undefined;
|
|
1714
|
+
} | null | undefined;
|
|
1715
|
+
} | null | undefined;
|
|
1716
|
+
} | null)[];
|
|
1717
|
+
poster_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1718
|
+
posters?: ({
|
|
1719
|
+
__typename?: "Image" | undefined;
|
|
1720
|
+
aspect_radio?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1721
|
+
file_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1722
|
+
file_type?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1723
|
+
height?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1724
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1725
|
+
vote_average?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1726
|
+
vote_count?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1727
|
+
width?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1728
|
+
} | null)[] | null | undefined;
|
|
1729
|
+
translations?: ({
|
|
1730
|
+
__typename?: "Translation" | undefined;
|
|
1731
|
+
data: {
|
|
1732
|
+
__typename?: "TranslationData" | undefined;
|
|
1733
|
+
biography?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1734
|
+
homepage?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1735
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1736
|
+
overview?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1737
|
+
title?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1738
|
+
};
|
|
1739
|
+
english_name: string;
|
|
1740
|
+
iso_639_1: string;
|
|
1741
|
+
iso_3166_1: string;
|
|
1742
|
+
name: string;
|
|
1743
|
+
} | null)[] | null | undefined;
|
|
1744
|
+
} | null | undefined;
|
|
1745
|
+
budget: number;
|
|
1746
|
+
imdb_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1747
|
+
production_companies: ({
|
|
1748
|
+
id: string | number;
|
|
1749
|
+
__typename?: "Company" | undefined;
|
|
1750
|
+
alternative_names?: ({
|
|
1751
|
+
__typename?: "AlternativeName" | undefined;
|
|
1752
|
+
iso_3166_1?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1753
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1754
|
+
title?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1755
|
+
type: string;
|
|
1756
|
+
} | null)[] | null | undefined;
|
|
1757
|
+
description: string;
|
|
1758
|
+
headquarters: string;
|
|
1759
|
+
homepage?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1760
|
+
logo_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1761
|
+
logos?: ({
|
|
1762
|
+
__typename?: "Image" | undefined;
|
|
1763
|
+
aspect_radio?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1764
|
+
file_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1765
|
+
file_type?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1766
|
+
height?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1767
|
+
iso_639_1?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1768
|
+
vote_average?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1769
|
+
vote_count?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1770
|
+
width?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1771
|
+
} | null)[] | null | undefined;
|
|
1772
|
+
name: string;
|
|
1773
|
+
origin_country?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1774
|
+
parent_company?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1775
|
+
} | null)[];
|
|
1776
|
+
production_countries: ({
|
|
1777
|
+
__typename?: "Country" | undefined;
|
|
1778
|
+
english_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1779
|
+
iso_3166_1: string;
|
|
1780
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1781
|
+
} | null)[];
|
|
1782
|
+
revenue: number;
|
|
1783
|
+
runtime?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1784
|
+
spoken_languages: ({
|
|
1785
|
+
__typename?: "Language" | undefined;
|
|
1786
|
+
english_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1787
|
+
iso_639_1: string;
|
|
1788
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1789
|
+
} | null)[];
|
|
1790
|
+
status: string;
|
|
1791
|
+
tagline?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1792
|
+
} & {
|
|
1793
|
+
alternative_titles: Omit<import("../types.cts").RawMovieAlternativeTitles, "id">;
|
|
1794
|
+
credits?: Omit<{
|
|
1795
|
+
cast?: ({
|
|
1796
|
+
id: string | number;
|
|
1797
|
+
__typename?: "Cast" | undefined;
|
|
1798
|
+
adult?: import("@tmdb-graphql-api/schema").Maybe<boolean> | undefined;
|
|
1799
|
+
cast_id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1800
|
+
character?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1801
|
+
credit_id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1802
|
+
gender?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1803
|
+
known_for_department?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1804
|
+
name: string;
|
|
1805
|
+
order?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1806
|
+
original_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1807
|
+
popularity?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1808
|
+
profile_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1809
|
+
} | null)[] | null | undefined;
|
|
1810
|
+
crew?: ({
|
|
1811
|
+
id: string | number;
|
|
1812
|
+
__typename?: "Crew" | undefined;
|
|
1813
|
+
adult?: import("@tmdb-graphql-api/schema").Maybe<boolean> | undefined;
|
|
1814
|
+
credit_id?: import("@tmdb-graphql-api/schema").Maybe<string | number> | undefined;
|
|
1815
|
+
department?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1816
|
+
gender?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1817
|
+
job?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1818
|
+
known_for_department?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1819
|
+
name: string;
|
|
1820
|
+
original_name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1821
|
+
popularity?: import("@tmdb-graphql-api/schema").Maybe<number> | undefined;
|
|
1822
|
+
profile_path?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1823
|
+
} | null)[] | null | undefined;
|
|
1824
|
+
id: string | number;
|
|
1825
|
+
}, "id"> | undefined;
|
|
1826
|
+
external_ids?: {
|
|
1827
|
+
__typename?: "ExternalIds" | undefined;
|
|
1828
|
+
facebook_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1829
|
+
freebase_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1830
|
+
freebase_mid?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1831
|
+
imdb_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1832
|
+
instagram_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1833
|
+
tvdb_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1834
|
+
tvrage_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1835
|
+
twitter_id?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1836
|
+
} | undefined;
|
|
1837
|
+
images?: Omit<import("../types.cts").RawMovieImages, "id"> | undefined;
|
|
1838
|
+
keywords?: Omit<import("../types.cts").RawMovieKeywords, "id"> | undefined;
|
|
1839
|
+
recommendations?: import("../types.cts").RawMovieRecommendations | undefined;
|
|
1840
|
+
release_dates?: Omit<import("../types.cts").RawMovieReleaseDates, "id"> | undefined;
|
|
1841
|
+
reviews?: import("../types.cts").RawMovieReviews | undefined;
|
|
1842
|
+
similar?: RawMovieSimilarMovies | undefined;
|
|
1843
|
+
translations?: Omit<{
|
|
1844
|
+
translations?: ({
|
|
1845
|
+
__typename?: "Translation" | undefined;
|
|
1846
|
+
data: {
|
|
1847
|
+
__typename?: "TranslationData" | undefined;
|
|
1848
|
+
biography?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1849
|
+
homepage?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1850
|
+
name?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1851
|
+
overview?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1852
|
+
title?: import("@tmdb-graphql-api/schema").Maybe<string> | undefined;
|
|
1853
|
+
};
|
|
1854
|
+
english_name: string;
|
|
1855
|
+
iso_639_1: string;
|
|
1856
|
+
iso_3166_1: string;
|
|
1857
|
+
name: string;
|
|
1858
|
+
} | null)[] | null | undefined;
|
|
1859
|
+
id: string | number;
|
|
1860
|
+
}, "id"> | undefined;
|
|
1861
|
+
videos?: Omit<import("../types.cts").RawMovieVideos, "id"> | undefined;
|
|
1862
|
+
'watch/providers'?: import("../types.cts").RawWatchProviders | undefined;
|
|
1863
|
+
} & {
|
|
1864
|
+
__headers?: Headers | undefined;
|
|
1865
|
+
}, args: MovieSimilarMoviesArgs & import("@graphql-box/connection-resolver").ConnectionInputOptions, context: Context, info: import("graphql").GraphQLResolveInfo) => Promise<import("@graphql-box/connection-resolver").Connection>;
|
|
1866
|
+
//# sourceMappingURL=movieSimilarMovies.d.cts.map
|