This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 MastodonSwift with Swift 5.8 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$PWD/checkout" registry.gitlab.com/finestructure/spi-images:basic-5.8-latest swift build 2>&1

Build Log

                                   ^~~~~~~~~~~~~~~~~~~
[474/500] Compiling OAuthSwift SFAuthenticationURLHandler.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthWebViewController.swift:39:36: error: cannot find type 'OAuthViewController' in scope
open class OAuthWebViewController: OAuthViewController, OAuthSwiftURLHandlerType {
                                   ^~~~~~~~~~~~~~~~~~~
[475/500] Compiling OAuthSwift SafariURLHandler.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthWebViewController.swift:39:36: error: cannot find type 'OAuthViewController' in scope
open class OAuthWebViewController: OAuthViewController, OAuthSwiftURLHandlerType {
                                   ^~~~~~~~~~~~~~~~~~~
[476/500] Compiling OAuthSwift Int+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthWebViewController.swift:39:36: error: cannot find type 'OAuthViewController' in scope
open class OAuthWebViewController: OAuthViewController, OAuthSwiftURLHandlerType {
                                   ^~~~~~~~~~~~~~~~~~~
error: emit-module command failed with exit code 1 (use -v to see invocation)
[477/500] Emitting module OAuthSwift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:14:39: error: cannot find type 'NSExtensionContext' in scope
    fileprivate var extensionContext: NSExtensionContext
                                      ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:16:35: error: cannot find type 'NSExtensionContext' in scope
    public init(extensionContext: NSExtensionContext) {
                                  ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:20:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthSwiftOpenURLExternally.swift:24:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthWebViewController.swift:39:36: error: cannot find type 'OAuthViewController' in scope
open class OAuthWebViewController: OAuthViewController, OAuthSwiftURLHandlerType {
                                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:13:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftRequestHandle {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:92:38: error: cannot find type 'URLRequest' in scope
    open func makeRequest(_ request: URLRequest) -> OAuthSwiftHTTPRequest {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:34:46: error: cannot find type 'URLRequest' in scope
    case requestError(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:38:54: error: cannot find type 'URLRequest' in scope
    case authorizationPending(error: Error, request: URLRequest)
                                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:40:42: error: cannot find type 'URLRequest' in scope
    case slowDown(error: Error, request: URLRequest)
                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:42:46: error: cannot find type 'URLRequest' in scope
    case accessDenied(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:42:26: error: cannot find type 'URLRequest' in scope
    private var request: URLRequest?
                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:43:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var task: URLSessionTask?
                      ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:44:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var session: URLSession!
                         ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:101: error: cannot find type 'URLRequest' in scope
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                    ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:132: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                                                   ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:223:39: error: cannot find type 'URLRequest' in scope
    open func makeRequest() throws -> URLRequest {
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:227:59: error: cannot find type 'URLRequest' in scope
    open class func makeRequest(config: Config) throws -> URLRequest {
                                                          ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:244:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:267:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:263:24: error: cannot find type 'URLRequest' in scope
        request: inout URLRequest,
                       ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:317:32: error: cannot find type 'URLRequest' in scope
        public var urlRequest: URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:350:33: error: cannot find type 'URLRequest' in scope
        public init(urlRequest: URLRequest, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:450:21: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func build() -> URLSession {
                    ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:12:2: error: Objective-C interoperability is disabled
@objc
~^~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:17:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public var response: HTTPURLResponse
                         ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:19:25: error: cannot find type 'URLRequest' in scope
    public var request: URLRequest?
                        ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftURLHandlerType.swift:21:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftURLHandlerType {
~^~~~~
[478/500] Compiling OAuthSwift URL+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:23:20: error: cannot find 'arc4random_uniform' in scope
        let rand = arc4random_uniform(length)
                   ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:9: error: cannot find 'SecRandomCopyBytes' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
        ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:28: error: cannot find 'kSecRandomDefault' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
                           ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:56:21: error: cannot specialize non-generic type 'HMAC'
    let sha = Array(HMAC<SHA256>.authenticationCode(for: buffer, using: SymmetricKey(size: .bits256)))
                    ^   ~~~~~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:64:34: error: cannot infer contextual base in reference to member 'whitespaces'
        .trimmingCharacters(in: .whitespaces)
                                ~^~~~~~~~~~~
[479/500] Compiling OAuthSwift URLConvertible.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:23:20: error: cannot find 'arc4random_uniform' in scope
        let rand = arc4random_uniform(length)
                   ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:9: error: cannot find 'SecRandomCopyBytes' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
        ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:28: error: cannot find 'kSecRandomDefault' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
                           ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:56:21: error: cannot specialize non-generic type 'HMAC'
    let sha = Array(HMAC<SHA256>.authenticationCode(for: buffer, using: SymmetricKey(size: .bits256)))
                    ^   ~~~~~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:64:34: error: cannot infer contextual base in reference to member 'whitespaces'
        .trimmingCharacters(in: .whitespaces)
                                ~^~~~~~~~~~~
[480/500] Compiling OAuthSwift Utils.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:23:20: error: cannot find 'arc4random_uniform' in scope
        let rand = arc4random_uniform(length)
                   ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:9: error: cannot find 'SecRandomCopyBytes' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
        ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:28: error: cannot find 'kSecRandomDefault' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
                           ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:56:21: error: cannot specialize non-generic type 'HMAC'
    let sha = Array(HMAC<SHA256>.authenticationCode(for: buffer, using: SymmetricKey(size: .bits256)))
                    ^   ~~~~~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:64:34: error: cannot infer contextual base in reference to member 'whitespaces'
        .trimmingCharacters(in: .whitespaces)
                                ~^~~~~~~~~~~
[481/500] Compiling OAuthSwift NSError+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:62:54: error: value of type 'AnyObject' has no subscripts
                    let errorCode = jsonDic["error"]?["code"] as? Int
                                    ~~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:63:57: error: value of type 'AnyObject' has no subscripts
                    let errorSubCode = jsonDic["error"]?["error_subcode"] as? Int
                                       ~~~~~~~~~~~~~~~~~^
[482/500] Compiling OAuthSwift NotificationCenter+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:62:54: error: value of type 'AnyObject' has no subscripts
                    let errorCode = jsonDic["error"]?["code"] as? Int
                                    ~~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:63:57: error: value of type 'AnyObject' has no subscripts
                    let errorSubCode = jsonDic["error"]?["error_subcode"] as? Int
                                       ~~~~~~~~~~~~~~~~~^
[483/500] Compiling OAuthSwift OAuth1Swift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:62:54: error: value of type 'AnyObject' has no subscripts
                    let errorCode = jsonDic["error"]?["code"] as? Int
                                    ~~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:63:57: error: value of type 'AnyObject' has no subscripts
                    let errorSubCode = jsonDic["error"]?["error_subcode"] as? Int
                                       ~~~~~~~~~~~~~~~~~^
[484/500] Compiling OAuthSwift OAuth2Swift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:62:54: error: value of type 'AnyObject' has no subscripts
                    let errorCode = jsonDic["error"]?["code"] as? Int
                                    ~~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:63:57: error: value of type 'AnyObject' has no subscripts
                    let errorSubCode = jsonDic["error"]?["error_subcode"] as? Int
                                       ~~~~~~~~~~~~~~~~~^
[485/500] Compiling OAuthSwift OAuthLogProtocol.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:13:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftRequestHandle {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:92:38: error: cannot find type 'URLRequest' in scope
    open func makeRequest(_ request: URLRequest) -> OAuthSwiftHTTPRequest {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:54: error: extra argument 'request' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:45: error: missing argument for parameter 'url' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                            ^
                                            url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:54:17: note: 'init(url:method:parameters:paramsLocation:httpBody:headers:sessionFactory:)' declared here
    convenience init(url: URL, method: Method = .GET, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], sessionFactory: URLSessionFactory = .default) {
                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:39: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:55: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                                      ^~~~~~~~~~
[486/500] Compiling OAuthSwift OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:13:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftRequestHandle {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:92:38: error: cannot find type 'URLRequest' in scope
    open func makeRequest(_ request: URLRequest) -> OAuthSwiftHTTPRequest {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:54: error: extra argument 'request' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:45: error: missing argument for parameter 'url' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                            ^
                                            url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:54:17: note: 'init(url:method:parameters:paramsLocation:httpBody:headers:sessionFactory:)' declared here
    convenience init(url: URL, method: Method = .GET, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], sessionFactory: URLSessionFactory = .default) {
                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:39: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:55: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                                      ^~~~~~~~~~
[487/500] Compiling OAuthSwift OAuthSwiftClient.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:13:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftRequestHandle {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:92:38: error: cannot find type 'URLRequest' in scope
    open func makeRequest(_ request: URLRequest) -> OAuthSwiftHTTPRequest {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:54: error: extra argument 'request' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:45: error: missing argument for parameter 'url' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                            ^
                                            url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:54:17: note: 'init(url:method:parameters:paramsLocation:httpBody:headers:sessionFactory:)' declared here
    convenience init(url: URL, method: Method = .GET, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], sessionFactory: URLSessionFactory = .default) {
                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:39: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:55: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                                      ^~~~~~~~~~
[488/500] Compiling OAuthSwift OAuthSwiftCredential.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:13:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftRequestHandle {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:92:38: error: cannot find type 'URLRequest' in scope
    open func makeRequest(_ request: URLRequest) -> OAuthSwiftHTTPRequest {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:54: error: extra argument 'request' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:45: error: missing argument for parameter 'url' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                            ^
                                            url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:54:17: note: 'init(url:method:parameters:paramsLocation:httpBody:headers:sessionFactory:)' declared here
    convenience init(url: URL, method: Method = .GET, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], sessionFactory: URLSessionFactory = .default) {
                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:39: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:55: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                                      ^~~~~~~~~~
[489/500] Compiling OAuthSwift OAuthSwiftURLHandlerType.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftURLHandlerType.swift:21:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftURLHandlerType {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:23: error: cannot find 'CFStringConvertEncodingToIANACharSetName' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:64: error: cannot find 'CFStringConvertNSStringEncodingToEncoding' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[490/500] Compiling OAuthSwift SHA1.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftURLHandlerType.swift:21:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftURLHandlerType {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:23: error: cannot find 'CFStringConvertEncodingToIANACharSetName' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:64: error: cannot find 'CFStringConvertNSStringEncodingToEncoding' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[491/500] Compiling OAuthSwift String+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftURLHandlerType.swift:21:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftURLHandlerType {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:23: error: cannot find 'CFStringConvertEncodingToIANACharSetName' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:64: error: cannot find 'CFStringConvertNSStringEncodingToEncoding' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[492/500] Compiling OAuthSwift UIApplication+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftURLHandlerType.swift:21:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftURLHandlerType {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:23: error: cannot find 'CFStringConvertEncodingToIANACharSetName' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:64: error: cannot find 'CFStringConvertNSStringEncodingToEncoding' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[493/500] Compiling OAuthSwift OAuthSwiftError.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:34:46: error: cannot find type 'URLRequest' in scope
    case requestError(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:38:54: error: cannot find type 'URLRequest' in scope
    case authorizationPending(error: Error, request: URLRequest)
                                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:40:42: error: cannot find type 'URLRequest' in scope
    case slowDown(error: Error, request: URLRequest)
                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:42:46: error: cannot find type 'URLRequest' in scope
    case accessDenied(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:42:26: error: cannot find type 'URLRequest' in scope
    private var request: URLRequest?
                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:43:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var task: URLSessionTask?
                      ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:44:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var session: URLSession!
                         ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:101: error: cannot find type 'URLRequest' in scope
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                    ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:132: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                                                   ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:223:39: error: cannot find type 'URLRequest' in scope
    open func makeRequest() throws -> URLRequest {
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:227:59: error: cannot find type 'URLRequest' in scope
    open class func makeRequest(config: Config) throws -> URLRequest {
                                                          ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:244:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:267:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:263:24: error: cannot find type 'URLRequest' in scope
        request: inout URLRequest,
                       ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:317:32: error: cannot find type 'URLRequest' in scope
        public var urlRequest: URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:350:33: error: cannot find type 'URLRequest' in scope
        public init(urlRequest: URLRequest, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:450:21: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func build() -> URLSession {
                    ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:46: error: extra argument 'urlRequest' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:33: error: missing arguments for parameters 'url', 'parameters' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:74:28: error: 'nil' requires a contextual type
            self.request = nil
                           ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:141:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        guard let response = resp as? HTTPURLResponse, let responseData = data else {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:150:40: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
            if let response = resp as? HTTPURLResponse {
                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:151:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                userInfo["Response-Headers"] = response.allHeaderFields
                                               ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:159:24: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
        guard response.statusCode < 400 else {
              ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:176:96: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                localizedDescription = OAuthSwiftHTTPRequest.descriptionForHTTPStatus(response.statusCode, responseString: String(data: responseData, encoding: OAuthSwiftDataEncoding)!)
                                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:181:46: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                "Response-Headers": response.allHeaderFields,
                                    ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:188:41: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'url'
            if let urlString = response.url?.absoluteString {
                               ~~~~~~~~ ^~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:192:80: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            let error = NSError(domain: OAuthSwiftError.Domain, code: response.statusCode, userInfo: userInfo)
                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:217:18: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'cancel'
            task.cancel()
            ~~~~ ^~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:246:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:341:30: error: cannot find 'URLRequest' in scope
            var urlRequest = URLRequest(url: url)
                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:35: error: extra argument 'urlRequest' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                     ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:23: error: missing argument for parameter 'url' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                      ^
                      url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:407:40: error: 'nil' requires a contextual type
                urlComponents?.query = nil
                                       ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:451:16: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
        return URLSession(configuration: self.configuration, delegate: self.delegate, delegateQueue: self.queue)
               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:12:2: error: Objective-C interoperability is disabled
@objc
~^~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:17:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public var response: HTTPURLResponse
                         ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:19:25: error: cannot find type 'URLRequest' in scope
    public var request: URLRequest?
                        ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
[494/500] Compiling OAuthSwift OAuthSwiftHTTPRequest.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:34:46: error: cannot find type 'URLRequest' in scope
    case requestError(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:38:54: error: cannot find type 'URLRequest' in scope
    case authorizationPending(error: Error, request: URLRequest)
                                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:40:42: error: cannot find type 'URLRequest' in scope
    case slowDown(error: Error, request: URLRequest)
                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:42:46: error: cannot find type 'URLRequest' in scope
    case accessDenied(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:42:26: error: cannot find type 'URLRequest' in scope
    private var request: URLRequest?
                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:43:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var task: URLSessionTask?
                      ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:44:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var session: URLSession!
                         ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:101: error: cannot find type 'URLRequest' in scope
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                    ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:132: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                                                   ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:223:39: error: cannot find type 'URLRequest' in scope
    open func makeRequest() throws -> URLRequest {
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:227:59: error: cannot find type 'URLRequest' in scope
    open class func makeRequest(config: Config) throws -> URLRequest {
                                                          ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:244:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:267:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:263:24: error: cannot find type 'URLRequest' in scope
        request: inout URLRequest,
                       ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:317:32: error: cannot find type 'URLRequest' in scope
        public var urlRequest: URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:350:33: error: cannot find type 'URLRequest' in scope
        public init(urlRequest: URLRequest, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:450:21: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func build() -> URLSession {
                    ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:46: error: extra argument 'urlRequest' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:33: error: missing arguments for parameters 'url', 'parameters' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:74:28: error: 'nil' requires a contextual type
            self.request = nil
                           ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:141:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        guard let response = resp as? HTTPURLResponse, let responseData = data else {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:150:40: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
            if let response = resp as? HTTPURLResponse {
                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:151:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                userInfo["Response-Headers"] = response.allHeaderFields
                                               ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:159:24: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
        guard response.statusCode < 400 else {
              ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:176:96: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                localizedDescription = OAuthSwiftHTTPRequest.descriptionForHTTPStatus(response.statusCode, responseString: String(data: responseData, encoding: OAuthSwiftDataEncoding)!)
                                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:181:46: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                "Response-Headers": response.allHeaderFields,
                                    ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:188:41: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'url'
            if let urlString = response.url?.absoluteString {
                               ~~~~~~~~ ^~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:192:80: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            let error = NSError(domain: OAuthSwiftError.Domain, code: response.statusCode, userInfo: userInfo)
                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:217:18: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'cancel'
            task.cancel()
            ~~~~ ^~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:246:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:341:30: error: cannot find 'URLRequest' in scope
            var urlRequest = URLRequest(url: url)
                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:35: error: extra argument 'urlRequest' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                     ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:23: error: missing argument for parameter 'url' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                      ^
                      url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:407:40: error: 'nil' requires a contextual type
                urlComponents?.query = nil
                                       ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:451:16: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
        return URLSession(configuration: self.configuration, delegate: self.delegate, delegateQueue: self.queue)
               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:12:2: error: Objective-C interoperability is disabled
@objc
~^~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:17:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public var response: HTTPURLResponse
                         ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:19:25: error: cannot find type 'URLRequest' in scope
    public var request: URLRequest?
                        ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
[495/500] Compiling OAuthSwift OAuthSwiftMultipartData.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:34:46: error: cannot find type 'URLRequest' in scope
    case requestError(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:38:54: error: cannot find type 'URLRequest' in scope
    case authorizationPending(error: Error, request: URLRequest)
                                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:40:42: error: cannot find type 'URLRequest' in scope
    case slowDown(error: Error, request: URLRequest)
                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:42:46: error: cannot find type 'URLRequest' in scope
    case accessDenied(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:42:26: error: cannot find type 'URLRequest' in scope
    private var request: URLRequest?
                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:43:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var task: URLSessionTask?
                      ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:44:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var session: URLSession!
                         ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:101: error: cannot find type 'URLRequest' in scope
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                    ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:132: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                                                   ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:223:39: error: cannot find type 'URLRequest' in scope
    open func makeRequest() throws -> URLRequest {
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:227:59: error: cannot find type 'URLRequest' in scope
    open class func makeRequest(config: Config) throws -> URLRequest {
                                                          ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:244:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:267:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:263:24: error: cannot find type 'URLRequest' in scope
        request: inout URLRequest,
                       ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:317:32: error: cannot find type 'URLRequest' in scope
        public var urlRequest: URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:350:33: error: cannot find type 'URLRequest' in scope
        public init(urlRequest: URLRequest, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:450:21: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func build() -> URLSession {
                    ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:46: error: extra argument 'urlRequest' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:33: error: missing arguments for parameters 'url', 'parameters' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:74:28: error: 'nil' requires a contextual type
            self.request = nil
                           ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:141:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        guard let response = resp as? HTTPURLResponse, let responseData = data else {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:150:40: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
            if let response = resp as? HTTPURLResponse {
                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:151:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                userInfo["Response-Headers"] = response.allHeaderFields
                                               ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:159:24: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
        guard response.statusCode < 400 else {
              ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:176:96: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                localizedDescription = OAuthSwiftHTTPRequest.descriptionForHTTPStatus(response.statusCode, responseString: String(data: responseData, encoding: OAuthSwiftDataEncoding)!)
                                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:181:46: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                "Response-Headers": response.allHeaderFields,
                                    ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:188:41: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'url'
            if let urlString = response.url?.absoluteString {
                               ~~~~~~~~ ^~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:192:80: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            let error = NSError(domain: OAuthSwiftError.Domain, code: response.statusCode, userInfo: userInfo)
                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:217:18: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'cancel'
            task.cancel()
            ~~~~ ^~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:246:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:341:30: error: cannot find 'URLRequest' in scope
            var urlRequest = URLRequest(url: url)
                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:35: error: extra argument 'urlRequest' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                     ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:23: error: missing argument for parameter 'url' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                      ^
                      url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:407:40: error: 'nil' requires a contextual type
                urlComponents?.query = nil
                                       ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:451:16: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
        return URLSession(configuration: self.configuration, delegate: self.delegate, delegateQueue: self.queue)
               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:12:2: error: Objective-C interoperability is disabled
@objc
~^~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:17:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public var response: HTTPURLResponse
                         ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:19:25: error: cannot find type 'URLRequest' in scope
    public var request: URLRequest?
                        ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
[496/500] Compiling OAuthSwift OAuthSwiftResponse.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:34:46: error: cannot find type 'URLRequest' in scope
    case requestError(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:38:54: error: cannot find type 'URLRequest' in scope
    case authorizationPending(error: Error, request: URLRequest)
                                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:40:42: error: cannot find type 'URLRequest' in scope
    case slowDown(error: Error, request: URLRequest)
                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:42:46: error: cannot find type 'URLRequest' in scope
    case accessDenied(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:42:26: error: cannot find type 'URLRequest' in scope
    private var request: URLRequest?
                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:43:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var task: URLSessionTask?
                      ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:44:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var session: URLSession!
                         ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:101: error: cannot find type 'URLRequest' in scope
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                    ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:132: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                                                   ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:223:39: error: cannot find type 'URLRequest' in scope
    open func makeRequest() throws -> URLRequest {
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:227:59: error: cannot find type 'URLRequest' in scope
    open class func makeRequest(config: Config) throws -> URLRequest {
                                                          ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:244:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:267:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:263:24: error: cannot find type 'URLRequest' in scope
        request: inout URLRequest,
                       ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:317:32: error: cannot find type 'URLRequest' in scope
        public var urlRequest: URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:350:33: error: cannot find type 'URLRequest' in scope
        public init(urlRequest: URLRequest, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:450:21: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func build() -> URLSession {
                    ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:46: error: extra argument 'urlRequest' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:33: error: missing arguments for parameters 'url', 'parameters' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:74:28: error: 'nil' requires a contextual type
            self.request = nil
                           ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:141:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        guard let response = resp as? HTTPURLResponse, let responseData = data else {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:150:40: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
            if let response = resp as? HTTPURLResponse {
                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:151:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                userInfo["Response-Headers"] = response.allHeaderFields
                                               ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:159:24: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
        guard response.statusCode < 400 else {
              ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:176:96: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                localizedDescription = OAuthSwiftHTTPRequest.descriptionForHTTPStatus(response.statusCode, responseString: String(data: responseData, encoding: OAuthSwiftDataEncoding)!)
                                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:181:46: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                "Response-Headers": response.allHeaderFields,
                                    ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:188:41: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'url'
            if let urlString = response.url?.absoluteString {
                               ~~~~~~~~ ^~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:192:80: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            let error = NSError(domain: OAuthSwiftError.Domain, code: response.statusCode, userInfo: userInfo)
                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:217:18: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'cancel'
            task.cancel()
            ~~~~ ^~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:246:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:341:30: error: cannot find 'URLRequest' in scope
            var urlRequest = URLRequest(url: url)
                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:35: error: extra argument 'urlRequest' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                     ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:23: error: missing argument for parameter 'url' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                      ^
                      url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:407:40: error: 'nil' requires a contextual type
                urlComponents?.query = nil
                                       ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:451:16: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
        return URLSession(configuration: self.configuration, delegate: self.delegate, delegateQueue: self.queue)
               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:12:2: error: Objective-C interoperability is disabled
@objc
~^~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:17:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public var response: HTTPURLResponse
                         ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:19:25: error: cannot find type 'URLRequest' in scope
    public var request: URLRequest?
                        ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
[497/500] Compiling OAuthSwift Collection+OAuthSwift.swift
[498/500] Compiling OAuthSwift Data+OAuthSwift.swift
[499/500] Compiling OAuthSwift Dictionary+OAuthSwift.swift
[500/500] Compiling OAuthSwift HMAC.swift
[0/1] Planning build
Building for debugging...
[0/1] Compiling a_bitstr.c
[1/304] Compiling CCryptoBoringSSLShims shims.c
[2/304] Compiling f_string.c
[3/304] Compiling tasn_fre.c
[4/304] Compiling tasn_typ.c
[4/304] Compiling tasn_new.c
[6/304] Compiling tasn_enc.c
[7/304] Compiling tasn_utl.c
[8/304] Compiling tasn_dec.c
[9/304] Compiling v3_skey.c
[10/304] Compiling v3_pcons.c
[10/304] Compiling v3_pmaps.c
[11/304] Compiling v3_prn.c
[12/304] Compiling v3_pcia.c
[14/304] Compiling v3_purp.c
[15/304] Compiling v3_utl.c
[16/304] Compiling v3_pci.c
[17/304] Compiling v3_ocsp.c
[18/304] Compiling v3_int.c
[19/304] Compiling v3_lib.c
[20/304] Compiling v3_info.c
[21/304] Compiling v3_ncons.c
[22/304] Compiling v3_genn.c
[22/304] Compiling v3_ia5.c
[24/304] Compiling v3_extku.c
[25/304] Compiling v3_enum.c
[26/304] Compiling v3_bitst.c
[27/304] Compiling v3_crld.c
[28/304] Compiling v3_akeya.c
[29/304] Compiling v3_bcons.c
[29/304] Compiling v3_conf.c
[31/304] Compiling v3_cpols.c
[32/304] Compiling v3_alt.c
[33/304] Compiling v3_akey.c
[34/304] Compiling pcy_map.c
[35/304] Compiling pcy_data.c
[36/304] Compiling pcy_lib.c
[36/304] Compiling pcy_node.c
[36/304] Compiling x_x509a.c
[36/304] Compiling pcy_tree.c
[40/304] Compiling pcy_cache.c
[41/304] Compiling x_x509.c
[42/304] Compiling x_val.c
[43/304] Compiling x_req.c
[44/304] Compiling x_sig.c
[45/304] Compiling x_pkey.c
[46/304] Compiling x_spki.c
[47/304] Compiling x_pubkey.c
[48/304] Compiling x_name.c
[49/304] Compiling x_info.c
[50/304] Compiling x_exten.c
[50/304] Compiling x_attrib.c
[50/304] Compiling x_algor.c
[53/304] Compiling x509spki.c
[54/304] Compiling x_all.c
[55/304] Compiling x509rset.c
[56/304] Compiling x_crl.c
[57/304] Compiling x509name.c
[58/304] Compiling x509cset.c
[59/304] Compiling x509_txt.c
[60/304] Compiling x509_vpm.c
[61/304] Compiling x509_v3.c
[62/304] Compiling x509_set.c
[63/304] Compiling x509_trs.c
[64/304] Compiling x509_vfy.c
[65/304] Compiling x509_obj.c
[66/304] Compiling x509_req.c
[67/304] Compiling x509_def.c
[68/304] Compiling x509_d2.c
[69/304] Compiling x509_ext.c
[70/304] Compiling x509_lu.c
[71/304] Compiling x509_att.c
[72/304] Compiling x509.c
[73/304] Compiling t_x509a.c
[73/304] Compiling x509_cmp.c
[75/304] Compiling i2d_pr.c
[76/304] Compiling t_req.c
[77/304] Compiling t_crl.c
[77/304] Compiling t_x509.c
[79/304] Compiling rsa_pss.c
[80/304] Compiling by_file.c
[81/304] Compiling by_dir.c
[82/304] Compiling asn1_gen.c
[83/304] Compiling algorithm.c
[84/304] Compiling a_verify.c
[85/304] Compiling a_digest.c
[85/304] Compiling a_sign.c
[87/304] Compiling a_strex.c
[88/304] Compiling thread_win.c
[88/304] Compiling voprf.c
[90/304] Compiling thread.c
[91/304] Compiling thread_none.c
[92/304] Compiling thread_pthread.c
[93/304] Compiling trust_token.c
[94/304] Compiling stack.c
[95/304] Compiling siphash.c
[95/304] Compiling pmbtoken.c
[97/304] Compiling rsa_print.c
[98/304] Compiling rc4.c
[99/304] Compiling refcount_lock.c
[100/304] Compiling refcount_c11.c
[101/304] Compiling rsa_asn1.c
[102/304] Compiling fuchsia.c
[103/304] Compiling deterministic.c
[104/304] Compiling windows.c
[104/304] Compiling rand_extra.c
[106/304] Compiling passive.c
[107/304] Compiling forkunsafe.c
[108/304] Compiling poly1305_arm.c
[109/304] Compiling pool.c
[110/304] Compiling poly1305.c
[111/304] Compiling pkcs7.c
[112/304] Compiling poly1305_vec.c
[113/304] Compiling pkcs8.c
[114/304] Compiling p5_pbev2.c
[115/304] Compiling pkcs7_x509.c
[116/304] Compiling pem_xaux.c
[117/304] Compiling pem_x509.c
[118/304] Compiling pkcs8_x509.c
[119/304] Compiling pem_pkey.c
[120/304] Compiling pem_pk8.c
[121/304] Compiling obj_xref.c
[122/304] Compiling pem_oth.c
[123/304] Compiling pem_info.c
[124/304] Compiling lhash.c
[124/304] Compiling pem_lib.c
[125/304] Compiling mem.c
[127/304] Compiling pem_all.c
[128/304] Compiling obj.c
[129/304] Compiling hpke.c
[130/304] Compiling hkdf.c
[131/304] Compiling sha256.c
[132/304] Compiling kdf.c
[133/304] Compiling sha512.c
[134/304] Compiling sha1.c
[135/304] Compiling sha1-altivec.c
[136/304] Compiling hrss.c
[137/304] Compiling blinding.c
[138/304] Compiling self_check.c
[139/304] Compiling rsa_impl.c
[139/304] Compiling padding.c
[141/304] Compiling rand.c
[142/304] Compiling urandom.c
[143/304] Compiling fork_detect.c
[144/304] Compiling rsa.c
[145/304] Compiling polyval.c
[146/304] Compiling ctrdrbg.c
[147/304] Compiling ofb.c
[148/304] Compiling cbc.c
[149/304] Compiling gcm_nohw.c
[150/304] Compiling ctr.c
[151/304] Compiling cfb.c
[152/304] Compiling gcm.c
[153/304] Compiling fips_shared_support.c
[154/304] Compiling is_fips.c
[155/304] Compiling md5.c
[156/304] Compiling md4.c
[157/304] Compiling hmac.c
[158/304] Compiling ecdh.c
[159/304] Compiling ecdsa.c
[160/304] Compiling wnaf.c
[161/304] Compiling util.c
[162/304] Compiling simple_mul.c
[163/304] Compiling simple.c
[164/304] Compiling scalar.c
[165/304] Compiling oct.c
[166/304] Compiling felem.c
[167/304] Compiling p224-64.c
[167/304] Compiling p256.c
[169/304] Compiling ec_montgomery.c
[170/304] Compiling ec_key.c
[171/304] Compiling check.c
[172/304] Compiling digests.c
[173/304] Compiling digest.c
[174/304] Compiling ec.c
[175/304] Compiling dh.c
[176/304] Compiling e_des.c
[177/304] Compiling aead.c
[177/304] Compiling des.c
[179/304] Compiling sqrt.c
[180/304] Compiling cipher.c
[181/304] Compiling shift.c
[182/304] Compiling rsaz_exp.c
[183/304] Compiling e_aes.c
[184/304] Compiling p256-x86_64.c
[185/304] Compiling random.c
[186/304] Compiling prime.c
[187/304] Compiling montgomery_inv.c
[188/304] Compiling jacobi.c
[189/304] Compiling generic.c
[190/304] Compiling mul.c
[191/304] Compiling montgomery.c
[192/304] Compiling gcd.c
[192/304] Compiling gcd_extra.c
[194/304] Compiling div_extra.c
[195/304] Compiling cmp.c
[196/304] Compiling bytes.c
[197/304] Compiling ctx.c
[198/304] Compiling exponentiation.c
[199/304] Compiling div.c
[200/304] Compiling mode_wrappers.c
[201/304] Compiling bn.c
[202/304] Compiling add.c
[203/304] Compiling key_wrap.c
[204/304] Compiling aes.c
[205/304] Compiling ex_data.c
[206/304] Compiling aes_nohw.c
[207/304] Compiling x86_64-gcc.c
[208/304] Compiling sign.c
[209/304] Compiling pbkdf.c
[210/304] Compiling scrypt.c
[211/304] Compiling print.c
[212/304] Compiling p_x25519_asn1.c
[213/304] Compiling p_x25519.c
[214/304] Compiling p_rsa_asn1.c
[215/304] Compiling p_ed25519.c
[216/304] Compiling p_ed25519_asn1.c
[217/304] Compiling p_ec_asn1.c
[218/304] Compiling p_rsa.c
[219/304] Compiling p_dsa_asn1.c
[220/304] Compiling p_ec.c
[221/304] Compiling err_data.c
[222/304] Compiling evp_ctx.c
[223/304] Compiling digestsign.c
[224/304] Compiling evp_asn1.c
[225/304] Compiling evp.c
[226/304] Compiling engine.c
[227/304] Compiling err.c
[228/304] Compiling ecdsa_asn1.c
[229/304] Compiling ecdh_extra.c
[230/304] Compiling ec_derive.c
[231/304] Compiling hash_to_curve.c
[232/304] Compiling dsa_asn1.c
[233/304] Compiling ec_asn1.c
[234/304] Compiling digest_extra.c
[235/304] Compiling dh_asn1.c
[236/304] Compiling dsa.c
[236/304] Compiling params.c
[238/304] Compiling spake25519.c
[239/304] Compiling cpu-ppc64le.c
[240/304] Compiling crypto.c
[241/304] Compiling cpu-aarch64-win.c
[241/304] Compiling cpu-arm.c
[243/304] Compiling cpu-arm-linux.c
[244/304] Compiling cpu-intel.c
[245/304] Compiling cpu-aarch64-linux.c
[246/304] Compiling cpu-aarch64-fuchsia.c
[247/304] Compiling e_rc4.c
[248/304] Compiling cmac.c
[249/304] Compiling tls_cbc.c
[250/304] Compiling e_rc2.c
[250/304] Compiling conf.c
[250/304] Compiling e_tls.c
[253/304] Compiling e_null.c
[254/304] Compiling curve25519.c
[255/304] Compiling derive_key.c
[256/304] Compiling e_chacha20poly1305.c
[257/304] Compiling unicode.c
[258/304] Compiling chacha.c
[258/304] Compiling e_aesgcmsiv.c
[258/304] Compiling e_aesctrhmac.c
[261/304] Compiling cipher_extra.c
[262/304] Compiling e_aesccm.c
[263/304] Compiling bn_asn1.c
[264/304] Compiling asn1_compat.c
[265/304] Compiling ber.c
[266/304] Compiling cbs.c
[267/304] Compiling cbb.c
[267/304] Compiling blake2.c
[267/304] Compiling buf.c
[270/304] Compiling convert.c
[271/304] Compiling socket_helper.c
[272/304] Compiling socket.c
[273/304] Compiling printf.c
[274/304] Compiling hexdump.c
[275/304] Compiling pair.c
[276/304] Compiling fd.c
[276/304] Compiling file.c
[278/304] Compiling connect.c
[279/304] Compiling bio_mem.c
[280/304] Compiling base64.c
[281/304] Compiling f_enum.c
[282/304] Compiling f_int.c
[283/304] Compiling time_support.c
[284/304] Compiling asn1_par.c
[285/304] Compiling asn_pack.c
[286/304] Compiling bio.c
[287/304] Compiling asn1_lib.c
[287/304] Compiling a_utf8.c
[289/304] Compiling a_time.c
[290/304] Compiling a_utctm.c
[291/304] Compiling a_type.c
[292/304] Compiling a_octet.c
[292/304] Compiling a_print.c
[294/304] Compiling a_strnid.c
[295/304] Compiling a_i2d_fp.c
[296/304] Compiling a_gentm.c
[297/304] Compiling a_object.c
[298/304] Compiling a_dup.c
[299/304] Compiling a_d2i_fp.c
[300/304] Compiling a_mbstr.c
[301/304] Compiling a_int.c
[302/304] Compiling a_enum.c
[303/304] Compiling a_bool.c
[305/305] Emitting module Crypto
[308/332] Compiling OAuthSwift ASWebAuthenticationURLHandler.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:14:39: error: cannot find type 'NSExtensionContext' in scope
    fileprivate var extensionContext: NSExtensionContext
                                      ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:16:35: error: cannot find type 'NSExtensionContext' in scope
    public init(extensionContext: NSExtensionContext) {
                                  ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:20:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:21:55: error: 'nil' requires a contextual type
        extensionContext.open(url, completionHandler: nil)
                                                      ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthSwiftOpenURLExternally.swift:24:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

[309/332] Compiling OAuthSwift ExtensionContextURLHandler.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:14:39: error: cannot find type 'NSExtensionContext' in scope
    fileprivate var extensionContext: NSExtensionContext
                                      ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:16:35: error: cannot find type 'NSExtensionContext' in scope
    public init(extensionContext: NSExtensionContext) {
                                  ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:20:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:21:55: error: 'nil' requires a contextual type
        extensionContext.open(url, completionHandler: nil)
                                                      ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthSwiftOpenURLExternally.swift:24:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

[310/332] Compiling OAuthSwift OAuthSwiftOpenURLExternally.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:14:39: error: cannot find type 'NSExtensionContext' in scope
    fileprivate var extensionContext: NSExtensionContext
                                      ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:16:35: error: cannot find type 'NSExtensionContext' in scope
    public init(extensionContext: NSExtensionContext) {
                                  ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:20:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:21:55: error: 'nil' requires a contextual type
        extensionContext.open(url, completionHandler: nil)
                                                      ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthSwiftOpenURLExternally.swift:24:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

[311/332] Compiling OAuthSwift OAuthSwiftURLHandlerProxy.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:14:39: error: cannot find type 'NSExtensionContext' in scope
    fileprivate var extensionContext: NSExtensionContext
                                      ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:16:35: error: cannot find type 'NSExtensionContext' in scope
    public init(extensionContext: NSExtensionContext) {
                                  ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:20:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:21:55: error: 'nil' requires a contextual type
        extensionContext.open(url, completionHandler: nil)
                                                      ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthSwiftOpenURLExternally.swift:24:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

[312/335] Compiling OAuthSwift OAuthWebViewController.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthWebViewController.swift:39:36: error: cannot find type 'OAuthViewController' in scope
open class OAuthWebViewController: OAuthViewController, OAuthSwiftURLHandlerType {
                                   ^~~~~~~~~~~~~~~~~~~
[313/335] Compiling OAuthSwift SFAuthenticationURLHandler.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthWebViewController.swift:39:36: error: cannot find type 'OAuthViewController' in scope
open class OAuthWebViewController: OAuthViewController, OAuthSwiftURLHandlerType {
                                   ^~~~~~~~~~~~~~~~~~~
[314/335] Compiling OAuthSwift SafariURLHandler.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthWebViewController.swift:39:36: error: cannot find type 'OAuthViewController' in scope
open class OAuthWebViewController: OAuthViewController, OAuthSwiftURLHandlerType {
                                   ^~~~~~~~~~~~~~~~~~~
[315/335] Compiling OAuthSwift Int+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthWebViewController.swift:39:36: error: cannot find type 'OAuthViewController' in scope
open class OAuthWebViewController: OAuthViewController, OAuthSwiftURLHandlerType {
                                   ^~~~~~~~~~~~~~~~~~~
error: emit-module command failed with exit code 1 (use -v to see invocation)
[316/335] Emitting module OAuthSwift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:14:39: error: cannot find type 'NSExtensionContext' in scope
    fileprivate var extensionContext: NSExtensionContext
                                      ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:16:35: error: cannot find type 'NSExtensionContext' in scope
    public init(extensionContext: NSExtensionContext) {
                                  ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/ExtensionContextURLHandler.swift:20:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthSwiftOpenURLExternally.swift:24:6: error: Objective-C interoperability is disabled
    @objc open func handle(_ url: URL) {
    ~^~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Handler/OAuthWebViewController.swift:39:36: error: cannot find type 'OAuthViewController' in scope
open class OAuthWebViewController: OAuthViewController, OAuthSwiftURLHandlerType {
                                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:13:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftRequestHandle {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:92:38: error: cannot find type 'URLRequest' in scope
    open func makeRequest(_ request: URLRequest) -> OAuthSwiftHTTPRequest {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:34:46: error: cannot find type 'URLRequest' in scope
    case requestError(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:38:54: error: cannot find type 'URLRequest' in scope
    case authorizationPending(error: Error, request: URLRequest)
                                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:40:42: error: cannot find type 'URLRequest' in scope
    case slowDown(error: Error, request: URLRequest)
                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:42:46: error: cannot find type 'URLRequest' in scope
    case accessDenied(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:42:26: error: cannot find type 'URLRequest' in scope
    private var request: URLRequest?
                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:43:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var task: URLSessionTask?
                      ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:44:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var session: URLSession!
                         ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:101: error: cannot find type 'URLRequest' in scope
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                    ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:132: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                                                   ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:223:39: error: cannot find type 'URLRequest' in scope
    open func makeRequest() throws -> URLRequest {
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:227:59: error: cannot find type 'URLRequest' in scope
    open class func makeRequest(config: Config) throws -> URLRequest {
                                                          ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:244:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:267:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:263:24: error: cannot find type 'URLRequest' in scope
        request: inout URLRequest,
                       ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:317:32: error: cannot find type 'URLRequest' in scope
        public var urlRequest: URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:350:33: error: cannot find type 'URLRequest' in scope
        public init(urlRequest: URLRequest, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:450:21: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func build() -> URLSession {
                    ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:12:2: error: Objective-C interoperability is disabled
@objc
~^~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:17:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public var response: HTTPURLResponse
                         ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:19:25: error: cannot find type 'URLRequest' in scope
    public var request: URLRequest?
                        ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftURLHandlerType.swift:21:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftURLHandlerType {
~^~~~~
[317/335] Compiling OAuthSwift URL+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:23:20: error: cannot find 'arc4random_uniform' in scope
        let rand = arc4random_uniform(length)
                   ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:9: error: cannot find 'SecRandomCopyBytes' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
        ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:28: error: cannot find 'kSecRandomDefault' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
                           ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:56:21: error: cannot specialize non-generic type 'HMAC'
    let sha = Array(HMAC<SHA256>.authenticationCode(for: buffer, using: SymmetricKey(size: .bits256)))
                    ^   ~~~~~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:64:34: error: cannot infer contextual base in reference to member 'whitespaces'
        .trimmingCharacters(in: .whitespaces)
                                ~^~~~~~~~~~~
[318/335] Compiling OAuthSwift URLConvertible.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:23:20: error: cannot find 'arc4random_uniform' in scope
        let rand = arc4random_uniform(length)
                   ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:9: error: cannot find 'SecRandomCopyBytes' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
        ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:28: error: cannot find 'kSecRandomDefault' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
                           ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:56:21: error: cannot specialize non-generic type 'HMAC'
    let sha = Array(HMAC<SHA256>.authenticationCode(for: buffer, using: SymmetricKey(size: .bits256)))
                    ^   ~~~~~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:64:34: error: cannot infer contextual base in reference to member 'whitespaces'
        .trimmingCharacters(in: .whitespaces)
                                ~^~~~~~~~~~~
[319/335] Compiling OAuthSwift Utils.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:23:20: error: cannot find 'arc4random_uniform' in scope
        let rand = arc4random_uniform(length)
                   ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:9: error: cannot find 'SecRandomCopyBytes' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
        ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:34:28: error: cannot find 'kSecRandomDefault' in scope
    _ = SecRandomCopyBytes(kSecRandomDefault, buffer.count, &buffer)
                           ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:56:21: error: cannot specialize non-generic type 'HMAC'
    let sha = Array(HMAC<SHA256>.authenticationCode(for: buffer, using: SymmetricKey(size: .bits256)))
                    ^   ~~~~~~~~

/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/Utils.swift:64:34: error: cannot infer contextual base in reference to member 'whitespaces'
        .trimmingCharacters(in: .whitespaces)
                                ~^~~~~~~~~~~
[320/335] Compiling OAuthSwift NSError+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:62:54: error: value of type 'AnyObject' has no subscripts
                    let errorCode = jsonDic["error"]?["code"] as? Int
                                    ~~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:63:57: error: value of type 'AnyObject' has no subscripts
                    let errorSubCode = jsonDic["error"]?["error_subcode"] as? Int
                                       ~~~~~~~~~~~~~~~~~^
[321/335] Compiling OAuthSwift NotificationCenter+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:62:54: error: value of type 'AnyObject' has no subscripts
                    let errorCode = jsonDic["error"]?["code"] as? Int
                                    ~~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:63:57: error: value of type 'AnyObject' has no subscripts
                    let errorSubCode = jsonDic["error"]?["error_subcode"] as? Int
                                       ~~~~~~~~~~~~~~~~~^
[322/335] Compiling OAuthSwift OAuth1Swift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:62:54: error: value of type 'AnyObject' has no subscripts
                    let errorCode = jsonDic["error"]?["code"] as? Int
                                    ~~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:63:57: error: value of type 'AnyObject' has no subscripts
                    let errorSubCode = jsonDic["error"]?["error_subcode"] as? Int
                                       ~~~~~~~~~~~~~~~~~^
[323/335] Compiling OAuthSwift OAuth2Swift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:62:54: error: value of type 'AnyObject' has no subscripts
                    let errorCode = jsonDic["error"]?["code"] as? Int
                                    ~~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/NSError+OAuthSwift.swift:63:57: error: value of type 'AnyObject' has no subscripts
                    let errorSubCode = jsonDic["error"]?["error_subcode"] as? Int
                                       ~~~~~~~~~~~~~~~~~^
[324/335] Compiling OAuthSwift OAuthSwiftCredential.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:34:46: error: cannot find type 'URLRequest' in scope
    case requestError(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:38:54: error: cannot find type 'URLRequest' in scope
    case authorizationPending(error: Error, request: URLRequest)
                                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:40:42: error: cannot find type 'URLRequest' in scope
    case slowDown(error: Error, request: URLRequest)
                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:42:46: error: cannot find type 'URLRequest' in scope
    case accessDenied(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:42:26: error: cannot find type 'URLRequest' in scope
    private var request: URLRequest?
                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:43:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var task: URLSessionTask?
                      ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:44:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var session: URLSession!
                         ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:101: error: cannot find type 'URLRequest' in scope
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                    ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:132: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                                                   ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:223:39: error: cannot find type 'URLRequest' in scope
    open func makeRequest() throws -> URLRequest {
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:227:59: error: cannot find type 'URLRequest' in scope
    open class func makeRequest(config: Config) throws -> URLRequest {
                                                          ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:244:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:267:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:263:24: error: cannot find type 'URLRequest' in scope
        request: inout URLRequest,
                       ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:317:32: error: cannot find type 'URLRequest' in scope
        public var urlRequest: URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:350:33: error: cannot find type 'URLRequest' in scope
        public init(urlRequest: URLRequest, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:450:21: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func build() -> URLSession {
                    ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:46: error: extra argument 'urlRequest' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:33: error: missing arguments for parameters 'url', 'parameters' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:74:28: error: 'nil' requires a contextual type
            self.request = nil
                           ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:141:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        guard let response = resp as? HTTPURLResponse, let responseData = data else {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:150:40: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
            if let response = resp as? HTTPURLResponse {
                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:151:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                userInfo["Response-Headers"] = response.allHeaderFields
                                               ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:159:24: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
        guard response.statusCode < 400 else {
              ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:176:96: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                localizedDescription = OAuthSwiftHTTPRequest.descriptionForHTTPStatus(response.statusCode, responseString: String(data: responseData, encoding: OAuthSwiftDataEncoding)!)
                                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:181:46: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                "Response-Headers": response.allHeaderFields,
                                    ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:188:41: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'url'
            if let urlString = response.url?.absoluteString {
                               ~~~~~~~~ ^~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:192:80: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            let error = NSError(domain: OAuthSwiftError.Domain, code: response.statusCode, userInfo: userInfo)
                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:217:18: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'cancel'
            task.cancel()
            ~~~~ ^~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:246:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:341:30: error: cannot find 'URLRequest' in scope
            var urlRequest = URLRequest(url: url)
                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:35: error: extra argument 'urlRequest' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                     ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:23: error: missing argument for parameter 'url' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                      ^
                      url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:407:40: error: 'nil' requires a contextual type
                urlComponents?.query = nil
                                       ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:451:16: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
        return URLSession(configuration: self.configuration, delegate: self.delegate, delegateQueue: self.queue)
               ^~~~~~~~~~
[325/335] Compiling OAuthSwift OAuthSwiftError.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:34:46: error: cannot find type 'URLRequest' in scope
    case requestError(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:38:54: error: cannot find type 'URLRequest' in scope
    case authorizationPending(error: Error, request: URLRequest)
                                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:40:42: error: cannot find type 'URLRequest' in scope
    case slowDown(error: Error, request: URLRequest)
                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:42:46: error: cannot find type 'URLRequest' in scope
    case accessDenied(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:42:26: error: cannot find type 'URLRequest' in scope
    private var request: URLRequest?
                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:43:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var task: URLSessionTask?
                      ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:44:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var session: URLSession!
                         ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:101: error: cannot find type 'URLRequest' in scope
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                    ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:132: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                                                   ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:223:39: error: cannot find type 'URLRequest' in scope
    open func makeRequest() throws -> URLRequest {
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:227:59: error: cannot find type 'URLRequest' in scope
    open class func makeRequest(config: Config) throws -> URLRequest {
                                                          ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:244:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:267:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:263:24: error: cannot find type 'URLRequest' in scope
        request: inout URLRequest,
                       ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:317:32: error: cannot find type 'URLRequest' in scope
        public var urlRequest: URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:350:33: error: cannot find type 'URLRequest' in scope
        public init(urlRequest: URLRequest, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:450:21: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func build() -> URLSession {
                    ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:46: error: extra argument 'urlRequest' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:33: error: missing arguments for parameters 'url', 'parameters' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:74:28: error: 'nil' requires a contextual type
            self.request = nil
                           ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:141:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        guard let response = resp as? HTTPURLResponse, let responseData = data else {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:150:40: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
            if let response = resp as? HTTPURLResponse {
                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:151:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                userInfo["Response-Headers"] = response.allHeaderFields
                                               ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:159:24: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
        guard response.statusCode < 400 else {
              ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:176:96: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                localizedDescription = OAuthSwiftHTTPRequest.descriptionForHTTPStatus(response.statusCode, responseString: String(data: responseData, encoding: OAuthSwiftDataEncoding)!)
                                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:181:46: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                "Response-Headers": response.allHeaderFields,
                                    ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:188:41: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'url'
            if let urlString = response.url?.absoluteString {
                               ~~~~~~~~ ^~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:192:80: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            let error = NSError(domain: OAuthSwiftError.Domain, code: response.statusCode, userInfo: userInfo)
                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:217:18: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'cancel'
            task.cancel()
            ~~~~ ^~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:246:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:341:30: error: cannot find 'URLRequest' in scope
            var urlRequest = URLRequest(url: url)
                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:35: error: extra argument 'urlRequest' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                     ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:23: error: missing argument for parameter 'url' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                      ^
                      url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:407:40: error: 'nil' requires a contextual type
                urlComponents?.query = nil
                                       ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:451:16: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
        return URLSession(configuration: self.configuration, delegate: self.delegate, delegateQueue: self.queue)
               ^~~~~~~~~~
[326/335] Compiling OAuthSwift OAuthSwiftHTTPRequest.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:34:46: error: cannot find type 'URLRequest' in scope
    case requestError(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:38:54: error: cannot find type 'URLRequest' in scope
    case authorizationPending(error: Error, request: URLRequest)
                                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:40:42: error: cannot find type 'URLRequest' in scope
    case slowDown(error: Error, request: URLRequest)
                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftError.swift:42:46: error: cannot find type 'URLRequest' in scope
    case accessDenied(error: Error, request: URLRequest)
                                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:42:26: error: cannot find type 'URLRequest' in scope
    private var request: URLRequest?
                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:43:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var task: URLSessionTask?
                      ^~~~~~~~~~~~~~
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
public typealias URLSessionTask = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:44:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    private var session: URLSession!
                         ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:101: error: cannot find type 'URLRequest' in scope
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                    ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:117:132: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public static func completionHandler(completionHandler completion: CompletionHandler?, request: URLRequest, data: Data?, resp: URLResponse?, error: Error?) {
                                                                                                                                   ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:223:39: error: cannot find type 'URLRequest' in scope
    open func makeRequest() throws -> URLRequest {
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:227:59: error: cannot find type 'URLRequest' in scope
    open class func makeRequest(config: Config) throws -> URLRequest {
                                                          ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:244:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:267:74: error: cannot find type 'URLRequest' in scope
        paramsLocation: ParamsLocation = .authorizationHeader) throws -> URLRequest {
                                                                         ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:263:24: error: cannot find type 'URLRequest' in scope
        request: inout URLRequest,
                       ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:317:32: error: cannot find type 'URLRequest' in scope
        public var urlRequest: URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:350:33: error: cannot find type 'URLRequest' in scope
        public init(urlRequest: URLRequest, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:450:21: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func build() -> URLSession {
                    ^~~~~~~~~~
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
public typealias URLSession = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:46: error: extra argument 'urlRequest' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:59:33: error: missing arguments for parameters 'url', 'parameters' in call
        self.init(config: Config(urlRequest: request, paramsLocation: paramsLocation, sessionFactory: sessionFactory))
                                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:74:28: error: 'nil' requires a contextual type
            self.request = nil
                           ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:141:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        guard let response = resp as? HTTPURLResponse, let responseData = data else {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:150:40: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
            if let response = resp as? HTTPURLResponse {
                                       ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:151:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                userInfo["Response-Headers"] = response.allHeaderFields
                                               ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:159:24: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
        guard response.statusCode < 400 else {
              ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:176:96: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
                localizedDescription = OAuthSwiftHTTPRequest.descriptionForHTTPStatus(response.statusCode, responseString: String(data: responseData, encoding: OAuthSwiftDataEncoding)!)
                                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:181:46: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
                "Response-Headers": response.allHeaderFields,
                                    ~~~~~~~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:188:41: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'url'
            if let urlString = response.url?.absoluteString {
                               ~~~~~~~~ ^~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:192:80: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
            let error = NSError(domain: OAuthSwiftError.Domain, code: response.statusCode, userInfo: userInfo)
                                                                      ~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:217:18: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'cancel'
            task.cancel()
            ~~~~ ^~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:246:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:341:30: error: cannot find 'URLRequest' in scope
            var urlRequest = URLRequest(url: url)
                             ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:35: error: extra argument 'urlRequest' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                     ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:347:23: error: missing argument for parameter 'url' in call
            self.init(urlRequest: urlRequest, parameters: parameters, paramsLocation: paramsLocation, dataEncoding: dataEncoding, sessionFactory: sessionFactory)
                      ^
                      url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:340:16: note: 'init(url:httpMethod:httpBody:headers:timeoutInterval:httpShouldHandleCookies:parameters:paramsLocation:dataEncoding:sessionFactory:)' declared here
        public init(url: URL, httpMethod: Method = .GET, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], timeoutInterval: TimeInterval = 60, httpShouldHandleCookies: Bool = false, parameters: OAuthSwift.Parameters, paramsLocation: ParamsLocation = .authorizationHeader, dataEncoding: String.Encoding = OAuthSwiftDataEncoding, sessionFactory: URLSessionFactory = .default) {
               ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:407:40: error: 'nil' requires a contextual type
                urlComponents?.query = nil
                                       ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:451:16: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
        return URLSession(configuration: self.configuration, delegate: self.delegate, delegateQueue: self.queue)
               ^~~~~~~~~~
[327/335] Compiling OAuthSwift OAuthSwiftMultipartData.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:12:2: error: Objective-C interoperability is disabled
@objc
~^~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:17:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public var response: HTTPURLResponse
                         ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:19:25: error: cannot find type 'URLRequest' in scope
    public var request: URLRequest?
                        ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftURLHandlerType.swift:21:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftURLHandlerType {
~^~~~~
[328/335] Compiling OAuthSwift OAuthSwiftResponse.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:12:2: error: Objective-C interoperability is disabled
@objc
~^~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:17:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public var response: HTTPURLResponse
                         ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:19:25: error: cannot find type 'URLRequest' in scope
    public var request: URLRequest?
                        ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftURLHandlerType.swift:21:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftURLHandlerType {
~^~~~~
[329/335] Compiling OAuthSwift OAuthSwiftURLHandlerType.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:12:2: error: Objective-C interoperability is disabled
@objc
~^~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:65: error: cannot find type 'URLRequest' in scope
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                                                ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:17:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public var response: HTTPURLResponse
                         ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:19:25: error: cannot find type 'URLRequest' in scope
    public var request: URLRequest?
                        ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftResponse.swift:21:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    public init(data: Data, response: HTTPURLResponse, request: URLRequest?) {
                                      ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftURLHandlerType.swift:21:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftURLHandlerType {
~^~~~~
[330/335] Compiling OAuthSwift OAuthLogProtocol.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:13:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftRequestHandle {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:92:38: error: cannot find type 'URLRequest' in scope
    open func makeRequest(_ request: URLRequest) -> OAuthSwiftHTTPRequest {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:54: error: extra argument 'request' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:45: error: missing argument for parameter 'url' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                            ^
                                            url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:54:17: note: 'init(url:method:parameters:paramsLocation:httpBody:headers:sessionFactory:)' declared here
    convenience init(url: URL, method: Method = .GET, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], sessionFactory: URLSessionFactory = .default) {
                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:39: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:55: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                                      ^~~~~~~~~~
[331/335] Compiling OAuthSwift OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:13:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftRequestHandle {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:92:38: error: cannot find type 'URLRequest' in scope
    open func makeRequest(_ request: URLRequest) -> OAuthSwiftHTTPRequest {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:54: error: extra argument 'request' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:45: error: missing argument for parameter 'url' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                            ^
                                            url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:54:17: note: 'init(url:method:parameters:paramsLocation:httpBody:headers:sessionFactory:)' declared here
    convenience init(url: URL, method: Method = .GET, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], sessionFactory: URLSessionFactory = .default) {
                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:39: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:55: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                                      ^~~~~~~~~~
[332/335] Compiling OAuthSwift OAuthSwiftClient.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:13:2: error: Objective-C interoperability is disabled
@objc public protocol OAuthSwiftRequestHandle {
~^~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:436:56: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
    public var configuration = URLSessionConfiguration.default
                               ~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:439:31: error: cannot find type 'URLSessionDelegate' in scope
    public weak var delegate: URLSessionDelegate?
                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:92:38: error: cannot find type 'URLRequest' in scope
    open func makeRequest(_ request: URLRequest) -> OAuthSwiftHTTPRequest {
                                     ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:58:31: error: cannot find type 'URLRequest' in scope
    convenience init(request: URLRequest, paramsLocation: ParamsLocation = .authorizationHeader, sessionFactory: URLSessionFactory = .default) {
                              ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:54: error: extra argument 'request' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:93:45: error: missing argument for parameter 'url' in call
        let request = OAuthSwiftHTTPRequest(request: request, paramsLocation: self.paramsLocation, sessionFactory: self.sessionFactory)
                                            ^
                                            url: <#URL#>,
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftHTTPRequest.swift:54:17: note: 'init(url:method:parameters:paramsLocation:httpBody:headers:sessionFactory:)' declared here
    convenience init(url: URL, method: Method = .GET, parameters: OAuthSwift.Parameters = [:], paramsLocation: ParamsLocation = .authorizationHeader, httpBody: Data? = nil, headers: OAuthSwift.Headers = [:], sessionFactory: URLSessionFactory = .default) {
                ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:39: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                      ^~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/OAuthSwiftClient.swift:114:55: error: cannot find 'arc4random' in scope
        let boundary = "AS-boundary-\(arc4random())-\(arc4random())"
                                                      ^~~~~~~~~~
[333/335] Compiling OAuthSwift SHA1.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:23: error: cannot find 'CFStringConvertEncodingToIANACharSetName' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:64: error: cannot find 'CFStringConvertNSStringEncodingToEncoding' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[334/335] Compiling OAuthSwift String+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:23: error: cannot find 'CFStringConvertEncodingToIANACharSetName' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:64: error: cannot find 'CFStringConvertNSStringEncodingToEncoding' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[335/335] Compiling OAuthSwift UIApplication+OAuthSwift.swift
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:83:59: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(keyValueSeparator, into: &key)
                                                          ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:87:58: note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
                scanner.scanUpTo(elementSeparator, into: &value)
                                                         ^
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:23: error: cannot find 'CFStringConvertEncodingToIANACharSetName' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/OAuthSwift/Sources/String+OAuthSwift.swift:140:64: error: cannot find 'CFStringConvertNSStringEncodingToEncoding' in scope
        let charset = CFStringConvertEncodingToIANACharSetName(CFStringConvertNSStringEncodingToEncoding(self.rawValue))
                                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
BUILD FAILURE 5.8 linux
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.