The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build Supabase, reference v2.31.2 (fecbbc), with Swift 6.1 for Wasm on 5 Aug 2025 12:45:56 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

[103/564] Compiling x86_64-mont5-linux.S
[104/564] Compiling aes128gcmsiv-x86_64-apple.S
[105/564] Compiling x86_64-mont5-apple.S
[106/564] Compiling x86_64-mont-linux.S
[108/564] Compiling SnapshotTesting UIImage.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[109/564] Compiling SnapshotTesting UIView.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[110/564] Compiling SnapshotTesting UIViewController.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[111/564] Compiling SnapshotTesting URLRequest.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[112/564] Compiling Mocker XCTest+Mocker.swift
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:13:62: error: cannot find type 'XCTestExpectation' in scope
11 |
12 | public extension XCTestCase {
13 |     func expectationForRequestingMock(_ mock: inout Mock) -> XCTestExpectation {
   |                                                              `- error: cannot find type 'XCTestExpectation' in scope
14 |         let mockExpectation = expectation(description: "\(mock) should be requested")
15 |         mock.onRequestExpectation = mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:19:62: error: cannot find type 'XCTestExpectation' in scope
17 |     }
18 |
19 |     func expectationForCompletingMock(_ mock: inout Mock) -> XCTestExpectation {
   |                                                              `- error: cannot find type 'XCTestExpectation' in scope
20 |         let mockExpectation = expectation(description: "\(mock) should be finishing")
21 |         mock.onCompletedExpectation = mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:14:31: error: cannot find 'expectation' in scope
12 | public extension XCTestCase {
13 |     func expectationForRequestingMock(_ mock: inout Mock) -> XCTestExpectation {
14 |         let mockExpectation = expectation(description: "\(mock) should be requested")
   |                               `- error: cannot find 'expectation' in scope
15 |         mock.onRequestExpectation = mockExpectation
16 |         return mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:105:31: error: cannot find type 'XCTestExpectation' in scope
103 |
104 |     /// Can only be set internally as it's used by the `expectationForRequestingMock(_:)` method.
105 |     var onRequestExpectation: XCTestExpectation?
    |                               `- error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:20:31: error: cannot find 'expectation' in scope
18 |
19 |     func expectationForCompletingMock(_ mock: inout Mock) -> XCTestExpectation {
20 |         let mockExpectation = expectation(description: "\(mock) should be finishing")
   |                               `- error: cannot find 'expectation' in scope
21 |         mock.onCompletedExpectation = mockExpectation
22 |         return mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:108:33: error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
108 |     var onCompletedExpectation: XCTestExpectation?
    |                                 `- error: cannot find type 'XCTestExpectation' in scope
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
[113/564] Compiling Mocker OnRequestHandler.swift
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:17:56: error: cannot find type 'URLRequest' in scope
 15 | public struct OnRequestHandler {
 16 |
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
    |                                                        `- error: cannot find type 'URLRequest' in scope
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:19:47: error: cannot find type 'URLRequest' in scope
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
    |                                               `- error: cannot find type 'URLRequest' in scope
 20 |     let legacyCallback: Mock.OnRequest?
 21 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:35:46: error: cannot find type 'URLRequest' in scope
 33 |     }
 34 |
 35 |     public typealias OnRequest = (_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void
    |                                              `- error: cannot find type 'URLRequest' in scope
 36 |
 37 |     /// The type of the data which designates the Content-Type header.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:26:78: error: @escaping attribute only applies to function types
 24 |     ///   - httpBodyType: The decodable type to use for parsing the request body.
 25 |     ///   - callback: The callback which will be called just before the request executes.
 26 |     public init<HTTPBody: Decodable>(httpBodyType: HTTPBody.Type?, callback: @escaping OnRequest<HTTPBody>) {
    |                                                                              `- error: @escaping attribute only applies to function types
 27 |         self.internalCallback = { request in
 28 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:42:56: error: cannot find type 'URLRequest' in scope
 40 |     /// Creates a new request handler using the given callback to call on request without parsing the body arguments.
 41 |     /// - Parameter requestCallback: The callback which will be executed just before the request executes, containing the request.
 42 |     public init(requestCallback: @escaping (_ request: URLRequest) -> Void) {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 43 |         self.internalCallback = requestCallback
 44 |         legacyCallback = nil
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:64: error: cannot find type 'URLRequest' in scope
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                                                `- error: cannot find type 'URLRequest' in scope
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:41: error: @escaping attribute only applies to function types
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                         `- error: @escaping attribute only applies to function types
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:59: error: cannot find type 'URLRequest' in scope
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                                           `- error: cannot find type 'URLRequest' in scope
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:36: error: @escaping attribute only applies to function types
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                    `- error: @escaping attribute only applies to function types
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:102:35: error: cannot find type 'URLRequest' in scope
100 |     }
101 |
102 |     func handleRequest(_ request: URLRequest) {
    |                                   `- error: cannot find type 'URLRequest' in scope
103 |         internalCallback(request)
104 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:107:19: error: cannot find type 'URLRequest' in scope
105 | }
106 |
107 | private extension URLRequest {
    |                   `- error: cannot find type 'URLRequest' in scope
108 |     /// We need to use the http body stream data as the URLRequest once launched converts the `httpBody` to this stream of data.
109 |     func httpBodyStreamData() -> Data? {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:27:35: error: cannot infer type of closure parameter 'request' without a type annotation
 25 |     ///   - callback: The callback which will be called just before the request executes.
 26 |     public init<HTTPBody: Decodable>(httpBodyType: HTTPBody.Type?, callback: @escaping OnRequest<HTTPBody>) {
 27 |         self.internalCallback = { request in
    |                                   `- error: cannot infer type of closure parameter 'request' without a type annotation
 28 |             guard
 29 |                 let httpBody = request.httpBodyStreamData() ?? request.httpBody,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:32:35: error: 'nil' requires a contextual type
 30 |                 let decodedObject = try? JSONDecoder().decode(HTTPBody.self, from: httpBody)
 31 |             else {
 32 |                 callback(request, nil)
    |                                   `- error: 'nil' requires a contextual type
 33 |                 return
 34 |             }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:50:35: error: cannot infer type of closure parameter '_' without a type annotation
 48 |     /// - Parameter callback: The callback which will be executed just before the request executes.
 49 |     public init(callback: @escaping () -> Void) {
 50 |         self.internalCallback = { _ in
    |                                   `- error: cannot infer type of closure parameter '_' without a type annotation
 51 |             callback()
 52 |         }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:59:35: error: cannot infer type of closure parameter 'request' without a type annotation
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
 59 |         self.internalCallback = { request in
    |                                   `- error: cannot infer type of closure parameter 'request' without a type annotation
 60 |             guard
 61 |                 let httpBody = request.httpBodyStreamData() ?? request.httpBody,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:64:49: error: 'nil' requires a contextual type
 62 |                 let jsonObject = try? JSONSerialization.jsonObject(with: httpBody, options: .fragmentsAllowed) as? [String: Any]
 63 |             else {
 64 |                 jsonDictionaryCallback(request, nil)
    |                                                 `- error: 'nil' requires a contextual type
 65 |                 return
 66 |             }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:75:35: error: cannot infer type of closure parameter 'request' without a type annotation
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
 75 |         self.internalCallback = { request in
    |                                   `- error: cannot infer type of closure parameter 'request' without a type annotation
 76 |             guard
 77 |                 let httpBody = request.httpBodyStreamData() ?? request.httpBody,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:80:44: error: 'nil' requires a contextual type
 78 |                 let jsonObject = try? JSONSerialization.jsonObject(with: httpBody, options: .fragmentsAllowed) as? [[String: Any]]
 79 |             else {
 80 |                 jsonArrayCallback(request, nil)
    |                                            `- error: 'nil' requires a contextual type
 81 |                 return
 82 |             }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:89:35: error: cannot infer type of closure parameter 'request' without a type annotation
 87 |
 88 |     init(legacyCallback: Mock.OnRequest?) {
 89 |         self.internalCallback = { request in
    |                                   `- error: cannot infer type of closure parameter 'request' without a type annotation
 90 |             guard
 91 |                 let httpBody = request.httpBodyStreamData() ?? request.httpBody,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:94:42: error: 'nil' requires a contextual type
 92 |                 let jsonObject = try? JSONSerialization.jsonObject(with: httpBody, options: .fragmentsAllowed) as? [String: Any]
 93 |             else {
 94 |                 legacyCallback?(request, nil)
    |                                          `- error: 'nil' requires a contextual type
 95 |                 return
 96 |             }
[114/564] Compiling SwiftSyntax SyntaxVisitor.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[115/564] Compiling SwiftSyntax TokenKind.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[116/564] Compiling SwiftSyntax Tokens.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[117/564] Compiling SwiftSyntax TriviaPieces.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[118/564] Compiling SwiftSyntax RawSyntaxNodesAB.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[119/564] Compiling SwiftSyntax Trivia.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[120/564] Compiling SwiftSyntax Utils.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[121/564] Compiling SwiftSyntax ChildNameForKeyPath.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[122/564] Compiling Mocker Mock+DataType.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[123/564] Emitting module Mocker
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:308:42: error: cannot find type 'URLRequest' in scope
306 |
307 |     /// Used to compare the Mock data with the given `URLRequest`.
308 |     static func == (mock: Mock, request: URLRequest) -> Bool {
    |                                          `- error: cannot find type 'URLRequest' in scope
309 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return false }
310 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:35:46: error: cannot find type 'URLRequest' in scope
 33 |     }
 34 |
 35 |     public typealias OnRequest = (_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void
    |                                              `- error: cannot find type 'URLRequest' in scope
 36 |
 37 |     /// The type of the data which designates the Content-Type header.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:70:25: error: cannot find type 'URLRequest' in scope
 68 |
 69 |     /// The `URLRequest` to use if you did not set a specific URL.
 70 |     public let request: URLRequest
    |                         `- error: cannot find type 'URLRequest' in scope
 71 |
 72 |     /// If `true`, checking the URL will ignore the query and match only for the scheme, host and path.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:82:23: error: cannot find type 'DispatchTimeInterval' in scope
 80 |
 81 |     /// Add a delay to a certain mock, which makes the response returned later.
 82 |     public var delay: DispatchTimeInterval?
    |                       `- error: cannot find type 'DispatchTimeInterval' in scope
 83 |
 84 |     /// Allow response cache.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:85:45: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 83 |
 84 |     /// Allow response cache.
 85 |     public var cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed
    |                                             `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 86 |
 87 |     /// The callback which will be executed everytime this `Mock` was completed. Can be used within unit tests for validating that a request has been executed. The callback must be set before calling `register`.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:105:31: error: cannot find type 'XCTestExpectation' in scope
103 |
104 |     /// Can only be set internally as it's used by the `expectationForRequestingMock(_:)` method.
105 |     var onRequestExpectation: XCTestExpectation?
    |                               `- error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:108:33: error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
108 |     var onCompletedExpectation: XCTestExpectation?
    |                                 `- error: cannot find type 'XCTestExpectation' in scope
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:110:91: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
108 |     var onCompletedExpectation: XCTestExpectation?
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
    |                                                                                           `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
111 |         guard data.count > 0 else {
112 |             preconditionFailure("At least one entry is required in the data dictionary")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:186:83: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
184 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
185 |     @available(*, deprecated, renamed: "init(url:ignoreQuery:cacheStoragePolicy:contentType:statusCode:data:additionalHeaders:requestError:)")
186 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                   `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
187 |         self.init(
188 |             url: url,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:211:83: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
209 |     ///   - additionalHeaders: Additional headers to be added to the response.
210 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
211 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                   `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
212 |         self.init(
213 |             url: url,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:275:26: error: cannot find type 'URLRequest' in scope
273 |     ///   - additionalHeaders: Additional headers to be added to the response.
274 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
275 |     public init(request: URLRequest, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: Data = Data(), additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                          `- error: cannot find type 'URLRequest' in scope
276 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else {
277 |             preconditionFailure("Unexpected http method")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:275:94: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
273 |     ///   - additionalHeaders: Additional headers to be added to the response.
274 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
275 |     public init(request: URLRequest, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: Data = Data(), additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                              `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
276 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else {
277 |             preconditionFailure("Unexpected http method")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:302:28: error: cannot find type 'URLRequest' in scope
300 |     /// - Parameter request: The request to match data for.
301 |     /// - Returns: The `Data` which matches the request. Will be `nil` if no data is registered for the request `HTTPMethod`.
302 |     func data(for request: URLRequest) -> Data? {
    |                            `- error: cannot find type 'URLRequest' in scope
303 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return nil }
304 |         return data[requestHTTPMethod]
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:19:47: error: cannot find type 'URLRequest' in scope
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
    |                                               `- error: cannot find type 'URLRequest' in scope
 20 |     let legacyCallback: Mock.OnRequest?
 21 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:75:25: error: cannot find 'DispatchQueue' in scope
 73 |
 74 |     /// For Thread Safety access.
 75 |     private let queue = DispatchQueue(label: "mocker.mocks.access.queue", attributes: .concurrent)
    |                         `- error: cannot find 'DispatchQueue' in scope
 76 |
 77 |     private init() {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:75:88: error: cannot infer contextual base in reference to member 'concurrent'
 73 |
 74 |     /// For Thread Safety access.
 75 |     private let queue = DispatchQueue(label: "mocker.mocks.access.queue", attributes: .concurrent)
    |                                                                                        `- error: cannot infer contextual base in reference to member 'concurrent'
 76 |
 77 |     private init() {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:108:48: error: cannot find type 'URLRequest' in scope
106 |     /// - Parameter url: The URL to check for.
107 |     /// - Returns: `true` if it should be mocked, `false` if the URL is registered as ignored.
108 |     public static func shouldHandle(_ request: URLRequest) -> Bool {
    |                                                `- error: cannot find type 'URLRequest' in scope
109 |         switch mode {
110 |         case .optout:
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:132:35: error: cannot find type 'URLRequest' in scope
130 |     /// - Parameter request: The request to search for a mock.
131 |     /// - Returns: A mock if found, `nil` if there's no mocked data registered for the given request.
132 |     static func mock(for request: URLRequest) -> Mock? {
    |                                   `- error: cannot find type 'URLRequest' in scope
133 |         shared.queue.sync {
134 |             /// First check for specific URLs
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:35:35: error: cannot find type 'DispatchWorkItem' in scope
 33 |     }
 34 |
 35 |     private var responseWorkItem: DispatchWorkItem?
    |                                   `- error: cannot find type 'DispatchWorkItem' in scope
 36 |
 37 |     /// Returns Mocked data based on the mocks register in the `Mocker`. Will end up in an error when no Mock data is found for the request.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:38:26: error: method does not override any method from its superclass
 36 |
 37 |     /// Returns Mocked data based on the mocks register in the `Mocker`. Will end up in an error when no Mock data is found for the request.
 38 |     override public func startLoading() {
    |                          `- error: method does not override any method from its superclass
 39 |         guard
 40 |             let mock = Mocker.mock(for: request),
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:67:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 65 |     }
 66 |
 67 |     private func finishRequest(for mock: Mock, data: Data, response: HTTPURLResponse) {
    |                                                                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 68 |         if let redirectLocation = data.redirectLocation {
 69 |             self.client?.urlProtocol(self, wasRedirectedTo: URLRequest(url: redirectLocation), redirectResponse: response)
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/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:83:26: error: method does not override any method from its superclass
 81 |
 82 |     /// Implementation does nothing, but is needed for a valid inheritance of URLProtocol.
 83 |     override public func stopLoading() {
    |                          `- error: method does not override any method from its superclass
 84 |         responseWorkItem?.cancel()
 85 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:88:77: error: cannot find type 'URLRequest' in scope
 86 |
 87 |     /// Simply sends back the passed request. Implementation is needed for a valid inheritance of URLProtocol.
 88 |     override public class func canonicalRequest(for request: URLRequest) -> URLRequest {
    |                                                                             `- error: cannot find type 'URLRequest' in scope
 89 |         return request
 90 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:88:62: error: cannot find type 'URLRequest' in scope
 86 |
 87 |     /// Simply sends back the passed request. Implementation is needed for a valid inheritance of URLProtocol.
 88 |     override public class func canonicalRequest(for request: URLRequest) -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
 89 |         return request
 90 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:93:54: error: cannot find type 'URLRequest' in scope
 91 |
 92 |     /// Overrides needed to define a valid inheritance of URLProtocol.
 93 |     override public class func canInit(with request: URLRequest) -> Bool {
    |                                                      `- error: cannot find type 'URLRequest' in scope
 94 |         return Mocker.shouldHandle(request)
 95 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:15:32: error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 13 |
 14 | /// The protocol which can be used to send Mocked data back. Use the `Mocker` to register `Mock` data
 15 | open class MockingURLProtocol: URLProtocol {
    |                                `- error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 16 |
 17 |     enum Error: Swift.Error, LocalizedError, CustomDebugStringConvertible {
Foundation.URLProtocol:2:18: note: 'URLProtocol' 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 URLProtocol = AnyObject
  |                  `- note: 'URLProtocol' has been explicitly marked unavailable here
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:17:56: error: cannot find type 'URLRequest' in scope
 15 | public struct OnRequestHandler {
 16 |
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
    |                                                        `- error: cannot find type 'URLRequest' in scope
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:26:78: error: @escaping attribute only applies to function types
 24 |     ///   - httpBodyType: The decodable type to use for parsing the request body.
 25 |     ///   - callback: The callback which will be called just before the request executes.
 26 |     public init<HTTPBody: Decodable>(httpBodyType: HTTPBody.Type?, callback: @escaping OnRequest<HTTPBody>) {
    |                                                                              `- error: @escaping attribute only applies to function types
 27 |         self.internalCallback = { request in
 28 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:42:56: error: cannot find type 'URLRequest' in scope
 40 |     /// Creates a new request handler using the given callback to call on request without parsing the body arguments.
 41 |     /// - Parameter requestCallback: The callback which will be executed just before the request executes, containing the request.
 42 |     public init(requestCallback: @escaping (_ request: URLRequest) -> Void) {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 43 |         self.internalCallback = requestCallback
 44 |         legacyCallback = nil
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:64: error: cannot find type 'URLRequest' in scope
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                                                `- error: cannot find type 'URLRequest' in scope
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:41: error: @escaping attribute only applies to function types
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                         `- error: @escaping attribute only applies to function types
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:59: error: cannot find type 'URLRequest' in scope
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                                           `- error: cannot find type 'URLRequest' in scope
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:36: error: @escaping attribute only applies to function types
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                    `- error: @escaping attribute only applies to function types
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:102:35: error: cannot find type 'URLRequest' in scope
100 |     }
101 |
102 |     func handleRequest(_ request: URLRequest) {
    |                                   `- error: cannot find type 'URLRequest' in scope
103 |         internalCallback(request)
104 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:107:19: error: cannot find type 'URLRequest' in scope
105 | }
106 |
107 | private extension URLRequest {
    |                   `- error: cannot find type 'URLRequest' in scope
108 |     /// We need to use the http body stream data as the URLRequest once launched converts the `httpBody` to this stream of data.
109 |     func httpBodyStreamData() -> Data? {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:13:62: error: cannot find type 'XCTestExpectation' in scope
11 |
12 | public extension XCTestCase {
13 |     func expectationForRequestingMock(_ mock: inout Mock) -> XCTestExpectation {
   |                                                              `- error: cannot find type 'XCTestExpectation' in scope
14 |         let mockExpectation = expectation(description: "\(mock) should be requested")
15 |         mock.onRequestExpectation = mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:19:62: error: cannot find type 'XCTestExpectation' in scope
17 |     }
18 |
19 |     func expectationForCompletingMock(_ mock: inout Mock) -> XCTestExpectation {
   |                                                              `- error: cannot find type 'XCTestExpectation' in scope
20 |         let mockExpectation = expectation(description: "\(mock) should be finishing")
21 |         mock.onCompletedExpectation = mockExpectation
[124/564] Compiling Mocker Mocker.swift
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:308:42: error: cannot find type 'URLRequest' in scope
306 |
307 |     /// Used to compare the Mock data with the given `URLRequest`.
308 |     static func == (mock: Mock, request: URLRequest) -> Bool {
    |                                          `- error: cannot find type 'URLRequest' in scope
309 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return false }
310 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:75:25: error: cannot find 'DispatchQueue' in scope
 73 |
 74 |     /// For Thread Safety access.
 75 |     private let queue = DispatchQueue(label: "mocker.mocks.access.queue", attributes: .concurrent)
    |                         `- error: cannot find 'DispatchQueue' in scope
 76 |
 77 |     private init() {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:75:88: error: cannot infer contextual base in reference to member 'concurrent'
 73 |
 74 |     /// For Thread Safety access.
 75 |     private let queue = DispatchQueue(label: "mocker.mocks.access.queue", attributes: .concurrent)
    |                                                                                        `- error: cannot infer contextual base in reference to member 'concurrent'
 76 |
 77 |     private init() {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:108:48: error: cannot find type 'URLRequest' in scope
106 |     /// - Parameter url: The URL to check for.
107 |     /// - Returns: `true` if it should be mocked, `false` if the URL is registered as ignored.
108 |     public static func shouldHandle(_ request: URLRequest) -> Bool {
    |                                                `- error: cannot find type 'URLRequest' in scope
109 |         switch mode {
110 |         case .optout:
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:132:35: error: cannot find type 'URLRequest' in scope
130 |     /// - Parameter request: The request to search for a mock.
131 |     /// - Returns: A mock if found, `nil` if there's no mocked data registered for the given request.
132 |     static func mock(for request: URLRequest) -> Mock? {
    |                                   `- error: cannot find type 'URLRequest' in scope
133 |         shared.queue.sync {
134 |             /// First check for specific URLs
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:79:25: error: type 'URLProtocol' (aka 'AnyObject') has no member 'registerClass'
 77 |     private init() {
 78 |         // Whenever someone is requesting the Mocker, we want the URL protocol to be activated.
 79 |         _ = URLProtocol.registerClass(MockingURLProtocol.self)
    |                         `- error: type 'URLProtocol' (aka 'AnyObject') has no member 'registerClass'
 80 |     }
 81 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:86:36: error: cannot infer contextual base in reference to member 'barrier'
 84 |     /// - Parameter mock: The Mock to be registered for future requests.
 85 |     public static func register(_ mock: Mock) {
 86 |         shared.queue.async(flags: .barrier) {
    |                                    `- error: cannot infer contextual base in reference to member 'barrier'
 87 |             /// Delete the Mock if it was already registered.
 88 |             shared.mocks.removeAll(where: { $0 == mock })
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:98:36: error: cannot infer contextual base in reference to member 'barrier'
 96 |     /// - Parameter ignoreQuery: If `true`, checking the URL will ignore the query and match only for the scheme, host and path. Defaults to `false`.
 97 |     public static func ignore(_ url: URL, ignoreQuery: Bool = false) {
 98 |         shared.queue.async(flags: .barrier) {
    |                                    `- error: cannot infer contextual base in reference to member 'barrier'
 99 |             let rule = IgnoredRule(urlToIgnore: url, ignoreQuery: ignoreQuery)
100 |             shared.ignoredRules.append(rule)
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:122:35: error: cannot infer contextual base in reference to member 'barrier'
120 |     /// Removes all registered mocks. Use this method in your tearDown function to make sure a Mock is not used in any other test.
121 |     public static func removeAll() {
122 |         shared.queue.sync(flags: .barrier) {
    |                                   `- error: cannot infer contextual base in reference to member 'barrier'
123 |             shared.mocks.removeAll()
124 |             shared.ignoredRules.removeAll()
[125/564] Compiling ConcurrencyExtras Task.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[126/564] Compiling ConcurrencyExtras Result.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[131/564] Compiling IssueReporting TestContext.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[132/564] Compiling IssueReporting Unimplemented.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[133/564] Compiling IssueReporting BreakpointReporter.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[134/564] Compiling IssueReporting FatalErrorReporter.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[134/564] Compiling x86-mont-linux.S
[136/565] Compiling Mocker Mock.swift
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:308:42: error: cannot find type 'URLRequest' in scope
306 |
307 |     /// Used to compare the Mock data with the given `URLRequest`.
308 |     static func == (mock: Mock, request: URLRequest) -> Bool {
    |                                          `- error: cannot find type 'URLRequest' in scope
309 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return false }
310 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:35:46: error: cannot find type 'URLRequest' in scope
 33 |     }
 34 |
 35 |     public typealias OnRequest = (_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void
    |                                              `- error: cannot find type 'URLRequest' in scope
 36 |
 37 |     /// The type of the data which designates the Content-Type header.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:70:25: error: cannot find type 'URLRequest' in scope
 68 |
 69 |     /// The `URLRequest` to use if you did not set a specific URL.
 70 |     public let request: URLRequest
    |                         `- error: cannot find type 'URLRequest' in scope
 71 |
 72 |     /// If `true`, checking the URL will ignore the query and match only for the scheme, host and path.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:82:23: error: cannot find type 'DispatchTimeInterval' in scope
 80 |
 81 |     /// Add a delay to a certain mock, which makes the response returned later.
 82 |     public var delay: DispatchTimeInterval?
    |                       `- error: cannot find type 'DispatchTimeInterval' in scope
 83 |
 84 |     /// Allow response cache.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:85:45: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 83 |
 84 |     /// Allow response cache.
 85 |     public var cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed
    |                                             `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 86 |
 87 |     /// The callback which will be executed everytime this `Mock` was completed. Can be used within unit tests for validating that a request has been executed. The callback must be set before calling `register`.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:105:31: error: cannot find type 'XCTestExpectation' in scope
103 |
104 |     /// Can only be set internally as it's used by the `expectationForRequestingMock(_:)` method.
105 |     var onRequestExpectation: XCTestExpectation?
    |                               `- error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:108:33: error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
108 |     var onCompletedExpectation: XCTestExpectation?
    |                                 `- error: cannot find type 'XCTestExpectation' in scope
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:110:91: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
108 |     var onCompletedExpectation: XCTestExpectation?
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
    |                                                                                           `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
111 |         guard data.count > 0 else {
112 |             preconditionFailure("At least one entry is required in the data dictionary")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:186:83: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
184 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
185 |     @available(*, deprecated, renamed: "init(url:ignoreQuery:cacheStoragePolicy:contentType:statusCode:data:additionalHeaders:requestError:)")
186 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                   `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
187 |         self.init(
188 |             url: url,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:211:83: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
209 |     ///   - additionalHeaders: Additional headers to be added to the response.
210 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
211 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                   `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
212 |         self.init(
213 |             url: url,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:275:26: error: cannot find type 'URLRequest' in scope
273 |     ///   - additionalHeaders: Additional headers to be added to the response.
274 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
275 |     public init(request: URLRequest, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: Data = Data(), additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                          `- error: cannot find type 'URLRequest' in scope
276 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else {
277 |             preconditionFailure("Unexpected http method")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:275:94: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
273 |     ///   - additionalHeaders: Additional headers to be added to the response.
274 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
275 |     public init(request: URLRequest, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: Data = Data(), additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                              `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
276 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else {
277 |             preconditionFailure("Unexpected http method")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:302:28: error: cannot find type 'URLRequest' in scope
300 |     /// - Parameter request: The request to match data for.
301 |     /// - Returns: The `Data` which matches the request. Will be `nil` if no data is registered for the request `HTTPMethod`.
302 |     func data(for request: URLRequest) -> Data? {
    |                            `- error: cannot find type 'URLRequest' in scope
303 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return nil }
304 |         return data[requestHTTPMethod]
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:19:47: error: cannot find type 'URLRequest' in scope
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
    |                                               `- error: cannot find type 'URLRequest' in scope
 20 |     let legacyCallback: Mock.OnRequest?
 21 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:17:56: error: cannot find type 'URLRequest' in scope
 15 | public struct OnRequestHandler {
 16 |
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
    |                                                        `- error: cannot find type 'URLRequest' in scope
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:26:78: error: @escaping attribute only applies to function types
 24 |     ///   - httpBodyType: The decodable type to use for parsing the request body.
 25 |     ///   - callback: The callback which will be called just before the request executes.
 26 |     public init<HTTPBody: Decodable>(httpBodyType: HTTPBody.Type?, callback: @escaping OnRequest<HTTPBody>) {
    |                                                                              `- error: @escaping attribute only applies to function types
 27 |         self.internalCallback = { request in
 28 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:42:56: error: cannot find type 'URLRequest' in scope
 40 |     /// Creates a new request handler using the given callback to call on request without parsing the body arguments.
 41 |     /// - Parameter requestCallback: The callback which will be executed just before the request executes, containing the request.
 42 |     public init(requestCallback: @escaping (_ request: URLRequest) -> Void) {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 43 |         self.internalCallback = requestCallback
 44 |         legacyCallback = nil
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:64: error: cannot find type 'URLRequest' in scope
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                                                `- error: cannot find type 'URLRequest' in scope
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:41: error: @escaping attribute only applies to function types
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                         `- error: @escaping attribute only applies to function types
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:59: error: cannot find type 'URLRequest' in scope
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                                           `- error: cannot find type 'URLRequest' in scope
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:36: error: @escaping attribute only applies to function types
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                    `- error: @escaping attribute only applies to function types
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:94:48: error: incorrect argument label in call (have 'legacyCallback:', expected 'callback:')
 92 |     public var onRequest: OnRequest? {
 93 |         set {
 94 |             onRequestHandler = OnRequestHandler(legacyCallback: newValue)
    |                                                `- error: incorrect argument label in call (have 'legacyCallback:', expected 'callback:')
 95 |         }
 96 |         get {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:118:23: error: cannot find 'URLRequest' in scope
116 |         let generatedURL = URL(string: "https://mocked.wetransfer.com/\(contentType?.name ?? "no-content")/\(statusCode)/\(data.keys.first!.rawValue)")!
117 |         self.generatedURL = generatedURL
118 |         var request = URLRequest(url: url ?? generatedURL)
    |                       `- error: cannot find 'URLRequest' in scope
119 |         request.httpMethod = data.keys.first!.rawValue
120 |         self.request = request
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:147:18: error: extra argument 'url' in call
145 |     public init(dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
146 |         self.init(
147 |             url: nil,
    |                  `- error: extra argument 'url' in call
148 |             contentType: dataType,
149 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:152:29: error: 'nil' is not compatible with expected argument type 'String'
150 |             data: data,
151 |             additionalHeaders: additionalHeaders,
152 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
153 |         )
154 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:147:18: error: 'nil' requires a contextual type
145 |     public init(dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
146 |         self.init(
147 |             url: nil,
    |                  `- error: 'nil' requires a contextual type
148 |             contentType: dataType,
149 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:165:18: error: extra argument 'url' in call
163 |     public init(contentType: DataType?, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
164 |         self.init(
165 |             url: nil,
    |                  `- error: extra argument 'url' in call
166 |             contentType: contentType,
167 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:170:29: error: 'nil' is not compatible with expected argument type 'String'
168 |             data: data,
169 |             additionalHeaders: additionalHeaders,
170 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
171 |         )
172 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:165:18: error: 'nil' requires a contextual type
163 |     public init(contentType: DataType?, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
164 |         self.init(
165 |             url: nil,
    |                  `- error: 'nil' requires a contextual type
166 |             contentType: contentType,
167 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:187:18: error: extra arguments at positions #1, #2, #3, #7 in call
185 |     @available(*, deprecated, renamed: "init(url:ignoreQuery:cacheStoragePolicy:contentType:statusCode:data:additionalHeaders:requestError:)")
186 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
187 |         self.init(
    |                  `- error: extra arguments at positions #1, #2, #3, #7 in call
188 |             url: url,
189 |             ignoreQuery: ignoreQuery,
    :
251 |     ///   - data: The data which will be returned as the response based on the HTTP Method.
252 |     ///   - additionalHeaders: Additional headers to be added to the response.
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
    |            `- note: 'init(fileExtensions:contentType:statusCode:data:additionalHeaders:)' declared here
254 |         self.init(
255 |             url: nil,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:196:29: error: 'nil' is not compatible with expected argument type 'String'
194 |             requestError: requestError,
195 |             additionalHeaders: additionalHeaders,
196 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
197 |         )
198 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:212:18: error: extra arguments at positions #1, #2, #3, #7 in call
210 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
211 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
212 |         self.init(
    |                  `- error: extra arguments at positions #1, #2, #3, #7 in call
213 |             url: url,
214 |             ignoreQuery: ignoreQuery,
    :
251 |     ///   - data: The data which will be returned as the response based on the HTTP Method.
252 |     ///   - additionalHeaders: Additional headers to be added to the response.
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
    |            `- note: 'init(fileExtensions:contentType:statusCode:data:additionalHeaders:)' declared here
254 |         self.init(
255 |             url: nil,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:221:29: error: 'nil' is not compatible with expected argument type 'String'
219 |             requestError: requestError,
220 |             additionalHeaders: additionalHeaders,
221 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
222 |         )
223 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:236:18: error: extra argument 'url' in call
234 |     public init(fileExtensions: String..., dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
235 |         self.init(
236 |             url: nil,
    |                  `- error: extra argument 'url' in call
237 |             contentType: dataType,
238 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:241:29: error: cannot pass array of type 'String...' as variadic arguments of type 'String'
239 |             data: data,
240 |             additionalHeaders: additionalHeaders,
241 |             fileExtensions: fileExtensions
    |                             `- error: cannot pass array of type 'String...' as variadic arguments of type 'String'
242 |         )
243 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:236:18: error: 'nil' requires a contextual type
234 |     public init(fileExtensions: String..., dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
235 |         self.init(
236 |             url: nil,
    |                  `- error: 'nil' requires a contextual type
237 |             contentType: dataType,
238 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:255:18: error: extra argument 'url' in call
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
254 |         self.init(
255 |             url: nil,
    |                  `- error: extra argument 'url' in call
256 |             contentType: contentType,
257 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:260:29: error: cannot pass array of type 'String...' as variadic arguments of type 'String'
258 |             data: data,
259 |             additionalHeaders: additionalHeaders,
260 |             fileExtensions: fileExtensions
    |                             `- error: cannot pass array of type 'String...' as variadic arguments of type 'String'
261 |         )
262 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:255:18: error: 'nil' requires a contextual type
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
254 |         self.init(
255 |             url: nil,
    |                  `- error: 'nil' requires a contextual type
256 |             contentType: contentType,
257 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:280:18: error: extra arguments at positions #1, #2, #3, #7 in call
251 |     ///   - data: The data which will be returned as the response based on the HTTP Method.
252 |     ///   - additionalHeaders: Additional headers to be added to the response.
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
    |            `- note: 'init(fileExtensions:contentType:statusCode:data:additionalHeaders:)' declared here
254 |         self.init(
255 |             url: nil,
    :
278 |         }
279 |
280 |         self.init(
    |                  `- error: extra arguments at positions #1, #2, #3, #7 in call
281 |             url: request.url,
282 |             ignoreQuery: ignoreQuery,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:289:29: error: 'nil' is not compatible with expected argument type 'String'
287 |             requestError: requestError,
288 |             additionalHeaders: additionalHeaders,
289 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
290 |         )
291 |     }
[136/565] Compiling x86_64-mont-apple.S
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[139/565] Compiling IssueReporting SwiftTesting.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[140/565] Compiling IssueReporting UncheckedSendable.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[141/565] Compiling IssueReporting Warn.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[142/565] Compiling IssueReporting XCTest.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[143/565] Compiling IssueReporting IsTesting.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[144/565] Compiling IssueReporting IssueReporter.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[145/565] Compiling IssueReporting RuntimeWarningReporter.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[146/565] Compiling IssueReporting ReportIssue.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[149/565] Compiling x86-mont-apple.S
[150/565] Compiling vpaes-x86_64-linux.S
error: emit-module command failed with exit code 1 (use -v to see invocation)
[152/565] Emitting module SnapshotTesting
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[157/565] Compiling vpaes-x86_64-apple.S
[157/565] Compiling vpaes-x86-linux.S
[157/565] Compiling vpaes-x86-apple.S
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[165/565] Compiling HTTPTypes HTTPFieldName.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8f9255989265d824b88e7d572b1a334a0dc9b701075ede1970390db95d315c35
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Tests/StorageTests/__Snapshots__/StorageBucketAPITests/StorageBucketAPITests-testCreateBucket.1.txt
warning: 'spi-builder-workspace': found 32 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.filter-starting-with-non-alphanumeric.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.likeAnyOf.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.bulk-upsert.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.call-rpc.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.call-rpc-with-filter.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.rpc-call-with-get-and-params.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.iLikeAllOf.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.bulk-insert-users.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.likeAllOf.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.test-in-filter.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.test-or-filter-with-referenced-table.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.containedBy-using-json.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.containedBy-using-range.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.insert-new-user.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.query-with-character.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.select-after-bulk-upsert.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.test-all-filters-and-count.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.call-rpc-without-parameter.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.rpc-call-with-head.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.query-non-default-schema.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.test-upsert-ignoring-duplicates.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.select-after-an-insert.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.test-contains-filter-with-array.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.test-upsert-not-ignoring-duplicates.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.select-all-users-where-email-ends-with-supabase-co.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.iLikeAnyOf.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.query-with-timestampz.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.filter-using-Date.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.test-contains-filter-with-dictionary.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.containedBy-using-array.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.query-if-nil-value.txt
    /host/spi-builder-workspace/Tests/PostgRESTTests/__Snapshots__/BuildURLRequestTests/testBuildRequest.rpc-call-with-get.txt
warning: 'spi-builder-workspace': found 5 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Tests/FunctionsTests/__Snapshots__/RequestTests/testInvokeWithDefaultOptions.1.txt
    /host/spi-builder-workspace/Tests/FunctionsTests/__Snapshots__/RequestTests/testInvokeWithBody.1.txt
    /host/spi-builder-workspace/Tests/FunctionsTests/__Snapshots__/RequestTests/testInvokeWithCustomHeader.1.txt
    /host/spi-builder-workspace/Tests/FunctionsTests/__Snapshots__/RequestTests/testInvokeWithCustomMethod.1.txt
    /host/spi-builder-workspace/Tests/FunctionsTests/__Snapshots__/RequestTests/testInvokeWithCustomRegion.1.txt
[0/1] Planning build
Building for debugging...
[0/330] Compiling vpaes-x86-apple.S
[1/330] Compiling vpaes-armv8-apple.S
[2/330] Compiling vpaes-x86-linux.S
[3/330] Compiling vpaes-armv8-linux.S
[3/330] Compiling vpaes-armv8-win.S
[5/330] Compiling vpaes-x86_64-apple.S
[6/330] Compiling vpaes-armv7-linux.S
[7/330] Compiling sha512-x86_64-linux.S
[8/330] Compiling sha512-x86_64-apple.S
[9/330] Compiling sha512-armv8-linux.S
[10/330] Compiling sha512-armv8-win.S
[11/330] Compiling sha512-armv8-apple.S
[12/330] Compiling sha512-586-linux.S
[13/330] Compiling sha512-armv4-linux.S
[14/330] Compiling sha256-x86_64-linux.S
[15/330] Compiling sha512-586-apple.S
[16/330] Write swift-version-24593BA9C3E375BF.txt
[17/330] Compiling sha256-armv8-win.S
[18/330] Compiling sha256-x86_64-apple.S
[19/330] Compiling sha256-armv8-apple.S
[20/330] Compiling sha256-armv8-linux.S
[21/330] Compiling sha256-armv4-linux.S
[22/330] Compiling sha256-586-linux.S
[23/330] Compiling sha256-586-apple.S
[24/330] Compiling sha1-x86_64-linux.S
[26/386] Emitting module SwiftSyntax509
[27/386] Compiling SwiftSyntax510 Empty.swift
[28/386] Emitting module IssueReportingPackageSupport
[29/386] Compiling IssueReportingPackageSupport _Test.swift
[30/386] Compiling SwiftSyntax509 Empty.swift
[31/387] Emitting module SwiftSyntax510
[32/389] Emitting module SwiftSyntax601
[33/389] Compiling SwiftSyntax601 Empty.swift
[34/389] Emitting module SwiftSyntax600
[35/390] Compiling SwiftSyntax600 Empty.swift
[36/391] Compiling Mocker XCTest+Mocker.swift
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:13:62: error: cannot find type 'XCTestExpectation' in scope
11 |
12 | public extension XCTestCase {
13 |     func expectationForRequestingMock(_ mock: inout Mock) -> XCTestExpectation {
   |                                                              `- error: cannot find type 'XCTestExpectation' in scope
14 |         let mockExpectation = expectation(description: "\(mock) should be requested")
15 |         mock.onRequestExpectation = mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:19:62: error: cannot find type 'XCTestExpectation' in scope
17 |     }
18 |
19 |     func expectationForCompletingMock(_ mock: inout Mock) -> XCTestExpectation {
   |                                                              `- error: cannot find type 'XCTestExpectation' in scope
20 |         let mockExpectation = expectation(description: "\(mock) should be finishing")
21 |         mock.onCompletedExpectation = mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:14:31: error: cannot find 'expectation' in scope
12 | public extension XCTestCase {
13 |     func expectationForRequestingMock(_ mock: inout Mock) -> XCTestExpectation {
14 |         let mockExpectation = expectation(description: "\(mock) should be requested")
   |                               `- error: cannot find 'expectation' in scope
15 |         mock.onRequestExpectation = mockExpectation
16 |         return mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:105:31: error: cannot find type 'XCTestExpectation' in scope
103 |
104 |     /// Can only be set internally as it's used by the `expectationForRequestingMock(_:)` method.
105 |     var onRequestExpectation: XCTestExpectation?
    |                               `- error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:20:31: error: cannot find 'expectation' in scope
18 |
19 |     func expectationForCompletingMock(_ mock: inout Mock) -> XCTestExpectation {
20 |         let mockExpectation = expectation(description: "\(mock) should be finishing")
   |                               `- error: cannot find 'expectation' in scope
21 |         mock.onCompletedExpectation = mockExpectation
22 |         return mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:108:33: error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
108 |     var onCompletedExpectation: XCTestExpectation?
    |                                 `- error: cannot find type 'XCTestExpectation' in scope
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
[37/391] Compiling Mocker OnRequestHandler.swift
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:17:56: error: cannot find type 'URLRequest' in scope
 15 | public struct OnRequestHandler {
 16 |
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
    |                                                        `- error: cannot find type 'URLRequest' in scope
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:19:47: error: cannot find type 'URLRequest' in scope
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
    |                                               `- error: cannot find type 'URLRequest' in scope
 20 |     let legacyCallback: Mock.OnRequest?
 21 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:35:46: error: cannot find type 'URLRequest' in scope
 33 |     }
 34 |
 35 |     public typealias OnRequest = (_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void
    |                                              `- error: cannot find type 'URLRequest' in scope
 36 |
 37 |     /// The type of the data which designates the Content-Type header.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:26:78: error: @escaping attribute only applies to function types
 24 |     ///   - httpBodyType: The decodable type to use for parsing the request body.
 25 |     ///   - callback: The callback which will be called just before the request executes.
 26 |     public init<HTTPBody: Decodable>(httpBodyType: HTTPBody.Type?, callback: @escaping OnRequest<HTTPBody>) {
    |                                                                              `- error: @escaping attribute only applies to function types
 27 |         self.internalCallback = { request in
 28 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:42:56: error: cannot find type 'URLRequest' in scope
 40 |     /// Creates a new request handler using the given callback to call on request without parsing the body arguments.
 41 |     /// - Parameter requestCallback: The callback which will be executed just before the request executes, containing the request.
 42 |     public init(requestCallback: @escaping (_ request: URLRequest) -> Void) {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 43 |         self.internalCallback = requestCallback
 44 |         legacyCallback = nil
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:64: error: cannot find type 'URLRequest' in scope
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                                                `- error: cannot find type 'URLRequest' in scope
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:41: error: @escaping attribute only applies to function types
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                         `- error: @escaping attribute only applies to function types
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:59: error: cannot find type 'URLRequest' in scope
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                                           `- error: cannot find type 'URLRequest' in scope
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:36: error: @escaping attribute only applies to function types
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                    `- error: @escaping attribute only applies to function types
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:102:35: error: cannot find type 'URLRequest' in scope
100 |     }
101 |
102 |     func handleRequest(_ request: URLRequest) {
    |                                   `- error: cannot find type 'URLRequest' in scope
103 |         internalCallback(request)
104 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:107:19: error: cannot find type 'URLRequest' in scope
105 | }
106 |
107 | private extension URLRequest {
    |                   `- error: cannot find type 'URLRequest' in scope
108 |     /// We need to use the http body stream data as the URLRequest once launched converts the `httpBody` to this stream of data.
109 |     func httpBodyStreamData() -> Data? {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:27:35: error: cannot infer type of closure parameter 'request' without a type annotation
 25 |     ///   - callback: The callback which will be called just before the request executes.
 26 |     public init<HTTPBody: Decodable>(httpBodyType: HTTPBody.Type?, callback: @escaping OnRequest<HTTPBody>) {
 27 |         self.internalCallback = { request in
    |                                   `- error: cannot infer type of closure parameter 'request' without a type annotation
 28 |             guard
 29 |                 let httpBody = request.httpBodyStreamData() ?? request.httpBody,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:32:35: error: 'nil' requires a contextual type
 30 |                 let decodedObject = try? JSONDecoder().decode(HTTPBody.self, from: httpBody)
 31 |             else {
 32 |                 callback(request, nil)
    |                                   `- error: 'nil' requires a contextual type
 33 |                 return
 34 |             }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:50:35: error: cannot infer type of closure parameter '_' without a type annotation
 48 |     /// - Parameter callback: The callback which will be executed just before the request executes.
 49 |     public init(callback: @escaping () -> Void) {
 50 |         self.internalCallback = { _ in
    |                                   `- error: cannot infer type of closure parameter '_' without a type annotation
 51 |             callback()
 52 |         }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:59:35: error: cannot infer type of closure parameter 'request' without a type annotation
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
 59 |         self.internalCallback = { request in
    |                                   `- error: cannot infer type of closure parameter 'request' without a type annotation
 60 |             guard
 61 |                 let httpBody = request.httpBodyStreamData() ?? request.httpBody,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:64:49: error: 'nil' requires a contextual type
 62 |                 let jsonObject = try? JSONSerialization.jsonObject(with: httpBody, options: .fragmentsAllowed) as? [String: Any]
 63 |             else {
 64 |                 jsonDictionaryCallback(request, nil)
    |                                                 `- error: 'nil' requires a contextual type
 65 |                 return
 66 |             }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:75:35: error: cannot infer type of closure parameter 'request' without a type annotation
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
 75 |         self.internalCallback = { request in
    |                                   `- error: cannot infer type of closure parameter 'request' without a type annotation
 76 |             guard
 77 |                 let httpBody = request.httpBodyStreamData() ?? request.httpBody,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:80:44: error: 'nil' requires a contextual type
 78 |                 let jsonObject = try? JSONSerialization.jsonObject(with: httpBody, options: .fragmentsAllowed) as? [[String: Any]]
 79 |             else {
 80 |                 jsonArrayCallback(request, nil)
    |                                            `- error: 'nil' requires a contextual type
 81 |                 return
 82 |             }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:89:35: error: cannot infer type of closure parameter 'request' without a type annotation
 87 |
 88 |     init(legacyCallback: Mock.OnRequest?) {
 89 |         self.internalCallback = { request in
    |                                   `- error: cannot infer type of closure parameter 'request' without a type annotation
 90 |             guard
 91 |                 let httpBody = request.httpBodyStreamData() ?? request.httpBody,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:94:42: error: 'nil' requires a contextual type
 92 |                 let jsonObject = try? JSONSerialization.jsonObject(with: httpBody, options: .fragmentsAllowed) as? [String: Any]
 93 |             else {
 94 |                 legacyCallback?(request, nil)
    |                                          `- error: 'nil' requires a contextual type
 95 |                 return
 96 |             }
[38/391] Compiling Mocker Mock+DataType.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[39/391] Emitting module Mocker
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:308:42: error: cannot find type 'URLRequest' in scope
306 |
307 |     /// Used to compare the Mock data with the given `URLRequest`.
308 |     static func == (mock: Mock, request: URLRequest) -> Bool {
    |                                          `- error: cannot find type 'URLRequest' in scope
309 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return false }
310 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:35:46: error: cannot find type 'URLRequest' in scope
 33 |     }
 34 |
 35 |     public typealias OnRequest = (_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void
    |                                              `- error: cannot find type 'URLRequest' in scope
 36 |
 37 |     /// The type of the data which designates the Content-Type header.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:70:25: error: cannot find type 'URLRequest' in scope
 68 |
 69 |     /// The `URLRequest` to use if you did not set a specific URL.
 70 |     public let request: URLRequest
    |                         `- error: cannot find type 'URLRequest' in scope
 71 |
 72 |     /// If `true`, checking the URL will ignore the query and match only for the scheme, host and path.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:82:23: error: cannot find type 'DispatchTimeInterval' in scope
 80 |
 81 |     /// Add a delay to a certain mock, which makes the response returned later.
 82 |     public var delay: DispatchTimeInterval?
    |                       `- error: cannot find type 'DispatchTimeInterval' in scope
 83 |
 84 |     /// Allow response cache.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:85:45: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 83 |
 84 |     /// Allow response cache.
 85 |     public var cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed
    |                                             `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 86 |
 87 |     /// The callback which will be executed everytime this `Mock` was completed. Can be used within unit tests for validating that a request has been executed. The callback must be set before calling `register`.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:105:31: error: cannot find type 'XCTestExpectation' in scope
103 |
104 |     /// Can only be set internally as it's used by the `expectationForRequestingMock(_:)` method.
105 |     var onRequestExpectation: XCTestExpectation?
    |                               `- error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:108:33: error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
108 |     var onCompletedExpectation: XCTestExpectation?
    |                                 `- error: cannot find type 'XCTestExpectation' in scope
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:110:91: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
108 |     var onCompletedExpectation: XCTestExpectation?
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
    |                                                                                           `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
111 |         guard data.count > 0 else {
112 |             preconditionFailure("At least one entry is required in the data dictionary")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:186:83: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
184 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
185 |     @available(*, deprecated, renamed: "init(url:ignoreQuery:cacheStoragePolicy:contentType:statusCode:data:additionalHeaders:requestError:)")
186 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                   `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
187 |         self.init(
188 |             url: url,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:211:83: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
209 |     ///   - additionalHeaders: Additional headers to be added to the response.
210 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
211 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                   `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
212 |         self.init(
213 |             url: url,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:275:26: error: cannot find type 'URLRequest' in scope
273 |     ///   - additionalHeaders: Additional headers to be added to the response.
274 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
275 |     public init(request: URLRequest, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: Data = Data(), additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                          `- error: cannot find type 'URLRequest' in scope
276 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else {
277 |             preconditionFailure("Unexpected http method")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:275:94: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
273 |     ///   - additionalHeaders: Additional headers to be added to the response.
274 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
275 |     public init(request: URLRequest, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: Data = Data(), additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                              `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
276 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else {
277 |             preconditionFailure("Unexpected http method")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:302:28: error: cannot find type 'URLRequest' in scope
300 |     /// - Parameter request: The request to match data for.
301 |     /// - Returns: The `Data` which matches the request. Will be `nil` if no data is registered for the request `HTTPMethod`.
302 |     func data(for request: URLRequest) -> Data? {
    |                            `- error: cannot find type 'URLRequest' in scope
303 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return nil }
304 |         return data[requestHTTPMethod]
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:19:47: error: cannot find type 'URLRequest' in scope
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
    |                                               `- error: cannot find type 'URLRequest' in scope
 20 |     let legacyCallback: Mock.OnRequest?
 21 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:75:25: error: cannot find 'DispatchQueue' in scope
 73 |
 74 |     /// For Thread Safety access.
 75 |     private let queue = DispatchQueue(label: "mocker.mocks.access.queue", attributes: .concurrent)
    |                         `- error: cannot find 'DispatchQueue' in scope
 76 |
 77 |     private init() {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:75:88: error: cannot infer contextual base in reference to member 'concurrent'
 73 |
 74 |     /// For Thread Safety access.
 75 |     private let queue = DispatchQueue(label: "mocker.mocks.access.queue", attributes: .concurrent)
    |                                                                                        `- error: cannot infer contextual base in reference to member 'concurrent'
 76 |
 77 |     private init() {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:108:48: error: cannot find type 'URLRequest' in scope
106 |     /// - Parameter url: The URL to check for.
107 |     /// - Returns: `true` if it should be mocked, `false` if the URL is registered as ignored.
108 |     public static func shouldHandle(_ request: URLRequest) -> Bool {
    |                                                `- error: cannot find type 'URLRequest' in scope
109 |         switch mode {
110 |         case .optout:
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:132:35: error: cannot find type 'URLRequest' in scope
130 |     /// - Parameter request: The request to search for a mock.
131 |     /// - Returns: A mock if found, `nil` if there's no mocked data registered for the given request.
132 |     static func mock(for request: URLRequest) -> Mock? {
    |                                   `- error: cannot find type 'URLRequest' in scope
133 |         shared.queue.sync {
134 |             /// First check for specific URLs
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:35:35: error: cannot find type 'DispatchWorkItem' in scope
 33 |     }
 34 |
 35 |     private var responseWorkItem: DispatchWorkItem?
    |                                   `- error: cannot find type 'DispatchWorkItem' in scope
 36 |
 37 |     /// Returns Mocked data based on the mocks register in the `Mocker`. Will end up in an error when no Mock data is found for the request.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:38:26: error: method does not override any method from its superclass
 36 |
 37 |     /// Returns Mocked data based on the mocks register in the `Mocker`. Will end up in an error when no Mock data is found for the request.
 38 |     override public func startLoading() {
    |                          `- error: method does not override any method from its superclass
 39 |         guard
 40 |             let mock = Mocker.mock(for: request),
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:67:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 65 |     }
 66 |
 67 |     private func finishRequest(for mock: Mock, data: Data, response: HTTPURLResponse) {
    |                                                                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 68 |         if let redirectLocation = data.redirectLocation {
 69 |             self.client?.urlProtocol(self, wasRedirectedTo: URLRequest(url: redirectLocation), redirectResponse: response)
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/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:83:26: error: method does not override any method from its superclass
 81 |
 82 |     /// Implementation does nothing, but is needed for a valid inheritance of URLProtocol.
 83 |     override public func stopLoading() {
    |                          `- error: method does not override any method from its superclass
 84 |         responseWorkItem?.cancel()
 85 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:88:77: error: cannot find type 'URLRequest' in scope
 86 |
 87 |     /// Simply sends back the passed request. Implementation is needed for a valid inheritance of URLProtocol.
 88 |     override public class func canonicalRequest(for request: URLRequest) -> URLRequest {
    |                                                                             `- error: cannot find type 'URLRequest' in scope
 89 |         return request
 90 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:88:62: error: cannot find type 'URLRequest' in scope
 86 |
 87 |     /// Simply sends back the passed request. Implementation is needed for a valid inheritance of URLProtocol.
 88 |     override public class func canonicalRequest(for request: URLRequest) -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
 89 |         return request
 90 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:93:54: error: cannot find type 'URLRequest' in scope
 91 |
 92 |     /// Overrides needed to define a valid inheritance of URLProtocol.
 93 |     override public class func canInit(with request: URLRequest) -> Bool {
    |                                                      `- error: cannot find type 'URLRequest' in scope
 94 |         return Mocker.shouldHandle(request)
 95 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:15:32: error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 13 |
 14 | /// The protocol which can be used to send Mocked data back. Use the `Mocker` to register `Mock` data
 15 | open class MockingURLProtocol: URLProtocol {
    |                                `- error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 16 |
 17 |     enum Error: Swift.Error, LocalizedError, CustomDebugStringConvertible {
Foundation.URLProtocol:2:18: note: 'URLProtocol' 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 URLProtocol = AnyObject
  |                  `- note: 'URLProtocol' has been explicitly marked unavailable here
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:17:56: error: cannot find type 'URLRequest' in scope
 15 | public struct OnRequestHandler {
 16 |
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
    |                                                        `- error: cannot find type 'URLRequest' in scope
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:26:78: error: @escaping attribute only applies to function types
 24 |     ///   - httpBodyType: The decodable type to use for parsing the request body.
 25 |     ///   - callback: The callback which will be called just before the request executes.
 26 |     public init<HTTPBody: Decodable>(httpBodyType: HTTPBody.Type?, callback: @escaping OnRequest<HTTPBody>) {
    |                                                                              `- error: @escaping attribute only applies to function types
 27 |         self.internalCallback = { request in
 28 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:42:56: error: cannot find type 'URLRequest' in scope
 40 |     /// Creates a new request handler using the given callback to call on request without parsing the body arguments.
 41 |     /// - Parameter requestCallback: The callback which will be executed just before the request executes, containing the request.
 42 |     public init(requestCallback: @escaping (_ request: URLRequest) -> Void) {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 43 |         self.internalCallback = requestCallback
 44 |         legacyCallback = nil
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:64: error: cannot find type 'URLRequest' in scope
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                                                `- error: cannot find type 'URLRequest' in scope
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:41: error: @escaping attribute only applies to function types
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                         `- error: @escaping attribute only applies to function types
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:59: error: cannot find type 'URLRequest' in scope
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                                           `- error: cannot find type 'URLRequest' in scope
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:36: error: @escaping attribute only applies to function types
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                    `- error: @escaping attribute only applies to function types
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:102:35: error: cannot find type 'URLRequest' in scope
100 |     }
101 |
102 |     func handleRequest(_ request: URLRequest) {
    |                                   `- error: cannot find type 'URLRequest' in scope
103 |         internalCallback(request)
104 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:107:19: error: cannot find type 'URLRequest' in scope
105 | }
106 |
107 | private extension URLRequest {
    |                   `- error: cannot find type 'URLRequest' in scope
108 |     /// We need to use the http body stream data as the URLRequest once launched converts the `httpBody` to this stream of data.
109 |     func httpBodyStreamData() -> Data? {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:13:62: error: cannot find type 'XCTestExpectation' in scope
11 |
12 | public extension XCTestCase {
13 |     func expectationForRequestingMock(_ mock: inout Mock) -> XCTestExpectation {
   |                                                              `- error: cannot find type 'XCTestExpectation' in scope
14 |         let mockExpectation = expectation(description: "\(mock) should be requested")
15 |         mock.onRequestExpectation = mockExpectation
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/XCTest+Mocker.swift:19:62: error: cannot find type 'XCTestExpectation' in scope
17 |     }
18 |
19 |     func expectationForCompletingMock(_ mock: inout Mock) -> XCTestExpectation {
   |                                                              `- error: cannot find type 'XCTestExpectation' in scope
20 |         let mockExpectation = expectation(description: "\(mock) should be finishing")
21 |         mock.onCompletedExpectation = mockExpectation
[45/391] Compiling Mocker MockingURLProtocol.swift
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:35:35: error: cannot find type 'DispatchWorkItem' in scope
 33 |     }
 34 |
 35 |     private var responseWorkItem: DispatchWorkItem?
    |                                   `- error: cannot find type 'DispatchWorkItem' in scope
 36 |
 37 |     /// Returns Mocked data based on the mocks register in the `Mocker`. Will end up in an error when no Mock data is found for the request.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:38:26: error: method does not override any method from its superclass
 36 |
 37 |     /// Returns Mocked data based on the mocks register in the `Mocker`. Will end up in an error when no Mock data is found for the request.
 38 |     override public func startLoading() {
    |                          `- error: method does not override any method from its superclass
 39 |         guard
 40 |             let mock = Mocker.mock(for: request),
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:67:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 65 |     }
 66 |
 67 |     private func finishRequest(for mock: Mock, data: Data, response: HTTPURLResponse) {
    |                                                                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 68 |         if let redirectLocation = data.redirectLocation {
 69 |             self.client?.urlProtocol(self, wasRedirectedTo: URLRequest(url: redirectLocation), redirectResponse: response)
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/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:83:26: error: method does not override any method from its superclass
 81 |
 82 |     /// Implementation does nothing, but is needed for a valid inheritance of URLProtocol.
 83 |     override public func stopLoading() {
    |                          `- error: method does not override any method from its superclass
 84 |         responseWorkItem?.cancel()
 85 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:88:77: error: cannot find type 'URLRequest' in scope
 86 |
 87 |     /// Simply sends back the passed request. Implementation is needed for a valid inheritance of URLProtocol.
 88 |     override public class func canonicalRequest(for request: URLRequest) -> URLRequest {
    |                                                                             `- error: cannot find type 'URLRequest' in scope
 89 |         return request
 90 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:88:62: error: cannot find type 'URLRequest' in scope
 86 |
 87 |     /// Simply sends back the passed request. Implementation is needed for a valid inheritance of URLProtocol.
 88 |     override public class func canonicalRequest(for request: URLRequest) -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
 89 |         return request
 90 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:93:54: error: cannot find type 'URLRequest' in scope
 91 |
 92 |     /// Overrides needed to define a valid inheritance of URLProtocol.
 93 |     override public class func canInit(with request: URLRequest) -> Bool {
    |                                                      `- error: cannot find type 'URLRequest' in scope
 94 |         return Mocker.shouldHandle(request)
 95 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:15:32: error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 13 |
 14 | /// The protocol which can be used to send Mocked data back. Use the `Mocker` to register `Mock` data
 15 | open class MockingURLProtocol: URLProtocol {
    |                                `- error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 16 |
 17 |     enum Error: Swift.Error, LocalizedError, CustomDebugStringConvertible {
Foundation.URLProtocol:2:18: note: 'URLProtocol' 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 URLProtocol = AnyObject
  |                  `- note: 'URLProtocol' has been explicitly marked unavailable here
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:40:41: error: cannot find 'request' in scope
 38 |     override public func startLoading() {
 39 |         guard
 40 |             let mock = Mocker.mock(for: request),
    |                                         `- error: cannot find 'request' in scope
 41 |             let response = HTTPURLResponse(url: mock.request.url!, statusCode: mock.statusCode, httpVersion: Mocker.httpVersion.rawValue, headerFields: mock.headers),
 42 |             let data = mock.data(for: request)
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:132:35: error: cannot find type 'URLRequest' in scope
130 |     /// - Parameter request: The request to search for a mock.
131 |     /// - Returns: A mock if found, `nil` if there's no mocked data registered for the given request.
132 |     static func mock(for request: URLRequest) -> Mock? {
    |                                   `- error: cannot find type 'URLRequest' in scope
133 |         shared.queue.sync {
134 |             /// First check for specific URLs
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:41:28: error: 'HTTPURLResponse' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 39 |         guard
 40 |             let mock = Mocker.mock(for: request),
 41 |             let response = HTTPURLResponse(url: mock.request.url!, statusCode: mock.statusCode, httpVersion: Mocker.httpVersion.rawValue, headerFields: mock.headers),
    |                            `- error: 'HTTPURLResponse' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 42 |             let data = mock.data(for: request)
 43 |         else {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:42:39: error: cannot find 'request' in scope
 40 |             let mock = Mocker.mock(for: request),
 41 |             let response = HTTPURLResponse(url: mock.request.url!, statusCode: mock.statusCode, httpVersion: Mocker.httpVersion.rawValue, headerFields: mock.headers),
 42 |             let data = mock.data(for: request)
    |                                       `- error: cannot find 'request' in scope
 43 |         else {
 44 |             print("\n\n 🚨 No mocked data found for url \(String(describing: request.url?.absoluteString)) method \(String(describing: request.httpMethod)). Did you forget to use `register()`? 🚨 \n\n")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:44:80: error: cannot find 'request' in scope
 42 |             let data = mock.data(for: request)
 43 |         else {
 44 |             print("\n\n 🚨 No mocked data found for url \(String(describing: request.url?.absoluteString)) method \(String(describing: request.httpMethod)). Did you forget to use `register()`? 🚨 \n\n")
    |                                                                             `- error: cannot find 'request' in scope
 45 |             client?.urlProtocol(self, didFailWithError: Error.missingMockedData(url: String(describing: request.url?.absoluteString)))
 46 |             return
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:44:138: error: cannot find 'request' in scope
 42 |             let data = mock.data(for: request)
 43 |         else {
 44 |             print("\n\n 🚨 No mocked data found for url \(String(describing: request.url?.absoluteString)) method \(String(describing: request.httpMethod)). Did you forget to use `register()`? 🚨 \n\n")
    |                                                                                                                                       `- error: cannot find 'request' in scope
 45 |             client?.urlProtocol(self, didFailWithError: Error.missingMockedData(url: String(describing: request.url?.absoluteString)))
 46 |             return
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:45:13: error: cannot find 'client' in scope
 43 |         else {
 44 |             print("\n\n 🚨 No mocked data found for url \(String(describing: request.url?.absoluteString)) method \(String(describing: request.httpMethod)). Did you forget to use `register()`? 🚨 \n\n")
 45 |             client?.urlProtocol(self, didFailWithError: Error.missingMockedData(url: String(describing: request.url?.absoluteString)))
    |             `- error: cannot find 'client' in scope
 46 |             return
 47 |         }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:45:105: error: cannot find 'request' in scope
 43 |         else {
 44 |             print("\n\n 🚨 No mocked data found for url \(String(describing: request.url?.absoluteString)) method \(String(describing: request.httpMethod)). Did you forget to use `register()`? 🚨 \n\n")
 45 |             client?.urlProtocol(self, didFailWithError: Error.missingMockedData(url: String(describing: request.url?.absoluteString)))
    |                                                                                                         `- error: cannot find 'request' in scope
 46 |             return
 47 |         }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:50:44: error: cannot find 'request' in scope
 48 |
 49 |         if let onRequestHandler = mock.onRequestHandler {
 50 |             onRequestHandler.handleRequest(request)
    |                                            `- error: cannot find 'request' in scope
 51 |         }
 52 |         mock.onRequestExpectation?.fulfill()
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:59:33: error: cannot find 'DispatchWorkItem' in scope
 57 |         }
 58 |
 59 |         self.responseWorkItem = DispatchWorkItem(block: { [weak self] in
    |                                 `- error: cannot find 'DispatchWorkItem' in scope
 60 |             guard let self = self else { return }
 61 |             self.finishRequest(for: mock, data: data, response: response)
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:64:9: error: cannot find 'DispatchQueue' in scope
 62 |         })
 63 |
 64 |         DispatchQueue.global(qos: DispatchQoS.QoSClass.userInitiated).asyncAfter(deadline: .now() + delay, execute: responseWorkItem!)
    |         `- error: cannot find 'DispatchQueue' in scope
 65 |     }
 66 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:64:35: error: cannot find 'DispatchQoS' in scope
 62 |         })
 63 |
 64 |         DispatchQueue.global(qos: DispatchQoS.QoSClass.userInitiated).asyncAfter(deadline: .now() + delay, execute: responseWorkItem!)
    |                                   `- error: cannot find 'DispatchQoS' in scope
 65 |     }
 66 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:69:61: error: cannot find 'URLRequest' in scope
 67 |     private func finishRequest(for mock: Mock, data: Data, response: HTTPURLResponse) {
 68 |         if let redirectLocation = data.redirectLocation {
 69 |             self.client?.urlProtocol(self, wasRedirectedTo: URLRequest(url: redirectLocation), redirectResponse: response)
    |                                                             `- error: cannot find 'URLRequest' in scope
 70 |         } else if let requestError = mock.requestError {
 71 |             self.client?.urlProtocol(self, didFailWithError: requestError)
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:69:18: error: value of type 'MockingURLProtocol' has no member 'client'
 67 |     private func finishRequest(for mock: Mock, data: Data, response: HTTPURLResponse) {
 68 |         if let redirectLocation = data.redirectLocation {
 69 |             self.client?.urlProtocol(self, wasRedirectedTo: URLRequest(url: redirectLocation), redirectResponse: response)
    |                  `- error: value of type 'MockingURLProtocol' has no member 'client'
 70 |         } else if let requestError = mock.requestError {
 71 |             self.client?.urlProtocol(self, didFailWithError: requestError)
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:71:18: error: value of type 'MockingURLProtocol' has no member 'client'
 69 |             self.client?.urlProtocol(self, wasRedirectedTo: URLRequest(url: redirectLocation), redirectResponse: response)
 70 |         } else if let requestError = mock.requestError {
 71 |             self.client?.urlProtocol(self, didFailWithError: requestError)
    |                  `- error: value of type 'MockingURLProtocol' has no member 'client'
 72 |         } else {
 73 |             self.client?.urlProtocol(self, didReceive: response, cacheStoragePolicy: mock.cacheStoragePolicy)
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:85:45: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 83 |
 84 |     /// Allow response cache.
 85 |     public var cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed
    |                                             `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 86 |
 87 |     /// The callback which will be executed everytime this `Mock` was completed. Can be used within unit tests for validating that a request has been executed. The callback must be set before calling `register`.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:73:18: error: value of type 'MockingURLProtocol' has no member 'client'
 71 |             self.client?.urlProtocol(self, didFailWithError: requestError)
 72 |         } else {
 73 |             self.client?.urlProtocol(self, didReceive: response, cacheStoragePolicy: mock.cacheStoragePolicy)
    |                  `- error: value of type 'MockingURLProtocol' has no member 'client'
 74 |             self.client?.urlProtocol(self, didLoad: data)
 75 |             self.client?.urlProtocolDidFinishLoading(self)
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:74:18: error: value of type 'MockingURLProtocol' has no member 'client'
 72 |         } else {
 73 |             self.client?.urlProtocol(self, didReceive: response, cacheStoragePolicy: mock.cacheStoragePolicy)
 74 |             self.client?.urlProtocol(self, didLoad: data)
    |                  `- error: value of type 'MockingURLProtocol' has no member 'client'
 75 |             self.client?.urlProtocolDidFinishLoading(self)
 76 |         }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/MockingURLProtocol.swift:75:18: error: value of type 'MockingURLProtocol' has no member 'client'
 73 |             self.client?.urlProtocol(self, didReceive: response, cacheStoragePolicy: mock.cacheStoragePolicy)
 74 |             self.client?.urlProtocol(self, didLoad: data)
 75 |             self.client?.urlProtocolDidFinishLoading(self)
    |                  `- error: value of type 'MockingURLProtocol' has no member 'client'
 76 |         }
 77 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:108:33: error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
108 |     var onCompletedExpectation: XCTestExpectation?
    |                                 `- error: cannot find type 'XCTestExpectation' in scope
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:108:48: error: cannot find type 'URLRequest' in scope
106 |     /// - Parameter url: The URL to check for.
107 |     /// - Returns: `true` if it should be mocked, `false` if the URL is registered as ignored.
108 |     public static func shouldHandle(_ request: URLRequest) -> Bool {
    |                                                `- error: cannot find type 'URLRequest' in scope
109 |         switch mode {
110 |         case .optout:
[45/391] Compiling sha1-armv8-linux.S
[46/391] Compiling sha1-x86_64-apple.S
[48/391] Compiling SnapshotTesting NSImage.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[49/391] Compiling SnapshotTesting NSView.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[50/391] Compiling SnapshotTesting NSViewController.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[51/391] Compiling SnapshotTesting SceneKit.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[52/391] Compiling SnapshotTesting SpriteKit.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[53/391] Compiling SnapshotTesting String.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[54/391] Compiling SnapshotTesting SwiftUIView.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[55/391] Compiling SnapshotTesting UIBezierPath.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[55/391] Compiling sha1-armv8-win.S
[56/395] Compiling sha1-armv8-apple.S
[58/395] Compiling Mocker Mock.swift
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:308:42: error: cannot find type 'URLRequest' in scope
306 |
307 |     /// Used to compare the Mock data with the given `URLRequest`.
308 |     static func == (mock: Mock, request: URLRequest) -> Bool {
    |                                          `- error: cannot find type 'URLRequest' in scope
309 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return false }
310 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:35:46: error: cannot find type 'URLRequest' in scope
 33 |     }
 34 |
 35 |     public typealias OnRequest = (_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void
    |                                              `- error: cannot find type 'URLRequest' in scope
 36 |
 37 |     /// The type of the data which designates the Content-Type header.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:70:25: error: cannot find type 'URLRequest' in scope
 68 |
 69 |     /// The `URLRequest` to use if you did not set a specific URL.
 70 |     public let request: URLRequest
    |                         `- error: cannot find type 'URLRequest' in scope
 71 |
 72 |     /// If `true`, checking the URL will ignore the query and match only for the scheme, host and path.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:82:23: error: cannot find type 'DispatchTimeInterval' in scope
 80 |
 81 |     /// Add a delay to a certain mock, which makes the response returned later.
 82 |     public var delay: DispatchTimeInterval?
    |                       `- error: cannot find type 'DispatchTimeInterval' in scope
 83 |
 84 |     /// Allow response cache.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:85:45: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 83 |
 84 |     /// Allow response cache.
 85 |     public var cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed
    |                                             `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
 86 |
 87 |     /// The callback which will be executed everytime this `Mock` was completed. Can be used within unit tests for validating that a request has been executed. The callback must be set before calling `register`.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:105:31: error: cannot find type 'XCTestExpectation' in scope
103 |
104 |     /// Can only be set internally as it's used by the `expectationForRequestingMock(_:)` method.
105 |     var onRequestExpectation: XCTestExpectation?
    |                               `- error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:108:33: error: cannot find type 'XCTestExpectation' in scope
106 |
107 |     /// Can only be set internally as it's used by the `expectationForCompletingMock(_:)` method.
108 |     var onCompletedExpectation: XCTestExpectation?
    |                                 `- error: cannot find type 'XCTestExpectation' in scope
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:110:91: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
108 |     var onCompletedExpectation: XCTestExpectation?
109 |
110 |     private init(url: URL? = nil, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], requestError: Error? = nil, additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
    |                                                                                           `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
111 |         guard data.count > 0 else {
112 |             preconditionFailure("At least one entry is required in the data dictionary")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:186:83: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
184 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
185 |     @available(*, deprecated, renamed: "init(url:ignoreQuery:cacheStoragePolicy:contentType:statusCode:data:additionalHeaders:requestError:)")
186 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                   `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
187 |         self.init(
188 |             url: url,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:211:83: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
209 |     ///   - additionalHeaders: Additional headers to be added to the response.
210 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
211 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                   `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
212 |         self.init(
213 |             url: url,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:275:26: error: cannot find type 'URLRequest' in scope
273 |     ///   - additionalHeaders: Additional headers to be added to the response.
274 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
275 |     public init(request: URLRequest, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: Data = Data(), additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                          `- error: cannot find type 'URLRequest' in scope
276 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else {
277 |             preconditionFailure("Unexpected http method")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:275:94: error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
273 |     ///   - additionalHeaders: Additional headers to be added to the response.
274 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
275 |     public init(request: URLRequest, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: Data = Data(), additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
    |                                                                                              `- error: 'StoragePolicy' is not a member type of type 'Foundation.URLCache' (aka 'AnyObject')
276 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else {
277 |             preconditionFailure("Unexpected http method")
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:302:28: error: cannot find type 'URLRequest' in scope
300 |     /// - Parameter request: The request to match data for.
301 |     /// - Returns: The `Data` which matches the request. Will be `nil` if no data is registered for the request `HTTPMethod`.
302 |     func data(for request: URLRequest) -> Data? {
    |                            `- error: cannot find type 'URLRequest' in scope
303 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return nil }
304 |         return data[requestHTTPMethod]
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:19:47: error: cannot find type 'URLRequest' in scope
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
    |                                               `- error: cannot find type 'URLRequest' in scope
 20 |     let legacyCallback: Mock.OnRequest?
 21 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:17:56: error: cannot find type 'URLRequest' in scope
 15 | public struct OnRequestHandler {
 16 |
 17 |     public typealias OnRequest<HTTPBody> = (_ request: URLRequest, _ httpBody: HTTPBody?) -> Void
    |                                                        `- error: cannot find type 'URLRequest' in scope
 18 |
 19 |     private let internalCallback: (_ request: URLRequest) -> Void
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:26:78: error: @escaping attribute only applies to function types
 24 |     ///   - httpBodyType: The decodable type to use for parsing the request body.
 25 |     ///   - callback: The callback which will be called just before the request executes.
 26 |     public init<HTTPBody: Decodable>(httpBodyType: HTTPBody.Type?, callback: @escaping OnRequest<HTTPBody>) {
    |                                                                              `- error: @escaping attribute only applies to function types
 27 |         self.internalCallback = { request in
 28 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:42:56: error: cannot find type 'URLRequest' in scope
 40 |     /// Creates a new request handler using the given callback to call on request without parsing the body arguments.
 41 |     /// - Parameter requestCallback: The callback which will be executed just before the request executes, containing the request.
 42 |     public init(requestCallback: @escaping (_ request: URLRequest) -> Void) {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 43 |         self.internalCallback = requestCallback
 44 |         legacyCallback = nil
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:64: error: cannot find type 'URLRequest' in scope
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                                                `- error: cannot find type 'URLRequest' in scope
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:58:41: error: @escaping attribute only applies to function types
 56 |     /// Creates a new request handler using the given callback to call on request.
 57 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Dictionary.
 58 |     public init(jsonDictionaryCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [String: Any]?) -> Void)) {
    |                                         `- error: @escaping attribute only applies to function types
 59 |         self.internalCallback = { request in
 60 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:59: error: cannot find type 'URLRequest' in scope
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                                           `- error: cannot find type 'URLRequest' in scope
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/OnRequestHandler.swift:74:36: error: @escaping attribute only applies to function types
 72 |     /// Creates a new request handler using the given callback to call on request.
 73 |     /// - Parameter jsonDictionaryCallback: The callback that executes just before the request executes, containing the HTTP Body Arguments as a JSON Object Array.
 74 |     public init(jsonArrayCallback: @escaping ((_ request: URLRequest, _ httpBodyArguments: [[String: Any]]?) -> Void)) {
    |                                    `- error: @escaping attribute only applies to function types
 75 |         self.internalCallback = { request in
 76 |             guard
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:94:48: error: incorrect argument label in call (have 'legacyCallback:', expected 'callback:')
 92 |     public var onRequest: OnRequest? {
 93 |         set {
 94 |             onRequestHandler = OnRequestHandler(legacyCallback: newValue)
    |                                                `- error: incorrect argument label in call (have 'legacyCallback:', expected 'callback:')
 95 |         }
 96 |         get {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:118:23: error: cannot find 'URLRequest' in scope
116 |         let generatedURL = URL(string: "https://mocked.wetransfer.com/\(contentType?.name ?? "no-content")/\(statusCode)/\(data.keys.first!.rawValue)")!
117 |         self.generatedURL = generatedURL
118 |         var request = URLRequest(url: url ?? generatedURL)
    |                       `- error: cannot find 'URLRequest' in scope
119 |         request.httpMethod = data.keys.first!.rawValue
120 |         self.request = request
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:147:18: error: extra argument 'url' in call
145 |     public init(dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
146 |         self.init(
147 |             url: nil,
    |                  `- error: extra argument 'url' in call
148 |             contentType: dataType,
149 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:152:29: error: 'nil' is not compatible with expected argument type 'String'
150 |             data: data,
151 |             additionalHeaders: additionalHeaders,
152 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
153 |         )
154 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:147:18: error: 'nil' requires a contextual type
145 |     public init(dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
146 |         self.init(
147 |             url: nil,
    |                  `- error: 'nil' requires a contextual type
148 |             contentType: dataType,
149 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:165:18: error: extra argument 'url' in call
163 |     public init(contentType: DataType?, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
164 |         self.init(
165 |             url: nil,
    |                  `- error: extra argument 'url' in call
166 |             contentType: contentType,
167 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:170:29: error: 'nil' is not compatible with expected argument type 'String'
168 |             data: data,
169 |             additionalHeaders: additionalHeaders,
170 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
171 |         )
172 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:165:18: error: 'nil' requires a contextual type
163 |     public init(contentType: DataType?, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
164 |         self.init(
165 |             url: nil,
    |                  `- error: 'nil' requires a contextual type
166 |             contentType: contentType,
167 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:187:18: error: extra arguments at positions #1, #2, #3, #7 in call
185 |     @available(*, deprecated, renamed: "init(url:ignoreQuery:cacheStoragePolicy:contentType:statusCode:data:additionalHeaders:requestError:)")
186 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
187 |         self.init(
    |                  `- error: extra arguments at positions #1, #2, #3, #7 in call
188 |             url: url,
189 |             ignoreQuery: ignoreQuery,
    :
251 |     ///   - data: The data which will be returned as the response based on the HTTP Method.
252 |     ///   - additionalHeaders: Additional headers to be added to the response.
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
    |            `- note: 'init(fileExtensions:contentType:statusCode:data:additionalHeaders:)' declared here
254 |         self.init(
255 |             url: nil,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:196:29: error: 'nil' is not compatible with expected argument type 'String'
194 |             requestError: requestError,
195 |             additionalHeaders: additionalHeaders,
196 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
197 |         )
198 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:212:18: error: extra arguments at positions #1, #2, #3, #7 in call
210 |     ///   - requestError: If provided, the URLSession will report the passed error rather than returning data. Defaults to `nil`.
211 |     public init(url: URL, ignoreQuery: Bool = false, cacheStoragePolicy: URLCache.StoragePolicy = .notAllowed, contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], requestError: Error? = nil) {
212 |         self.init(
    |                  `- error: extra arguments at positions #1, #2, #3, #7 in call
213 |             url: url,
214 |             ignoreQuery: ignoreQuery,
    :
251 |     ///   - data: The data which will be returned as the response based on the HTTP Method.
252 |     ///   - additionalHeaders: Additional headers to be added to the response.
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
    |            `- note: 'init(fileExtensions:contentType:statusCode:data:additionalHeaders:)' declared here
254 |         self.init(
255 |             url: nil,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:221:29: error: 'nil' is not compatible with expected argument type 'String'
219 |             requestError: requestError,
220 |             additionalHeaders: additionalHeaders,
221 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
222 |         )
223 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:236:18: error: extra argument 'url' in call
234 |     public init(fileExtensions: String..., dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
235 |         self.init(
236 |             url: nil,
    |                  `- error: extra argument 'url' in call
237 |             contentType: dataType,
238 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:241:29: error: cannot pass array of type 'String...' as variadic arguments of type 'String'
239 |             data: data,
240 |             additionalHeaders: additionalHeaders,
241 |             fileExtensions: fileExtensions
    |                             `- error: cannot pass array of type 'String...' as variadic arguments of type 'String'
242 |         )
243 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:236:18: error: 'nil' requires a contextual type
234 |     public init(fileExtensions: String..., dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
235 |         self.init(
236 |             url: nil,
    |                  `- error: 'nil' requires a contextual type
237 |             contentType: dataType,
238 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:255:18: error: extra argument 'url' in call
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
254 |         self.init(
255 |             url: nil,
    |                  `- error: extra argument 'url' in call
256 |             contentType: contentType,
257 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:260:29: error: cannot pass array of type 'String...' as variadic arguments of type 'String'
258 |             data: data,
259 |             additionalHeaders: additionalHeaders,
260 |             fileExtensions: fileExtensions
    |                             `- error: cannot pass array of type 'String...' as variadic arguments of type 'String'
261 |         )
262 |     }
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:255:18: error: 'nil' requires a contextual type
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
254 |         self.init(
255 |             url: nil,
    |                  `- error: 'nil' requires a contextual type
256 |             contentType: contentType,
257 |             statusCode: statusCode,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:280:18: error: extra arguments at positions #1, #2, #3, #7 in call
251 |     ///   - data: The data which will be returned as the response based on the HTTP Method.
252 |     ///   - additionalHeaders: Additional headers to be added to the response.
253 |     public init(fileExtensions: String..., contentType: DataType? = nil, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:]) {
    |            `- note: 'init(fileExtensions:contentType:statusCode:data:additionalHeaders:)' declared here
254 |         self.init(
255 |             url: nil,
    :
278 |         }
279 |
280 |         self.init(
    |                  `- error: extra arguments at positions #1, #2, #3, #7 in call
281 |             url: request.url,
282 |             ignoreQuery: ignoreQuery,
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:289:29: error: 'nil' is not compatible with expected argument type 'String'
287 |             requestError: requestError,
288 |             additionalHeaders: additionalHeaders,
289 |             fileExtensions: nil
    |                             `- error: 'nil' is not compatible with expected argument type 'String'
290 |         )
291 |     }
[58/395] Compiling sha1-armv4-large-linux.S
[59/395] Compiling sha1-586-linux.S
[60/395] Compiling sha1-586-apple.S
[62/395] Compiling SnapshotTesting CaseIterable.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[63/395] Compiling SnapshotTesting Data.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[64/395] Compiling SnapshotTesting Encodable.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[65/395] Compiling SnapshotTesting NSBezierPath.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[65/407] Compiling rsaz-avx2-linux.S
[67/407] Compiling SnapshotTesting UIImage.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[68/407] Compiling SnapshotTesting UIView.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[69/407] Compiling SnapshotTesting UIViewController.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[70/407] Compiling SnapshotTesting URLRequest.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[70/410] Compiling rsaz-avx2-apple.S
[72/425] Compiling HTTPTypes ISOLatin1String.swift
[73/426] Compiling IssueReporting Warn.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[74/426] Compiling IssueReporting ErrorReporting.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[75/426] Compiling IssueReporting AppHostWarning.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[76/426] Compiling IssueReporting Deprecations.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[77/426] Compiling IssueReporting BreakpointReporter.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[77/426] Compiling rdrand-x86_64-linux.S
[78/426] Compiling rdrand-x86_64-apple.S
[80/490] Compiling SwiftSyntax AbsoluteRawSyntax.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[81/490] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[82/490] Compiling SwiftSyntax Assert.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[83/490] Compiling SwiftSyntax BumpPtrAllocator.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[84/490] Compiling SwiftSyntax SyntaxArena.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[85/490] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[86/490] Compiling SwiftSyntax SyntaxChildren.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[87/490] Compiling SwiftSyntax SyntaxCollection.swift
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[87/490] Compiling p256_beeu-x86_64-asm-linux.S
[89/490] Compiling ConcurrencyExtras MainSerialExecutor.swift
[89/491] Compiling p256_beeu-x86_64-asm-apple.S
[90/491] Compiling p256_beeu-armv8-asm-win.S
[92/491] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[93/491] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[94/491] Compiling ConcurrencyExtras LockIsolated.swift
[94/491] Compiling p256_beeu-armv8-asm-linux.S
error: emit-module command failed with exit code 1 (use -v to see invocation)
[96/491] Emitting module SnapshotTesting
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[97/491] Compiling SwiftSyntax AbsolutePosition.swift
[99/493] Emitting module HTTPTypes
[99/493] Compiling p256-x86_64-asm-linux.S
[100/493] Compiling p256_beeu-armv8-asm-apple.S
[102/493] Compiling ConcurrencyExtras Task.swift
[103/493] Compiling ConcurrencyExtras Result.swift
[104/493] Compiling SwiftSyntax MissingNodeInitializers.swift
[105/493] Compiling SwiftSyntax RawSyntax.swift
[105/493] Compiling p256-x86_64-asm-apple.S
[106/493] Compiling p256-armv8-asm-win.S
[108/493] Emitting module ConcurrencyExtras
[109/493] Compiling SwiftSyntax Identifier.swift
[110/493] Compiling SwiftSyntax MemoryLayout.swift
[111/493] Compiling HTTPTypes NIOLock.swift
[112/493] Compiling ConcurrencyExtras UncheckedSendable.swift
[112/493] Compiling p256-armv8-asm-linux.S
[114/494] Compiling HTTPTypes HTTPParsedFields.swift
[115/494] Compiling HTTPTypes HTTPRequest.swift
[115/494] Compiling p256-armv8-asm-apple.S
[116/494] Compiling ghashv8-armv8-win.S
[117/494] Compiling ghashv8-armv8-linux.S
[122/494] Compiling ghashv8-armv8-apple.S
[123/494] Compiling ghashv8-armv7-linux.S
[124/494] Compiling ghash-x86_64-linux.S
[126/494] Emitting module IssueReporting
[127/494] Compiling SwiftSyntax CommonAncestor.swift
[128/494] Compiling SwiftSyntax Convenience.swift
[129/494] Compiling SwiftSyntax CustomTraits.swift
[130/494] Compiling SwiftSyntax EditorPlaceholder.swift
[130/494] Compiling ghash-x86_64-apple.S
[132/494] Compiling HTTPTypes HTTPResponse.swift
[132/494] Compiling ghash-x86-linux.S
[133/494] Compiling ghash-x86-apple.S
[134/494] Compiling ghash-ssse3-x86_64-linux.S
[135/494] Compiling ghash-ssse3-x86_64-apple.S
[136/494] Compiling ghash-ssse3-x86-linux.S
[137/494] Compiling ghash-ssse3-x86-apple.S
[138/494] Compiling ghash-neon-armv8-win.S
[139/494] Compiling ghash-neon-armv8-linux.S
[140/494] Compiling ghash-neon-armv8-apple.S
[141/494] Compiling ghash-armv4-linux.S
[143/494] Compiling IssueReporting WithExpectedIssue.swift
[144/494] Compiling IssueReporting WithIssueContext.swift
[144/494] Compiling co-586-linux.S
[145/494] Compiling bsaes-armv7-linux.S
[146/494] Compiling bn-armv8-win.S
[147/494] Compiling co-586-apple.S
[148/494] Compiling bn-armv8-linux.S
[149/494] Compiling bn-armv8-apple.S
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
/host/spi-builder-workspace/.build/checkouts/swift-snapshot-testing/Sources/SnapshotTesting/AssertSnapshot.swift:526:10: error: no such module 'CoreServices'
524 |
525 | #if !os(Android) && !os(Linux) && !os(Windows)
526 |   import CoreServices
    |          `- error: no such module 'CoreServices'
527 |
528 |   func uniformTypeIdentifier(fromExtension pathExtension: String) -> String? {
[155/494] Compiling bn-586-linux.S
[155/494] Compiling armv8-mont-win.S
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mock.swift:308:42: error: cannot find type 'URLRequest' in scope
306 |
307 |     /// Used to compare the Mock data with the given `URLRequest`.
308 |     static func == (mock: Mock, request: URLRequest) -> Bool {
    |                                          `- error: cannot find type 'URLRequest' in scope
309 |         guard let requestHTTPMethod = Mock.HTTPMethod(rawValue: request.httpMethod ?? "") else { return false }
310 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:75:25: error: cannot find 'DispatchQueue' in scope
 73 |
 74 |     /// For Thread Safety access.
 75 |     private let queue = DispatchQueue(label: "mocker.mocks.access.queue", attributes: .concurrent)
    |                         `- error: cannot find 'DispatchQueue' in scope
 76 |
 77 |     private init() {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:75:88: error: cannot infer contextual base in reference to member 'concurrent'
 73 |
 74 |     /// For Thread Safety access.
 75 |     private let queue = DispatchQueue(label: "mocker.mocks.access.queue", attributes: .concurrent)
    |                                                                                        `- error: cannot infer contextual base in reference to member 'concurrent'
 76 |
 77 |     private init() {
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:108:48: error: cannot find type 'URLRequest' in scope
106 |     /// - Parameter url: The URL to check for.
107 |     /// - Returns: `true` if it should be mocked, `false` if the URL is registered as ignored.
108 |     public static func shouldHandle(_ request: URLRequest) -> Bool {
    |                                                `- error: cannot find type 'URLRequest' in scope
109 |         switch mode {
110 |         case .optout:
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:132:35: error: cannot find type 'URLRequest' in scope
130 |     /// - Parameter request: The request to search for a mock.
131 |     /// - Returns: A mock if found, `nil` if there's no mocked data registered for the given request.
132 |     static func mock(for request: URLRequest) -> Mock? {
    |                                   `- error: cannot find type 'URLRequest' in scope
133 |         shared.queue.sync {
134 |             /// First check for specific URLs
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:79:25: error: type 'URLProtocol' (aka 'AnyObject') has no member 'registerClass'
 77 |     private init() {
 78 |         // Whenever someone is requesting the Mocker, we want the URL protocol to be activated.
 79 |         _ = URLProtocol.registerClass(MockingURLProtocol.self)
    |                         `- error: type 'URLProtocol' (aka 'AnyObject') has no member 'registerClass'
 80 |     }
 81 |
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:86:36: error: cannot infer contextual base in reference to member 'barrier'
 84 |     /// - Parameter mock: The Mock to be registered for future requests.
 85 |     public static func register(_ mock: Mock) {
 86 |         shared.queue.async(flags: .barrier) {
    |                                    `- error: cannot infer contextual base in reference to member 'barrier'
 87 |             /// Delete the Mock if it was already registered.
 88 |             shared.mocks.removeAll(where: { $0 == mock })
/host/spi-builder-workspace/.build/checkouts/Mocker/Sources/Mocker/Mocker.swift:98:36: error: cannot infer contextual base in reference to member 'barrier'
 96 |     /// - Parameter ignoreQuery: If `true`, checking the URL will ignore the query and match only for the scheme, host and path. Defaults to `false`.
 97 |     public static func ignore(_ url: URL, ignoreQuery: Bool = false) {
 98 |         shared.queue.async(flags: .barrier) {
    |                                    `- error: cannot infer contextual base in reference to member 'barrier'
 99 |             let rule = IgnoredRule(urlToIgnore: url, ignoreQuery: ignoreQuery)
100 |             shared.ignoredRules.append(rule)
[156/494] Compiling HTTPTypes HTTPFieldName.swift
[157/494] Compiling HTTPTypes HTTPField.swift
[157/494] Compiling bn-586-apple.S
BUILD FAILURE 6.1 wasm