The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build SwiftTube, reference 0.1.0 (64f0f1), with Swift 6.0 for Linux on 2 Nov 2024 02:19:03 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

    |                       |- note: annotate 'service' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |
  9 |     public final class Request: APIRequest<Response> {
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Watermarks/YoutubeWatermarksUnset.swift:9:33: error: generic type 'DeprecatedRequest' specialized with too few type parameters (got 1, but expected 2)
  7 |     public static let service = APIService<Response>(id: "youtube.watermarks.unset", tag: "watermarks", method: "POST", path: "/youtube/v3/watermarks/unset", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtubepartner"])])
  8 |
  9 |     public final class Request: APIRequest<Response> {
    |                                 `- error: generic type 'DeprecatedRequest' specialized with too few type parameters (got 1, but expected 2)
 10 |       public struct Options {
 11 |         /** V1 error format. */
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Deprecated/DeprecatedRequest.swift:4:12: note: generic type 'DeprecatedRequest' declared here
 2 |
 3 | @available(*, deprecated, message: "use `Request`")
 4 | open class DeprecatedRequest<
   |            `- note: generic type 'DeprecatedRequest' declared here
 5 |   ResponseType: Response, APIType
 6 | >: Request where ResponseType.APIType == APIType {
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Watermarks/YoutubeWatermarksUnset.swift:122:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse'
120 |     }
121 |
122 |     public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
    |                           |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse'
    |                           `- note: use 'DeprecatedResponse' instead
123 |       public typealias SuccessType = Void
124 |
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Watermarks/YoutubeWatermarksUnset.swift:122:17: error: type 'Watermarks.YoutubeWatermarksUnset.Response' does not conform to protocol 'Response'
120 |     }
121 |
122 |     public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- error: type 'Watermarks.YoutubeWatermarksUnset.Response' does not conform to protocol 'Response'
123 |       public typealias SuccessType = Void
124 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'; add nested type 'FailureType' for conformance
 3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
 4 |   associatedtype SuccessType
 5 |   associatedtype FailureType
   |                  `- note: protocol requires nested type 'FailureType'; add nested type 'FailureType' for conformance
 6 |   associatedtype APIType: API
   |                  `- note: protocol requires nested type 'APIType'; add nested type 'APIType' for conformance
 7 |   var statusCode: Int { get }
 8 |   var response: ClientResult<SuccessType, FailureType> { get }
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Watermarks/YoutubeWatermarksUnset.swift:155:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError'
153 |         switch statusCode {
154 |         case 200: self = .status200
155 |         default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
    |                        |- warning: 'APIClientError' is deprecated: renamed to 'ClientError'
    |                        `- note: use 'ClientError' instead
156 |         }
157 |       }
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Youtube/YoutubeYoutubeV3UpdateCommentThreads.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service'
  5 |   /** Updates an existing resource. */
  6 |   enum YoutubeYoutubeV3UpdateCommentThreads {
  7 |     public static let service = APIService<Response>(id: "youtube.youtube.v3.updateCommentThreads", tag: "youtube", method: "PUT", path: "/youtube/v3/commentThreads", hasBody: true, securityRequirements: [])
    |                                 |- warning: 'APIService' is deprecated: renamed to 'Service'
    |                                 `- note: use 'Service' instead
  8 |
  9 |     public final class Request: APIRequest<Response> {
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Youtube/YoutubeYoutubeV3UpdateCommentThreads.swift:7:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<YouTube.YoutubeYoutubeV3UpdateCommentThreads.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  5 |   /** Updates an existing resource. */
  6 |   enum YoutubeYoutubeV3UpdateCommentThreads {
  7 |     public static let service = APIService<Response>(id: "youtube.youtube.v3.updateCommentThreads", tag: "youtube", method: "PUT", path: "/youtube/v3/commentThreads", hasBody: true, securityRequirements: [])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<YouTube.YoutubeYoutubeV3UpdateCommentThreads.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |
  9 |     public final class Request: APIRequest<Response> {
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Youtube/YoutubeYoutubeV3UpdateCommentThreads.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension YouTube {
  5 |   /** Updates an existing resource. */
  6 |   enum YoutubeYoutubeV3UpdateCommentThreads {
  7 |     public static let service = APIService<Response>(id: "youtube.youtube.v3.updateCommentThreads", tag: "youtube", method: "PUT", path: "/youtube/v3/commentThreads", hasBody: true, securityRequirements: [])
    |                       |- note: annotate 'service' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |
  9 |     public final class Request: APIRequest<Response> {
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Youtube/YoutubeYoutubeV3UpdateCommentThreads.swift:9:33: error: generic type 'DeprecatedRequest' specialized with too few type parameters (got 1, but expected 2)
  7 |     public static let service = APIService<Response>(id: "youtube.youtube.v3.updateCommentThreads", tag: "youtube", method: "PUT", path: "/youtube/v3/commentThreads", hasBody: true, securityRequirements: [])
  8 |
  9 |     public final class Request: APIRequest<Response> {
    |                                 `- error: generic type 'DeprecatedRequest' specialized with too few type parameters (got 1, but expected 2)
 10 |       public struct Options {
 11 |         /** V1 error format. */
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Deprecated/DeprecatedRequest.swift:4:12: note: generic type 'DeprecatedRequest' declared here
 2 |
 3 | @available(*, deprecated, message: "use `Request`")
 4 | open class DeprecatedRequest<
   |            `- note: generic type 'DeprecatedRequest' declared here
 5 |   ResponseType: Response, APIType
 6 | >: Request where ResponseType.APIType == APIType {
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Youtube/YoutubeYoutubeV3UpdateCommentThreads.swift:123:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse'
121 |     }
122 |
123 |     public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
    |                           |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse'
    |                           `- note: use 'DeprecatedResponse' instead
124 |       public typealias SuccessType = CommentThread
125 |
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Youtube/YoutubeYoutubeV3UpdateCommentThreads.swift:123:17: error: type 'YouTube.YoutubeYoutubeV3UpdateCommentThreads.Response' does not conform to protocol 'Response'
121 |     }
122 |
123 |     public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
    |                 `- error: type 'YouTube.YoutubeYoutubeV3UpdateCommentThreads.Response' does not conform to protocol 'Response'
124 |       public typealias SuccessType = CommentThread
125 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'; add nested type 'FailureType' for conformance
 3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
 4 |   associatedtype SuccessType
 5 |   associatedtype FailureType
   |                  `- note: protocol requires nested type 'FailureType'; add nested type 'FailureType' for conformance
 6 |   associatedtype APIType: API
   |                  `- note: protocol requires nested type 'APIType'; add nested type 'APIType' for conformance
 7 |   var statusCode: Int { get }
 8 |   var response: ClientResult<SuccessType, FailureType> { get }
/host/spi-builder-workspace/Sources/SwiftTube/Requests/Youtube/YoutubeYoutubeV3UpdateCommentThreads.swift:156:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError'
154 |         switch statusCode {
155 |         case 200: self = try .status200(decoder.decode(CommentThread.self, from: data))
156 |         default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
    |                        |- warning: 'APIClientError' is deprecated: renamed to 'ClientError'
    |                        `- note: use 'ClientError' instead
157 |         }
158 |       }
/host/spi-builder-workspace/Sources/SwiftTube/SwiftTube.swift:7:21: warning: static property 'safeOptionalDecoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | public enum YouTube {
 6 |   /// Whether to discard any errors when decoding optional properties
 7 |   public static var safeOptionalDecoding = false
   |                     |- warning: static property 'safeOptionalDecoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: convert 'safeOptionalDecoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                     |- note: annotate 'safeOptionalDecoding' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |
 9 |   /// Whether to remove invalid elements instead of throwing when decoding arrays
