The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build JellyfinAPI, reference main (106246), with Swift 5.10 for Linux on 30 Mar 2025 22:19:49 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[307/489] Compiling JellyfinAPI VideoType.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[308/489] Compiling JellyfinAPI VirtualFolderInfo.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[309/489] Compiling JellyfinAPI WakeOnLanInfo.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[310/489] Compiling JellyfinAPI WebSocketMessage.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[311/489] Compiling JellyfinAPI XbmcMetadataOptions.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[312/489] Compiling JellyfinAPI XmlAttribute.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[313/489] Compiling JellyfinAPI AnyJSON.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[314/489] Compiling JellyfinAPI Paths.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[315/489] Compiling JellyfinAPI StringCodingKey.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[316/489] Compiling JellyfinAPI JellyfinClient.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.
    private let sessionConfiguration: URLSessionConfiguration
                                      ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:30:26: error: cannot find type 'URLSessionDelegate' in scope
        sessionDelegate: URLSessionDelegate? = 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.
        sessionConfiguration: URLSessionConfiguration = .default,
                              ^~~~~~~~~~~~~~~~~~~~~~~
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
public typealias URLSessionConfiguration = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:29:58: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
        sessionConfiguration: URLSessionConfiguration = .default,
                                                        ~^~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:116:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:117:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:124:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:125:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:132:19: error: cannot find type 'URLSessionDownloadDelegate' in scope
        delegate: URLSessionDownloadDelegate? = nil
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:76: error: cannot find type 'URLRequest' in scope
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                                                                           ^~~~~~~~~~
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                                                                                                          ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/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.
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                                                              ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: warning: instance method 'client(_:willSendRequest:)' nearly matches defaulted requirement 'client(_:willSendRequest:)' of protocol 'APIClientDelegate'
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:156:17: note: move 'client(_:willSendRequest:)' to another extension to silence this warning
    public func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:20:10: note: requirement 'client(_:willSendRequest:)' declared here
    func client(_ client: APIClient, willSendRequest request: inout URLRequest) async throws
         ^
/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'
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: candidate has non-matching type '(APIClient, HTTPURLResponse, Data, URLSessionTask) throws -> ()' (aka '(APIClient, AnyObject, Data, AnyObject) throws -> ()')
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:163:17: note: move 'client(_:validateResponse:data:task:)' to another extension to silence this warning
    public func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:33:10: note: requirement 'client(_:validateResponse:data:task:)' declared here
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/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'
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: candidate has non-matching type '(APIClient, URLSessionTask, any Error, Int) async throws -> Bool' (aka '(APIClient, AnyObject, any Error, Int) async throws -> Bool')
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:173:17: note: move 'client(_:shouldRetry:error:attempts:)' to another extension to silence this warning
    public func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool {
                ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:48:10: note: requirement 'client(_:shouldRetry:error:attempts:)' declared here
    func client(_ client: APIClient, shouldRetry task: URLSessionTask, error: Error, attempts: Int) async throws -> Bool
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: error: 'Foundation.URLSessionConfiguration' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionConfiguration'
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:40:50: note: did you mean to use 'as!' to force downcast?
            configuration.sessionConfiguration = sessionConfiguration
                                                 ^
                                                                      as! URLSessionConfiguration
/host/spi-builder-workspace/Sources/JellyfinClient.swift:127:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(for: request, delegate: delegate, configure: configure)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:134:30: error: value of type 'APIClient' has no member 'download'
        try await _apiClient.download(resumeFrom: resumeData, delegate: delegate)
                  ~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:165:26: error: no exact matches in call to instance method 'client'
            try delegate.client(_apiClient, validateResponse: response, data: data, task: task)
                         ^
/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)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws
         ^
