Skip to content

Commit

Permalink
Update availability annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
adamayoung committed Jan 15, 2024
1 parent ae2107e commit 876f6c2
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Sources/TMDb/Certifications/CertificationService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining certification data from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class CertificationService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/Company/CompanyService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining company data from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class CompanyService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/Configuration/ConfigurationService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining configuration data from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class ConfigurationService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/Discover/DiscoverService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for discovering movies and TV series from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class DiscoverService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/Genres/GenreService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining movie and TV series genres from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class GenreService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/Movies/MovieService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining movies from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class MovieService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/People/PersonService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining people from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class PersonService {

private static let knownForShowsMaxCount = 10
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/Search/SearchService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for searching content from TMDb..
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class SearchService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/TMDb.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface to set up TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class TMDb {

private(set) static var configuration = TMDbConfiguration(
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/TVEpisodes/TVEpisodeService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining TV episodes from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class TVEpisodeService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/TVSeasons/TVSeasonService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining TV seasons from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class TVSeasonService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/TVSeries/TVSeriesService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining TV series from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class TVSeriesService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/Trending/TrendingService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for finding trending movies, TV series and people from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class TrendingService {

private let apiClient: any APIClient
Expand Down
2 changes: 1 addition & 1 deletion Sources/TMDb/WatchProviders/WatchProviderService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Foundation
///
/// Provides an interface for obtaining watch providers from TMDb.
///
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, *)
@available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
public final class WatchProviderService {

private let apiClient: any APIClient
Expand Down

0 comments on commit 876f6c2

Please sign in to comment.