/host/spi-builder-workspace/Sources/SwiftTube/SwiftTube.swift:10:21: warning: static property 'safeArrayDecoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |   /// Whether to remove invalid elements instead of throwing when decoding arrays
10 |   public static var safeArrayDecoding = false
   |                     |- warning: static property 'safeArrayDecoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: convert 'safeArrayDecoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                     |- note: annotate 'safeArrayDecoding' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 |   /// Used to encode Dates when uses as string params
/host/spi-builder-workspace/Sources/SwiftTube/SwiftTube.swift:13:21: warning: static property 'dateEncodingFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 |   /// Used to encode Dates when uses as string params
13 |   public static var dateEncodingFormatter = DateFormatter(formatString: "yyyy-MM-dd'T'HH:mm:ssZZZZZ",
   |                     |- warning: static property 'dateEncodingFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: convert 'dateEncodingFormatter' to a 'let' constant to make 'Sendable' shared state immutable
   |                     |- note: annotate 'dateEncodingFormatter' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |                                                           locale: Locale(identifier: "en_US_POSIX"),
15 |                                                           calendar: Calendar(identifier: .gregorian))
/host/spi-builder-workspace/Sources/SwiftTube/SwiftTube.swift:23:17: error: type 'YouTube.API' does not conform to protocol 'API'
21 |   }
22 |
23 |   public struct API: Prch.API {
   |                 `- error: type 'YouTube.API' does not conform to protocol 'API'
24 |     public init(token: String? = nil) {
25 |       headers = [
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/API.swift:11:7: note: protocol requires property 'encoder' with type 'any RequestEncoder'
 9 |   var headers: [String: String] { get }
10 |   var decoder: ResponseDecoder { get }
11 |   var encoder: RequestEncoder { get }
   |       `- note: protocol requires property 'encoder' with type 'any RequestEncoder'
12 | }
13 |
[266/313] Compiling SwiftTube Channel.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[267/313] Compiling SwiftTube ChannelAuditDetails.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[268/313] Compiling SwiftTube ChannelBannerResource.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[269/313] Compiling SwiftTube ChannelBrandingSettings.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[270/313] Compiling SwiftTube ChannelContentDetails.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[271/313] Compiling SwiftTube ChannelContentOwnerDetails.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[272/313] Compiling SwiftTube ChannelConversionPing.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[273/313] Compiling SwiftTube ChannelConversionPings.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[274/313] Compiling SwiftTube ChannelListResponse.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[275/313] Compiling SwiftTube ChannelLocalization.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[276/313] Compiling SwiftTube ChannelProfileDetails.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[277/313] Compiling SwiftTube ChannelSection.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[278/313] Compiling SwiftTube ChannelSectionContentDetails.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[279/313] Compiling SwiftTube ChannelSectionListResponse.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[280/313] Compiling SwiftTube ChannelSectionLocalization.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[281/313] Compiling SwiftTube ChannelSectionSnippet.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[282/313] Compiling SwiftTube ChannelSectionTargeting.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[283/313] Compiling SwiftTube ChannelSettings.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[284/313] Compiling SwiftTube ChannelSnippet.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[285/313] Compiling SwiftTube ChannelStatistics.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[286/313] Compiling SwiftTube ChannelStatus.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[287/313] Compiling SwiftTube ChannelToStoreLinkDetails.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[288/313] Compiling SwiftTube ChannelTopicDetails.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[289/313] Compiling SwiftTube Comment.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:10:26: warning: 'DateTime' is deprecated: renamed to 'Date'
 8 |
 9 |   /** The date and time when the channel was linked to the content owner. */