/host/spi-builder-workspace/.build/checkouts/Get/Sources/Get/APIClientDelegate.swift:89:10: note: candidate has partially matching parameter list (APIClient, validateResponse: HTTPURLResponse, data: Data, task: URLSessionTask)
    func client(_ client: APIClient, validateResponse response: HTTPURLResponse, data: Data, task: URLSessionTask) throws {
         ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:167:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            guard (200 ..< 300).contains(response.statusCode) else {
                                         ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:168:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                throw APIError.unacceptableStatusCode(response.statusCode)
                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: error: 'Foundation.URLSessionTask' (aka 'AnyObject') is not convertible to 'FoundationNetworking.URLSessionTask'
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:174:61: note: did you mean to use 'as!' to force downcast?
        try await delegate?.client(_apiClient, shouldRetry: task, error: error, attempts: attempts) ?? false
                                                            ^
                                                                 as! URLSessionTask
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:199:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:28: warning: no 'async' operations occur within 'await' expression
        let response = try await send(request).value
                           ^
/host/spi-builder-workspace/Sources/JellyfinClient.swift:222:24: warning: no calls to throwing functions occur within 'try' expression
        let response = try await send(request).value
                       ^
[317/513] Compiling JellyfinAPI CreateProfileAPI.swift
[318/513] Compiling JellyfinAPI CreateSeriesTimerAPI.swift
[319/513] Compiling JellyfinAPI CreateTimerAPI.swift
[320/513] Compiling JellyfinAPI CreateUserByNameAPI.swift
[321/513] Compiling JellyfinAPI DeleteAlternateSourcesAPI.swift
[322/513] Compiling JellyfinAPI DeleteCustomSplashscreenAPI.swift
[323/513] Compiling JellyfinAPI DeleteDeviceAPI.swift
[324/513] Compiling JellyfinAPI DeleteItemAPI.swift
[325/513] Compiling JellyfinAPI DeleteItemImageAPI.swift
[326/513] Compiling JellyfinAPI DeleteItemImageByIndexAPI.swift
[327/513] Compiling JellyfinAPI DeleteItemsAPI.swift
[328/513] Compiling JellyfinAPI DeleteListingProviderAPI.swift
[329/513] Compiling JellyfinAPI DeleteLyricsAPI.swift
[330/513] Compiling JellyfinAPI DeleteProfileAPI.swift
[331/513] Compiling JellyfinAPI DeleteRecordingAPI.swift
[332/513] Compiling JellyfinAPI DeleteSubtitleAPI.swift
[333/513] Compiling JellyfinAPI DeleteTunerHostAPI.swift
[334/513] Compiling JellyfinAPI DeleteUserAPI.swift
[335/513] Compiling JellyfinAPI DeleteUserImageAPI.swift
[336/513] Compiling JellyfinAPI DeleteUserImageByIndexAPI.swift
[337/513] Compiling JellyfinAPI DeleteUserItemRatingAPI.swift
[338/513] Compiling JellyfinAPI DisablePluginAPI.swift
[339/513] Compiling JellyfinAPI DiscoverTunersAPI.swift
[340/513] Compiling JellyfinAPI DiscvoverTunersAPI.swift
[341/513] Compiling JellyfinAPI DisplayContentAPI.swift
[342/537] Compiling JellyfinAPI OpenISO8601Formatter.swift
[343/537] Compiling JellyfinAPI AddItemToPlaylistAPI.swift
[344/537] Compiling JellyfinAPI AddListingProviderAPI.swift
[345/537] Compiling JellyfinAPI AddMediaPathAPI.swift
[346/537] Compiling JellyfinAPI AddToCollectionAPI.swift
[347/537] Compiling JellyfinAPI AddToPlaylistAPI.swift
[348/537] Compiling JellyfinAPI AddTunerHostAPI.swift
[349/537] Compiling JellyfinAPI AddUserToSessionAPI.swift
[350/537] Compiling JellyfinAPI AddVirtualFolderAPI.swift
[351/537] Compiling JellyfinAPI ApplySearchCriteriaAPI.swift
[352/537] Compiling JellyfinAPI AuthenticateUserAPI.swift
[353/537] Compiling JellyfinAPI AuthenticateUserByNameAPI.swift
[354/537] Compiling JellyfinAPI AuthenticateWithQuickConnectAPI.swift
[355/537] Compiling JellyfinAPI AuthorizeAPI.swift
[356/537] Compiling JellyfinAPI AuthorizeQuickConnectAPI.swift
[357/537] Compiling JellyfinAPI CancelPackageInstallationAPI.swift
[358/537] Compiling JellyfinAPI CancelSeriesTimerAPI.swift
[359/537] Compiling JellyfinAPI CancelTimerAPI.swift
[360/537] Compiling JellyfinAPI CloseLiveStreamAPI.swift
[361/537] Compiling JellyfinAPI CompleteWizardAPI.swift
[362/537] Compiling JellyfinAPI ConnectAPI.swift
[363/537] Compiling JellyfinAPI CreateAdminNotificationAPI.swift
[364/537] Compiling JellyfinAPI CreateCollectionAPI.swift
[365/537] Compiling JellyfinAPI CreateKeyAPI.swift
[366/537] Compiling JellyfinAPI CreatePlaylistAPI.swift
[367/561] Compiling JellyfinAPI TimerInfoDtoQueryResult.swift
[368/561] Compiling JellyfinAPI TonemappingAlgorithm.swift
[369/561] Compiling JellyfinAPI TonemappingMode.swift
[370/561] Compiling JellyfinAPI TonemappingRange.swift
[371/561] Compiling JellyfinAPI TrailerInfo.swift
[372/561] Compiling JellyfinAPI TrailerInfoRemoteSearchQuery.swift
[373/561] Compiling JellyfinAPI TranscodeReason.swift
[374/561] Compiling JellyfinAPI TranscodeSeekInfo.swift
[375/561] Compiling JellyfinAPI TranscodingInfo.swift
[376/561] Compiling JellyfinAPI TranscodingProfile.swift
[377/561] Compiling JellyfinAPI TransportStreamTimestamp.swift
[378/561] Compiling JellyfinAPI TrickplayInfo.swift
[379/561] Compiling JellyfinAPI TrickplayOptions.swift
[380/561] Compiling JellyfinAPI TrickplayScanBehavior.swift
[381/561] Compiling JellyfinAPI TunerChannelMapping.swift
[382/561] Compiling JellyfinAPI TunerHostInfo.swift
[383/561] Compiling JellyfinAPI TypeOptions.swift
[384/561] Compiling JellyfinAPI UnratedItem.swift
[385/561] Compiling JellyfinAPI UpdateLibraryOptionsDto.swift
[386/561] Compiling JellyfinAPI UpdateMediaPathRequestDto.swift
[387/561] Compiling JellyfinAPI UpdatePlaylistDto.swift
[388/561] Compiling JellyfinAPI UpdatePlaylistUserDto.swift
[389/561] Compiling JellyfinAPI UpdateUserEasyPassword.swift
[390/561] Compiling JellyfinAPI UpdateUserItemDataDto.swift
[391/561] Compiling JellyfinAPI UpdateUserPassword.swift
[392/585] Compiling JellyfinAPI GetChannelAPI.swift
[393/585] Compiling JellyfinAPI GetChannelFeaturesAPI.swift
[394/585] Compiling JellyfinAPI GetChannelItemsAPI.swift
[395/585] Compiling JellyfinAPI GetChannelMappingOptionsAPI.swift
[396/585] Compiling JellyfinAPI GetChannelsAPI.swift
[397/585] Compiling JellyfinAPI GetConfigurationAPI.swift
[398/585] Compiling JellyfinAPI GetConfigurationPagesAPI.swift
[399/585] Compiling JellyfinAPI GetConnectionManager2API.swift
[400/585] Compiling JellyfinAPI GetConnectionManager3API.swift
[401/585] Compiling JellyfinAPI GetConnectionManagerAPI.swift
[402/585] Compiling JellyfinAPI GetContentDirectory2API.swift
[403/585] Compiling JellyfinAPI GetContentDirectory3API.swift
[404/585] Compiling JellyfinAPI GetContentDirectoryAPI.swift
[405/585] Compiling JellyfinAPI GetCountriesAPI.swift
[406/585] Compiling JellyfinAPI GetCriticReviewsAPI.swift
[407/585] Compiling JellyfinAPI GetCulturesAPI.swift
[408/585] Compiling JellyfinAPI GetCurrentUserAPI.swift
[409/585] Compiling JellyfinAPI GetDashboardConfigurationPageAPI.swift
[410/585] Compiling JellyfinAPI GetDefaultDirectoryBrowserAPI.swift
[411/585] Compiling JellyfinAPI GetDefaultListingProviderAPI.swift
[412/585] Compiling JellyfinAPI GetDefaultMetadataOptionsAPI.swift
[413/585] Compiling JellyfinAPI GetDefaultProfileAPI.swift
[414/585] Compiling JellyfinAPI GetDefaultTimerAPI.swift
[415/585] Compiling JellyfinAPI GetDescriptionXml2API.swift
[416/585] Compiling JellyfinAPI DownloadRemoteImageAPI.swift
[417/585] Compiling JellyfinAPI DownloadRemoteLyricsAPI.swift
[418/585] Compiling JellyfinAPI DownloadRemoteSubtitlesAPI.swift
[419/585] Compiling JellyfinAPI EnablePluginAPI.swift
[420/585] Compiling JellyfinAPI ForgotPasswordAPI.swift
[421/585] Compiling JellyfinAPI ForgotPasswordPinAPI.swift
[422/585] Compiling JellyfinAPI GetAPI.swift
[423/585] Compiling JellyfinAPI GetAdditionalPartAPI.swift
[424/585] Compiling JellyfinAPI GetAlbumArtistsAPI.swift
[425/585] Compiling JellyfinAPI GetAllChannelFeaturesAPI.swift
[426/585] Compiling JellyfinAPI GetAncestorsAPI.swift
[427/585] Compiling JellyfinAPI GetArtistByNameAPI.swift
[428/585] Compiling JellyfinAPI GetArtistImageAPI.swift
[429/585] Compiling JellyfinAPI GetArtistsAPI.swift
[430/585] Compiling JellyfinAPI GetAttachmentAPI.swift
[431/585] Compiling JellyfinAPI GetAudioStreamAPI.swift
[432/585] Compiling JellyfinAPI GetAudioStreamByContainerAPI.swift
[433/585] Compiling JellyfinAPI GetAuthProvidersAPI.swift
[434/585] Compiling JellyfinAPI GetBitrateTestBytesAPI.swift
[435/585] Compiling JellyfinAPI GetBookRemoteSearchResultsAPI.swift
[436/585] Compiling JellyfinAPI GetBoxSetRemoteSearchResultsAPI.swift
[437/585] Compiling JellyfinAPI GetBrandingCss2API.swift
[438/585] Compiling JellyfinAPI GetBrandingCssAPI.swift
[439/585] Compiling JellyfinAPI GetBrandingOptionsAPI.swift
[440/633] Compiling JellyfinAPI GetDescriptionXmlAPI.swift
[441/633] Compiling JellyfinAPI GetDeviceInfoAPI.swift
[442/633] Compiling JellyfinAPI GetDeviceOptionsAPI.swift
[443/633] Compiling JellyfinAPI GetDevicesAPI.swift
[444/633] Compiling JellyfinAPI GetDirectoryContentsAPI.swift
[445/633] Compiling JellyfinAPI GetDisplayPreferencesAPI.swift
[446/633] Compiling JellyfinAPI GetDownloadAPI.swift
[447/633] Compiling JellyfinAPI GetDrivesAPI.swift
[448/633] Compiling JellyfinAPI GetEnabledAPI.swift
[449/633] Compiling JellyfinAPI GetEndpointInfoAPI.swift
[450/633] Compiling JellyfinAPI GetEpisodesAPI.swift
[451/633] Compiling JellyfinAPI GetExternalIDInfosAPI.swift
[452/633] Compiling JellyfinAPI GetFallbackFontAPI.swift
[453/633] Compiling JellyfinAPI GetFallbackFontListAPI.swift
[454/633] Compiling JellyfinAPI GetFileAPI.swift
[455/633] Compiling JellyfinAPI GetFirstUser2API.swift
[456/633] Compiling JellyfinAPI GetFirstUserAPI.swift
[457/633] Compiling JellyfinAPI GetGeneralImageAPI.swift
[458/633] Compiling JellyfinAPI GetGeneralImagesAPI.swift
[459/633] Compiling JellyfinAPI GetGenreAPI.swift
[460/633] Compiling JellyfinAPI GetGenreImageAPI.swift
[461/633] Compiling JellyfinAPI GetGenreImageByIndexAPI.swift
[462/633] Compiling JellyfinAPI GetGenresAPI.swift
[463/633] Compiling JellyfinAPI GetGroupingOptionsAPI.swift
[464/657] Compiling JellyfinAPI SpecialViewOptionDto.swift
[465/657] Compiling JellyfinAPI StartupConfigurationDto.swift
[466/657] Compiling JellyfinAPI StartupRemoteAccessDto.swift
[467/657] Compiling JellyfinAPI StartupUserDto.swift
[468/657] Compiling JellyfinAPI StringGroupUpdate.swift
[469/657] Compiling JellyfinAPI SubtitleDeliveryMethod.swift
[470/657] Compiling JellyfinAPI SubtitleOptions.swift
[471/657] Compiling JellyfinAPI SubtitlePlaybackMode.swift
[472/657] Compiling JellyfinAPI SubtitleProfile.swift
[473/657] Compiling JellyfinAPI SyncPlayCommandMessage.swift
[474/657] Compiling JellyfinAPI SyncPlayGroupUpdateCommandMessage.swift
[475/657] Compiling JellyfinAPI SyncPlayQueueItem.swift
[476/657] Compiling JellyfinAPI SyncPlayUserAccessType.swift
[477/657] Compiling JellyfinAPI SystemInfo.swift
[478/657] Compiling JellyfinAPI TaskCompletionStatus.swift
[479/657] Compiling JellyfinAPI TaskInfo.swift
[480/657] Compiling JellyfinAPI TaskResult.swift
[481/657] Compiling JellyfinAPI TaskState.swift
[482/657] Compiling JellyfinAPI TaskTriggerInfo.swift
[483/657] Compiling JellyfinAPI TaskTriggerType.swift
[484/657] Compiling JellyfinAPI ThemeMediaResult.swift
[485/657] Compiling JellyfinAPI TimerCancelledMessage.swift
[486/657] Compiling JellyfinAPI TimerCreatedMessage.swift
[487/657] Compiling JellyfinAPI TimerEventInfo.swift
[488/657] Compiling JellyfinAPI TimerInfoDto.swift
[489/681] Compiling JellyfinAPI GetMediaInfoImagesAPI.swift
[490/681] Compiling JellyfinAPI GetMediaReceiverRegistrar2API.swift
[491/681] Compiling JellyfinAPI GetMediaReceiverRegistrar3API.swift
[492/681] Compiling JellyfinAPI GetMediaReceiverRegistrarAPI.swift
[493/681] Compiling JellyfinAPI GetMetadataEditorInfoAPI.swift
[494/681] Compiling JellyfinAPI GetMovieRecommendationsAPI.swift
[495/681] Compiling JellyfinAPI GetMovieRemoteSearchResultsAPI.swift
[496/681] Compiling JellyfinAPI GetMusicAlbumRemoteSearchResultsAPI.swift
[497/681] Compiling JellyfinAPI GetMusicArtistRemoteSearchResultsAPI.swift
[498/681] Compiling JellyfinAPI GetMusicGenreAPI.swift
[499/681] Compiling JellyfinAPI GetMusicGenreImageAPI.swift
[500/681] Compiling JellyfinAPI GetMusicGenreImageByIndexAPI.swift
[501/681] Compiling JellyfinAPI GetMusicGenresAPI.swift
[502/681] Compiling JellyfinAPI GetMusicVideoRemoteSearchResultsAPI.swift
[503/681] Compiling JellyfinAPI GetNamedConfigurationAPI.swift
[504/681] Compiling JellyfinAPI GetNetworkSharesAPI.swift
[505/681] Compiling JellyfinAPI GetNextUpAPI.swift
[506/681] Compiling JellyfinAPI GetNotificationServicesAPI.swift
[507/681] Compiling JellyfinAPI GetNotificationTypesAPI.swift
[508/681] Compiling JellyfinAPI GetNotificationsAPI.swift
[509/681] Compiling JellyfinAPI GetNotificationsSummaryAPI.swift
[510/681] Compiling JellyfinAPI GetPackageInfoAPI.swift
[511/681] Compiling JellyfinAPI GetPackagesAPI.swift
[512/681] Compiling JellyfinAPI GetParentPathAPI.swift
[513/705] Compiling JellyfinAPI GetGuideInfoAPI.swift
[514/705] Compiling JellyfinAPI GetHlsAudioSegmentAPI.swift
[515/705] Compiling JellyfinAPI GetHlsAudioSegmentLegacyAacAPI.swift
[516/705] Compiling JellyfinAPI GetHlsAudioSegmentLegacyMp3API.swift
[517/705] Compiling JellyfinAPI GetHlsPlaylistLegacyAPI.swift
[518/705] Compiling JellyfinAPI GetHlsVideoSegmentAPI.swift
[519/705] Compiling JellyfinAPI GetHlsVideoSegmentLegacyAPI.swift
[520/705] Compiling JellyfinAPI GetIconAPI.swift
[521/705] Compiling JellyfinAPI GetIconIDAPI.swift
[522/705] Compiling JellyfinAPI GetInstantMixFromAlbumAPI.swift
[523/705] Compiling JellyfinAPI GetInstantMixFromArtists2API.swift
[524/705] Compiling JellyfinAPI GetInstantMixFromArtistsAPI.swift
[525/705] Compiling JellyfinAPI GetInstantMixFromItemAPI.swift
[526/705] Compiling JellyfinAPI GetInstantMixFromMusicGenreByIDAPI.swift
[527/705] Compiling JellyfinAPI GetInstantMixFromMusicGenreByNameAPI.swift
[528/705] Compiling JellyfinAPI GetInstantMixFromPlaylistAPI.swift
[529/705] Compiling JellyfinAPI GetInstantMixFromSongAPI.swift
[530/705] Compiling JellyfinAPI GetIntrosAPI.swift
[531/705] Compiling JellyfinAPI GetItemAPI.swift
[532/705] Compiling JellyfinAPI GetItemCountsAPI.swift
[533/705] Compiling JellyfinAPI GetItemImage2API.swift
[534/705] Compiling JellyfinAPI GetItemImageAPI.swift
[535/705] Compiling JellyfinAPI GetItemImageByIndexAPI.swift
[536/705] Compiling JellyfinAPI GetItemImageInfosAPI.swift
[537/729] Compiling JellyfinAPI GetParentalRatingsAPI.swift
[538/729] Compiling JellyfinAPI GetPasswordResetProvidersAPI.swift
[539/729] Compiling JellyfinAPI GetPersonAPI.swift
[540/729] Compiling JellyfinAPI GetPersonImageAPI.swift
[541/729] Compiling JellyfinAPI GetPersonImageByIndexAPI.swift
[542/729] Compiling JellyfinAPI GetPersonRemoteSearchResultsAPI.swift
[543/729] Compiling JellyfinAPI GetPersonsAPI.swift
[544/729] Compiling JellyfinAPI GetPhysicalPathsAPI.swift
[545/729] Compiling JellyfinAPI GetPingSystemAPI.swift
[546/729] Compiling JellyfinAPI GetPlaybackInfoAPI.swift
[547/729] Compiling JellyfinAPI GetPlaylistAPI.swift
[548/729] Compiling JellyfinAPI GetPlaylistItemsAPI.swift
[549/729] Compiling JellyfinAPI GetPlaylistUserAPI.swift
[550/729] Compiling JellyfinAPI GetPlaylistUsersAPI.swift
[551/729] Compiling JellyfinAPI GetPluginConfigurationAPI.swift
[552/729] Compiling JellyfinAPI GetPluginImageAPI.swift
[553/729] Compiling JellyfinAPI GetPluginManifestAPI.swift
[554/729] Compiling JellyfinAPI GetPluginsAPI.swift
[555/729] Compiling JellyfinAPI GetPostedPlaybackInfoAPI.swift
[556/729] Compiling JellyfinAPI GetProfileAPI.swift
[557/729] Compiling JellyfinAPI GetProfileInfosAPI.swift
[558/729] Compiling JellyfinAPI GetProgramAPI.swift
[559/729] Compiling JellyfinAPI GetProgramsAPI.swift
[560/729] Compiling JellyfinAPI GetPublicSystemInfoAPI.swift
[561/729] Compiling JellyfinAPI GetPublicUsersAPI.swift
[562/729] Compiling JellyfinAPI GetQueryFiltersAPI.swift
[563/729] Compiling JellyfinAPI GetQueryFiltersLegacyAPI.swift
[564/729] Compiling JellyfinAPI GetQuickConnectEnabledAPI.swift
[565/729] Compiling JellyfinAPI GetQuickConnectStateAPI.swift
[566/729] Compiling JellyfinAPI GetRatingImageAPI.swift
[567/729] Compiling JellyfinAPI GetRatingImagesAPI.swift
[568/729] Compiling JellyfinAPI GetRecommendedProgramsAPI.swift
[569/729] Compiling JellyfinAPI GetRecordingAPI.swift
[570/729] Compiling JellyfinAPI GetRecordingFoldersAPI.swift
[571/729] Compiling JellyfinAPI GetRecordingGroupAPI.swift
[572/729] Compiling JellyfinAPI GetRecordingGroupsAPI.swift
[573/729] Compiling JellyfinAPI GetRecordingsAPI.swift
[574/729] Compiling JellyfinAPI GetRecordingsSeriesAPI.swift
[575/729] Compiling JellyfinAPI GetRemoteImageProvidersAPI.swift
[576/729] Compiling JellyfinAPI GetRemoteImagesAPI.swift
[577/729] Compiling JellyfinAPI GetRemoteLyricsAPI.swift
[578/729] Compiling JellyfinAPI GetRemoteSubtitlesAPI.swift
[579/729] Compiling JellyfinAPI GetRepositoriesAPI.swift
[580/729] Compiling JellyfinAPI GetResumeItemsAPI.swift
[581/729] Compiling JellyfinAPI GetRootFolderAPI.swift
[582/729] Compiling JellyfinAPI GetSchedulesDirectCountriesAPI.swift
[583/729] Compiling JellyfinAPI GetSearchHintsAPI.swift
[584/729] Compiling JellyfinAPI GetSeasonsAPI.swift
[585/777] Compiling JellyfinAPI GetSeriesRemoteSearchResultsAPI.swift
[586/777] Compiling JellyfinAPI GetSeriesTimerAPI.swift
[587/777] Compiling JellyfinAPI GetSeriesTimersAPI.swift
[588/777] Compiling JellyfinAPI GetServerLogsAPI.swift
[589/777] Compiling JellyfinAPI GetSessionsAPI.swift
[590/777] Compiling JellyfinAPI GetSimilarAlbumsAPI.swift
[591/777] Compiling JellyfinAPI GetSimilarArtistsAPI.swift
[592/777] Compiling JellyfinAPI GetSimilarItemsAPI.swift
[593/777] Compiling JellyfinAPI GetSimilarMoviesAPI.swift
[594/777] Compiling JellyfinAPI GetSimilarShowsAPI.swift
[595/777] Compiling JellyfinAPI GetSimilarTrailersAPI.swift
[596/777] Compiling JellyfinAPI GetSpecialFeaturesAPI.swift
[597/777] Compiling JellyfinAPI GetSplashscreenAPI.swift
[598/777] Compiling JellyfinAPI GetStartupConfigurationAPI.swift
[599/777] Compiling JellyfinAPI GetStudioAPI.swift
[600/777] Compiling JellyfinAPI GetStudioImageAPI.swift
[601/777] Compiling JellyfinAPI GetStudioImageByIndexAPI.swift
[602/777] Compiling JellyfinAPI GetStudiosAPI.swift
[603/777] Compiling JellyfinAPI GetSubtitleAPI.swift
[604/777] Compiling JellyfinAPI GetSubtitlePlaylistAPI.swift
[605/777] Compiling JellyfinAPI GetSubtitleWithTicksAPI.swift
[606/777] Compiling JellyfinAPI GetSuggestionsAPI.swift
[607/777] Compiling JellyfinAPI GetSystemInfoAPI.swift
[608/777] Compiling JellyfinAPI GetTaskAPI.swift
[609/801] Compiling JellyfinAPI SendFullGeneralCommandAPI.swift
[610/801] Compiling JellyfinAPI SendGeneralCommandAPI.swift
[611/801] Compiling JellyfinAPI SendMessageCommandAPI.swift
[612/801] Compiling JellyfinAPI SendPlaystateCommandAPI.swift
[613/801] Compiling JellyfinAPI SendSystemCommandAPI.swift
[614/801] Compiling JellyfinAPI SetChannelMappingAPI.swift
[615/801] Compiling JellyfinAPI SetItemImageAPI.swift
[616/801] Compiling JellyfinAPI SetItemImageByIndexAPI.swift
[617/801] Compiling JellyfinAPI SetReadAPI.swift
[618/801] Compiling JellyfinAPI SetRemoteAccessAPI.swift
[619/801] Compiling JellyfinAPI SetRepositoriesAPI.swift
[620/801] Compiling JellyfinAPI SetUnreadAPI.swift
[621/801] Compiling JellyfinAPI ShutdownApplicationAPI.swift
[622/801] Compiling JellyfinAPI StartTaskAPI.swift
[623/801] Compiling JellyfinAPI StopEncodingProcessAPI.swift
[624/801] Compiling JellyfinAPI StopTaskAPI.swift
[625/801] Compiling JellyfinAPI SyncPlayBufferingAPI.swift
[626/801] Compiling JellyfinAPI SyncPlayCreateGroupAPI.swift
[627/801] Compiling JellyfinAPI SyncPlayGetGroupsAPI.swift
[628/801] Compiling JellyfinAPI SyncPlayJoinGroupAPI.swift
[629/801] Compiling JellyfinAPI SyncPlayLeaveGroupAPI.swift
[630/801] Compiling JellyfinAPI SyncPlayMovePlaylistItemAPI.swift
[631/801] Compiling JellyfinAPI SyncPlayNextItemAPI.swift
[632/801] Compiling JellyfinAPI SyncPlayPauseAPI.swift
[633/825] Compiling JellyfinAPI GetItemSegmentsAPI.swift
[634/825] Compiling JellyfinAPI GetItemUserDataAPI.swift
[635/825] Compiling JellyfinAPI GetItemsAPI.swift
[636/825] Compiling JellyfinAPI GetItemsByUserIDAPI.swift
[637/825] Compiling JellyfinAPI GetKeysAPI.swift
[638/825] Compiling JellyfinAPI GetLatestChannelItemsAPI.swift
[639/825] Compiling JellyfinAPI GetLatestMediaAPI.swift
[640/825] Compiling JellyfinAPI GetLibraryOptionsInfoAPI.swift
[641/825] Compiling JellyfinAPI GetLineupsAPI.swift
[642/825] Compiling JellyfinAPI GetLiveHlsStreamAPI.swift
[643/825] Compiling JellyfinAPI GetLiveRecordingFileAPI.swift
[644/825] Compiling JellyfinAPI GetLiveStreamFileAPI.swift
[645/825] Compiling JellyfinAPI GetLiveTvChannelsAPI.swift
[646/825] Compiling JellyfinAPI GetLiveTvInfoAPI.swift
[647/825] Compiling JellyfinAPI GetLiveTvProgramsAPI.swift
[648/825] Compiling JellyfinAPI GetLocalTrailersAPI.swift
[649/825] Compiling JellyfinAPI GetLocalizationOptionsAPI.swift
[650/825] Compiling JellyfinAPI GetLogEntriesAPI.swift
[651/825] Compiling JellyfinAPI GetLogFileAPI.swift
[652/825] Compiling JellyfinAPI GetLyricsAPI.swift
[653/825] Compiling JellyfinAPI GetMasterHlsAudioPlaylistAPI.swift
[654/825] Compiling JellyfinAPI GetMasterHlsVideoPlaylistAPI.swift
[655/825] Compiling JellyfinAPI GetMediaFoldersAPI.swift
[656/825] Compiling JellyfinAPI GetMediaInfoImageAPI.swift
[657/825] Compiling JellyfinAPI InitiateAPI.swift
[658/825] Compiling JellyfinAPI InitiateQuickConnectAPI.swift
[659/825] Compiling JellyfinAPI InstallPackageAPI.swift
[660/825] Compiling JellyfinAPI LogFileAPI.swift
[661/825] Compiling JellyfinAPI MarkFavoriteItemAPI.swift
[662/825] Compiling JellyfinAPI MarkPlayedItemAPI.swift
[663/825] Compiling JellyfinAPI MarkUnplayedItemAPI.swift
[664/825] Compiling JellyfinAPI MergeVersionsAPI.swift
[665/825] Compiling JellyfinAPI MoveItemAPI.swift
[666/825] Compiling JellyfinAPI OnPlaybackProgressAPI.swift
[667/825] Compiling JellyfinAPI OnPlaybackStartAPI.swift
[668/825] Compiling JellyfinAPI OnPlaybackStoppedAPI.swift
[669/825] Compiling JellyfinAPI OpenLiveStreamAPI.swift
[670/825] Compiling JellyfinAPI PingPlaybackSessionAPI.swift
[671/825] Compiling JellyfinAPI PlayAPI.swift
[672/825] Compiling JellyfinAPI PostAddedMoviesAPI.swift
[673/825] Compiling JellyfinAPI PostAddedSeriesAPI.swift
[674/825] Compiling JellyfinAPI PostCapabilitiesAPI.swift
[675/825] Compiling JellyfinAPI PostFullCapabilitiesAPI.swift
[676/825] Compiling JellyfinAPI PostPingSystemAPI.swift
[677/825] Compiling JellyfinAPI PostUpdatedMediaAPI.swift
[678/825] Compiling JellyfinAPI PostUpdatedMoviesAPI.swift
[679/825] Compiling JellyfinAPI PostUpdatedSeriesAPI.swift
[680/825] Compiling JellyfinAPI PostUserImageAPI.swift
[681/825] Compiling JellyfinAPI SyncPlayPingAPI.swift
[682/825] Compiling JellyfinAPI SyncPlayPreviousItemAPI.swift
[683/825] Compiling JellyfinAPI SyncPlayQueueAPI.swift
[684/825] Compiling JellyfinAPI SyncPlayReadyAPI.swift
[685/825] Compiling JellyfinAPI SyncPlayRemoveFromPlaylistAPI.swift
[686/825] Compiling JellyfinAPI SyncPlaySeekAPI.swift
[687/825] Compiling JellyfinAPI SyncPlaySetIgnoreWaitAPI.swift
[688/825] Compiling JellyfinAPI SyncPlaySetNewQueueAPI.swift
[689/825] Compiling JellyfinAPI SyncPlaySetPlaylistItemAPI.swift
[690/825] Compiling JellyfinAPI SyncPlaySetRepeatModeAPI.swift
[691/825] Compiling JellyfinAPI SyncPlaySetShuffleModeAPI.swift
[692/825] Compiling JellyfinAPI SyncPlayStopAPI.swift
[693/825] Compiling JellyfinAPI SyncPlayUnpauseAPI.swift
[694/825] Compiling JellyfinAPI TmdbClientConfigurationAPI.swift
[695/825] Compiling JellyfinAPI UninstallPluginAPI.swift
[696/825] Compiling JellyfinAPI UninstallPluginByVersionAPI.swift
[697/825] Compiling JellyfinAPI UnmarkFavoriteItemAPI.swift
[698/825] Compiling JellyfinAPI UpdateConfigurationAPI.swift
[699/825] Compiling JellyfinAPI UpdateDeviceOptionsAPI.swift
[700/825] Compiling JellyfinAPI UpdateDisplayPreferencesAPI.swift
[701/825] Compiling JellyfinAPI UpdateInitialConfigurationAPI.swift
[702/825] Compiling JellyfinAPI UpdateItemAPI.swift
[703/825] Compiling JellyfinAPI UpdateItemContentTypeAPI.swift
[704/825] Compiling JellyfinAPI UpdateItemImageIndexAPI.swift
[705/825] Compiling JellyfinAPI PostUserImageByIndexAPI.swift
[706/825] Compiling JellyfinAPI ProcessConnectionManagerControlRequestAPI.swift
[707/825] Compiling JellyfinAPI ProcessContentDirectoryControlRequestAPI.swift
[708/825] Compiling JellyfinAPI ProcessMediaReceiverRegistrarControlRequestAPI.swift
[709/825] Compiling JellyfinAPI RefreshItemAPI.swift
[710/825] Compiling JellyfinAPI RefreshLibraryAPI.swift
[711/825] Compiling JellyfinAPI RemoveFromCollectionAPI.swift
[712/825] Compiling JellyfinAPI RemoveFromPlaylistAPI.swift
[713/825] Compiling JellyfinAPI RemoveItemFromPlaylistAPI.swift
[714/825] Compiling JellyfinAPI RemoveMediaPathAPI.swift
[715/825] Compiling JellyfinAPI RemoveUserFromPlaylistAPI.swift
[716/825] Compiling JellyfinAPI RemoveUserFromSessionAPI.swift
[717/825] Compiling JellyfinAPI RemoveVirtualFolderAPI.swift
[718/825] Compiling JellyfinAPI RenameVirtualFolderAPI.swift
[719/825] Compiling JellyfinAPI ReportPlaybackProgressAPI.swift
[720/825] Compiling JellyfinAPI ReportPlaybackStartAPI.swift
[721/825] Compiling JellyfinAPI ReportPlaybackStoppedAPI.swift
[722/825] Compiling JellyfinAPI ReportSessionEndedAPI.swift
[723/825] Compiling JellyfinAPI ReportViewingAPI.swift
[724/825] Compiling JellyfinAPI ResetTunerAPI.swift
[725/825] Compiling JellyfinAPI RestartApplicationAPI.swift
[726/825] Compiling JellyfinAPI RevokeKeyAPI.swift
[727/825] Compiling JellyfinAPI SearchRemoteLyricsAPI.swift
[728/825] Compiling JellyfinAPI SearchRemoteSubtitlesAPI.swift
[729/825] Compiling JellyfinAPI UpdateItemUserDataAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[730/825] Compiling JellyfinAPI UpdateLibraryOptionsAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[731/825] Compiling JellyfinAPI UpdateMediaEncoderPathAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[732/825] Compiling JellyfinAPI UpdateMediaPathAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[733/825] Compiling JellyfinAPI UpdateNamedConfigurationAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[734/825] Compiling JellyfinAPI UpdatePlaylistAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[735/825] Compiling JellyfinAPI UpdatePlaylistUserAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[736/825] Compiling JellyfinAPI UpdatePluginConfigurationAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[737/825] Compiling JellyfinAPI UpdateProfileAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[738/825] Compiling JellyfinAPI UpdateSeriesTimerAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[739/825] Compiling JellyfinAPI UpdateStartupUserAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[740/825] Compiling JellyfinAPI UpdateTaskAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[741/825] Compiling JellyfinAPI UpdateTimerAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[742/825] Compiling JellyfinAPI UpdateUserAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[743/825] Compiling JellyfinAPI UpdateUserConfigurationAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[744/825] Compiling JellyfinAPI UpdateUserEasyPasswordAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[745/825] Compiling JellyfinAPI UpdateUserItemRatingAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[746/825] Compiling JellyfinAPI UpdateUserPasswordAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[747/825] Compiling JellyfinAPI UpdateUserPolicyAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[748/825] Compiling JellyfinAPI UploadCustomSplashscreenAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[749/825] Compiling JellyfinAPI UploadLyricsAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[750/825] Compiling JellyfinAPI UploadSubtitleAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[751/825] Compiling JellyfinAPI ValidatePathAPI.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[752/825] Compiling JellyfinAPI QuickConnect.swift
/host/spi-builder-workspace/Sources/QuickConnect.swift:69:6: error: unknown attribute 'Published'
    @Published
     ^
/host/spi-builder-workspace/Sources/QuickConnect.swift:18:34: error: cannot find type 'ObservableObject' in scope
public final class QuickConnect: ObservableObject {
                                 ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:99:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:100:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:108:19: error: cannot find type 'URLSessionDataDelegate' in scope
        delegate: URLSessionDataDelegate? = nil,
                  ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/JellyfinClient.swift:109:28: error: cannot find type 'URLRequest' in scope
        configure: ((inout URLRequest) throws -> Void)? = nil
                           ^~~~~~~~~~
[753/825] Compiling JellyfinAPI SeriesInfo.swift
[754/825] Compiling JellyfinAPI SeriesInfoRemoteSearchQuery.swift
[755/825] Compiling JellyfinAPI SeriesStatus.swift
[756/825] Compiling JellyfinAPI SeriesTimerCancelledMessage.swift
[757/825] Compiling JellyfinAPI SeriesTimerCreatedMessage.swift
[758/825] Compiling JellyfinAPI SeriesTimerInfoDto.swift
[759/825] Compiling JellyfinAPI SeriesTimerInfoDtoQueryResult.swift
[760/825] Compiling JellyfinAPI ServerConfiguration.swift
[761/825] Compiling JellyfinAPI ServerDiscoveryInfo.swift
[762/825] Compiling JellyfinAPI ServerRestartingMessage.swift
[763/825] Compiling JellyfinAPI ServerShuttingDownMessage.swift
[764/825] Compiling JellyfinAPI SessionInfo.swift
[765/825] Compiling JellyfinAPI SessionInfoDto.swift
[766/825] Compiling JellyfinAPI SessionMessageType.swift
[767/825] Compiling JellyfinAPI SessionUserInfo.swift
[768/825] Compiling JellyfinAPI SessionsMessage.swift
[769/825] Compiling JellyfinAPI SessionsStartMessage.swift
[770/825] Compiling JellyfinAPI SessionsStopMessage.swift
[771/825] Compiling JellyfinAPI SetChannelMappingDto.swift
[772/825] Compiling JellyfinAPI SetPlaylistItemRequestDto.swift
[773/825] Compiling JellyfinAPI SetRepeatModeRequestDto.swift
[774/825] Compiling JellyfinAPI SetShuffleModeRequestDto.swift
[775/825] Compiling JellyfinAPI SongInfo.swift
[776/825] Compiling JellyfinAPI SortOrder.swift
[777/825] Compiling JellyfinAPI SpecialFeatureType.swift
[778/825] Compiling JellyfinAPI GetTasksAPI.swift
[779/825] Compiling JellyfinAPI GetThemeMediaAPI.swift
[780/825] Compiling JellyfinAPI GetThemeSongsAPI.swift
[781/825] Compiling JellyfinAPI GetThemeVideosAPI.swift
[782/825] Compiling JellyfinAPI GetTimerAPI.swift
[783/825] Compiling JellyfinAPI GetTimersAPI.swift
[784/825] Compiling JellyfinAPI GetTrailerRemoteSearchResultsAPI.swift
[785/825] Compiling JellyfinAPI GetTrailersAPI.swift
[786/825] Compiling JellyfinAPI GetTrickplayHlsPlaylistAPI.swift
[787/825] Compiling JellyfinAPI GetTrickplayTileImageAPI.swift
[788/825] Compiling JellyfinAPI GetTunerHostTypesAPI.swift
[789/825] Compiling JellyfinAPI GetUniversalAudioStreamAPI.swift
[790/825] Compiling JellyfinAPI GetUpcomingEpisodesAPI.swift
[791/825] Compiling JellyfinAPI GetUserByIDAPI.swift
[792/825] Compiling JellyfinAPI GetUserImageAPI.swift
[793/825] Compiling JellyfinAPI GetUserImageByIndexAPI.swift
[794/825] Compiling JellyfinAPI GetUserViewsAPI.swift
[795/825] Compiling JellyfinAPI GetUsersAPI.swift
[796/825] Compiling JellyfinAPI GetUtcTimeAPI.swift
[797/825] Compiling JellyfinAPI GetVariantHlsAudioPlaylistAPI.swift
[798/825] Compiling JellyfinAPI GetVariantHlsVideoPlaylistAPI.swift
[799/825] Compiling JellyfinAPI GetVideoStreamAPI.swift
[800/825] Compiling JellyfinAPI GetVideoStreamByContainerAPI.swift
[801/825] Compiling JellyfinAPI GetVirtualFoldersAPI.swift
[802/825] Compiling JellyfinAPI GetWakeOnLanInfoAPI.swift
[803/825] Compiling JellyfinAPI GetYearAPI.swift
[804/825] Compiling JellyfinAPI GetYearsAPI.swift
[805/825] Compiling JellyfinAPI HeadArtistImageAPI.swift
[806/825] Compiling JellyfinAPI HeadAudioStreamAPI.swift
[807/825] Compiling JellyfinAPI HeadAudioStreamByContainerAPI.swift
[808/825] Compiling JellyfinAPI HeadGenreImageAPI.swift
[809/825] Compiling JellyfinAPI HeadGenreImageByIndexAPI.swift
[810/825] Compiling JellyfinAPI HeadItemImage2API.swift
[811/825] Compiling JellyfinAPI HeadItemImageAPI.swift
[812/825] Compiling JellyfinAPI HeadItemImageByIndexAPI.swift
[813/825] Compiling JellyfinAPI HeadMasterHlsAudioPlaylistAPI.swift
[814/825] Compiling JellyfinAPI HeadMasterHlsVideoPlaylistAPI.swift
[815/825] Compiling JellyfinAPI HeadMusicGenreImageAPI.swift
[816/825] Compiling JellyfinAPI HeadMusicGenreImageByIndexAPI.swift
[817/825] Compiling JellyfinAPI HeadPersonImageAPI.swift
[818/825] Compiling JellyfinAPI HeadPersonImageByIndexAPI.swift
[819/825] Compiling JellyfinAPI HeadStudioImageAPI.swift
[820/825] Compiling JellyfinAPI HeadStudioImageByIndexAPI.swift
[821/825] Compiling JellyfinAPI HeadUniversalAudioStreamAPI.swift
[822/825] Compiling JellyfinAPI HeadUserImageAPI.swift
[823/825] Compiling JellyfinAPI HeadUserImageByIndexAPI.swift
[824/825] Compiling JellyfinAPI HeadVideoStreamAPI.swift
[825/825] Compiling JellyfinAPI HeadVideoStreamByContainerAPI.swift
error: fatalError
BUILD FAILURE 5.10 linux