The Swift Package Index logo.Swift Package Index

Build Information

Failed to build IBMSwiftSDKCore, reference main (652ff3), with Swift 6.3 for Wasm on 12 Apr 2026 19:52:10 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/IBM/swift-sdk-core.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/IBM/swift-sdk-core
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 652ff3c build(version): ensure proper versionging is followed
Cloned https://github.com/IBM/swift-sdk-core.git
Revision (git rev-parse @):
652ff3cc98af7adb8130863fd7de7ab1e734e795
SUCCESS checkout https://github.com/IBM/swift-sdk-core.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/IBM/swift-sdk-core.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/15] Compiling IBMSwiftSDKCore RestError.swift
[4/16] Compiling IBMSwiftSDKCore ConfigBasedAuthenticatorFactory.swift
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:42:19: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 40 |     var headers: [String: String]?
 41 |
 42 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                   `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 43 |
 44 |     private let apiKey: String
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:42:69: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 40 |     var headers: [String: String]?
 41 |
 42 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                                                                     `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 43 |
 44 |     private let apiKey: String
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:32: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:74: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                                                          `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:51:32: error: cannot find 'DispatchQueue' in scope
 49 |
 50 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 51 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                `- error: cannot find 'DispatchQueue' in scope
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:51:110: error: cannot infer contextual base in reference to member 'background'
 49 |
 50 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 51 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                                                                                              `- error: cannot infer contextual base in reference to member 'background'
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:54:30: error: cannot find 'DispatchQueue' in scope
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 54 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                              `- error: cannot find 'DispatchQueue' in scope
 55 |
 56 |     init(apiKey: String, url: String? = nil) {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:54:106: error: cannot infer contextual base in reference to member 'userInitiated'
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 54 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                                                                                                          `- error: cannot infer contextual base in reference to member 'userInitiated'
 55 |
 56 |     init(apiKey: String, url: String? = nil) {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:111:62: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
109 |     }
110 |
111 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
    |                                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
112 |         var errorMessage: String?
113 |         var metadata = [String: Any]()
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:121:48: error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
119 |                 errorMessage = message
120 |             } else {
121 |                 errorMessage = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                                `- error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
122 |             }
123 |         } catch {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:121:88: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |                 errorMessage = message
120 |             } else {
121 |                 errorMessage = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                                                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
122 |             }
123 |         } catch {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:125:44: error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
123 |         } catch {
124 |             metadata["response"] = data
125 |             errorMessage = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                            `- error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
126 |         }
127 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:125:84: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
123 |         } catch {
124 |             metadata["response"] = data
125 |             errorMessage = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                                                                    `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
126 |         }
127 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:128:52: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
126 |         }
127 |
128 |         return RestError.http(statusCode: response.statusCode, message: errorMessage, metadata: metadata)
    |                                                    `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
129 |     }
130 |
[5/16] Compiling IBMSwiftSDKCore IAMAuthenticator.swift
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:42:19: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 40 |     var headers: [String: String]?
 41 |
 42 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                   `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 43 |
 44 |     private let apiKey: String
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:42:69: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 40 |     var headers: [String: String]?
 41 |
 42 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                                                                     `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 43 |
 44 |     private let apiKey: String
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:32: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:74: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                                                          `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:51:32: error: cannot find 'DispatchQueue' in scope
 49 |
 50 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 51 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                `- error: cannot find 'DispatchQueue' in scope
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:51:110: error: cannot infer contextual base in reference to member 'background'
 49 |
 50 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 51 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                                                                                              `- error: cannot infer contextual base in reference to member 'background'
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:54:30: error: cannot find 'DispatchQueue' in scope
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 54 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                              `- error: cannot find 'DispatchQueue' in scope
 55 |
 56 |     init(apiKey: String, url: String? = nil) {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:54:106: error: cannot infer contextual base in reference to member 'userInitiated'
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 54 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                                                                                                          `- error: cannot infer contextual base in reference to member 'userInitiated'
 55 |
 56 |     init(apiKey: String, url: String? = nil) {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:111:62: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
109 |     }
110 |
111 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
    |                                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