10 |   public var timeLinked: DateTime?
   |                          |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                          `- note: use 'Date' instead
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelContentOwnerDetails.swift:12:56: warning: 'DateTime' is deprecated: renamed to 'Date'
10 |   public var timeLinked: DateTime?
11 |
12 |   public init(contentOwner: String? = nil, timeLinked: DateTime? = nil) {
   |                                                        |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                        `- note: use 'Date' instead
13 |     self.contentOwner = contentOwner
14 |     self.timeLinked = timeLinked
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:22:27: warning: 'DateTime' is deprecated: renamed to 'Date'
20 |
21 |   /** The date and time that the channel was created. */
22 |   public var publishedAt: DateTime?
   |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                           `- note: use 'Date' instead
23 |
24 |   /** A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail. When displaying thumbnails in your application, make sure that your code uses the image URLs exactly as they are returned in API responses. For example, your application should not use the http domain instead of the https domain in a URL returned in an API response. Beginning in July 2018, channel thumbnail URLs will only be available in the https domain, which is how the URLs appear in API responses. After that time, you might see broken images in your application if it tries to load YouTube images from the http domain. Thumbnail images might be empty for newly created channels and might take up to one day to populate. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/ChannelSnippet.swift:30:177: warning: 'DateTime' is deprecated: renamed to 'Date'
28 |   public var title: String?
29 |
30 |   public init(country: String? = nil, customUrl: String? = nil, defaultLanguage: String? = nil, description: String? = nil, localized: ChannelLocalization? = nil, publishedAt: DateTime? = nil, thumbnails: ThumbnailDetails? = nil, title: String? = nil) {
   |                                                                                                                                                                                 |- warning: 'DateTime' is deprecated: renamed to 'Date'
   |                                                                                                                                                                                 `- note: use 'Date' instead
