Build Information
Failed to build SwiftTube, reference 0.1.0 (64f0f1
), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 06:25:03 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
119 | }
120 |
121 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
122 | public typealias SuccessType = LiveChatModerator
123 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveChatModerators/YoutubeLiveChatModeratorsInsert.swift:121:17: error: type 'LiveChatModerators.YoutubeLiveChatModeratorsInsert.Response' does not conform to protocol 'Response'
119 | }
120 |
121 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'LiveChatModerators.YoutubeLiveChatModeratorsInsert.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
122 | public typealias SuccessType = LiveChatModerator
123 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveChatModerators/YoutubeLiveChatModeratorsInsert.swift:154:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
152 | switch statusCode {
153 | case 200: self = try .status200(decoder.decode(LiveChatModerator.self, from: data))
154 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
155 | }
156 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveChatModerators/YoutubeLiveChatModeratorsList.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Retrieves a list of resources, possibly filtered. */
6 | enum YoutubeLiveChatModeratorsList {
7 | public static let service = APIService<Response>(id: "youtube.liveChatModerators.list", tag: "liveChatModerators", method: "GET", path: "/youtube/v3/liveChat/moderators", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube.readonly"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveChatModerators/YoutubeLiveChatModeratorsList.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.liveChatModerators.list", tag: "liveChatModerators", method: "GET", path: "/youtube/v3/liveChat/moderators", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube.readonly"])])
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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveChatModerators/YoutubeLiveChatModeratorsList.swift:135:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
133 | }
134 |
135 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
136 | public typealias SuccessType = LiveChatModeratorListResponse
137 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveChatModerators/YoutubeLiveChatModeratorsList.swift:135:17: error: type 'LiveChatModerators.YoutubeLiveChatModeratorsList.Response' does not conform to protocol 'Response'
133 | }
134 |
135 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'LiveChatModerators.YoutubeLiveChatModeratorsList.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
136 | public typealias SuccessType = LiveChatModeratorListResponse
137 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveChatModerators/YoutubeLiveChatModeratorsList.swift:168:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
166 | switch statusCode {
167 | case 200: self = try .status200(decoder.decode(LiveChatModeratorListResponse.self, from: data))
168 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
169 | }
170 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsDelete.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Deletes an existing stream for the authenticated user. */
6 | enum YoutubeLiveStreamsDelete {
7 | public static let service = APIService<Response>(id: "youtube.liveStreams.delete", tag: "liveStreams", method: "DELETE", path: "/youtube/v3/liveStreams", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsDelete.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.liveStreams.delete", tag: "liveStreams", method: "DELETE", path: "/youtube/v3/liveStreams", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"])])
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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsDelete.swift:129:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
127 | }
128 |
129 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
130 | public typealias SuccessType = Void
131 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsDelete.swift:129:17: error: type 'LiveStreams.YoutubeLiveStreamsDelete.Response' does not conform to protocol 'Response'
127 | }
128 |
129 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'LiveStreams.YoutubeLiveStreamsDelete.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
130 | public typealias SuccessType = Void
131 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsDelete.swift:162:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
160 | switch statusCode {
161 | case 200: self = .status200
162 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
163 | }
164 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsInsert.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Inserts a new stream for the authenticated user. */
6 | enum YoutubeLiveStreamsInsert {
7 | public static let service = APIService<Response>(id: "youtube.liveStreams.insert", tag: "liveStreams", method: "POST", path: "/youtube/v3/liveStreams", hasBody: true, securityRequirements: [SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsInsert.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.liveStreams.insert", tag: "liveStreams", method: "POST", path: "/youtube/v3/liveStreams", hasBody: true, securityRequirements: [SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"])])
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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsInsert.swift:135:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
133 | }
134 |
135 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
136 | public typealias SuccessType = LiveStream
137 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsInsert.swift:135:17: error: type 'LiveStreams.YoutubeLiveStreamsInsert.Response' does not conform to protocol 'Response'
133 | }
134 |
135 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'LiveStreams.YoutubeLiveStreamsInsert.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
136 | public typealias SuccessType = LiveStream
137 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsInsert.swift:168:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
166 | switch statusCode {
167 | case 200: self = try .status200(decoder.decode(LiveStream.self, from: data))
168 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
169 | }
170 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsList.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Retrieve the list of streams associated with the given channel. -- */
6 | enum YoutubeLiveStreamsList {
7 | public static let service = APIService<Response>(id: "youtube.liveStreams.list", tag: "liveStreams", method: "GET", path: "/youtube/v3/liveStreams", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.readonly"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsList.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.liveStreams.list", tag: "liveStreams", method: "GET", path: "/youtube/v3/liveStreams", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.readonly"])])
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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsList.swift:157:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
155 | }
156 |
157 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
158 | public typealias SuccessType = LiveStreamListResponse
159 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsList.swift:157:17: error: type 'LiveStreams.YoutubeLiveStreamsList.Response' does not conform to protocol 'Response'
155 | }
156 |
157 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'LiveStreams.YoutubeLiveStreamsList.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
158 | public typealias SuccessType = LiveStreamListResponse
159 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsList.swift:190:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
188 | switch statusCode {
189 | case 200: self = try .status200(decoder.decode(LiveStreamListResponse.self, from: data))
190 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
191 | }
192 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsUpdate.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Updates an existing stream for the authenticated user. */
6 | enum YoutubeLiveStreamsUpdate {
7 | public static let service = APIService<Response>(id: "youtube.liveStreams.update", tag: "liveStreams", method: "PUT", path: "/youtube/v3/liveStreams", hasBody: true, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsUpdate.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.liveStreams.update", tag: "liveStreams", method: "PUT", path: "/youtube/v3/liveStreams", hasBody: true, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"])])
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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsUpdate.swift:135:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
133 | }
134 |
135 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
136 | public typealias SuccessType = LiveStream
137 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsUpdate.swift:135:17: error: type 'LiveStreams.YoutubeLiveStreamsUpdate.Response' does not conform to protocol 'Response'
133 | }
134 |
135 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'LiveStreams.YoutubeLiveStreamsUpdate.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
136 | public typealias SuccessType = LiveStream
137 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/LiveStreams/YoutubeLiveStreamsUpdate.swift:168:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
166 | switch statusCode {
167 | case 200: self = try .status200(decoder.decode(LiveStream.self, from: data))
168 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
169 | }
170 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Members/YoutubeMembersList.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Retrieves a list of members that match the request criteria for a channel. */
6 | enum YoutubeMembersList {
7 | public static let service = APIService<Response>(id: "youtube.members.list", tag: "members", method: "GET", path: "/youtube/v3/members", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.channel-memberships.creator"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | /** Parameter that specifies which channel members to return. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Members/YoutubeMembersList.swift:16:33: error: generic type 'DeprecatedRequest' specialized with too few type parameters (got 1, but expected 2)
14 | }
15 |
16 | public final class Request: APIRequest<Response> {
| `- error: generic type 'DeprecatedRequest' specialized with too few type parameters (got 1, but expected 2)
17 | public struct Options {
18 | /** V1 error format. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Members/YoutubeMembersList.swift:158:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
156 | }
157 |
158 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
159 | public typealias SuccessType = MemberListResponse
160 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Members/YoutubeMembersList.swift:158:17: error: type 'Members.YoutubeMembersList.Response' does not conform to protocol 'Response'
156 | }
157 |
158 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'Members.YoutubeMembersList.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
159 | public typealias SuccessType = MemberListResponse
160 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Members/YoutubeMembersList.swift:191:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
189 | switch statusCode {
190 | case 200: self = try .status200(decoder.decode(MemberListResponse.self, from: data))
191 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
192 | }
193 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/MembershipsLevels/YoutubeMembershipsLevelsList.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Retrieves a list of all pricing levels offered by a creator to the fans. */
6 | enum YoutubeMembershipsLevelsList {
7 | public static let service = APIService<Response>(id: "youtube.membershipsLevels.list", tag: "membershipsLevels", method: "GET", path: "/youtube/v3/membershipsLevels", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube.channel-memberships.creator"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/MembershipsLevels/YoutubeMembershipsLevelsList.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.membershipsLevels.list", tag: "membershipsLevels", method: "GET", path: "/youtube/v3/membershipsLevels", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2", scopes: ["https://www.googleapis.com/auth/youtube.channel-memberships.creator"])])
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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/MembershipsLevels/YoutubeMembershipsLevelsList.swift:116:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
114 | }
115 |
116 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
117 | public typealias SuccessType = MembershipsLevelListResponse
118 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/MembershipsLevels/YoutubeMembershipsLevelsList.swift:116:17: error: type 'MembershipsLevels.YoutubeMembershipsLevelsList.Response' does not conform to protocol 'Response'
114 | }
115 |
116 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'MembershipsLevels.YoutubeMembershipsLevelsList.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
117 | public typealias SuccessType = MembershipsLevelListResponse
118 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/MembershipsLevels/YoutubeMembershipsLevelsList.swift:149:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
147 | switch statusCode {
148 | case 200: self = try .status200(decoder.decode(MembershipsLevelListResponse.self, from: data))
149 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
150 | }
151 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsDelete.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Deletes a resource. */
6 | enum YoutubePlaylistItemsDelete {
7 | public static let service = APIService<Response>(id: "youtube.playlistItems.delete", tag: "playlistItems", method: "DELETE", path: "/youtube/v3/playlistItems", 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"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsDelete.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.playlistItems.delete", tag: "playlistItems", method: "DELETE", path: "/youtube/v3/playlistItems", 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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsDelete.swift:122:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
120 | }
121 |
122 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
123 | public typealias SuccessType = Void
124 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsDelete.swift:122:17: error: type 'PlaylistItems.YoutubePlaylistItemsDelete.Response' does not conform to protocol 'Response'
120 | }
121 |
122 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'PlaylistItems.YoutubePlaylistItemsDelete.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
123 | public typealias SuccessType = Void
124 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsDelete.swift:155:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
153 | switch statusCode {
154 | case 200: self = .status200
155 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
156 | }
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsInsert.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Inserts a new resource into this collection. */
6 | enum YoutubePlaylistItemsInsert {
7 | public static let service = APIService<Response>(id: "youtube.playlistItems.insert", tag: "playlistItems", method: "POST", path: "/youtube/v3/playlistItems", hasBody: true, 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"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsInsert.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.playlistItems.insert", tag: "playlistItems", method: "POST", path: "/youtube/v3/playlistItems", hasBody: true, 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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsInsert.swift:128:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
126 | }
127 |
128 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
129 | public typealias SuccessType = PlaylistItem
130 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsInsert.swift:128:17: error: type 'PlaylistItems.YoutubePlaylistItemsInsert.Response' does not conform to protocol 'Response'
126 | }
127 |
128 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'PlaylistItems.YoutubePlaylistItemsInsert.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
129 | public typealias SuccessType = PlaylistItem
130 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsInsert.swift:161:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
159 | switch statusCode {
160 | case 200: self = try .status200(decoder.decode(PlaylistItem.self, from: data))
161 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
162 | }
163 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsList.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Retrieves a list of resources, possibly filtered. */
6 | enum YoutubePlaylistItemsList {
7 | public static let service = APIService<Response>(id: "youtube.playlistItems.list", tag: "playlistItems", method: "GET", path: "/youtube/v3/playlistItems", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.readonly"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtubepartner"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsList.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.playlistItems.list", tag: "playlistItems", method: "GET", path: "/youtube/v3/playlistItems", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.readonly"]), SecurityRequirement(type: "Oauth2c", 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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsList.swift:157:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
155 | }
156 |
157 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
158 | public typealias SuccessType = PlaylistItemListResponse
159 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsList.swift:157:17: error: type 'PlaylistItems.YoutubePlaylistItemsList.Response' does not conform to protocol 'Response'
155 | }
156 |
157 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'PlaylistItems.YoutubePlaylistItemsList.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
158 | public typealias SuccessType = PlaylistItemListResponse
159 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsList.swift:190:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
188 | switch statusCode {
189 | case 200: self = try .status200(decoder.decode(PlaylistItemListResponse.self, from: data))
190 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
191 | }
192 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsUpdate.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Updates an existing resource. */
6 | enum YoutubePlaylistItemsUpdate {
7 | public static let service = APIService<Response>(id: "youtube.playlistItems.update", tag: "playlistItems", method: "PUT", path: "/youtube/v3/playlistItems", hasBody: true, 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"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsUpdate.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.playlistItems.update", tag: "playlistItems", method: "PUT", path: "/youtube/v3/playlistItems", hasBody: true, 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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsUpdate.swift:128:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
126 | }
127 |
128 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
129 | public typealias SuccessType = PlaylistItem
130 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsUpdate.swift:128:17: error: type 'PlaylistItems.YoutubePlaylistItemsUpdate.Response' does not conform to protocol 'Response'
126 | }
127 |
128 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'PlaylistItems.YoutubePlaylistItemsUpdate.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
129 | public typealias SuccessType = PlaylistItem
130 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/PlaylistItems/YoutubePlaylistItemsUpdate.swift:161:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
159 | switch statusCode {
160 | case 200: self = try .status200(decoder.decode(PlaylistItem.self, from: data))
161 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
162 | }
163 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsDelete.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Deletes a resource. */
6 | enum YoutubePlaylistsDelete {
7 | public static let service = APIService<Response>(id: "youtube.playlists.delete", tag: "playlists", method: "DELETE", path: "/youtube/v3/playlists", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtubepartner"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsDelete.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.playlists.delete", tag: "playlists", method: "DELETE", path: "/youtube/v3/playlists", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", 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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsDelete.swift:122:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
120 | }
121 |
122 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
123 | public typealias SuccessType = Void
124 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsDelete.swift:122:17: error: type 'Playlists.YoutubePlaylistsDelete.Response' does not conform to protocol 'Response'
120 | }
121 |
122 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'Playlists.YoutubePlaylistsDelete.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
123 | public typealias SuccessType = Void
124 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsDelete.swift:155:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
153 | switch statusCode {
154 | case 200: self = .status200
155 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
156 | }
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsInsert.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Inserts a new resource into this collection. */
6 | enum YoutubePlaylistsInsert {
7 | public static let service = APIService<Response>(id: "youtube.playlists.insert", tag: "playlists", method: "POST", path: "/youtube/v3/playlists", hasBody: true, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtubepartner"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsInsert.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.playlists.insert", tag: "playlists", method: "POST", path: "/youtube/v3/playlists", hasBody: true, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", 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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsInsert.swift:135:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
133 | }
134 |
135 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
136 | public typealias SuccessType = Playlist
137 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsInsert.swift:135:17: error: type 'Playlists.YoutubePlaylistsInsert.Response' does not conform to protocol 'Response'
133 | }
134 |
135 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'Playlists.YoutubePlaylistsInsert.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
136 | public typealias SuccessType = Playlist
137 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsInsert.swift:168:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
166 | switch statusCode {
167 | case 200: self = try .status200(decoder.decode(Playlist.self, from: data))
168 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
169 | }
170 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsList.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Retrieves a list of resources, possibly filtered. */
6 | enum YoutubePlaylistsList {
7 | public static let service = APIService<Response>(id: "youtube.playlists.list", tag: "playlists", method: "GET", path: "/youtube/v3/playlists", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.readonly"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtubepartner"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsList.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.playlists.list", tag: "playlists", method: "GET", path: "/youtube/v3/playlists", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.readonly"]), SecurityRequirement(type: "Oauth2c", 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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsList.swift:172:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
170 | }
171 |
172 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
173 | public typealias SuccessType = PlaylistListResponse
174 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsList.swift:172:17: error: type 'Playlists.YoutubePlaylistsList.Response' does not conform to protocol 'Response'
170 | }
171 |
172 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'Playlists.YoutubePlaylistsList.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
173 | public typealias SuccessType = PlaylistListResponse
174 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsList.swift:205:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
203 | switch statusCode {
204 | case 200: self = try .status200(decoder.decode(PlaylistListResponse.self, from: data))
205 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
206 | }
207 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsUpdate.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Updates an existing resource. */
6 | enum YoutubePlaylistsUpdate {
7 | public static let service = APIService<Response>(id: "youtube.playlists.update", tag: "playlists", method: "PUT", path: "/youtube/v3/playlists", hasBody: true, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtubepartner"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsUpdate.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.playlists.update", tag: "playlists", method: "PUT", path: "/youtube/v3/playlists", hasBody: true, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", 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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsUpdate.swift:128:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
126 | }
127 |
128 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
129 | public typealias SuccessType = Playlist
130 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsUpdate.swift:128:17: error: type 'Playlists.YoutubePlaylistsUpdate.Response' does not conform to protocol 'Response'
126 | }
127 |
128 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'Playlists.YoutubePlaylistsUpdate.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
129 | public typealias SuccessType = Playlist
130 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Playlists/YoutubePlaylistsUpdate.swift:161:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
159 | switch statusCode {
160 | case 200: self = try .status200(decoder.decode(Playlist.self, from: data))
161 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
162 | }
163 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Search/YoutubeSearchList.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Retrieves a list of search resources */
6 | enum YoutubeSearchList {
7 | public static let service = APIService<Response>(id: "youtube.search.list", tag: "search", method: "GET", path: "/youtube/v3/search", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.readonly"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtubepartner"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | /** Add a filter on the channel search. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Search/YoutubeSearchList.swift:103:33: error: generic type 'DeprecatedRequest' specialized with too few type parameters (got 1, but expected 2)
101 | }
102 |
103 | public final class Request: APIRequest<Response> {
| `- error: generic type 'DeprecatedRequest' specialized with too few type parameters (got 1, but expected 2)
104 | public struct Options {
105 | /** V1 error format. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Search/YoutubeSearchList.swift:421:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
419 | }
420 |
421 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
422 | public typealias SuccessType = SearchListResponse
423 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Search/YoutubeSearchList.swift:421:17: error: type 'Search.YoutubeSearchList.Response' does not conform to protocol 'Response'
419 | }
420 |
421 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'Search.YoutubeSearchList.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
422 | public typealias SuccessType = SearchListResponse
423 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Search/YoutubeSearchList.swift:454:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
452 | switch statusCode {
453 | case 200: self = try .status200(decoder.decode(SearchListResponse.self, from: data))
454 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
455 | }
456 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Subscriptions/YoutubeSubscriptionsDelete.swift:7:33: warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
5 | /** Deletes a resource. */
6 | enum YoutubeSubscriptionsDelete {
7 | public static let service = APIService<Response>(id: "youtube.subscriptions.delete", tag: "subscriptions", method: "DELETE", path: "/youtube/v3/subscriptions", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtubepartner"])])
| |- warning: 'APIService' is deprecated: renamed to 'Service' [#DeprecatedDeclaration]
| `- note: use 'Service' instead
8 |
9 | public final class Request: APIRequest<Response> {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Subscriptions/YoutubeSubscriptionsDelete.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.subscriptions.delete", tag: "subscriptions", method: "DELETE", path: "/youtube/v3/subscriptions", hasBody: false, securityRequirements: [SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube"]), SecurityRequirement(type: "Oauth2c", scopes: ["https://www.googleapis.com/auth/youtube.force-ssl"]), SecurityRequirement(type: "Oauth2c", 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. */
/Users/admin/builder/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 {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Subscriptions/YoutubeSubscriptionsDelete.swift:115:27: warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
113 | }
114 |
115 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: 'APIResponseValue' is deprecated: renamed to 'DeprecatedResponse' [#DeprecatedDeclaration]
| `- note: use 'DeprecatedResponse' instead
116 | public typealias SuccessType = Void
117 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Subscriptions/YoutubeSubscriptionsDelete.swift:115:17: error: type 'Subscriptions.YoutubeSubscriptionsDelete.Response' does not conform to protocol 'Response'
113 | }
114 |
115 | public enum Response: APIResponseValue, CustomStringConvertible, CustomDebugStringConvertible {
| |- error: type 'Subscriptions.YoutubeSubscriptionsDelete.Response' does not conform to protocol 'Response'
| `- note: add stubs for conformance
116 | public typealias SuccessType = Void
117 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Response.swift:5:18: note: protocol requires nested type 'FailureType'
3 | public protocol Response: CustomDebugStringConvertible, CustomStringConvertible {
4 | associatedtype SuccessType
5 | associatedtype FailureType
| `- note: protocol requires nested type 'FailureType'
6 | associatedtype APIType: API
| `- note: protocol requires nested type 'APIType'
7 | var statusCode: Int { get }
8 | var response: ClientResult<SuccessType, FailureType> { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Requests/Subscriptions/YoutubeSubscriptionsDelete.swift:148:24: warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
146 | switch statusCode {
147 | case 200: self = .status200
148 | default: throw APIClientError.unexpectedStatusCode(statusCode: statusCode, data: data)
| |- warning: 'APIClientError' is deprecated: renamed to 'ClientError' [#DeprecatedDeclaration]
| `- note: use 'ClientError' instead
149 | }
150 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[289/312] Compiling SwiftTube CommentListResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[290/312] Compiling SwiftTube CommentSnippet.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[291/312] Compiling SwiftTube CommentSnippetAuthorChannelId.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[292/312] Compiling SwiftTube CommentThread.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[293/312] Compiling SwiftTube CommentThreadListResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[294/312] Compiling SwiftTube CommentThreadReplies.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[295/312] Compiling SwiftTube CommentThreadSnippet.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[296/312] Compiling SwiftTube ContentRating.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[297/312] Compiling SwiftTube Entity.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[298/312] Compiling SwiftTube GeoPoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[299/312] Compiling SwiftTube I18nLanguage.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[300/312] Compiling SwiftTube I18nLanguageListResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[301/312] Compiling SwiftTube I18nLanguageSnippet.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[302/312] Compiling SwiftTube I18nRegion.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[303/312] Compiling SwiftTube I18nRegionListResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[304/312] Compiling SwiftTube I18nRegionSnippet.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[305/312] Compiling SwiftTube ImageSettings.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[306/312] Compiling SwiftTube IngestionInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[307/312] Compiling SwiftTube InvideoBranding.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[308/312] Compiling SwiftTube InvideoPosition.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[309/312] Compiling SwiftTube InvideoTiming.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[310/312] Compiling SwiftTube LanguageTag.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[311/312] Compiling SwiftTube LevelDetails.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[312/312] Compiling SwiftTube LiveBroadcast.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:48:27: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
46 |
47 | /** The date and time when the comment was originally published. */
48 | public var publishedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- 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. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:57:25: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
55 |
56 | /** The date and time when the comment was last updated. */
57 | public var updatedAt: DateTime?
| |- warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
58 |
59 | /** The ID of the video the comment refers to, if any. */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:327: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
/Users/admin/builder/spi-builder-workspace/Sources/SwiftTube/Models/CommentSnippet.swift:65:412: warning: 'DateTime' is deprecated: renamed to 'Date' [#DeprecatedDeclaration]
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' [#DeprecatedDeclaration]
| `- note: use 'Date' instead
66 | self.authorChannelId = authorChannelId
67 | self.authorChannelUrl = authorChannelUrl
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Fetching https://github.com/brightdigit/Prch.git
[1/2495] Fetching prch
Fetched https://github.com/brightdigit/Prch.git from cache (0.95s)
Computing version for https://github.com/brightdigit/Prch.git
Computed https://github.com/brightdigit/Prch.git at 0.2.1 (1.49s)
Creating working copy for https://github.com/brightdigit/Prch.git
Working copy of https://github.com/brightdigit/Prch.git resolved at 0.2.1
BUILD FAILURE 6.2 macosSpm