diff --git a/Sources/TMDb/Certifications/CertificationService.swift b/Sources/TMDb/Certifications/CertificationService.swift index 310de3f6..fe1e9fdf 100644 --- a/Sources/TMDb/Certifications/CertificationService.swift +++ b/Sources/TMDb/Certifications/CertificationService.swift @@ -24,9 +24,9 @@ public final class CertificationService { /// /// Returns an up to date list of the officially supported movie certifications on TMDB. /// - /// [TMDb API - Movie Certifications](https://developer.themoviedb.org/reference/certification-movie-list) + /// [TMDb API - Certifications: Movie Certifications](https://developer.themoviedb.org/reference/certification-movie-list) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A dictionary of movie certifications. /// @@ -44,9 +44,9 @@ public final class CertificationService { /// /// Returns an up to date list of the officially supported TV certifications on TMDB. /// - /// [TMDb API - TV show Certifications](https://developer.themoviedb.org/reference/certifications-tv-list) + /// [TMDb API - Certifications: TV Certifications](https://developer.themoviedb.org/reference/certifications-tv-list) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A dictionary of TV show certifications. /// diff --git a/Sources/TMDb/Company/CompanyService.swift b/Sources/TMDb/Company/CompanyService.swift index a2a0c8d9..f036b8cf 100644 --- a/Sources/TMDb/Company/CompanyService.swift +++ b/Sources/TMDb/Company/CompanyService.swift @@ -29,7 +29,7 @@ public final class CompanyService { /// - Parameters: /// - id: The identifier of the company. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Matching company. /// diff --git a/Sources/TMDb/Configuration/ConfigurationService.swift b/Sources/TMDb/Configuration/ConfigurationService.swift index 9f61bba2..689a12f9 100644 --- a/Sources/TMDb/Configuration/ConfigurationService.swift +++ b/Sources/TMDb/Configuration/ConfigurationService.swift @@ -25,9 +25,9 @@ public final class ConfigurationService { /// Returns the TMDb API system wide configuration information. The result is cached, so there is no overhead in /// making multiple calls. /// - /// [TMDb API - Configuration: API Configuration](https://developers.themoviedb.org/3/configuration/get-api-configuration) + /// [TMDb API - Configuration: Details](https://developer.themoviedb.org/reference/configuration-details) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: The API configuration. /// @@ -45,9 +45,9 @@ public final class ConfigurationService { /// /// Returns the list of countries used throughout TMDb. /// - /// [TMDb API - Configuration: Countries](https://developers.themoviedb.org/3/configuration/get-countries) + /// [TMDb API - Configuration: Countries](https://developer.themoviedb.org/reference/configuration-countries) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Countries used throughout TMDb, /// @@ -65,9 +65,9 @@ public final class ConfigurationService { /// /// Returns a list of the jobs and departments used on TMDb. /// - /// [TMDb API - Configuration: Jobs](https://developers.themoviedb.org/3/configuration/get-jobs) + /// [TMDb API - Configuration: Jobs](https://developer.themoviedb.org/reference/configuration-jobs) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Jobs and departments used on TMDb. /// @@ -85,9 +85,9 @@ public final class ConfigurationService { /// /// Returns the list of languages (ISO 639-1 tags) used throughout TMDb. /// - /// [TMDb API - Configuration: Languages](https://developers.themoviedb.org/3/configuration/get-languages) + /// [TMDb API - Configuration: Languages](https://developer.themoviedb.org/reference/configuration-languages) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Languages used throughout TMDb. /// diff --git a/Sources/TMDb/Discover/DiscoverService.swift b/Sources/TMDb/Discover/DiscoverService.swift index b27cf15c..893cdf6d 100644 --- a/Sources/TMDb/Discover/DiscoverService.swift +++ b/Sources/TMDb/Discover/DiscoverService.swift @@ -24,7 +24,7 @@ public final class DiscoverService { /// /// Returns movies to be discovered. /// - /// [TMDb API - Discover: Movies](https://developers.themoviedb.org/3/discover/movie-discover) + /// [TMDb API - Discover: Movie](https://developer.themoviedb.org/reference/discover-movie) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -33,7 +33,7 @@ public final class DiscoverService { /// - people: A list of Person identifiers which to return only movies they have appeared in. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Matching movies as a pageable list. /// @@ -54,7 +54,7 @@ public final class DiscoverService { /// /// Returns TV shows to be discovered. /// - /// [TMDb API - Discover: TV Shows](https://developers.themoviedb.org/3/discover/tv-discover) + /// [TMDb API - Discover: TV](https://developer.themoviedb.org/reference/discover-tv) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -62,7 +62,7 @@ public final class DiscoverService { /// - sortedBy: How results should be sorted. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Matching TV shows as a pageable list. /// diff --git a/Sources/TMDb/Genres/GenreService.swift b/Sources/TMDb/Genres/GenreService.swift index 206479f6..90566e2a 100644 --- a/Sources/TMDb/Genres/GenreService.swift +++ b/Sources/TMDb/Genres/GenreService.swift @@ -24,9 +24,9 @@ public final class GenreService { /// /// Returns the list of official genres for movies. /// - /// [TMDb API - Genres: Movies](https://developers.themoviedb.org/3/genres/get-movie-list) + /// [TMDb API - Genres: Movie List](https://developer.themoviedb.org/reference/genre-movie-list) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A list of genres. /// @@ -44,9 +44,9 @@ public final class GenreService { /// /// Returns the list of official genres for TV shows. /// - /// [TMDb API - Genres: Movies](https://developers.themoviedb.org/3/genres/get-tv-list) + /// [TMDb API - Genres: TV List](https://developer.themoviedb.org/reference/genre-tv-list) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A list of genres. /// diff --git a/Sources/TMDb/Movies/MovieService.swift b/Sources/TMDb/Movies/MovieService.swift index 99a6fc08..b8fb160f 100644 --- a/Sources/TMDb/Movies/MovieService.swift +++ b/Sources/TMDb/Movies/MovieService.swift @@ -27,12 +27,12 @@ public final class MovieService { /// /// Returns the primary information about a movie. /// - /// [TMDb API - Movie: Details](https://developers.themoviedb.org/3/movies/get-movie-details) + /// [TMDb API - Movies: Details](https://developer.themoviedb.org/reference/movie-details) /// /// - Parameters: /// - id: The identifier of the movie. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: The matching movie. /// @@ -50,12 +50,12 @@ public final class MovieService { /// /// Returns the cast and crew of a movie. /// - /// [TMDb API - Movie: Credits](https://developers.themoviedb.org/3/movies/get-movie-credits) + /// [TMDb API - Movies: Credits](https://developer.themoviedb.org/reference/movie-credits) /// /// - Parameters: /// - movieID: The identifier of the movie. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Credits for the matching movie. /// @@ -73,7 +73,7 @@ public final class MovieService { /// /// Returns the user reviews for a movie. /// - /// [TMDb API - Movie: Reviews](https://developers.themoviedb.org/3/movies/get-movie-reviews) + /// [TMDb API - Movies: Reviews](https://developer.themoviedb.org/reference/movie-reviews) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -81,7 +81,7 @@ public final class MovieService { /// - movieID: The identifier of the movie. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Reviews for the matching movie as a pageable list. /// @@ -99,12 +99,12 @@ public final class MovieService { /// /// Returns the images that belong to a movie. /// - /// [TMDb API - Movie: Images](https://developers.themoviedb.org/3/movies/get-movie-images) + /// [TMDb API - Movies: Images](https://developer.themoviedb.org/reference/movie-images) /// /// - Parameters: /// - movieID: The identifier of the movie. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Collection of images for the matching movie. /// @@ -125,12 +125,12 @@ public final class MovieService { /// /// Returns the videos that have been added to a movie. /// - /// [TMDb API - Movie: Videos](https://developers.themoviedb.org/3/movies/get-movie-videos) + /// [TMDb API - Movies: Videos](https://developer.themoviedb.org/reference/movie-videos) /// /// - Parameters: /// - movieID: The identifier of the movie. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Collection of videos for the matching movie. /// @@ -151,7 +151,7 @@ public final class MovieService { /// /// Returns a list of recommended movies for a movie. /// - /// [TMDb API - Movie: Recommendations](https://developers.themoviedb.org/3/movies/get-movie-recommendations) + /// [TMDb API - Movies: Recommendations](https://developer.themoviedb.org/reference/movie-recommendations) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -159,7 +159,7 @@ public final class MovieService { /// - movieID: The identifier of the movie for get recommendations for. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Recommended movies for the matching movie as a pageable list. /// @@ -179,7 +179,7 @@ public final class MovieService { /// /// This is not the same as the *Recommendations*. /// - /// [TMDb API - Movie: Similar](https://developers.themoviedb.org/3/movies/get-similar-movies) + /// [TMDb API - Movies: Similar](https://developer.themoviedb.org/reference/movie-similar) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -187,7 +187,7 @@ public final class MovieService { /// - movieID: The identifier of the movie for get similar movies for. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Similar movies for the matching movie as a pageable list. /// @@ -205,14 +205,14 @@ public final class MovieService { /// /// Returns a list of currently playing movies. /// - /// [TMDb API - Movie: Now Playing](https://developers.themoviedb.org/3/movies/get-now-playing) + /// [TMDb API - Movie Lists: Now Playing](https://developer.themoviedb.org/reference/movie-now-playing-list) /// /// - precondition: `page` can be between `1` and `1000`. /// /// - Parameters: /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Now playing movies as a pageable list. /// @@ -230,14 +230,14 @@ public final class MovieService { /// /// Returns a list of current popular movies. /// - /// [TMDb API - Movie: Popular](https://developers.themoviedb.org/3/movies/get-popular-movies) + /// [TMDb API - Movie List: Popular](https://developer.themoviedb.org/reference/movie-popular-list) /// /// - precondition: `page` can be between `1` and `1000`. /// /// - Parameters: /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Current popular movies as a pageable list. /// @@ -255,14 +255,14 @@ public final class MovieService { /// /// Returns a list of top rated movies. /// - /// [TMDb API - Movie: Top Rated](https://developers.themoviedb.org/3/movies/get-top-rated-movies) + /// [TMDb API - Movie List: Top Rated](https://developer.themoviedb.org/reference/movie-top-rated-list) /// /// - precondition: `page` can be between `1` and `1000`. /// /// - Parameters: /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Top rated movies as a pageable list. /// @@ -280,14 +280,14 @@ public final class MovieService { /// /// Returns a list of upcoming movies. /// - /// [TMDb API - Movie: Upcoming](https://developers.themoviedb.org/3/movies/get-upcoming) + /// [TMDb API - Movie List: Upcoming](https://developer.themoviedb.org/reference/movie-upcoming-list) /// /// - precondition: `page` can be between `1` and `1000`. /// /// - Parameters: /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Upcoming movies as a pageable list. /// diff --git a/Sources/TMDb/People/PersonService.swift b/Sources/TMDb/People/PersonService.swift index 1aef61f9..92a74ede 100644 --- a/Sources/TMDb/People/PersonService.swift +++ b/Sources/TMDb/People/PersonService.swift @@ -26,12 +26,12 @@ public final class PersonService { /// /// Returns the primary information about a person. /// - /// [TMDb API - People: Details](https://developers.themoviedb.org/3/people/get-person-details) + /// [TMDb API - People: Details](https://developer.themoviedb.org/reference/person-details) /// /// - Parameters: /// - id: The identifier of the person. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: The matching person. /// @@ -49,12 +49,12 @@ public final class PersonService { /// /// Returns the combined movie and TV show credits of a person. /// - /// [TMDb API - People: Combined Credits](https://developers.themoviedb.org/3/people/get-person-combined-credits) + /// [TMDb API - People: Combined Credits](https://developer.themoviedb.org/reference/person-combined-credits) /// /// - Parameters: /// - personID: The identifier of the person. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: The matching person's combined movie and TV show credits. /// @@ -72,12 +72,12 @@ public final class PersonService { /// /// Returns the movie credits of a person. /// - /// [TMDb API - People: Movie Credits](https://developers.themoviedb.org/3/people/get-person-movie-credits) + /// [TMDb API - People: Movie Credits](https://developer.themoviedb.org/reference/person-movie-credits) /// /// - Parameters: /// - personID: The identifier of the person. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: The matching person's movie credits. /// @@ -95,12 +95,12 @@ public final class PersonService { /// /// Returns the TV show credits of a person. /// - /// [TMDb API - People: TV Show Credits](https://developers.themoviedb.org/3/people/get-person-tv-credits) + /// [TMDb API - People: TV Credits](https://developer.themoviedb.org/reference/person-tv-credits) /// /// - Parameters: /// - personID: The identifier of the person. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: The matching person's TV show credits. /// @@ -118,12 +118,12 @@ public final class PersonService { /// /// Returns the images for a person. /// - /// [TMDb API - People: Images](https://developers.themoviedb.org/3/people/get-person-images) + /// [TMDb API - People: Images](https://developer.themoviedb.org/reference/person-images) /// /// - Parameters: /// - personID: The identifier of the person. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: The matching person's images. /// @@ -144,7 +144,7 @@ public final class PersonService { /// - Parameters: /// - personID: The identifier of the person. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: The matching person's show credits. /// @@ -167,14 +167,14 @@ public final class PersonService { /// /// Returns the list of popular people. /// - /// [TMDb API - People: Popular](https://developers.themoviedb.org/3/people/get-popular-people) + /// [TMDb API - People Lists: Popular](https://developer.themoviedb.org/reference/person-popular-list) /// /// - Precondition: `page` can be between `1` and `1000`. /// /// - Parameters: /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Current popular people as a pageable list. /// diff --git a/Sources/TMDb/Search/SearchService.swift b/Sources/TMDb/Search/SearchService.swift index 2e57ead1..cc5ac3a1 100644 --- a/Sources/TMDb/Search/SearchService.swift +++ b/Sources/TMDb/Search/SearchService.swift @@ -24,7 +24,7 @@ public final class SearchService { /// /// Returns search results for movies, TV shows and people based on a query. /// - /// [TMDb API - Search: Multi](https://developers.themoviedb.org/3/search/multi-search) + /// [TMDb API - Search: Multi](https://developer.themoviedb.org/reference/search-multi) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -32,7 +32,7 @@ public final class SearchService { /// - query: A text query to search for. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Movies, TV shows and people matching the query. /// @@ -50,7 +50,7 @@ public final class SearchService { /// /// Returns search results for movies. /// - /// [TMDb API - Search: Movies](https://developers.themoviedb.org/3/search/search-movies) + /// [TMDb API - Search: Movies](https://developer.themoviedb.org/reference/search-movie) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -59,7 +59,7 @@ public final class SearchService { /// - year: The year to filter results for. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Movies matching the query. /// @@ -77,7 +77,7 @@ public final class SearchService { /// /// Returns search results for TV shows. /// - /// [TMDb API - Search: TV Shows](https://developers.themoviedb.org/3/search/search-tv-shows) + /// [TMDb API - Search: TV](https://developer.themoviedb.org/reference/search-tv) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -86,7 +86,7 @@ public final class SearchService { /// - firstAirDateYear: The year of first air date to filter results for. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: TV shows matching the query. /// @@ -107,7 +107,7 @@ public final class SearchService { /// /// Returns search results for people. /// - /// [TMDb API - Search: People](https://developers.themoviedb.org/3/search/search-people) + /// [TMDb API - Search: Person](https://developer.themoviedb.org/reference/search-person) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -115,7 +115,7 @@ public final class SearchService { /// - query: A text query to search for. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: People matching the query. /// diff --git a/Sources/TMDb/TVShowEpisodes/TVShowEpisodeService.swift b/Sources/TMDb/TVShowEpisodes/TVShowEpisodeService.swift index 6743710c..9b61e4f5 100644 --- a/Sources/TMDb/TVShowEpisodes/TVShowEpisodeService.swift +++ b/Sources/TMDb/TVShowEpisodes/TVShowEpisodeService.swift @@ -24,14 +24,14 @@ public final class TVShowEpisodeService { /// /// Returns the primary information about a TV show episode. /// - /// [TMDb API - TV Show Episodes: Details](https://developers.themoviedb.org/3/tv-episodes/get-tv-episode-details) + /// [TMDb API - TV Episodes: Details](https://developer.themoviedb.org/reference/tv-episode-details) /// /// - Parameters: /// - episodeNumber: The episode number of a TV show. /// - seasonNumber: The season number of a TV show. /// - tvShowID: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A episode of the matching TV show. /// @@ -56,14 +56,14 @@ public final class TVShowEpisodeService { /// /// Returns the images that belong to a TV show episode. /// - /// [TMDb API - TV Show Episode: Images](https://developers.themoviedb.org/3/tv-episodes/get-tv-episode-images) + /// [TMDb API - TV Episode: Images](https://developer.themoviedb.org/reference/tv-episode-images) /// /// - Parameters: /// - episodeNumber: The episode number of a TV show. /// - seasonNumber: The season number of a TV show. /// - tvShowID: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A collection of images for the matching TV show's episode. /// @@ -88,14 +88,14 @@ public final class TVShowEpisodeService { /// /// Returns the videos that belong to a TV show episode. /// - /// [TMDb API - TV Show Episode: Videos](https://developers.themoviedb.org/3/tv-episodes/get-tv-episode-videos) + /// [TMDb API - TV Episode: Videos](https://developer.themoviedb.org/reference/tv-episode-videos) /// /// - Parameters: /// - episodeNumber: The episode number of a TV show. /// - seasonNumber: The season number of a TV show. /// - tvShowID: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A collection of videos for the matching TV show's episode. /// diff --git a/Sources/TMDb/TVShowSeasons/TVShowSeasonService.swift b/Sources/TMDb/TVShowSeasons/TVShowSeasonService.swift index 42c94f3d..1b029207 100644 --- a/Sources/TMDb/TVShowSeasons/TVShowSeasonService.swift +++ b/Sources/TMDb/TVShowSeasons/TVShowSeasonService.swift @@ -27,13 +27,13 @@ public final class TVShowSeasonService { /// /// Returns the primary information about a TV show season. /// - /// [TMDb API - TV Show Seasons: Details](https://developers.themoviedb.org/3/tv-seasons/get-tv-season-details) + /// [TMDb API - TV Seasons: Details](https://developer.themoviedb.org/reference/tv-season-details) /// /// - Parameters: /// - seasonNumber: The season number of a TV show. /// - tvShowID: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A season of the matching TV show. /// @@ -53,13 +53,13 @@ public final class TVShowSeasonService { /// /// Returns the images that belong to a TV show season. /// - /// [TMDb API - TV Show Seasons: Images](https://developers.themoviedb.org/3/tv-seasons/get-tv-season-images) + /// [TMDb API - TV Seasons: Images](https://developer.themoviedb.org/reference/tv-season-images) /// /// - Parameters: /// - seasonNumber: The season number of a TV show. /// - tvShowID: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A collection of images for the matching TV show's season. /// @@ -82,13 +82,13 @@ public final class TVShowSeasonService { /// /// Returns the videos that belong to a TV show season. /// - /// [TMDb API - TV Show Seasons: Videos](https://developers.themoviedb.org/3/tv-seasons/get-tv-season-videos) + /// [TMDb API - TV Seasons: Videos](https://developer.themoviedb.org/reference/tv-season-videos) /// /// - Parameters: /// - seasonNumber: The season number of a TV show. /// - tvShowID: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A collection of videos for the matching TV show's season. /// diff --git a/Sources/TMDb/TVShows/TVShowService.swift b/Sources/TMDb/TVShows/TVShowService.swift index 2db66c19..92958928 100644 --- a/Sources/TMDb/TVShows/TVShowService.swift +++ b/Sources/TMDb/TVShows/TVShowService.swift @@ -27,12 +27,12 @@ public final class TVShowService { /// /// Returns the primary information about a TV show. /// - /// [TMDb API - TV Shows: Details](https://developers.themoviedb.org/3/tv/get-tv-details) + /// [TMDb API - TV Series: Details](https://developer.themoviedb.org/reference/tv-series-details) /// /// - Parameters: /// - id: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: The matching TV show. /// @@ -50,12 +50,12 @@ public final class TVShowService { /// /// Returns the cast and crew of a TV show. /// - /// [TMDb API - TV Shows: Credits](https://developers.themoviedb.org/3/tv/get-tv-credits) + /// [TMDb API - TV Series: Credits](https://developer.themoviedb.org/reference/tv-series-credits) /// /// - Parameters: /// - tvShowID: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Show credits for the matching TV show. /// @@ -73,7 +73,7 @@ public final class TVShowService { /// /// Returns the user reviews for a TV show. /// - /// [TMDb API - TV Shows: Reviews](https://developers.themoviedb.org/3/tv/get-tv-reviews) + /// [TMDb API - TV Series: Reviews](https://developer.themoviedb.org/reference/tv-series-reviews) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -81,7 +81,7 @@ public final class TVShowService { /// - tvShowID: The identifier of the TV show. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Reviews for the matching TV show as a pageable list. /// @@ -99,12 +99,12 @@ public final class TVShowService { /// /// Returns the images that belong to a TV show. /// - /// [TMDb API - TV Shows: Images](https://developers.themoviedb.org/3/tv/get-tv-images) + /// [TMDb API - TV Series: Images](https://developer.themoviedb.org/reference/tv-series-images) /// /// - Parameters: /// - tvShowID: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A collection of images for the matching TV show. /// @@ -125,12 +125,12 @@ public final class TVShowService { /// /// Returns the videos that belong to a TV show. /// - /// [TMDb API - TV Shows: Videos](https://developers.themoviedb.org/3/tv/get-tv-videos) + /// [TMDb API - TV Series: Videos](https://developer.themoviedb.org/reference/tv-series-videos) /// /// - Parameters: /// - tvShowID: The identifier of the TV show. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: A collection of videos for the matching TV show. /// @@ -151,7 +151,7 @@ public final class TVShowService { /// /// Returns a list of recommended TV shows for a TV show. /// - /// [TMDb API - TV Shows: Recommendations](https://developers.themoviedb.org/3/tv/get-tv-recommendations) + /// [TMDb API - TV Series: Recommendations](https://developer.themoviedb.org/reference/tv-series-recommendations) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -159,7 +159,7 @@ public final class TVShowService { /// - tvShowID: The identifier of the TV show. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Recommended TV shows for the matching TV show as a pageable list. /// @@ -181,7 +181,7 @@ public final class TVShowService { /// /// This is not the same as the *Recommendations*. /// - /// [TMDb API - TV: Similar](https://developers.themoviedb.org/3/tv/get-tv-movies) + /// [TMDb API - TV Series: Similar](https://developer.themoviedb.org/reference/tv-series-similar) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -189,7 +189,7 @@ public final class TVShowService { /// - tvShowID: The identifier of the TV show for get similar TV shows for. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Similar TV shows for the matching TV show as a pageable list. /// @@ -207,14 +207,14 @@ public final class TVShowService { /// /// Returns a list current popular TV shows. /// - /// [TMDb API - TV: Popular](https://developers.themoviedb.org/3/tv/get-popular-tv) + /// [TMDb API - TV Series Lists: Popular](https://developer.themoviedb.org/reference/tv-series-popular-list) /// /// - Precondition: `page` can be between `1` and `1000`. /// /// - Parameters: /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Current popular TV shows as a pageable list. /// diff --git a/Sources/TMDb/Trending/TrendingService.swift b/Sources/TMDb/Trending/TrendingService.swift index 10379e8f..8c478c09 100644 --- a/Sources/TMDb/Trending/TrendingService.swift +++ b/Sources/TMDb/Trending/TrendingService.swift @@ -27,7 +27,7 @@ public final class TrendingService { /// The daily trending list tracks movies over the period of a day while movies have a 24 hour half life. The /// weekly list tracks movies over a 7 day period, with a 7 day half life. /// - /// [TMDb API - Trending](https://developers.themoviedb.org/3/trending/get-trending) + /// [TMDb API - Trending: Movies](https://developer.themoviedb.org/reference/trending-all) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -35,7 +35,7 @@ public final class TrendingService { /// - timeWindow: Daily or weekly time window. Defaults to daily. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Trending movies in a time window as a pageable list. /// @@ -57,7 +57,7 @@ public final class TrendingService { /// The daily trending list tracks TV shows over the period of a day while TV shows have a 24 hour half life. The /// weekly list tracks TV shows over a 7 day period, with a 7 day half life. /// - /// [TMDb API - Trending](https://developers.themoviedb.org/3/trending/get-trending) + /// [TMDb API - Trending: TV](https://developer.themoviedb.org/reference/trending-tv) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -65,7 +65,7 @@ public final class TrendingService { /// - timeWindow: Daily or weekly time window. Defaults to daily. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Trending TV shows in a time window as a pageable list. /// @@ -87,7 +87,7 @@ public final class TrendingService { /// The daily trending list tracks people over the period of a day while people shows have a 24 hour half life. The /// weekly list tracks people over a 7 day period, with a 7 day half life. /// - /// [TMDb API - Trending](https://developers.themoviedb.org/3/trending/get-trending) + /// [TMDb API - Trending: People](https://developer.themoviedb.org/reference/trending-people) /// /// - Precondition: `page` can be between `1` and `1000`. /// @@ -95,7 +95,7 @@ public final class TrendingService { /// - timeWindow: Daily or weekly time window. Defaults to daily. /// - page: The page of results to return. /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Trending people in a time window as a pageable list. /// diff --git a/Sources/TMDb/WatchProviders/WatchProviderService.swift b/Sources/TMDb/WatchProviders/WatchProviderService.swift index d566b1a9..4950d265 100644 --- a/Sources/TMDb/WatchProviders/WatchProviderService.swift +++ b/Sources/TMDb/WatchProviders/WatchProviderService.swift @@ -27,9 +27,9 @@ public final class WatchProviderService { /// /// Returns a list of all of the countries TMDb have watch provider (OTT/streaming) data for. /// - /// [TMDb API - Watch Providers: Regions](https://developers.themoviedb.org/3/watch-providers/get-available-regions) + /// [TMDb API - Watch Providers: Available Regions](https://developer.themoviedb.org/reference/watch-providers-available-regions) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Countries TMDb have watch provider data for. /// @@ -47,9 +47,9 @@ public final class WatchProviderService { /// /// Returns a list of the watch provider (OTT/streaming) data TMDb have available for movies. /// - /// [TMDb API - Watch Providers: Movie](https://developers.themoviedb.org/3/watch-providers/get-movie-providers) + /// [TMDb API - Watch Providers: Movie Providers](https://developer.themoviedb.org/reference/watch-providers-movie-list) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Watch providers for movies. /// @@ -70,9 +70,9 @@ public final class WatchProviderService { /// /// Returns a list of the watch provider (OTT/streaming) data TMDb have available for TV shows. /// - /// [TMDb API - Watch Providers: TV](https://developers.themoviedb.org/3/watch-providers/get-tv-providers) + /// [TMDb API - Watch Providers: TV Providers](https://developer.themoviedb.org/reference/watch-provider-tv-list) /// - /// - Throws: TMDb data error ``TMDbError``. + /// - Throws: TMDb error ``TMDbError``. /// /// - Returns: Watch providers for TV shows. ///