31 |     self.country = country
32 |     self.customUrl = customUrl
[290/313] Compiling SwiftTube CommentListResponse.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[291/313] Compiling SwiftTube CommentSnippet.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[292/313] Compiling SwiftTube CommentSnippetAuthorChannelId.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[293/313] Compiling SwiftTube CommentThread.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[294/313] Compiling SwiftTube CommentThreadListResponse.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[295/313] Compiling SwiftTube CommentThreadReplies.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[296/313] Compiling SwiftTube CommentThreadSnippet.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[297/313] Compiling SwiftTube ContentRating.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[298/313] Compiling SwiftTube Entity.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[299/313] Compiling SwiftTube GeoPoint.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[300/313] Compiling SwiftTube I18nLanguage.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[301/313] Compiling SwiftTube I18nLanguageListResponse.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[302/313] Compiling SwiftTube I18nLanguageSnippet.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[303/313] Compiling SwiftTube I18nRegion.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[304/313] Compiling SwiftTube I18nRegionListResponse.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[305/313] Compiling SwiftTube I18nRegionSnippet.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[306/313] Compiling SwiftTube ImageSettings.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[307/313] Compiling SwiftTube IngestionInfo.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[308/313] Compiling SwiftTube InvideoBranding.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[309/313] Compiling SwiftTube InvideoPosition.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[310/313] Compiling SwiftTube InvideoTiming.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[311/313] Compiling SwiftTube LanguageTag.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[312/313] Compiling SwiftTube LevelDetails.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
[313/313] Compiling SwiftTube LiveBroadcast.swift
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date'
 46 |
 47 |   /** The date and time when the comment was originally published. */
 48 |   public var publishedAt: DateTime?
    |                           |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                           `- note: use 'Date' instead
 49 |
 50 |   /** The comment's text. The format is either plain text or HTML dependent on what has been requested. Even the plain text representation may differ from the text originally posted in that it may replace video links with video titles etc. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date'
 55 |
 56 |   /** The date and time when the comment was last updated. */
 57 |   public var updatedAt: DateTime?
    |                         |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                         `- note: use 'Date' instead
 58 |
 59 |   /** The ID of the video the comment refers to, if any. */
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                       |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                       `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
/host/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date'
 63 |   public var viewerRating: ViewerRating?
 64 |
 65 |   public init(authorChannelId: CommentSnippetAuthorChannelId? = nil, authorChannelUrl: String? = nil, authorDisplayName: String? = nil, authorProfileImageUrl: String? = nil, canRate: Bool? = nil, channelId: String? = nil, likeCount: Int? = nil, moderationStatus: ModerationStatus? = nil, parentId: String? = nil, publishedAt: DateTime? = nil, textDisplay: String? = nil, textOriginal: String? = nil, updatedAt: DateTime? = nil, videoId: String? = nil, viewerRating: ViewerRating? = nil) {
    |                                                                                                                                                                                                                                                                                                                                                                                                                            |- warning: 'DateTime' is deprecated: renamed to 'Date'
    |                                                                                                                                                                                                                                                                                                                                                                                                                            `- note: use 'Date' instead
 66 |     self.authorChannelId = authorChannelId
 67 |     self.authorChannelUrl = authorChannelUrl
BUILD FAILURE 6.0 linux