112 |         var errorMessage: String?
113 |         var metadata = [String: Any]()
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:121:48: error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
119 |                 errorMessage = message
120 |             } else {
121 |                 errorMessage = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                                `- error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
122 |             }
123 |         } catch {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:121:88: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
119 |                 errorMessage = message
120 |             } else {
121 |                 errorMessage = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                                                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
122 |             }
123 |         } catch {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:125:44: error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
123 |         } catch {
124 |             metadata["response"] = data
125 |             errorMessage = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                            `- error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
126 |         }
127 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:125:84: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
123 |         } catch {
124 |             metadata["response"] = data
125 |             errorMessage = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                                                                    `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
126 |         }
127 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:128:52: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
126 |         }
127 |
128 |         return RestError.http(statusCode: response.statusCode, message: errorMessage, metadata: metadata)
    |                                                    `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
129 |     }
130 |
[6/16] Compiling IBMSwiftSDKCore RestResponse.swift
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestResponse.swift:50:29: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
48 |     }
49 |
50 |     internal init(response: HTTPURLResponse) {
   |                             `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
51 |         var headers: [String: String] = [:]
52 |         for (key, value) in response.allHeaderFields {
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestResponse.swift:52:38: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
50 |     internal init(response: HTTPURLResponse) {
51 |         var headers: [String: String] = [:]
52 |         for (key, value) in response.allHeaderFields {
   |                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
53 |             if let key = key as? String,
54 |                 let value = value as? String {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestResponse.swift:58:40: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
56 |             }
57 |         }
58 |         self.init(statusCode: response.statusCode, headers: headers)
   |                                        `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
59 |     }
60 | }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[7/16] Emitting module IBMSwiftSDKCore
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:32: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:74: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                                                          `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:58:39: error: cannot find type 'URLRequest' in scope
 56 |     }
 57 |
 58 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 59 |         completionHandler(request, nil)
 60 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:58:81: error: cannot find type 'URLRequest' in scope
 56 |     }
 57 |
 58 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
 59 |         completionHandler(request, nil)
 60 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:79:39: error: cannot find type 'URLRequest' in scope
 77 |     }
 78 |
 79 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 80 |         var request = request
 81 |         request.addValue("Basic \(encodedCredentials)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:79:81: error: cannot find type 'URLRequest' in scope
 77 |     }
 78 |
 79 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
 80 |         var request = request
 81 |         request.addValue("Basic \(encodedCredentials)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:104:46: error: cannot find type 'URLRequest' in scope
102 |     }
103 |
104 |     public static func authenticate(request: URLRequest, bearerToken: String, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                              `- error: cannot find type 'URLRequest' in scope
105 |         var request = request
106 |         request.addValue("Bearer \(bearerToken)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:104:109: error: cannot find type 'URLRequest' in scope
102 |     }
103 |
104 |     public static func authenticate(request: URLRequest, bearerToken: String, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                                             `- error: cannot find type 'URLRequest' in scope
105 |         var request = request
106 |         request.addValue("Bearer \(bearerToken)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:114:39: error: cannot find type 'URLRequest' in scope
112 |     }
113 |
114 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
115 |         BearerTokenAuthenticator.authenticate(request: request, bearerToken: bearerToken, completionHandler: completionHandler)
116 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:114:81: error: cannot find type 'URLRequest' in scope
112 |     }
113 |
114 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
115 |         BearerTokenAuthenticator.authenticate(request: request, bearerToken: bearerToken, completionHandler: completionHandler)
116 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:131:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
129 |
130 |     // Declare session to allow unit tests to insert mocks
131 |     var session: URLSession {get set}
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
132 |
133 |     #if !os(Linux)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:180:39: error: cannot find type 'URLRequest' in scope
178 |     }
179 |
180 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
181 |         tokenSource.getToken { token, error in
182 |             if let token = token {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:180:81: error: cannot find type 'URLRequest' in scope
178 |     }
179 |
180 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
181 |         tokenSource.getToken { token, error in
182 |             if let token = token {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:35:19: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 33 |     var headers: [String: String]?
 34 |
 35 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                   `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 36 |
 37 |     private var clientAuthenticator: Authenticator
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:35:69: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 33 |     var headers: [String: String]?
 34 |
 35 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                                                                     `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 36 |
 37 |     private var clientAuthenticator: Authenticator
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:57:32: error: cannot find 'DispatchQueue' in scope
 55 |
 56 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 57 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                `- error: cannot find 'DispatchQueue' in scope
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:57:110: error: cannot infer contextual base in reference to member 'background'
 55 |
 56 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 57 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                                                                                              `- error: cannot infer contextual base in reference to member 'background'
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:60:30: error: cannot find 'DispatchQueue' in scope
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 60 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                              `- error: cannot find 'DispatchQueue' in scope
 61 |
 62 |     let urlSuffix = "/v1/preauth/validateAuth"
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:60:106: error: cannot infer contextual base in reference to member 'userInitiated'
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 60 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                                                                                                          `- error: cannot infer contextual base in reference to member 'userInitiated'
 61 |
 62 |     let urlSuffix = "/v1/preauth/validateAuth"
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:114:62: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
112 |     }
113 |
114 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
    |                                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
115 |         let message = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
116 |         return RestError.http(statusCode: response.statusCode, message: message, metadata: nil)
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:42:19: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 40 |     var headers: [String: String]?
 41 |
 42 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                   `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 43 |
 44 |     private let apiKey: String
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:42:69: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 40 |     var headers: [String: String]?
 41 |
 42 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                                                                     `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 43 |
 44 |     private let apiKey: String
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:51:32: error: cannot find 'DispatchQueue' in scope
 49 |
 50 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 51 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                `- error: cannot find 'DispatchQueue' in scope
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:51:110: error: cannot infer contextual base in reference to member 'background'
 49 |
 50 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 51 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                                                                                              `- error: cannot infer contextual base in reference to member 'background'
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:54:30: error: cannot find 'DispatchQueue' in scope
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 54 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                              `- error: cannot find 'DispatchQueue' in scope
 55 |
 56 |     init(apiKey: String, url: String? = nil) {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:54:106: error: cannot infer contextual base in reference to member 'userInitiated'
 52 |
 53 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 54 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                                                                                                          `- error: cannot infer contextual base in reference to member 'userInitiated'
 55 |
 56 |     init(apiKey: String, url: String? = nil) {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/IAMAuthenticator.swift:111:62: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
109 |     }
110 |
111 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
    |                                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
112 |         var errorMessage: String?
113 |         var metadata = [String: Any]()
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:23:30: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 |     /// Allow network requests to a server without verification of the server certificate.
22 |     /// **IMPORTANT**: This should ONLY be used if truly intended, as it is unsafe otherwise.
23 |     static func session() -> URLSession {
   |                              `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
24 |         return URLSession(configuration: .default, delegate: AllowInsecureConnectionDelegate(), delegateQueue: nil)
25 |     }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:33:50: error: cannot find type 'URLSessionDelegate' in scope
31 |  **IMPORTANT**: This can potentially cause dangerous security breaches, so use only if you are certain that you have taken necessary precautions.
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
   |                                                  `- error: cannot find type 'URLSessionDelegate' in scope
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:34:135: error: 'AuthChallengeDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
   |                                                                                                                                       `- error: 'AuthChallengeDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:34:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
   |                                `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:34:66: error: 'URLAuthenticationChallenge' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
   |                                                                  `- error: 'URLAuthenticationChallenge' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
Foundation.URLAuthenticationChallenge:2:18: note: 'URLAuthenticationChallenge' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLAuthenticationChallenge = AnyObject
  |                  `- note: 'URLAuthenticationChallenge' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:30:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 28 |     public static var userAgent: String?
 29 |
 30 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 31 |     internal var authenticator: Authenticator
 32 |     internal var errorResponseDecoder: ((Data, HTTPURLResponse) -> RestError)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:32:48: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |     private let session: URLSession
 31 |     internal var authenticator: Authenticator
 32 |     internal var errorResponseDecoder: ((Data, HTTPURLResponse) -> RestError)
    |                                                `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |     internal var method: String
 34 |     internal var url: String
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:40:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |
 39 |     public init(
 40 |         session: URLSession,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |         authenticator: Authenticator,
 42 |         errorResponseDecoder: @escaping ((Data, HTTPURLResponse) -> RestError),
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:42:49: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 40 |         session: URLSession,
 41 |         authenticator: Authenticator,
 42 |         errorResponseDecoder: @escaping ((Data, HTTPURLResponse) -> RestError),
    |                                                 `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 43 |         method: String,
 44 |         url: String,
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:59:29: error: cannot find type 'URLRequest' in scope
 57 |     }
 58 |
 59 |     private var urlRequest: URLRequest? {
    |                             `- error: cannot find type 'URLRequest' in scope
 60 |         guard var components = URLComponents(string: url) else {
 61 |             return nil
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:90:46: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 88 |      */
 89 |     internal func execute(
 90 |         completionHandler: @escaping (Data?, HTTPURLResponse?, RestError?) -> Void)
    |                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 91 |     {
 92 |         // add authentication credentials to the request
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:300:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
298 |     public func download(
299 |         to destination: URL,
300 |         completionHandler: @escaping (HTTPURLResponse?, RestError?) -> Void)
    |                                       `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
301 |     {
302 |         // add authentication credentials to the request
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestResponse.swift:50:29: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
48 |     }
49 |
50 |     internal init(response: HTTPURLResponse) {
   |                             `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
51 |         var headers: [String: String] = [:]
52 |         for (key, value) in response.allHeaderFields {
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
[8/16] Compiling IBMSwiftSDKCore Authentication.swift
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:32: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:74: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                                                          `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:58:39: error: cannot find type 'URLRequest' in scope
 56 |     }
 57 |
 58 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 59 |         completionHandler(request, nil)
 60 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:58:81: error: cannot find type 'URLRequest' in scope
 56 |     }
 57 |
 58 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
 59 |         completionHandler(request, nil)
 60 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:79:39: error: cannot find type 'URLRequest' in scope
 77 |     }
 78 |
 79 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 80 |         var request = request
 81 |         request.addValue("Basic \(encodedCredentials)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:79:81: error: cannot find type 'URLRequest' in scope
 77 |     }
 78 |
 79 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
 80 |         var request = request
 81 |         request.addValue("Basic \(encodedCredentials)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:104:46: error: cannot find type 'URLRequest' in scope
102 |     }
103 |
104 |     public static func authenticate(request: URLRequest, bearerToken: String, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                              `- error: cannot find type 'URLRequest' in scope
105 |         var request = request
106 |         request.addValue("Bearer \(bearerToken)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:104:109: error: cannot find type 'URLRequest' in scope
102 |     }
103 |
104 |     public static func authenticate(request: URLRequest, bearerToken: String, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                                             `- error: cannot find type 'URLRequest' in scope
105 |         var request = request
106 |         request.addValue("Bearer \(bearerToken)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:114:39: error: cannot find type 'URLRequest' in scope
112 |     }
113 |
114 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
115 |         BearerTokenAuthenticator.authenticate(request: request, bearerToken: bearerToken, completionHandler: completionHandler)
116 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:114:81: error: cannot find type 'URLRequest' in scope
112 |     }
113 |
114 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
115 |         BearerTokenAuthenticator.authenticate(request: request, bearerToken: bearerToken, completionHandler: completionHandler)
116 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:131:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
129 |
130 |     // Declare session to allow unit tests to insert mocks
131 |     var session: URLSession {get set}
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
132 |
133 |     #if !os(Linux)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:180:39: error: cannot find type 'URLRequest' in scope
178 |     }
179 |
180 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
181 |         tokenSource.getToken { token, error in
182 |             if let token = token {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:180:81: error: cannot find type 'URLRequest' in scope
178 |     }
179 |
180 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
181 |         tokenSource.getToken { token, error in
182 |             if let token = token {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:59:36: error: 'nil' requires a contextual type
 57 |
 58 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
 59 |         completionHandler(request, nil)
    |                                    `- error: 'nil' requires a contextual type
 60 |     }
 61 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:82:36: error: 'nil' requires a contextual type
 80 |         var request = request
 81 |         request.addValue("Basic \(encodedCredentials)", forHTTPHeaderField: "Authorization")
 82 |         completionHandler(request, nil)
    |                                    `- error: 'nil' requires a contextual type
 83 |     }
 84 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:107:36: error: 'nil' requires a contextual type
105 |         var request = request
106 |         request.addValue("Bearer \(bearerToken)", forHTTPHeaderField: "Authorization")
107 |         completionHandler(request, nil)
    |                                    `- error: 'nil' requires a contextual type
108 |     }
109 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:35:19: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 33 |     var headers: [String: String]?
 34 |
 35 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                   `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 36 |
 37 |     private var clientAuthenticator: Authenticator
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:35:69: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 33 |     var headers: [String: String]?
 34 |
 35 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                                                                     `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 36 |
 37 |     private var clientAuthenticator: Authenticator
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:57:32: error: cannot find 'DispatchQueue' in scope
 55 |
 56 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 57 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                `- error: cannot find 'DispatchQueue' in scope
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:57:110: error: cannot infer contextual base in reference to member 'background'
 55 |
 56 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 57 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                                                                                              `- error: cannot infer contextual base in reference to member 'background'
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:60:30: error: cannot find 'DispatchQueue' in scope
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 60 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                              `- error: cannot find 'DispatchQueue' in scope
 61 |
 62 |     let urlSuffix = "/v1/preauth/validateAuth"
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:60:106: error: cannot infer contextual base in reference to member 'userInitiated'
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 60 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                                                                                                          `- error: cannot infer contextual base in reference to member 'userInitiated'
 61 |
 62 |     let urlSuffix = "/v1/preauth/validateAuth"
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:114:62: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
112 |     }
113 |
114 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
    |                                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
115 |         let message = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
116 |         return RestError.http(statusCode: response.statusCode, message: message, metadata: nil)
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:115:39: error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
113 |
114 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
115 |         let message = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                       `- error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
116 |         return RestError.http(statusCode: response.statusCode, message: message, metadata: nil)
117 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:115:79: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
113 |
114 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
115 |         let message = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |         return RestError.http(statusCode: response.statusCode, message: message, metadata: nil)
117 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:116:52: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
114 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
115 |         let message = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
116 |         return RestError.http(statusCode: response.statusCode, message: message, metadata: nil)
    |                                                    `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
117 |     }
118 |
[9/16] Compiling IBMSwiftSDKCore CloudPakForDataAuthenticator.swift
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:32: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:74: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                                                          `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:58:39: error: cannot find type 'URLRequest' in scope
 56 |     }
 57 |
 58 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 59 |         completionHandler(request, nil)
 60 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:58:81: error: cannot find type 'URLRequest' in scope
 56 |     }
 57 |
 58 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
 59 |         completionHandler(request, nil)
 60 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:79:39: error: cannot find type 'URLRequest' in scope
 77 |     }
 78 |
 79 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 80 |         var request = request
 81 |         request.addValue("Basic \(encodedCredentials)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:79:81: error: cannot find type 'URLRequest' in scope
 77 |     }
 78 |
 79 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
 80 |         var request = request
 81 |         request.addValue("Basic \(encodedCredentials)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:104:46: error: cannot find type 'URLRequest' in scope
102 |     }
103 |
104 |     public static func authenticate(request: URLRequest, bearerToken: String, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                              `- error: cannot find type 'URLRequest' in scope
105 |         var request = request
106 |         request.addValue("Bearer \(bearerToken)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:104:109: error: cannot find type 'URLRequest' in scope
102 |     }
103 |
104 |     public static func authenticate(request: URLRequest, bearerToken: String, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                                             `- error: cannot find type 'URLRequest' in scope
105 |         var request = request
106 |         request.addValue("Bearer \(bearerToken)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:114:39: error: cannot find type 'URLRequest' in scope
112 |     }
113 |
114 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
115 |         BearerTokenAuthenticator.authenticate(request: request, bearerToken: bearerToken, completionHandler: completionHandler)
116 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:114:81: error: cannot find type 'URLRequest' in scope
112 |     }
113 |
114 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
115 |         BearerTokenAuthenticator.authenticate(request: request, bearerToken: bearerToken, completionHandler: completionHandler)
116 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:131:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
129 |
130 |     // Declare session to allow unit tests to insert mocks
131 |     var session: URLSession {get set}
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
132 |
133 |     #if !os(Linux)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:180:39: error: cannot find type 'URLRequest' in scope
178 |     }
179 |
180 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                       `- error: cannot find type 'URLRequest' in scope
181 |         tokenSource.getToken { token, error in
182 |             if let token = token {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:180:81: error: cannot find type 'URLRequest' in scope
178 |     }
179 |
180 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
    |                                                                                 `- error: cannot find type 'URLRequest' in scope
181 |         tokenSource.getToken { token, error in
182 |             if let token = token {
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:59:36: error: 'nil' requires a contextual type
 57 |
 58 |     public func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void) {
 59 |         completionHandler(request, nil)
    |                                    `- error: 'nil' requires a contextual type
 60 |     }
 61 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:82:36: error: 'nil' requires a contextual type
 80 |         var request = request
 81 |         request.addValue("Basic \(encodedCredentials)", forHTTPHeaderField: "Authorization")
 82 |         completionHandler(request, nil)
    |                                    `- error: 'nil' requires a contextual type
 83 |     }
 84 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:107:36: error: 'nil' requires a contextual type
105 |         var request = request
106 |         request.addValue("Bearer \(bearerToken)", forHTTPHeaderField: "Authorization")
107 |         completionHandler(request, nil)
    |                                    `- error: 'nil' requires a contextual type
108 |     }
109 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:35:19: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 33 |     var headers: [String: String]?
 34 |
 35 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                   `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 36 |
 37 |     private var clientAuthenticator: Authenticator
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:35:69: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 33 |     var headers: [String: String]?
 34 |
 35 |     var session = URLSession(configuration: URLSessionConfiguration.default)
    |                                                                     `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 36 |
 37 |     private var clientAuthenticator: Authenticator
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:57:32: error: cannot find 'DispatchQueue' in scope
 55 |
 56 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 57 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                `- error: cannot find 'DispatchQueue' in scope
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:57:110: error: cannot infer contextual base in reference to member 'background'
 55 |
 56 |     // Dispatch queue for token refresh.  This is a serial queue (the default), so only one refresh at a time
 57 |     private var refreshQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-refresh", qos: .background)
    |                                                                                                              `- error: cannot infer contextual base in reference to member 'background'
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:60:30: error: cannot find 'DispatchQueue' in scope
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 60 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                              `- error: cannot find 'DispatchQueue' in scope
 61 |
 62 |     let urlSuffix = "/v1/preauth/validateAuth"
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:60:106: error: cannot infer contextual base in reference to member 'userInitiated'
 58 |
 59 |     // Dispatch queue for token fetch.  This is a serial queue (the default), so only one fetch at a time
 60 |     private var fetchQueue = DispatchQueue.init(label: "com.ibm.cloud.swift-sdk-core.token-fetch", qos: .userInitiated)
    |                                                                                                          `- error: cannot infer contextual base in reference to member 'userInitiated'
 61 |
 62 |     let urlSuffix = "/v1/preauth/validateAuth"
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:114:62: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
112 |     }
113 |
114 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
    |                                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
115 |         let message = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
116 |         return RestError.http(statusCode: response.statusCode, message: message, metadata: nil)
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:115:39: error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
113 |
114 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
115 |         let message = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                       `- error: type 'HTTPURLResponse' (aka 'AnyObject') has no member 'localizedString'
116 |         return RestError.http(statusCode: response.statusCode, message: message, metadata: nil)
117 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:115:79: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
113 |
114 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
115 |         let message = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
    |                                                                               `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
116 |         return RestError.http(statusCode: response.statusCode, message: message, metadata: nil)
117 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/CloudPakForDataAuthenticator.swift:116:52: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
114 |     internal func errorResponseDecoder(data: Data, response: HTTPURLResponse) -> RestError {
115 |         let message = HTTPURLResponse.localizedString(forStatusCode: response.statusCode)
116 |         return RestError.http(statusCode: response.statusCode, message: message, metadata: nil)
    |                                                    `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
117 |     }
118 |
[10/16] Compiling IBMSwiftSDKCore JSON.swift
[11/16] Compiling IBMSwiftSDKCore MultipartFormData.swift
[12/16] Compiling IBMSwiftSDKCore CodableExtensions.swift
[13/16] Compiling IBMSwiftSDKCore CredentialUtils.swift
[14/16] Compiling IBMSwiftSDKCore InsecureConnection.swift
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:23:30: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 |     /// Allow network requests to a server without verification of the server certificate.
22 |     /// **IMPORTANT**: This should ONLY be used if truly intended, as it is unsafe otherwise.
23 |     static func session() -> URLSession {
   |                              `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
24 |         return URLSession(configuration: .default, delegate: AllowInsecureConnectionDelegate(), delegateQueue: nil)
25 |     }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:33:50: error: cannot find type 'URLSessionDelegate' in scope
31 |  **IMPORTANT**: This can potentially cause dangerous security breaches, so use only if you are certain that you have taken necessary precautions.
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
   |                                                  `- error: cannot find type 'URLSessionDelegate' in scope
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:34:135: error: 'AuthChallengeDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
   |                                                                                                                                       `- error: 'AuthChallengeDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:34:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
   |                                `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:34:66: error: 'URLAuthenticationChallenge' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
   |                                                                  `- error: 'URLAuthenticationChallenge' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
Foundation.URLAuthenticationChallenge:2:18: note: 'URLAuthenticationChallenge' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLAuthenticationChallenge = AnyObject
  |                  `- note: 'URLAuthenticationChallenge' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:24:16: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
22 |     /// **IMPORTANT**: This should ONLY be used if truly intended, as it is unsafe otherwise.
23 |     static func session() -> URLSession {
24 |         return URLSession(configuration: .default, delegate: AllowInsecureConnectionDelegate(), delegateQueue: nil)
   |                `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
25 |     }
26 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:24:43: error: cannot infer contextual base in reference to member 'default'
22 |     /// **IMPORTANT**: This should ONLY be used if truly intended, as it is unsafe otherwise.
23 |     static func session() -> URLSession {
24 |         return URLSession(configuration: .default, delegate: AllowInsecureConnectionDelegate(), delegateQueue: nil)
   |                                           `- error: cannot infer contextual base in reference to member 'default'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:24:112: error: 'nil' requires a contextual type
22 |     /// **IMPORTANT**: This should ONLY be used if truly intended, as it is unsafe otherwise.
23 |     static func session() -> URLSession {
24 |         return URLSession(configuration: .default, delegate: AllowInsecureConnectionDelegate(), delegateQueue: nil)
   |                                                                                                                `- error: 'nil' requires a contextual type
25 |     }
26 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:35:26: error: 'URLCredential' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
   |                          `- error: 'URLCredential' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
37 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:35:57: error: value of type 'URLAuthenticationChallenge' (aka 'AnyObject') has no member 'protectionSpace'
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
   |                                                         `- error: value of type 'URLAuthenticationChallenge' (aka 'AnyObject') has no member 'protectionSpace'
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
37 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:36:38: error: type 'URLSession' (aka 'AnyObject') has no member 'AuthChallengeDisposition'
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
   |                                      `- error: type 'URLSession' (aka 'AnyObject') has no member 'AuthChallengeDisposition'
37 |     }
38 | }
[15/16] Compiling IBMSwiftSDKCore JWT.swift
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:23:30: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 |     /// Allow network requests to a server without verification of the server certificate.
22 |     /// **IMPORTANT**: This should ONLY be used if truly intended, as it is unsafe otherwise.
23 |     static func session() -> URLSession {
   |                              `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
