Build Information
Failed to build JellyfinAPI, reference main (6039de
), with Swift 6.1 for Linux on 13 May 2025 01:02:31 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
154 | extension JellyfinClient: APIClientDelegate {
155 |
156 | public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
| |- warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
| `- note: move 'client(_:willSendRequest:)' to another extension to silence this warning
157 | // Inject required headers
158 | request.addValue(authHeaders(), forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
18 | /// - client: The client that sends the request.
19 | /// - request: The request about to be sent. Can be modified
20 | func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
| `- note: requirement 'client(_:willSendRequest:)' declared here
21 |
22 | /// Validates response for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| |- warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
| `- note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: requirement 'client(_:validateResponse:data:task:)' declared here
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
171 | }
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
| |- warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
| `- note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
175 | }
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
46 | ///
47 | /// - returns: Return `true` to retry the request.
48 | func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
| `- note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
49 |
50 | /// Constructs URL for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
38 |
39 | self._apiClient = APIClient(baseURL: configuration.url) { configuration in
40 | configuration.sessionConfiguration = sessionConfiguration
| |- error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
| `- note: did you mean to use 'as!' to force downcast?
41 | configuration.delegate = self
42 | configuration.sessionDelegate = sessionDelegate
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
125 | configure: ((inout URLRequest) throws -> Void)? = nil
126 | ) async throws -> Response<URL> {
127 | try await _apiClient.download(for: request, delegate: delegate, configure: configure)
| `- error: value of type 'APIClient' has no member 'download'
128 | }
129 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
132 | delegate: URLSessionDownloadDelegate? = nil
133 | ) async throws -> Response<URL> {
134 | try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
| `- error: value of type 'APIClient' has no member 'download'
135 | }
136 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
| `- error: no exact matches in call to instance method 'client'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
:
87 | }
88 |
89 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
90 | guard (200..<300).contains(response.statusCode) else {
91 | throw APIError.unacceptableStatusCode(response.statusCode)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
168 | throw APIError.unacceptableStatusCode(response.statusCode)
169 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
168 | throw APIError.unacceptableStatusCode(response.statusCode)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
169 | }
170 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
| |- error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
| `- note: did you mean to use 'as!' to force downcast?
175 | }
176 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/OpenISO8601Formatter.swift:12:14: warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
10 |
11 | // https://stackoverflow.com/a/50281094/976628
12 | public class OpenISO8601DateFormatter: DateFormatter {
| `- warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
13 | static let withoutSeconds: DateFormatter = {
14 | let formatter = DateFormatter()
[285/438] Compiling JellyfinAPI ConnectAPI.swift
/host/spi-builder-workspace/Sources/JellyfinClient.swift:23:39: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 |
22 | private var _apiClient: APIClient!
23 | private let sessionConfiguration: URLSessionConfiguration
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
24 | private let delegate: APIClientDelegate?
25 |
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
30 | sessionDelegate: URLSessionDelegate? = nil,
| `- error: cannot find type 'URLSessionDelegate' in scope
31 | delegate: APIClientDelegate? = nil,
32 | accessToken: String? = nil
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:31: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
27 | public init(
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 | sessionDelegate: URLSessionDelegate? = nil,
31 | delegate: APIClientDelegate? = nil,
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
27 | public init(
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
30 | sessionDelegate: URLSessionDelegate? = nil,
31 | delegate: APIClientDelegate? = nil,
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
114 | public func data(
115 | for request: Request<some Any>,
116 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
117 | configure: ((inout URLRequest) throws -> Void)? = nil
118 | ) async throws -> Response<Data> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
115 | for request: Request<some Any>,
116 | delegate: URLSessionDataDelegate? = nil,
117 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
118 | ) async throws -> Response<Data> {
119 | try await _apiClient.data(for: request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
122 | public func download(
123 | for request: Request<some Any>,
124 | delegate: URLSessionDownloadDelegate? = nil,
| `- error: cannot find type 'URLSessionDownloadDelegate' in scope
125 | configure: ((inout URLRequest) throws -> Void)? = nil
126 | ) async throws -> Response<URL> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
123 | for request: Request<some Any>,
124 | delegate: URLSessionDownloadDelegate? = nil,
125 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
126 | ) async throws -> Response<URL> {
127 | try await _apiClient.download(for: request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
130 | public func download(
131 | resumeFrom resumeData: Data,
132 | delegate: URLSessionDownloadDelegate? = nil
| `- error: cannot find type 'URLSessionDownloadDelegate' in scope
133 | ) async throws -> Response<URL> {
134 | try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
154 | extension JellyfinClient: APIClientDelegate {
155 |
156 | public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
| `- error: cannot find type 'URLRequest' in scope
157 | // Inject required headers
158 | request.addValue(authHeaders(), forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:72: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:107: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:63: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
171 | }
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
175 | }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
154 | extension JellyfinClient: APIClientDelegate {
155 |
156 | public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
| |- warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
| `- note: move 'client(_:willSendRequest:)' to another extension to silence this warning
157 | // Inject required headers
158 | request.addValue(authHeaders(), forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
18 | /// - client: The client that sends the request.
19 | /// - request: The request about to be sent. Can be modified
20 | func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
| `- note: requirement 'client(_:willSendRequest:)' declared here
21 |
22 | /// Validates response for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| |- warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
| `- note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: requirement 'client(_:validateResponse:data:task:)' declared here
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
171 | }
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
| |- warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
| `- note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
175 | }
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
46 | ///
47 | /// - returns: Return `true` to retry the request.
48 | func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
| `- note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
49 |
50 | /// Constructs URL for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
38 |
39 | self._apiClient = APIClient(baseURL: configuration.url) { configuration in
40 | configuration.sessionConfiguration = sessionConfiguration
| |- error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
| `- note: did you mean to use 'as!' to force downcast?
41 | configuration.delegate = self
42 | configuration.sessionDelegate = sessionDelegate
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
125 | configure: ((inout URLRequest) throws -> Void)? = nil
126 | ) async throws -> Response<URL> {
127 | try await _apiClient.download(for: request, delegate: delegate, configure: configure)
| `- error: value of type 'APIClient' has no member 'download'
128 | }
129 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
132 | delegate: URLSessionDownloadDelegate? = nil
133 | ) async throws -> Response<URL> {
134 | try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
| `- error: value of type 'APIClient' has no member 'download'
135 | }
136 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
| `- error: no exact matches in call to instance method 'client'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
:
87 | }
88 |
89 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
90 | guard (200..<300).contains(response.statusCode) else {
91 | throw APIError.unacceptableStatusCode(response.statusCode)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
168 | throw APIError.unacceptableStatusCode(response.statusCode)
169 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
168 | throw APIError.unacceptableStatusCode(response.statusCode)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
169 | }
170 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
| |- error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
| `- note: did you mean to use 'as!' to force downcast?
175 | }
176 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/OpenISO8601Formatter.swift:12:14: warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
10 |
11 | // https://stackoverflow.com/a/50281094/976628
12 | public class OpenISO8601DateFormatter: DateFormatter {
| `- warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
13 | static let withoutSeconds: DateFormatter = {
14 | let formatter = DateFormatter()
[286/438] Compiling JellyfinAPI CreateAdminNotificationAPI.swift
/host/spi-builder-workspace/Sources/JellyfinClient.swift:23:39: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 |
22 | private var _apiClient: APIClient!
23 | private let sessionConfiguration: URLSessionConfiguration
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
24 | private let delegate: APIClientDelegate?
25 |
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
30 | sessionDelegate: URLSessionDelegate? = nil,
| `- error: cannot find type 'URLSessionDelegate' in scope
31 | delegate: APIClientDelegate? = nil,
32 | accessToken: String? = nil
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:31: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
27 | public init(
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 | sessionDelegate: URLSessionDelegate? = nil,
31 | delegate: APIClientDelegate? = nil,
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
27 | public init(
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
30 | sessionDelegate: URLSessionDelegate? = nil,
31 | delegate: APIClientDelegate? = nil,
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
114 | public func data(
115 | for request: Request<some Any>,
116 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
117 | configure: ((inout URLRequest) throws -> Void)? = nil
118 | ) async throws -> Response<Data> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
115 | for request: Request<some Any>,
116 | delegate: URLSessionDataDelegate? = nil,
117 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
118 | ) async throws -> Response<Data> {
119 | try await _apiClient.data(for: request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
122 | public func download(
123 | for request: Request<some Any>,
124 | delegate: URLSessionDownloadDelegate? = nil,
| `- error: cannot find type 'URLSessionDownloadDelegate' in scope
125 | configure: ((inout URLRequest) throws -> Void)? = nil
126 | ) async throws -> Response<URL> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
123 | for request: Request<some Any>,
124 | delegate: URLSessionDownloadDelegate? = nil,
125 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
126 | ) async throws -> Response<URL> {
127 | try await _apiClient.download(for: request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
130 | public func download(
131 | resumeFrom resumeData: Data,
132 | delegate: URLSessionDownloadDelegate? = nil
| `- error: cannot find type 'URLSessionDownloadDelegate' in scope
133 | ) async throws -> Response<URL> {
134 | try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
154 | extension JellyfinClient: APIClientDelegate {
155 |
156 | public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
| `- error: cannot find type 'URLRequest' in scope
157 | // Inject required headers
158 | request.addValue(authHeaders(), forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:72: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:107: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:63: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
171 | }
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
175 | }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
154 | extension JellyfinClient: APIClientDelegate {
155 |
156 | public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
| |- warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
| `- note: move 'client(_:willSendRequest:)' to another extension to silence this warning
157 | // Inject required headers
158 | request.addValue(authHeaders(), forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
18 | /// - client: The client that sends the request.
19 | /// - request: The request about to be sent. Can be modified
20 | func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
| `- note: requirement 'client(_:willSendRequest:)' declared here
21 |
22 | /// Validates response for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| |- warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
| `- note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: requirement 'client(_:validateResponse:data:task:)' declared here
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
171 | }
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
| |- warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
| `- note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
175 | }
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
46 | ///
47 | /// - returns: Return `true` to retry the request.
48 | func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
| `- note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
49 |
50 | /// Constructs URL for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
38 |
39 | self._apiClient = APIClient(baseURL: configuration.url) { configuration in
40 | configuration.sessionConfiguration = sessionConfiguration
| |- error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
| `- note: did you mean to use 'as!' to force downcast?
41 | configuration.delegate = self
42 | configuration.sessionDelegate = sessionDelegate
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
125 | configure: ((inout URLRequest) throws -> Void)? = nil
126 | ) async throws -> Response<URL> {
127 | try await _apiClient.download(for: request, delegate: delegate, configure: configure)
| `- error: value of type 'APIClient' has no member 'download'
128 | }
129 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
132 | delegate: URLSessionDownloadDelegate? = nil
133 | ) async throws -> Response<URL> {
134 | try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
| `- error: value of type 'APIClient' has no member 'download'
135 | }
136 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
| `- error: no exact matches in call to instance method 'client'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
:
87 | }
88 |
89 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
90 | guard (200..<300).contains(response.statusCode) else {
91 | throw APIError.unacceptableStatusCode(response.statusCode)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
168 | throw APIError.unacceptableStatusCode(response.statusCode)
169 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
168 | throw APIError.unacceptableStatusCode(response.statusCode)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
169 | }
170 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
| |- error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
| `- note: did you mean to use 'as!' to force downcast?
175 | }
176 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/OpenISO8601Formatter.swift:12:14: warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
10 |
11 | // https://stackoverflow.com/a/50281094/976628
12 | public class OpenISO8601DateFormatter: DateFormatter {
| `- warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
13 | static let withoutSeconds: DateFormatter = {
14 | let formatter = DateFormatter()
[287/438] Compiling JellyfinAPI CreateCollectionAPI.swift
/host/spi-builder-workspace/Sources/JellyfinClient.swift:23:39: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 |
22 | private var _apiClient: APIClient!
23 | private let sessionConfiguration: URLSessionConfiguration
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
24 | private let delegate: APIClientDelegate?
25 |
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
30 | sessionDelegate: URLSessionDelegate? = nil,
| `- error: cannot find type 'URLSessionDelegate' in scope
31 | delegate: APIClientDelegate? = nil,
32 | accessToken: String? = nil
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:31: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
27 | public init(
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 | sessionDelegate: URLSessionDelegate? = nil,
31 | delegate: APIClientDelegate? = nil,
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
27 | public init(
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
30 | sessionDelegate: URLSessionDelegate? = nil,
31 | delegate: APIClientDelegate? = nil,
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
114 | public func data(
115 | for request: Request<some Any>,
116 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
117 | configure: ((inout URLRequest) throws -> Void)? = nil
118 | ) async throws -> Response<Data> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
115 | for request: Request<some Any>,
116 | delegate: URLSessionDataDelegate? = nil,
117 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
118 | ) async throws -> Response<Data> {
119 | try await _apiClient.data(for: request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
122 | public func download(
123 | for request: Request<some Any>,
124 | delegate: URLSessionDownloadDelegate? = nil,
| `- error: cannot find type 'URLSessionDownloadDelegate' in scope
125 | configure: ((inout URLRequest) throws -> Void)? = nil
126 | ) async throws -> Response<URL> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
123 | for request: Request<some Any>,
124 | delegate: URLSessionDownloadDelegate? = nil,
125 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
126 | ) async throws -> Response<URL> {
127 | try await _apiClient.download(for: request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
130 | public func download(
131 | resumeFrom resumeData: Data,
132 | delegate: URLSessionDownloadDelegate? = nil
| `- error: cannot find type 'URLSessionDownloadDelegate' in scope
133 | ) async throws -> Response<URL> {
134 | try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
154 | extension JellyfinClient: APIClientDelegate {
155 |
156 | public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
| `- error: cannot find type 'URLRequest' in scope
157 | // Inject required headers
158 | request.addValue(authHeaders(), forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:72: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:107: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:63: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
171 | }
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
175 | }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
154 | extension JellyfinClient: APIClientDelegate {
155 |
156 | public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
| |- warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
| `- note: move 'client(_:willSendRequest:)' to another extension to silence this warning
157 | // Inject required headers
158 | request.addValue(authHeaders(), forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
18 | /// - client: The client that sends the request.
19 | /// - request: The request about to be sent. Can be modified
20 | func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
| `- note: requirement 'client(_:willSendRequest:)' declared here
21 |
22 | /// Validates response for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| |- warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
| `- note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: requirement 'client(_:validateResponse:data:task:)' declared here
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
171 | }
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
| |- warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
| `- note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
175 | }
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
46 | ///
47 | /// - returns: Return `true` to retry the request.
48 | func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
| `- note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
49 |
50 | /// Constructs URL for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
38 |
39 | self._apiClient = APIClient(baseURL: configuration.url) { configuration in
40 | configuration.sessionConfiguration = sessionConfiguration
| |- error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
| `- note: did you mean to use 'as!' to force downcast?
41 | configuration.delegate = self
42 | configuration.sessionDelegate = sessionDelegate
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
125 | configure: ((inout URLRequest) throws -> Void)? = nil
126 | ) async throws -> Response<URL> {
127 | try await _apiClient.download(for: request, delegate: delegate, configure: configure)
| `- error: value of type 'APIClient' has no member 'download'
128 | }
129 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
132 | delegate: URLSessionDownloadDelegate? = nil
133 | ) async throws -> Response<URL> {
134 | try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
| `- error: value of type 'APIClient' has no member 'download'
135 | }
136 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
| `- error: no exact matches in call to instance method 'client'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
:
87 | }
88 |
89 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
90 | guard (200..<300).contains(response.statusCode) else {
91 | throw APIError.unacceptableStatusCode(response.statusCode)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
168 | throw APIError.unacceptableStatusCode(response.statusCode)
169 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
168 | throw APIError.unacceptableStatusCode(response.statusCode)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
169 | }
170 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
| |- error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
| `- note: did you mean to use 'as!' to force downcast?
175 | }
176 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/OpenISO8601Formatter.swift:12:14: warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
10 |
11 | // https://stackoverflow.com/a/50281094/976628
12 | public class OpenISO8601DateFormatter: DateFormatter {
| `- warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
13 | static let withoutSeconds: DateFormatter = {
14 | let formatter = DateFormatter()
[288/438] Compiling JellyfinAPI CreateKeyAPI.swift
/host/spi-builder-workspace/Sources/JellyfinClient.swift:23:39: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 |
22 | private var _apiClient: APIClient!
23 | private let sessionConfiguration: URLSessionConfiguration
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
24 | private let delegate: APIClientDelegate?
25 |
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
30 | sessionDelegate: URLSessionDelegate? = nil,
| `- error: cannot find type 'URLSessionDelegate' in scope
31 | delegate: APIClientDelegate? = nil,
32 | accessToken: String? = nil
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:31: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
27 | public init(
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 | sessionDelegate: URLSessionDelegate? = nil,
31 | delegate: APIClientDelegate? = nil,
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
27 | public init(
28 | configuration: Configuration,
29 | sessionConfiguration: URLSessionConfiguration = .default,
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
30 | sessionDelegate: URLSessionDelegate? = nil,
31 | delegate: APIClientDelegate? = nil,
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
114 | public func data(
115 | for request: Request<some Any>,
116 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
117 | configure: ((inout URLRequest) throws -> Void)? = nil
118 | ) async throws -> Response<Data> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
115 | for request: Request<some Any>,
116 | delegate: URLSessionDataDelegate? = nil,
117 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
118 | ) async throws -> Response<Data> {
119 | try await _apiClient.data(for: request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
122 | public func download(
123 | for request: Request<some Any>,
124 | delegate: URLSessionDownloadDelegate? = nil,
| `- error: cannot find type 'URLSessionDownloadDelegate' in scope
125 | configure: ((inout URLRequest) throws -> Void)? = nil
126 | ) async throws -> Response<URL> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
123 | for request: Request<some Any>,
124 | delegate: URLSessionDownloadDelegate? = nil,
125 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
126 | ) async throws -> Response<URL> {
127 | try await _apiClient.download(for: request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
130 | public func download(
131 | resumeFrom resumeData: Data,
132 | delegate: URLSessionDownloadDelegate? = nil
| `- error: cannot find type 'URLSessionDownloadDelegate' in scope
133 | ) async throws -> Response<URL> {
134 | try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
154 | extension JellyfinClient: APIClientDelegate {
155 |
156 | public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
| `- error: cannot find type 'URLRequest' in scope
157 | // Inject required headers
158 | request.addValue(authHeaders(), forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:72: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:107: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:63: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
171 | }
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
175 | }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
154 | extension JellyfinClient: APIClientDelegate {
155 |
156 | public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
| |- warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
| `- note: move 'client(_:willSendRequest:)' to another extension to silence this warning
157 | // Inject required headers
158 | request.addValue(authHeaders(), forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
18 | /// - client: The client that sends the request.
19 | /// - request: The request about to be sent. Can be modified
20 | func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
| `- note: requirement 'client(_:willSendRequest:)' declared here
21 |
22 | /// Validates response for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
161 | }
162 |
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| |- warning: instance method 'client(_:validateResponse:data:task:)' nearly matches defaulted requirement 'client(_:validateResponse:data:task:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
| `- note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: requirement 'client(_:validateResponse:data:task:)' declared here
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
171 | }
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
| |- warning: instance method 'client(_:shouldRetry:error:attempts:)' nearly matches defaulted requirement 'client(_:shouldRetry:error:attempts:)' of protocol 'APIClientDelegate'
| |- note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
| `- note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
175 | }
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
46 | ///
47 | /// - returns: Return `true` to retry the request.
48 | func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
| `- note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
49 |
50 | /// Constructs URL for the given request.
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
38 |
39 | self._apiClient = APIClient(baseURL: configuration.url) { configuration in
40 | configuration.sessionConfiguration = sessionConfiguration
| |- error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
| `- note: did you mean to use 'as!' to force downcast?
41 | configuration.delegate = self
42 | configuration.sessionDelegate = sessionDelegate
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
125 | configure: ((inout URLRequest) throws -> Void)? = nil
126 | ) async throws -> Response<URL> {
127 | try await _apiClient.download(for: request, delegate: delegate, configure: configure)
| `- error: value of type 'APIClient' has no member 'download'
128 | }
129 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
132 | delegate: URLSessionDownloadDelegate? = nil
133 | ) async throws -> Response<URL> {
134 | try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
| `- error: value of type 'APIClient' has no member 'download'
135 | }
136 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
163 | public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
164 | if let delegate {
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
| `- error: no exact matches in call to instance method 'client'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
31 | /// ``APIError/unacceptableStatusCode(_:)`` if the code is outside of
32 | /// the `200..<300` range.
33 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
34 |
35 | /// Gets called after a networking failure. Only one retry attempt is allowed.
:
87 | }
88 |
89 | func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
| `- note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
90 | guard (200..<300).contains(response.statusCode) else {
91 | throw APIError.unacceptableStatusCode(response.statusCode)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
165 | try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
168 | throw APIError.unacceptableStatusCode(response.statusCode)
169 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
166 | } else {
167 | guard (200 ..< 300).contains(response.statusCode) else {
168 | throw APIError.unacceptableStatusCode(response.statusCode)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
169 | }
170 | }
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
172 |
173 | public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
174 | try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
| |- error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
| `- note: did you mean to use 'as!' to force downcast?
175 | }
176 |
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
197 | func signIn(username: String, password: String) async throws -> AuthenticationResult {
198 | let request = Paths.authenticateUserByName(.init(pw: password, username: username))
199 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
200 |
201 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no 'async' operations occur within 'await' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
220 | func signIn(quickConnectSecret: String) async throws -> AuthenticationResult {
221 | let request = Paths.authenticateWithQuickConnect(.init(secret: quickConnectSecret))
222 | let response = try await send(request).value
| `- warning: no calls to throwing functions occur within 'try' expression
223 |
224 | if let accessToken = response.accessToken {
/host/spi-builder-workspace/Sources/OpenISO8601Formatter.swift:12:14: warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
10 |
11 | // https://stackoverflow.com/a/50281094/976628
12 | public class OpenISO8601DateFormatter: DateFormatter {
| `- warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
13 | static let withoutSeconds: DateFormatter = {
14 | let formatter = DateFormatter()
[289/487] Compiling JellyfinAPI AccessSchedule.swift
[290/487] Compiling JellyfinAPI ActivityLogEntry.swift
[291/487] Compiling JellyfinAPI ActivityLogEntryMessage.swift
[292/487] Compiling JellyfinAPI ActivityLogEntryQueryResult.swift
[293/487] Compiling JellyfinAPI ActivityLogEntryStartMessage.swift
[294/487] Compiling JellyfinAPI ActivityLogEntryStopMessage.swift
[295/487] Compiling JellyfinAPI AddVirtualFolderDto.swift
[296/487] Compiling JellyfinAPI AdminNotificationDto.swift
[297/487] Compiling JellyfinAPI AlbumInfo.swift
[298/487] Compiling JellyfinAPI AlbumInfoRemoteSearchQuery.swift
[299/487] Compiling JellyfinAPI AllThemeMediaResult.swift
[300/487] Compiling JellyfinAPI Architecture.swift
[301/487] Compiling JellyfinAPI ArtistInfo.swift
[302/487] Compiling JellyfinAPI ArtistInfoRemoteSearchQuery.swift
[303/487] Compiling JellyfinAPI AudioSpatialFormat.swift
[304/487] Compiling JellyfinAPI AuthenticateUserByName.swift
[305/487] Compiling JellyfinAPI AuthenticationInfo.swift
[306/487] Compiling JellyfinAPI AuthenticationInfoQueryResult.swift
[307/487] Compiling JellyfinAPI AuthenticationResult.swift
[308/487] Compiling JellyfinAPI BaseItem.swift
[309/487] Compiling JellyfinAPI BaseItemDto.swift
[310/487] Compiling JellyfinAPI BaseItemDtoQueryResult.swift
[311/487] Compiling JellyfinAPI BaseItemKind.swift
[312/487] Compiling JellyfinAPI BaseItemPerson.swift
[313/487] Compiling JellyfinAPI BookInfo.swift
[314/511] Compiling JellyfinAPI TimerInfoDtoQueryResult.swift
[315/511] Compiling JellyfinAPI TonemappingAlgorithm.swift
[316/511] Compiling JellyfinAPI TonemappingMode.swift
[317/511] Compiling JellyfinAPI TonemappingRange.swift
[318/511] Compiling JellyfinAPI TrailerInfo.swift
[319/511] Compiling JellyfinAPI TrailerInfoRemoteSearchQuery.swift
[320/511] Compiling JellyfinAPI TranscodeReason.swift
[321/511] Compiling JellyfinAPI TranscodeSeekInfo.swift
[322/511] Compiling JellyfinAPI TranscodingInfo.swift
[323/511] Compiling JellyfinAPI TranscodingProfile.swift
[324/511] Compiling JellyfinAPI TransportStreamTimestamp.swift
[325/511] Compiling JellyfinAPI TrickplayInfo.swift
[326/511] Compiling JellyfinAPI TrickplayOptions.swift
[327/511] Compiling JellyfinAPI TrickplayScanBehavior.swift
[328/511] Compiling JellyfinAPI TunerChannelMapping.swift
[329/511] Compiling JellyfinAPI TunerHostInfo.swift
[330/511] Compiling JellyfinAPI TypeOptions.swift
[331/511] Compiling JellyfinAPI UnratedItem.swift
[332/511] Compiling JellyfinAPI UpdateLibraryOptionsDto.swift
[333/511] Compiling JellyfinAPI UpdateMediaPathRequestDto.swift
[334/511] Compiling JellyfinAPI UpdatePlaylistDto.swift
[335/511] Compiling JellyfinAPI UpdatePlaylistUserDto.swift
[336/511] Compiling JellyfinAPI UpdateUserEasyPassword.swift
[337/511] Compiling JellyfinAPI UpdateUserItemDataDto.swift
[338/511] Compiling JellyfinAPI UpdateUserPassword.swift
[339/535] Compiling JellyfinAPI CreatePlaylistAPI.swift
[340/535] Compiling JellyfinAPI CreateProfileAPI.swift
[341/535] Compiling JellyfinAPI CreateSeriesTimerAPI.swift
[342/535] Compiling JellyfinAPI CreateTimerAPI.swift
[343/535] Compiling JellyfinAPI CreateUserByNameAPI.swift
[344/535] Compiling JellyfinAPI DeleteAlternateSourcesAPI.swift
[345/535] Compiling JellyfinAPI DeleteCustomSplashscreenAPI.swift
[346/535] Compiling JellyfinAPI DeleteDeviceAPI.swift
[347/535] Compiling JellyfinAPI DeleteItemAPI.swift
[348/535] Compiling JellyfinAPI DeleteItemImageAPI.swift
[349/535] Compiling JellyfinAPI DeleteItemImageByIndexAPI.swift
[350/535] Compiling JellyfinAPI DeleteItemsAPI.swift
[351/535] Compiling JellyfinAPI DeleteListingProviderAPI.swift
[352/535] Compiling JellyfinAPI DeleteLyricsAPI.swift
[353/535] Compiling JellyfinAPI DeleteProfileAPI.swift
[354/535] Compiling JellyfinAPI DeleteRecordingAPI.swift
[355/535] Compiling JellyfinAPI DeleteSubtitleAPI.swift
[356/535] Compiling JellyfinAPI DeleteTunerHostAPI.swift
[357/535] Compiling JellyfinAPI DeleteUserAPI.swift
[358/535] Compiling JellyfinAPI DeleteUserImageAPI.swift
[359/535] Compiling JellyfinAPI DeleteUserImageByIndexAPI.swift
[360/535] Compiling JellyfinAPI DeleteUserItemRatingAPI.swift
[361/535] Compiling JellyfinAPI DisablePluginAPI.swift
[362/535] Compiling JellyfinAPI DiscoverTunersAPI.swift
[363/535] Compiling JellyfinAPI DiscvoverTunersAPI.swift
[364/559] Compiling JellyfinAPI SpecialViewOptionDto.swift
[365/559] Compiling JellyfinAPI StartupConfigurationDto.swift
[366/559] Compiling JellyfinAPI StartupRemoteAccessDto.swift
[367/559] Compiling JellyfinAPI StartupUserDto.swift
[368/559] Compiling JellyfinAPI StringGroupUpdate.swift
[369/559] Compiling JellyfinAPI SubtitleDeliveryMethod.swift
[370/559] Compiling JellyfinAPI SubtitleOptions.swift
[371/559] Compiling JellyfinAPI SubtitlePlaybackMode.swift
[372/559] Compiling JellyfinAPI SubtitleProfile.swift
[373/559] Compiling JellyfinAPI SyncPlayCommandMessage.swift
[374/559] Compiling JellyfinAPI SyncPlayGroupUpdateCommandMessage.swift
[375/559] Compiling JellyfinAPI SyncPlayQueueItem.swift
[376/559] Compiling JellyfinAPI SyncPlayUserAccessType.swift
[377/559] Compiling JellyfinAPI SystemInfo.swift
[378/559] Compiling JellyfinAPI TaskCompletionStatus.swift
[379/559] Compiling JellyfinAPI TaskInfo.swift
[380/559] Compiling JellyfinAPI TaskResult.swift
[381/559] Compiling JellyfinAPI TaskState.swift
[382/559] Compiling JellyfinAPI TaskTriggerInfo.swift
[383/559] Compiling JellyfinAPI TaskTriggerType.swift
[384/559] Compiling JellyfinAPI ThemeMediaResult.swift
[385/559] Compiling JellyfinAPI TimerCancelledMessage.swift
[386/559] Compiling JellyfinAPI TimerCreatedMessage.swift
[387/559] Compiling JellyfinAPI TimerEventInfo.swift
[388/559] Compiling JellyfinAPI TimerInfoDto.swift
[389/583] Compiling JellyfinAPI GetChannelAPI.swift
[390/583] Compiling JellyfinAPI GetChannelFeaturesAPI.swift
[391/583] Compiling JellyfinAPI GetChannelItemsAPI.swift
[392/583] Compiling JellyfinAPI GetChannelMappingOptionsAPI.swift
[393/583] Compiling JellyfinAPI GetChannelsAPI.swift
[394/583] Compiling JellyfinAPI GetConfigurationAPI.swift
[395/583] Compiling JellyfinAPI GetConfigurationPagesAPI.swift
[396/583] Compiling JellyfinAPI GetConnectionManager2API.swift
[397/583] Compiling JellyfinAPI GetConnectionManager3API.swift
[398/583] Compiling JellyfinAPI GetConnectionManagerAPI.swift
[399/583] Compiling JellyfinAPI GetContentDirectory2API.swift
[400/583] Compiling JellyfinAPI GetContentDirectory3API.swift
[401/583] Compiling JellyfinAPI GetContentDirectoryAPI.swift
[402/583] Compiling JellyfinAPI GetCountriesAPI.swift
[403/583] Compiling JellyfinAPI GetCriticReviewsAPI.swift
[404/583] Compiling JellyfinAPI GetCulturesAPI.swift
[405/583] Compiling JellyfinAPI GetCurrentUserAPI.swift
[406/583] Compiling JellyfinAPI GetDashboardConfigurationPageAPI.swift
[407/583] Compiling JellyfinAPI GetDefaultDirectoryBrowserAPI.swift
[408/583] Compiling JellyfinAPI GetDefaultListingProviderAPI.swift
[409/583] Compiling JellyfinAPI GetDefaultMetadataOptionsAPI.swift
[410/583] Compiling JellyfinAPI GetDefaultProfileAPI.swift
[411/583] Compiling JellyfinAPI GetDefaultTimerAPI.swift
[412/583] Compiling JellyfinAPI GetDescriptionXml2API.swift
[413/607] Compiling JellyfinAPI GetDescriptionXmlAPI.swift
[414/607] Compiling JellyfinAPI GetDeviceInfoAPI.swift
[415/607] Compiling JellyfinAPI GetDeviceOptionsAPI.swift
[416/607] Compiling JellyfinAPI GetDevicesAPI.swift
[417/607] Compiling JellyfinAPI GetDirectoryContentsAPI.swift
[418/607] Compiling JellyfinAPI GetDisplayPreferencesAPI.swift
[419/607] Compiling JellyfinAPI GetDownloadAPI.swift
[420/607] Compiling JellyfinAPI GetDrivesAPI.swift
[421/607] Compiling JellyfinAPI GetEnabledAPI.swift
[422/607] Compiling JellyfinAPI GetEndpointInfoAPI.swift
[423/607] Compiling JellyfinAPI GetEpisodesAPI.swift
[424/607] Compiling JellyfinAPI GetExternalIDInfosAPI.swift
[425/607] Compiling JellyfinAPI GetFallbackFontAPI.swift
[426/607] Compiling JellyfinAPI GetFallbackFontListAPI.swift
[427/607] Compiling JellyfinAPI GetFileAPI.swift
[428/607] Compiling JellyfinAPI GetFirstUser2API.swift
[429/607] Compiling JellyfinAPI GetFirstUserAPI.swift
[430/607] Compiling JellyfinAPI GetGeneralImageAPI.swift
[431/607] Compiling JellyfinAPI GetGeneralImagesAPI.swift
[432/607] Compiling JellyfinAPI GetGenreAPI.swift
[433/607] Compiling JellyfinAPI GetGenreImageAPI.swift
[434/607] Compiling JellyfinAPI GetGenreImageByIndexAPI.swift
[435/607] Compiling JellyfinAPI GetGenresAPI.swift
[436/607] Compiling JellyfinAPI GetGroupingOptionsAPI.swift
[437/631] Compiling JellyfinAPI SeriesInfo.swift
[438/631] Compiling JellyfinAPI SeriesInfoRemoteSearchQuery.swift
[439/631] Compiling JellyfinAPI SeriesStatus.swift
[440/631] Compiling JellyfinAPI SeriesTimerCancelledMessage.swift
[441/631] Compiling JellyfinAPI SeriesTimerCreatedMessage.swift
[442/631] Compiling JellyfinAPI SeriesTimerInfoDto.swift
[443/631] Compiling JellyfinAPI SeriesTimerInfoDtoQueryResult.swift
[444/631] Compiling JellyfinAPI ServerConfiguration.swift
[445/631] Compiling JellyfinAPI ServerDiscoveryInfo.swift
[446/631] Compiling JellyfinAPI ServerRestartingMessage.swift
[447/631] Compiling JellyfinAPI ServerShuttingDownMessage.swift
[448/631] Compiling JellyfinAPI SessionInfo.swift
[449/631] Compiling JellyfinAPI SessionInfoDto.swift
[450/631] Compiling JellyfinAPI SessionMessageType.swift
[451/631] Compiling JellyfinAPI SessionUserInfo.swift
[452/631] Compiling JellyfinAPI SessionsMessage.swift
[453/631] Compiling JellyfinAPI SessionsStartMessage.swift
[454/631] Compiling JellyfinAPI SessionsStopMessage.swift
[455/631] Compiling JellyfinAPI SetChannelMappingDto.swift
[456/631] Compiling JellyfinAPI SetPlaylistItemRequestDto.swift
[457/631] Compiling JellyfinAPI SetRepeatModeRequestDto.swift
[458/631] Compiling JellyfinAPI SetShuffleModeRequestDto.swift
[459/631] Compiling JellyfinAPI SongInfo.swift
[460/631] Compiling JellyfinAPI SortOrder.swift
[461/631] Compiling JellyfinAPI SpecialFeatureType.swift
[462/631] Compiling JellyfinAPI DisplayContentAPI.swift
[463/631] Compiling JellyfinAPI DownloadRemoteImageAPI.swift
[464/631] Compiling JellyfinAPI DownloadRemoteLyricsAPI.swift
[465/631] Compiling JellyfinAPI DownloadRemoteSubtitlesAPI.swift
[466/631] Compiling JellyfinAPI EnablePluginAPI.swift
[467/631] Compiling JellyfinAPI ForgotPasswordAPI.swift
[468/631] Compiling JellyfinAPI ForgotPasswordPinAPI.swift
[469/631] Compiling JellyfinAPI GetAPI.swift
[470/631] Compiling JellyfinAPI GetAdditionalPartAPI.swift
[471/631] Compiling JellyfinAPI GetAlbumArtistsAPI.swift
[472/631] Compiling JellyfinAPI GetAllChannelFeaturesAPI.swift
[473/631] Compiling JellyfinAPI GetAncestorsAPI.swift
[474/631] Compiling JellyfinAPI GetArtistByNameAPI.swift
[475/631] Compiling JellyfinAPI GetArtistImageAPI.swift
[476/631] Compiling JellyfinAPI GetArtistsAPI.swift
[477/631] Compiling JellyfinAPI GetAttachmentAPI.swift
[478/631] Compiling JellyfinAPI GetAudioStreamAPI.swift
[479/631] Compiling JellyfinAPI GetAudioStreamByContainerAPI.swift
[480/631] Compiling JellyfinAPI GetAuthProvidersAPI.swift
[481/631] Compiling JellyfinAPI GetBitrateTestBytesAPI.swift
[482/631] Compiling JellyfinAPI GetBookRemoteSearchResultsAPI.swift
[483/631] Compiling JellyfinAPI GetBoxSetRemoteSearchResultsAPI.swift
[484/631] Compiling JellyfinAPI GetBrandingCss2API.swift
[485/631] Compiling JellyfinAPI GetBrandingCssAPI.swift
[486/631] Compiling JellyfinAPI GetBrandingOptionsAPI.swift
[487/679] Compiling JellyfinAPI GetMediaInfoImagesAPI.swift
[488/679] Compiling JellyfinAPI GetMediaReceiverRegistrar2API.swift
[489/679] Compiling JellyfinAPI GetMediaReceiverRegistrar3API.swift
[490/679] Compiling JellyfinAPI GetMediaReceiverRegistrarAPI.swift
[491/679] Compiling JellyfinAPI GetMetadataEditorInfoAPI.swift
[492/679] Compiling JellyfinAPI GetMovieRecommendationsAPI.swift
[493/679] Compiling JellyfinAPI GetMovieRemoteSearchResultsAPI.swift
[494/679] Compiling JellyfinAPI GetMusicAlbumRemoteSearchResultsAPI.swift
[495/679] Compiling JellyfinAPI GetMusicArtistRemoteSearchResultsAPI.swift
[496/679] Compiling JellyfinAPI GetMusicGenreAPI.swift
[497/679] Compiling JellyfinAPI GetMusicGenreImageAPI.swift
[498/679] Compiling JellyfinAPI GetMusicGenreImageByIndexAPI.swift
[499/679] Compiling JellyfinAPI GetMusicGenresAPI.swift
[500/679] Compiling JellyfinAPI GetMusicVideoRemoteSearchResultsAPI.swift
[501/679] Compiling JellyfinAPI GetNamedConfigurationAPI.swift
[502/679] Compiling JellyfinAPI GetNetworkSharesAPI.swift
[503/679] Compiling JellyfinAPI GetNextUpAPI.swift
[504/679] Compiling JellyfinAPI GetNotificationServicesAPI.swift
[505/679] Compiling JellyfinAPI GetNotificationTypesAPI.swift
[506/679] Compiling JellyfinAPI GetNotificationsAPI.swift
[507/679] Compiling JellyfinAPI GetNotificationsSummaryAPI.swift
[508/679] Compiling JellyfinAPI GetPackageInfoAPI.swift
[509/679] Compiling JellyfinAPI GetPackagesAPI.swift
[510/679] Compiling JellyfinAPI GetParentPathAPI.swift
[511/703] Compiling JellyfinAPI GetParentalRatingsAPI.swift
[512/703] Compiling JellyfinAPI GetPasswordResetProvidersAPI.swift
[513/703] Compiling JellyfinAPI GetPersonAPI.swift
[514/703] Compiling JellyfinAPI GetPersonImageAPI.swift
[515/703] Compiling JellyfinAPI GetPersonImageByIndexAPI.swift
[516/703] Compiling JellyfinAPI GetPersonRemoteSearchResultsAPI.swift
[517/703] Compiling JellyfinAPI GetPersonsAPI.swift
[518/703] Compiling JellyfinAPI GetPhysicalPathsAPI.swift
[519/703] Compiling JellyfinAPI GetPingSystemAPI.swift
[520/703] Compiling JellyfinAPI GetPlaybackInfoAPI.swift
[521/703] Compiling JellyfinAPI GetPlaylistAPI.swift
[522/703] Compiling JellyfinAPI GetPlaylistItemsAPI.swift
[523/703] Compiling JellyfinAPI GetPlaylistUserAPI.swift
[524/703] Compiling JellyfinAPI GetPlaylistUsersAPI.swift
[525/703] Compiling JellyfinAPI GetPluginConfigurationAPI.swift
[526/703] Compiling JellyfinAPI GetPluginImageAPI.swift
[527/703] Compiling JellyfinAPI GetPluginManifestAPI.swift
[528/703] Compiling JellyfinAPI GetPluginsAPI.swift
[529/703] Compiling JellyfinAPI GetPostedPlaybackInfoAPI.swift
[530/703] Compiling JellyfinAPI GetProfileAPI.swift
[531/703] Compiling JellyfinAPI GetProfileInfosAPI.swift
[532/703] Compiling JellyfinAPI GetProgramAPI.swift
[533/703] Compiling JellyfinAPI GetProgramsAPI.swift
[534/703] Compiling JellyfinAPI GetPublicSystemInfoAPI.swift
[535/727] Compiling JellyfinAPI GetGuideInfoAPI.swift
[536/727] Compiling JellyfinAPI GetHlsAudioSegmentAPI.swift
[537/727] Compiling JellyfinAPI GetHlsAudioSegmentLegacyAacAPI.swift
[538/727] Compiling JellyfinAPI GetHlsAudioSegmentLegacyMp3API.swift
[539/727] Compiling JellyfinAPI GetHlsPlaylistLegacyAPI.swift
[540/727] Compiling JellyfinAPI GetHlsVideoSegmentAPI.swift
[541/727] Compiling JellyfinAPI GetHlsVideoSegmentLegacyAPI.swift
[542/727] Compiling JellyfinAPI GetIconAPI.swift
[543/727] Compiling JellyfinAPI GetIconIDAPI.swift
[544/727] Compiling JellyfinAPI GetInstantMixFromAlbumAPI.swift
[545/727] Compiling JellyfinAPI GetInstantMixFromArtists2API.swift
[546/727] Compiling JellyfinAPI GetInstantMixFromArtistsAPI.swift
[547/727] Compiling JellyfinAPI GetInstantMixFromItemAPI.swift
[548/727] Compiling JellyfinAPI GetInstantMixFromMusicGenreByIDAPI.swift
[549/727] Compiling JellyfinAPI GetInstantMixFromMusicGenreByNameAPI.swift
[550/727] Compiling JellyfinAPI GetInstantMixFromPlaylistAPI.swift
[551/727] Compiling JellyfinAPI GetInstantMixFromSongAPI.swift
[552/727] Compiling JellyfinAPI GetIntrosAPI.swift
[553/727] Compiling JellyfinAPI GetItemAPI.swift
[554/727] Compiling JellyfinAPI GetItemCountsAPI.swift
[555/727] Compiling JellyfinAPI GetItemImage2API.swift
[556/727] Compiling JellyfinAPI GetItemImageAPI.swift
[557/727] Compiling JellyfinAPI GetItemImageByIndexAPI.swift
[558/727] Compiling JellyfinAPI GetItemImageInfosAPI.swift
[559/751] Compiling JellyfinAPI GetPublicUsersAPI.swift
[560/751] Compiling JellyfinAPI GetQueryFiltersAPI.swift
[561/751] Compiling JellyfinAPI GetQueryFiltersLegacyAPI.swift
[562/751] Compiling JellyfinAPI GetQuickConnectEnabledAPI.swift
[563/751] Compiling JellyfinAPI GetQuickConnectStateAPI.swift
[564/751] Compiling JellyfinAPI GetRatingImageAPI.swift
[565/751] Compiling JellyfinAPI GetRatingImagesAPI.swift
[566/751] Compiling JellyfinAPI GetRecommendedProgramsAPI.swift
[567/751] Compiling JellyfinAPI GetRecordingAPI.swift
[568/751] Compiling JellyfinAPI GetRecordingFoldersAPI.swift
[569/751] Compiling JellyfinAPI GetRecordingGroupAPI.swift
[570/751] Compiling JellyfinAPI GetRecordingGroupsAPI.swift
[571/751] Compiling JellyfinAPI GetRecordingsAPI.swift
[572/751] Compiling JellyfinAPI GetRecordingsSeriesAPI.swift
[573/751] Compiling JellyfinAPI GetRemoteImageProvidersAPI.swift
[574/751] Compiling JellyfinAPI GetRemoteImagesAPI.swift
[575/751] Compiling JellyfinAPI GetRemoteLyricsAPI.swift
[576/751] Compiling JellyfinAPI GetRemoteSubtitlesAPI.swift
[577/751] Compiling JellyfinAPI GetRepositoriesAPI.swift
[578/751] Compiling JellyfinAPI GetResumeItemsAPI.swift
[579/751] Compiling JellyfinAPI GetRootFolderAPI.swift
[580/751] Compiling JellyfinAPI GetSchedulesDirectCountriesAPI.swift
[581/751] Compiling JellyfinAPI GetSearchHintsAPI.swift
[582/751] Compiling JellyfinAPI GetSeasonsAPI.swift
[583/775] Compiling JellyfinAPI GetSeriesRemoteSearchResultsAPI.swift
[584/775] Compiling JellyfinAPI GetSeriesTimerAPI.swift
[585/775] Compiling JellyfinAPI GetSeriesTimersAPI.swift
[586/775] Compiling JellyfinAPI GetServerLogsAPI.swift
[587/775] Compiling JellyfinAPI GetSessionsAPI.swift
[588/775] Compiling JellyfinAPI GetSimilarAlbumsAPI.swift
[589/775] Compiling JellyfinAPI GetSimilarArtistsAPI.swift
[590/775] Compiling JellyfinAPI GetSimilarItemsAPI.swift
[591/775] Compiling JellyfinAPI GetSimilarMoviesAPI.swift
[592/775] Compiling JellyfinAPI GetSimilarShowsAPI.swift
[593/775] Compiling JellyfinAPI GetSimilarTrailersAPI.swift
[594/775] Compiling JellyfinAPI GetSpecialFeaturesAPI.swift
[595/775] Compiling JellyfinAPI GetSplashscreenAPI.swift
[596/775] Compiling JellyfinAPI GetStartupConfigurationAPI.swift
[597/775] Compiling JellyfinAPI GetStudioAPI.swift
[598/775] Compiling JellyfinAPI GetStudioImageAPI.swift
[599/775] Compiling JellyfinAPI GetStudioImageByIndexAPI.swift
[600/775] Compiling JellyfinAPI GetStudiosAPI.swift
[601/775] Compiling JellyfinAPI GetSubtitleAPI.swift
[602/775] Compiling JellyfinAPI GetSubtitlePlaylistAPI.swift
[603/775] Compiling JellyfinAPI GetSubtitleWithTicksAPI.swift
[604/775] Compiling JellyfinAPI GetSuggestionsAPI.swift
[605/775] Compiling JellyfinAPI GetSystemInfoAPI.swift
[606/775] Compiling JellyfinAPI GetTaskAPI.swift
[607/799] Compiling JellyfinAPI UploadSubtitleDto.swift
[608/799] Compiling JellyfinAPI UserConfiguration.swift
[609/799] Compiling JellyfinAPI UserDataChangeInfo.swift
[610/799] Compiling JellyfinAPI UserDataChangedMessage.swift
[611/799] Compiling JellyfinAPI UserDeletedMessage.swift
[612/799] Compiling JellyfinAPI UserDto.swift
[613/799] Compiling JellyfinAPI UserItemDataDto.swift
[614/799] Compiling JellyfinAPI UserPolicy.swift
[615/799] Compiling JellyfinAPI UserUpdatedMessage.swift
[616/799] Compiling JellyfinAPI UtcTimeResponse.swift
[617/799] Compiling JellyfinAPI ValidatePathDto.swift
[618/799] Compiling JellyfinAPI VersionInfo.swift
[619/799] Compiling JellyfinAPI Video3DFormat.swift
[620/799] Compiling JellyfinAPI VideoRange.swift
[621/799] Compiling JellyfinAPI VideoRangeType.swift
[622/799] Compiling JellyfinAPI VideoType.swift
[623/799] Compiling JellyfinAPI VirtualFolderInfo.swift
[624/799] Compiling JellyfinAPI WakeOnLanInfo.swift
[625/799] Compiling JellyfinAPI WebSocketMessage.swift
[626/799] Compiling JellyfinAPI XbmcMetadataOptions.swift
[627/799] Compiling JellyfinAPI XmlAttribute.swift
[628/799] Compiling JellyfinAPI AnyJSON.swift
[629/799] Compiling JellyfinAPI JellyfinClient+Version.swift
[630/799] Compiling JellyfinAPI Paths.swift
[631/799] Compiling JellyfinAPI StringCodingKey.swift
[632/823] Compiling JellyfinAPI GetItemSegmentsAPI.swift
[633/823] Compiling JellyfinAPI GetItemUserDataAPI.swift
[634/823] Compiling JellyfinAPI GetItemsAPI.swift
[635/823] Compiling JellyfinAPI GetItemsByUserIDAPI.swift
[636/823] Compiling JellyfinAPI GetKeysAPI.swift
[637/823] Compiling JellyfinAPI GetLatestChannelItemsAPI.swift
[638/823] Compiling JellyfinAPI GetLatestMediaAPI.swift
[639/823] Compiling JellyfinAPI GetLibraryOptionsInfoAPI.swift
[640/823] Compiling JellyfinAPI GetLineupsAPI.swift
[641/823] Compiling JellyfinAPI GetLiveHlsStreamAPI.swift
[642/823] Compiling JellyfinAPI GetLiveRecordingFileAPI.swift
[643/823] Compiling JellyfinAPI GetLiveStreamFileAPI.swift
[644/823] Compiling JellyfinAPI GetLiveTvChannelsAPI.swift
[645/823] Compiling JellyfinAPI GetLiveTvInfoAPI.swift
[646/823] Compiling JellyfinAPI GetLiveTvProgramsAPI.swift
[647/823] Compiling JellyfinAPI GetLocalTrailersAPI.swift
[648/823] Compiling JellyfinAPI GetLocalizationOptionsAPI.swift
[649/823] Compiling JellyfinAPI GetLogEntriesAPI.swift
[650/823] Compiling JellyfinAPI GetLogFileAPI.swift
[651/823] Compiling JellyfinAPI GetLyricsAPI.swift
[652/823] Compiling JellyfinAPI GetMasterHlsAudioPlaylistAPI.swift
[653/823] Compiling JellyfinAPI GetMasterHlsVideoPlaylistAPI.swift
[654/823] Compiling JellyfinAPI GetMediaFoldersAPI.swift
[655/823] Compiling JellyfinAPI GetMediaInfoImageAPI.swift
[656/823] Compiling JellyfinAPI InitiateAPI.swift
[657/823] Compiling JellyfinAPI InitiateQuickConnectAPI.swift
[658/823] Compiling JellyfinAPI InstallPackageAPI.swift
[659/823] Compiling JellyfinAPI LogFileAPI.swift
[660/823] Compiling JellyfinAPI MarkFavoriteItemAPI.swift
[661/823] Compiling JellyfinAPI MarkPlayedItemAPI.swift
[662/823] Compiling JellyfinAPI MarkUnplayedItemAPI.swift
[663/823] Compiling JellyfinAPI MergeVersionsAPI.swift
[664/823] Compiling JellyfinAPI MoveItemAPI.swift
[665/823] Compiling JellyfinAPI OnPlaybackProgressAPI.swift
[666/823] Compiling JellyfinAPI OnPlaybackStartAPI.swift
[667/823] Compiling JellyfinAPI OnPlaybackStoppedAPI.swift
[668/823] Compiling JellyfinAPI OpenLiveStreamAPI.swift
[669/823] Compiling JellyfinAPI PingPlaybackSessionAPI.swift
[670/823] Compiling JellyfinAPI PlayAPI.swift
[671/823] Compiling JellyfinAPI PostAddedMoviesAPI.swift
[672/823] Compiling JellyfinAPI PostAddedSeriesAPI.swift
[673/823] Compiling JellyfinAPI PostCapabilitiesAPI.swift
[674/823] Compiling JellyfinAPI PostFullCapabilitiesAPI.swift
[675/823] Compiling JellyfinAPI PostPingSystemAPI.swift
[676/823] Compiling JellyfinAPI PostUpdatedMediaAPI.swift
[677/823] Compiling JellyfinAPI PostUpdatedMoviesAPI.swift
[678/823] Compiling JellyfinAPI PostUpdatedSeriesAPI.swift
[679/823] Compiling JellyfinAPI PostUserImageAPI.swift
[680/823] Compiling JellyfinAPI GetTasksAPI.swift
[681/823] Compiling JellyfinAPI GetThemeMediaAPI.swift
[682/823] Compiling JellyfinAPI GetThemeSongsAPI.swift
[683/823] Compiling JellyfinAPI GetThemeVideosAPI.swift
[684/823] Compiling JellyfinAPI GetTimerAPI.swift
[685/823] Compiling JellyfinAPI GetTimersAPI.swift
[686/823] Compiling JellyfinAPI GetTrailerRemoteSearchResultsAPI.swift
[687/823] Compiling JellyfinAPI GetTrailersAPI.swift
[688/823] Compiling JellyfinAPI GetTrickplayHlsPlaylistAPI.swift
[689/823] Compiling JellyfinAPI GetTrickplayTileImageAPI.swift
[690/823] Compiling JellyfinAPI GetTunerHostTypesAPI.swift
[691/823] Compiling JellyfinAPI GetUniversalAudioStreamAPI.swift
[692/823] Compiling JellyfinAPI GetUpcomingEpisodesAPI.swift
[693/823] Compiling JellyfinAPI GetUserByIDAPI.swift
[694/823] Compiling JellyfinAPI GetUserImageAPI.swift
[695/823] Compiling JellyfinAPI GetUserImageByIndexAPI.swift
[696/823] Compiling JellyfinAPI GetUserViewsAPI.swift
[697/823] Compiling JellyfinAPI GetUsersAPI.swift
[698/823] Compiling JellyfinAPI GetUtcTimeAPI.swift
[699/823] Compiling JellyfinAPI GetVariantHlsAudioPlaylistAPI.swift
[700/823] Compiling JellyfinAPI GetVariantHlsVideoPlaylistAPI.swift
[701/823] Compiling JellyfinAPI GetVideoStreamAPI.swift
[702/823] Compiling JellyfinAPI GetVideoStreamByContainerAPI.swift
[703/823] Compiling JellyfinAPI GetVirtualFoldersAPI.swift
[704/823] Compiling JellyfinAPI UpdateItemUserDataAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[705/823] Compiling JellyfinAPI UpdateLibraryOptionsAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[706/823] Compiling JellyfinAPI UpdateMediaEncoderPathAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[707/823] Compiling JellyfinAPI UpdateMediaPathAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[708/823] Compiling JellyfinAPI UpdateNamedConfigurationAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[709/823] Compiling JellyfinAPI UpdatePlaylistAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[710/823] Compiling JellyfinAPI UpdatePlaylistUserAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[711/823] Compiling JellyfinAPI UpdatePluginConfigurationAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[712/823] Compiling JellyfinAPI UpdateProfileAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[713/823] Compiling JellyfinAPI UpdateSeriesTimerAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[714/823] Compiling JellyfinAPI UpdateStartupUserAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[715/823] Compiling JellyfinAPI UpdateTaskAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[716/823] Compiling JellyfinAPI UpdateTimerAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[717/823] Compiling JellyfinAPI UpdateUserAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[718/823] Compiling JellyfinAPI UpdateUserConfigurationAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[719/823] Compiling JellyfinAPI UpdateUserEasyPasswordAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[720/823] Compiling JellyfinAPI UpdateUserItemRatingAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[721/823] Compiling JellyfinAPI UpdateUserPasswordAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[722/823] Compiling JellyfinAPI UpdateUserPolicyAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[723/823] Compiling JellyfinAPI UploadCustomSplashscreenAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[724/823] Compiling JellyfinAPI UploadLyricsAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[725/823] Compiling JellyfinAPI UploadSubtitleAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[726/823] Compiling JellyfinAPI ValidatePathAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[727/823] Compiling JellyfinAPI QuickConnect.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
67 |
68 | /// The current state of the authorization flow.
69 | @Published
| `- error: unknown attribute 'Published'
70 | public private(set) var state: State = .idle
71 |
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
16 | ///
17 | /// To stop the authorization flow, typically for user cancellation, call `stop()`.
18 | public final class QuickConnect: ObservableObject {
| `- error: cannot find type 'ObservableObject' in scope
19 |
20 | // MARK: State
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
97 | public func send<T>(
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
100 | configure: ((inout URLRequest) throws -> Void)? = nil
101 | ) async throws -> Response<T> where T: Decodable {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
98 | _ request: Request<T>,
99 | delegate: URLSessionDataDelegate? = nil,
100 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
101 | ) async throws -> Response<T> where T: Decodable {
102 | try await _apiClient.send(request, delegate: delegate, configure: configure)
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
106 | public func send(
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
| `- error: cannot find type 'URLSessionDataDelegate' in scope
109 | configure: ((inout URLRequest) throws -> Void)? = nil
110 | ) async throws -> Response<Void> {
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
107 | _ request: Request<Void>,
108 | delegate: URLSessionDataDelegate? = nil,
109 | configure: ((inout URLRequest) throws -> Void)? = nil
| `- error: cannot find type 'URLRequest' in scope
110 | ) async throws -> Response<Void> {
111 | try await _apiClient.send(request, delegate: delegate, configure: configure)
[728/823] Compiling JellyfinAPI SendFullGeneralCommandAPI.swift
[729/823] Compiling JellyfinAPI SendGeneralCommandAPI.swift
[730/823] Compiling JellyfinAPI SendMessageCommandAPI.swift
[731/823] Compiling JellyfinAPI SendPlaystateCommandAPI.swift
[732/823] Compiling JellyfinAPI SendSystemCommandAPI.swift
[733/823] Compiling JellyfinAPI SetChannelMappingAPI.swift
[734/823] Compiling JellyfinAPI SetItemImageAPI.swift
[735/823] Compiling JellyfinAPI SetItemImageByIndexAPI.swift
[736/823] Compiling JellyfinAPI SetReadAPI.swift
[737/823] Compiling JellyfinAPI SetRemoteAccessAPI.swift
[738/823] Compiling JellyfinAPI SetRepositoriesAPI.swift
[739/823] Compiling JellyfinAPI SetUnreadAPI.swift
[740/823] Compiling JellyfinAPI ShutdownApplicationAPI.swift
[741/823] Compiling JellyfinAPI StartTaskAPI.swift
[742/823] Compiling JellyfinAPI StopEncodingProcessAPI.swift
[743/823] Compiling JellyfinAPI StopTaskAPI.swift
[744/823] Compiling JellyfinAPI SyncPlayBufferingAPI.swift
[745/823] Compiling JellyfinAPI SyncPlayCreateGroupAPI.swift
[746/823] Compiling JellyfinAPI SyncPlayGetGroupsAPI.swift
[747/823] Compiling JellyfinAPI SyncPlayJoinGroupAPI.swift
[748/823] Compiling JellyfinAPI SyncPlayLeaveGroupAPI.swift
[749/823] Compiling JellyfinAPI SyncPlayMovePlaylistItemAPI.swift
[750/823] Compiling JellyfinAPI SyncPlayNextItemAPI.swift
[751/823] Compiling JellyfinAPI SyncPlayPauseAPI.swift
[752/823] Compiling JellyfinAPI PostUserImageByIndexAPI.swift
[753/823] Compiling JellyfinAPI ProcessConnectionManagerControlRequestAPI.swift
[754/823] Compiling JellyfinAPI ProcessContentDirectoryControlRequestAPI.swift
[755/823] Compiling JellyfinAPI ProcessMediaReceiverRegistrarControlRequestAPI.swift
[756/823] Compiling JellyfinAPI RefreshItemAPI.swift
[757/823] Compiling JellyfinAPI RefreshLibraryAPI.swift
[758/823] Compiling JellyfinAPI RemoveFromCollectionAPI.swift
[759/823] Compiling JellyfinAPI RemoveFromPlaylistAPI.swift
[760/823] Compiling JellyfinAPI RemoveItemFromPlaylistAPI.swift
[761/823] Compiling JellyfinAPI RemoveMediaPathAPI.swift
[762/823] Compiling JellyfinAPI RemoveUserFromPlaylistAPI.swift
[763/823] Compiling JellyfinAPI RemoveUserFromSessionAPI.swift
[764/823] Compiling JellyfinAPI RemoveVirtualFolderAPI.swift
[765/823] Compiling JellyfinAPI RenameVirtualFolderAPI.swift
[766/823] Compiling JellyfinAPI ReportPlaybackProgressAPI.swift
[767/823] Compiling JellyfinAPI ReportPlaybackStartAPI.swift
[768/823] Compiling JellyfinAPI ReportPlaybackStoppedAPI.swift
[769/823] Compiling JellyfinAPI ReportSessionEndedAPI.swift
[770/823] Compiling JellyfinAPI ReportViewingAPI.swift
[771/823] Compiling JellyfinAPI ResetTunerAPI.swift
[772/823] Compiling JellyfinAPI RestartApplicationAPI.swift
[773/823] Compiling JellyfinAPI RevokeKeyAPI.swift
[774/823] Compiling JellyfinAPI SearchRemoteLyricsAPI.swift
[775/823] Compiling JellyfinAPI SearchRemoteSubtitlesAPI.swift
[776/823] Compiling JellyfinAPI SyncPlayPingAPI.swift
[777/823] Compiling JellyfinAPI SyncPlayPreviousItemAPI.swift
[778/823] Compiling JellyfinAPI SyncPlayQueueAPI.swift
[779/823] Compiling JellyfinAPI SyncPlayReadyAPI.swift
[780/823] Compiling JellyfinAPI SyncPlayRemoveFromPlaylistAPI.swift
[781/823] Compiling JellyfinAPI SyncPlaySeekAPI.swift
[782/823] Compiling JellyfinAPI SyncPlaySetIgnoreWaitAPI.swift
[783/823] Compiling JellyfinAPI SyncPlaySetNewQueueAPI.swift
[784/823] Compiling JellyfinAPI SyncPlaySetPlaylistItemAPI.swift
[785/823] Compiling JellyfinAPI SyncPlaySetRepeatModeAPI.swift
[786/823] Compiling JellyfinAPI SyncPlaySetShuffleModeAPI.swift
[787/823] Compiling JellyfinAPI SyncPlayStopAPI.swift
[788/823] Compiling JellyfinAPI SyncPlayUnpauseAPI.swift
[789/823] Compiling JellyfinAPI TmdbClientConfigurationAPI.swift
[790/823] Compiling JellyfinAPI UninstallPluginAPI.swift
[791/823] Compiling JellyfinAPI UninstallPluginByVersionAPI.swift
[792/823] Compiling JellyfinAPI UnmarkFavoriteItemAPI.swift
[793/823] Compiling JellyfinAPI UpdateConfigurationAPI.swift
[794/823] Compiling JellyfinAPI UpdateDeviceOptionsAPI.swift
[795/823] Compiling JellyfinAPI UpdateDisplayPreferencesAPI.swift
[796/823] Compiling JellyfinAPI UpdateInitialConfigurationAPI.swift
[797/823] Compiling JellyfinAPI UpdateItemAPI.swift
[798/823] Compiling JellyfinAPI UpdateItemContentTypeAPI.swift
[799/823] Compiling JellyfinAPI UpdateItemImageIndexAPI.swift
[800/823] Compiling JellyfinAPI GetWakeOnLanInfoAPI.swift
[801/823] Compiling JellyfinAPI GetYearAPI.swift
[802/823] Compiling JellyfinAPI GetYearsAPI.swift
[803/823] Compiling JellyfinAPI HeadArtistImageAPI.swift
[804/823] Compiling JellyfinAPI HeadAudioStreamAPI.swift
[805/823] Compiling JellyfinAPI HeadAudioStreamByContainerAPI.swift
[806/823] Compiling JellyfinAPI HeadGenreImageAPI.swift
[807/823] Compiling JellyfinAPI HeadGenreImageByIndexAPI.swift
[808/823] Compiling JellyfinAPI HeadItemImage2API.swift
[809/823] Compiling JellyfinAPI HeadItemImageAPI.swift
[810/823] Compiling JellyfinAPI HeadItemImageByIndexAPI.swift
[811/823] Compiling JellyfinAPI HeadMasterHlsAudioPlaylistAPI.swift
[812/823] Compiling JellyfinAPI HeadMasterHlsVideoPlaylistAPI.swift
[813/823] Compiling JellyfinAPI HeadMusicGenreImageAPI.swift
[814/823] Compiling JellyfinAPI HeadMusicGenreImageByIndexAPI.swift
[815/823] Compiling JellyfinAPI HeadPersonImageAPI.swift
[816/823] Compiling JellyfinAPI HeadPersonImageByIndexAPI.swift
[817/823] Compiling JellyfinAPI HeadStudioImageAPI.swift
[818/823] Compiling JellyfinAPI HeadStudioImageByIndexAPI.swift
[819/823] Compiling JellyfinAPI HeadUniversalAudioStreamAPI.swift
[820/823] Compiling JellyfinAPI HeadUserImageAPI.swift
[821/823] Compiling JellyfinAPI HeadUserImageByIndexAPI.swift
[822/823] Compiling JellyfinAPI HeadVideoStreamAPI.swift
[823/823] Compiling JellyfinAPI HeadVideoStreamByContainerAPI.swift
BUILD FAILURE 6.1 linux