24 |         return URLSession(configuration: .default, delegate: AllowInsecureConnectionDelegate(), delegateQueue: nil)
25 |     }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:33:50: error: cannot find type 'URLSessionDelegate' in scope
31 |  **IMPORTANT**: This can potentially cause dangerous security breaches, so use only if you are certain that you have taken necessary precautions.
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
   |                                                  `- error: cannot find type 'URLSessionDelegate' in scope
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:34:135: error: 'AuthChallengeDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
   |                                                                                                                                       `- error: 'AuthChallengeDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:34:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
   |                                `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:34:66: error: 'URLAuthenticationChallenge' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |  */
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
   |                                                                  `- error: 'URLAuthenticationChallenge' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
Foundation.URLAuthenticationChallenge:2:18: note: 'URLAuthenticationChallenge' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLAuthenticationChallenge = AnyObject
  |                  `- note: 'URLAuthenticationChallenge' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:24:16: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
22 |     /// **IMPORTANT**: This should ONLY be used if truly intended, as it is unsafe otherwise.
23 |     static func session() -> URLSession {
24 |         return URLSession(configuration: .default, delegate: AllowInsecureConnectionDelegate(), delegateQueue: nil)
   |                `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
25 |     }
26 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:24:43: error: cannot infer contextual base in reference to member 'default'
22 |     /// **IMPORTANT**: This should ONLY be used if truly intended, as it is unsafe otherwise.
23 |     static func session() -> URLSession {
24 |         return URLSession(configuration: .default, delegate: AllowInsecureConnectionDelegate(), delegateQueue: nil)
   |                                           `- error: cannot infer contextual base in reference to member 'default'
25 |     }
26 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:24:112: error: 'nil' requires a contextual type
22 |     /// **IMPORTANT**: This should ONLY be used if truly intended, as it is unsafe otherwise.
23 |     static func session() -> URLSession {
24 |         return URLSession(configuration: .default, delegate: AllowInsecureConnectionDelegate(), delegateQueue: nil)
   |                                                                                                                `- error: 'nil' requires a contextual type
25 |     }
26 | }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:35:26: error: 'URLCredential' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
   |                          `- error: 'URLCredential' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
37 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:35:57: error: value of type 'URLAuthenticationChallenge' (aka 'AnyObject') has no member 'protectionSpace'
33 | class AllowInsecureConnectionDelegate: NSObject, URLSessionDelegate {
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
   |                                                         `- error: value of type 'URLAuthenticationChallenge' (aka 'AnyObject') has no member 'protectionSpace'
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
37 |     }
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/InsecureConnection.swift:36:38: error: type 'URLSession' (aka 'AnyObject') has no member 'AuthChallengeDisposition'
34 |     func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
35 |         let credential = URLCredential(trust: challenge.protectionSpace.serverTrust!)
36 |         completionHandler(URLSession.AuthChallengeDisposition.useCredential, credential)
   |                                      `- error: type 'URLSession' (aka 'AnyObject') has no member 'AuthChallengeDisposition'
37 |     }
38 | }
[16/16] Compiling IBMSwiftSDKCore RestRequest.swift
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:30:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 28 |     public static var userAgent: String?
 29 |
 30 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 31 |     internal var authenticator: Authenticator
 32 |     internal var errorResponseDecoder: ((Data, HTTPURLResponse) -> RestError)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:32: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/Authentication/Authentication.swift:46:74: error: cannot find type 'URLRequest' in scope
 44 |      - parameter completionHandler: The completion handler to execute with the authenticated `URLRequest`.
 45 |      */
 46 |     func authenticate(request: URLRequest, completionHandler: @escaping (URLRequest?, RestError?) -> Void)
    |                                                                          `- error: cannot find type 'URLRequest' in scope
 47 | }
 48 |
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:32:48: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |     private let session: URLSession
 31 |     internal var authenticator: Authenticator
 32 |     internal var errorResponseDecoder: ((Data, HTTPURLResponse) -> RestError)
    |                                                `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |     internal var method: String
 34 |     internal var url: String
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:40:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 38 |
 39 |     public init(
 40 |         session: URLSession,
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |         authenticator: Authenticator,
 42 |         errorResponseDecoder: @escaping ((Data, HTTPURLResponse) -> RestError),
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:42:49: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 40 |         session: URLSession,
 41 |         authenticator: Authenticator,
 42 |         errorResponseDecoder: @escaping ((Data, HTTPURLResponse) -> RestError),
    |                                                 `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 43 |         method: String,
 44 |         url: String,
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:59:29: error: cannot find type 'URLRequest' in scope
 57 |     }
 58 |
 59 |     private var urlRequest: URLRequest? {
    |                             `- error: cannot find type 'URLRequest' in scope
 60 |         guard var components = URLComponents(string: url) else {
 61 |             return nil
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:90:46: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 88 |      */
 89 |     internal func execute(
 90 |         completionHandler: @escaping (Data?, HTTPURLResponse?, RestError?) -> Void)
    |                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 91 |     {
 92 |         // add authentication credentials to the request
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:300:39: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
298 |     public func download(
299 |         to destination: URL,
300 |         completionHandler: @escaping (HTTPURLResponse?, RestError?) -> Void)
    |                                       `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
301 |     {
302 |         // add authentication credentials to the request
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/IBMSwiftSDKCore/RestRequest.swift:69:23: error: cannot find 'URLRequest' in scope
 67 |             return nil
 68 |         }
 69 |         var request = URLRequest(url: urlWithQuery)
    |                       `- error: cannot find 'URLRequest' in scope
 70 |         request.httpMethod = method
 71 |         request.httpBody = messageBody
BUILD FAILURE 6.3 wasm