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 Networking, reference main (e32c6b), with Swift 6.1 for Linux on 9 Jun 2025 11:04:55 UTC.

Build Command

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

Build Log

28 |     ) throws -> URLRequest {
29 |         for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 |     /// The cache policy to apply to the request.
15 |     private let cachePolicy: URLRequest.CachePolicy
   |                              `- error: cannot find type 'URLRequest' in scope
16 |
17 |     /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 |     ///
19 |     /// - Parameter cachePolicy: The cache policy to apply.
20 |     @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
   |                                                    `- error: cannot find type 'URLRequest' in scope
21 |         self.cachePolicy = cachePolicy
22 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.cachePolicy = cachePolicy
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 |     /// - Returns: A request with the specified cache policy applied.
66 |     @inlinable public func cachePolicy(
67 |         _ cachePolicy: URLRequest.CachePolicy
   |                        `- error: cannot find type 'URLRequest' in scope
68 |     ) -> some Request {
69 |         modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.httpMethod = httpMethod.rawValue
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest``.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     public func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         let body = try body()
35 |         guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the body set.
31 |     public func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 |     public func modifying(
27 |         _ request: consuming URLRequest
28 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
29 |         for header in headers {
30 |             request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 |     /// - Returns: The modified ``URLRequest`` with headers added.
26 |     public func modifying(
27 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
28 |     ) throws -> URLRequest {
29 |         for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 |     /// The cache policy to apply to the request.
15 |     private let cachePolicy: URLRequest.CachePolicy
   |                              `- error: cannot find type 'URLRequest' in scope
16 |
17 |     /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 |     ///
19 |     /// - Parameter cachePolicy: The cache policy to apply.
20 |     @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
   |                                                    `- error: cannot find type 'URLRequest' in scope
21 |         self.cachePolicy = cachePolicy
22 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.cachePolicy = cachePolicy
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 |     /// - Returns: A request with the specified cache policy applied.
66 |     @inlinable public func cachePolicy(
67 |         _ cachePolicy: URLRequest.CachePolicy
   |                        `- error: cannot find type 'URLRequest' in scope
68 |     ) -> some Request {
69 |         modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.httpMethod = httpMethod.rawValue
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest``.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     public func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         let body = try body()
35 |         guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the body set.
31 |     public func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 |     public func modifying(
27 |         _ request: consuming URLRequest
28 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
29 |         for header in headers {
30 |             request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 |     /// - Returns: The modified ``URLRequest`` with headers added.
26 |     public func modifying(
27 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
28 |     ) throws -> URLRequest {
29 |         for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 |     /// The cache policy to apply to the request.
15 |     private let cachePolicy: URLRequest.CachePolicy
   |                              `- error: cannot find type 'URLRequest' in scope
16 |
17 |     /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 |     ///
19 |     /// - Parameter cachePolicy: The cache policy to apply.
20 |     @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
   |                                                    `- error: cannot find type 'URLRequest' in scope
21 |         self.cachePolicy = cachePolicy
22 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.cachePolicy = cachePolicy
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 |     /// - Returns: A request with the specified cache policy applied.
66 |     @inlinable public func cachePolicy(
67 |         _ cachePolicy: URLRequest.CachePolicy
   |                        `- error: cannot find type 'URLRequest' in scope
68 |     ) -> some Request {
69 |         modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.httpMethod = httpMethod.rawValue
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest``.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     public func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         let body = try body()
35 |         guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the body set.
31 |     public func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 |     public func modifying(
27 |         _ request: consuming URLRequest
28 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
29 |         for header in headers {
30 |             request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 |     /// - Returns: The modified ``URLRequest`` with headers added.
26 |     public func modifying(
27 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
28 |     ) throws -> URLRequest {
29 |         for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 |     /// The cache policy to apply to the request.
15 |     private let cachePolicy: URLRequest.CachePolicy
   |                              `- error: cannot find type 'URLRequest' in scope
16 |
17 |     /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 |     ///
19 |     /// - Parameter cachePolicy: The cache policy to apply.
20 |     @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
   |                                                    `- error: cannot find type 'URLRequest' in scope
21 |         self.cachePolicy = cachePolicy
22 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.cachePolicy = cachePolicy
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 |     /// - Returns: A request with the specified cache policy applied.
66 |     @inlinable public func cachePolicy(
67 |         _ cachePolicy: URLRequest.CachePolicy
   |                        `- error: cannot find type 'URLRequest' in scope
68 |     ) -> some Request {
69 |         modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.httpMethod = httpMethod.rawValue
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest``.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     public func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         let body = try body()
35 |         guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the body set.
31 |     public func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 |     public func modifying(
27 |         _ request: consuming URLRequest
28 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
29 |         for header in headers {
30 |             request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 |     /// - Returns: The modified ``URLRequest`` with headers added.
26 |     public func modifying(
27 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
28 |     ) throws -> URLRequest {
29 |         for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 |     /// The cache policy to apply to the request.
15 |     private let cachePolicy: URLRequest.CachePolicy
   |                              `- error: cannot find type 'URLRequest' in scope
16 |
17 |     /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 |     ///
19 |     /// - Parameter cachePolicy: The cache policy to apply.
20 |     @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
   |                                                    `- error: cannot find type 'URLRequest' in scope
21 |         self.cachePolicy = cachePolicy
22 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.cachePolicy = cachePolicy
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 |     /// - Returns: A request with the specified cache policy applied.
66 |     @inlinable public func cachePolicy(
67 |         _ cachePolicy: URLRequest.CachePolicy
   |                        `- error: cannot find type 'URLRequest' in scope
68 |     ) -> some Request {
69 |         modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.httpMethod = httpMethod.rawValue
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest``.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.httpMethod = httpMethod.rawValue
[331/369] Compiling NetworkingCore FormDataBody.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:69:38: error: cannot find type 'URLRequest' in scope
 67 |     /// - Returns: The configured ``URLRequest``.
 68 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 69 |     func _makeURLRequest() throws -> URLRequest
    |                                      `- error: cannot find type 'URLRequest' in scope
 70 | }
 71 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:85:56: error: cannot find type 'URLRequest' in scope
 83 |     /// - Returns: The configured ``URLRequest``.
 84 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 85 |     @inlinable public func _makeURLRequest() throws -> URLRequest {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 86 |         return try request._makeURLRequest()
 87 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:111:17: error: cannot find type 'URLRequest' in scope
109 |     @inline(__always) package func _makeURLRequest(
110 |         with values: ConfigurationValues
111 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
112 |         _accept(values)
113 |         return try _makeURLRequest()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[332/369] Compiling NetworkingCore FormDataFile.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:69:38: error: cannot find type 'URLRequest' in scope
 67 |     /// - Returns: The configured ``URLRequest``.
 68 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 69 |     func _makeURLRequest() throws -> URLRequest
    |                                      `- error: cannot find type 'URLRequest' in scope
 70 | }
 71 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:85:56: error: cannot find type 'URLRequest' in scope
 83 |     /// - Returns: The configured ``URLRequest``.
 84 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 85 |     @inlinable public func _makeURLRequest() throws -> URLRequest {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 86 |         return try request._makeURLRequest()
 87 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:111:17: error: cannot find type 'URLRequest' in scope
109 |     @inline(__always) package func _makeURLRequest(
110 |         with values: ConfigurationValues
111 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
112 |         _accept(values)
113 |         return try _makeURLRequest()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[333/369] Compiling NetworkingCore FormDataItem.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:69:38: error: cannot find type 'URLRequest' in scope
 67 |     /// - Returns: The configured ``URLRequest``.
 68 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 69 |     func _makeURLRequest() throws -> URLRequest
    |                                      `- error: cannot find type 'URLRequest' in scope
 70 | }
 71 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:85:56: error: cannot find type 'URLRequest' in scope
 83 |     /// - Returns: The configured ``URLRequest``.
 84 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 85 |     @inlinable public func _makeURLRequest() throws -> URLRequest {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 86 |         return try request._makeURLRequest()
 87 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:111:17: error: cannot find type 'URLRequest' in scope
109 |     @inline(__always) package func _makeURLRequest(
110 |         with values: ConfigurationValues
111 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
112 |         _accept(values)
113 |         return try _makeURLRequest()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[334/369] Compiling NetworkingCore CodableJSONEncoder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:69:38: error: cannot find type 'URLRequest' in scope
 67 |     /// - Returns: The configured ``URLRequest``.
 68 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 69 |     func _makeURLRequest() throws -> URLRequest
    |                                      `- error: cannot find type 'URLRequest' in scope
 70 | }
 71 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:85:56: error: cannot find type 'URLRequest' in scope
 83 |     /// - Returns: The configured ``URLRequest``.
 84 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 85 |     @inlinable public func _makeURLRequest() throws -> URLRequest {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 86 |         return try request._makeURLRequest()
 87 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:111:17: error: cannot find type 'URLRequest' in scope
109 |     @inline(__always) package func _makeURLRequest(
110 |         with values: ConfigurationValues
111 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
112 |         _accept(values)
113 |         return try _makeURLRequest()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[335/369] Compiling NetworkingCore DictionaryJSONEncoder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:69:38: error: cannot find type 'URLRequest' in scope
 67 |     /// - Returns: The configured ``URLRequest``.
 68 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 69 |     func _makeURLRequest() throws -> URLRequest
    |                                      `- error: cannot find type 'URLRequest' in scope
 70 | }
 71 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:85:56: error: cannot find type 'URLRequest' in scope
 83 |     /// - Returns: The configured ``URLRequest``.
 84 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 85 |     @inlinable public func _makeURLRequest() throws -> URLRequest {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 86 |         return try request._makeURLRequest()
 87 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:111:17: error: cannot find type 'URLRequest' in scope
109 |     @inline(__always) package func _makeURLRequest(
110 |         with values: ConfigurationValues
111 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
112 |         _accept(values)
113 |         return try _makeURLRequest()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[336/369] Compiling NetworkingCore JSON.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:69:38: error: cannot find type 'URLRequest' in scope
 67 |     /// - Returns: The configured ``URLRequest``.
 68 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 69 |     func _makeURLRequest() throws -> URLRequest
    |                                      `- error: cannot find type 'URLRequest' in scope
 70 | }
 71 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:85:56: error: cannot find type 'URLRequest' in scope
 83 |     /// - Returns: The configured ``URLRequest``.
 84 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 85 |     @inlinable public func _makeURLRequest() throws -> URLRequest {
    |                                                        `- error: cannot find type 'URLRequest' in scope
 86 |         return try request._makeURLRequest()
 87 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/Request.swift:111:17: error: cannot find type 'URLRequest' in scope
109 |     @inline(__always) package func _makeURLRequest(
110 |         with values: ConfigurationValues
111 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
112 |         _accept(values)
113 |         return try _makeURLRequest()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[337/369] Compiling NetworkingCore ContentType.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[338/369] Compiling NetworkingCore TimeoutRequestModifier.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     public func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         let body = try body()
35 |         guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the body set.
31 |     public func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 |     public func modifying(
27 |         _ request: consuming URLRequest
28 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
29 |         for header in headers {
30 |             request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 |     /// - Returns: The modified ``URLRequest`` with headers added.
26 |     public func modifying(
27 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
28 |     ) throws -> URLRequest {
29 |         for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 |     /// The cache policy to apply to the request.
15 |     private let cachePolicy: URLRequest.CachePolicy
   |                              `- error: cannot find type 'URLRequest' in scope
16 |
17 |     /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 |     ///
19 |     /// - Parameter cachePolicy: The cache policy to apply.
20 |     @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
   |                                                    `- error: cannot find type 'URLRequest' in scope
21 |         self.cachePolicy = cachePolicy
22 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.cachePolicy = cachePolicy
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 |     /// - Returns: A request with the specified cache policy applied.
66 |     @inlinable public func cachePolicy(
67 |         _ cachePolicy: URLRequest.CachePolicy
   |                        `- error: cannot find type 'URLRequest' in scope
68 |     ) -> some Request {
69 |         modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.httpMethod = httpMethod.rawValue
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest``.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     public func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         let body = try body()
35 |         guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the body set.
31 |     public func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 |     public func modifying(
27 |         _ request: consuming URLRequest
28 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
29 |         for header in headers {
30 |             request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 |     /// - Returns: The modified ``URLRequest`` with headers added.
26 |     public func modifying(
27 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
28 |     ) throws -> URLRequest {
29 |         for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 |     /// The cache policy to apply to the request.
15 |     private let cachePolicy: URLRequest.CachePolicy
   |                              `- error: cannot find type 'URLRequest' in scope
16 |
17 |     /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 |     ///
19 |     /// - Parameter cachePolicy: The cache policy to apply.
20 |     @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
   |                                                    `- error: cannot find type 'URLRequest' in scope
21 |         self.cachePolicy = cachePolicy
22 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.cachePolicy = cachePolicy
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 |     /// - Returns: A request with the specified cache policy applied.
66 |     @inlinable public func cachePolicy(
67 |         _ cachePolicy: URLRequest.CachePolicy
   |                        `- error: cannot find type 'URLRequest' in scope
68 |     ) -> some Request {
69 |         modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.httpMethod = httpMethod.rawValue
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest``.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     public func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         let body = try body()
35 |         guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the body set.
31 |     public func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 |     public func modifying(
27 |         _ request: consuming URLRequest
28 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
29 |         for header in headers {
30 |             request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 |     /// - Returns: The modified ``URLRequest`` with headers added.
26 |     public func modifying(
27 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
28 |     ) throws -> URLRequest {
29 |         for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 |     /// The cache policy to apply to the request.
15 |     private let cachePolicy: URLRequest.CachePolicy
   |                              `- error: cannot find type 'URLRequest' in scope
16 |
17 |     /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 |     ///
19 |     /// - Parameter cachePolicy: The cache policy to apply.
20 |     @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
   |                                                    `- error: cannot find type 'URLRequest' in scope
21 |         self.cachePolicy = cachePolicy
22 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.cachePolicy = cachePolicy
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 |     /// - Returns: A request with the specified cache policy applied.
66 |     @inlinable public func cachePolicy(
67 |         _ cachePolicy: URLRequest.CachePolicy
   |                        `- error: cannot find type 'URLRequest' in scope
68 |     ) -> some Request {
69 |         modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.httpMethod = httpMethod.rawValue
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest``.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     public func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         let body = try body()
35 |         guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the body set.
31 |     public func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 |     public func modifying(
27 |         _ request: consuming URLRequest
28 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
29 |         for header in headers {
30 |             request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 |     /// - Returns: The modified ``URLRequest`` with headers added.
26 |     public func modifying(
27 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
28 |     ) throws -> URLRequest {
29 |         for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 |     /// The cache policy to apply to the request.
15 |     private let cachePolicy: URLRequest.CachePolicy
   |                              `- error: cannot find type 'URLRequest' in scope
16 |
17 |     /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 |     ///
19 |     /// - Parameter cachePolicy: The cache policy to apply.
20 |     @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
   |                                                    `- error: cannot find type 'URLRequest' in scope
21 |         self.cachePolicy = cachePolicy
22 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.cachePolicy = cachePolicy
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 |     /// - Returns: A request with the specified cache policy applied.
66 |     @inlinable public func cachePolicy(
67 |         _ cachePolicy: URLRequest.CachePolicy
   |                        `- error: cannot find type 'URLRequest' in scope
68 |     ) -> some Request {
69 |         modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.httpMethod = httpMethod.rawValue
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified ``URLRequest``.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.timeoutInterval = timeoutInterval
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified `URLRequest` with the timeout set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.timeoutInterval = timeoutInterval
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[350/369] Compiling NetworkingCore FormDataItemBuilder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.timeoutInterval = timeoutInterval
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified `URLRequest` with the timeout set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.timeoutInterval = timeoutInterval
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[351/369] Compiling NetworkingCore HeadersBuilder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.timeoutInterval = timeoutInterval
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified `URLRequest` with the timeout set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.timeoutInterval = timeoutInterval
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[352/369] Compiling NetworkingCore ModifiersBuilder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.timeoutInterval = timeoutInterval
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified `URLRequest` with the timeout set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.timeoutInterval = timeoutInterval
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[353/369] Compiling NetworkingCore ParametersBuilder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
33 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
34 |         request.timeoutInterval = timeoutInterval
35 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 |     /// - Returns: The modified `URLRequest` with the timeout set.
31 |     @usableFromInline internal func modifying(
32 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
33 |     ) throws -> URLRequest {
34 |         request.timeoutInterval = timeoutInterval
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 |         /// A lock to ensure thread safety when reading or writing values.
112 |         private var lock = os_unfair_lock_s()
    |                            `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 |         /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 |             for key: ObjectIdentifier
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
130 |             defer { os_unfair_lock_unlock(&lock) }
131 |             values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 |         ) {
129 |             os_unfair_lock_lock(&lock)
130 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
131 |             values[key] = value
132 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 |         /// Returns the stored value for the given key, if it exists.
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
137 |             defer { os_unfair_lock_unlock(&lock) }
138 |             return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 |         fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 |             os_unfair_lock_lock(&lock)
137 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
138 |             return values[key]
139 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 |         /// Returns all stored values.
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
    |             `- error: cannot find 'os_unfair_lock_lock' in scope
144 |             defer { os_unfair_lock_unlock(&lock) }
145 |             return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 |         fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 |             os_unfair_lock_lock(&lock)
144 |             defer { os_unfair_lock_unlock(&lock) }
    |                     `- error: cannot find 'os_unfair_lock_unlock' in scope
145 |             return values
146 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Hashable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       `- error: type 'FormDataFile' does not conform to protocol 'Hashable'
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Hashable', preventing synthesized conformance of 'FormDataFile' to 'Hashable'
 32 | }
 33 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:14:23: error: type 'FormDataFile' does not conform to protocol 'Equatable'
 12 |
 13 | /// A form-data item containing a file, used in multipart requests.
 14 | @frozen public struct FormDataFile: Equatable, Hashable {
    |                       |- error: type 'FormDataFile' does not conform to protocol 'Equatable'
    |                       `- note: add stubs for conformance
 15 |     /// The form-data errors.
 16 |     public typealias FactoryError = NetworkingError.FormDataError
    :
 29 |
 30 |     /// The file manager used for file-related operations.
 31 |     private let fileManager: FileManager
    |                 `- note: stored property type 'FileManager' does not conform to protocol 'Equatable', preventing synthesized conformance of 'FormDataFile' to 'Equatable'
 32 | }
 33 |
Swift.==:1:24: note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
  |                        `- note: candidate would match if 'FormDataFile' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'FormDataFile' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
  |                               `- note: candidate would match if 'FormDataFile' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
  |                               `- note: candidate would match if 'FormDataFile' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
  |                    `- note: candidate would match if 'FormDataFile' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
  |                    `- note: candidate would match if 'FormDataFile' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
  |             `- note: protocol requires function '==' with type '(FormDataFile, FormDataFile) -> Bool'
3 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/FormData/FormDataContent/FormDataFile.swift:178:45: error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
176 |     private func checkFileReachability() throws {
177 |         do {
178 |             let reachableFile = try fileURL.checkPromisedItemIsReachable()
    |                                             `- error: value of type 'URL' has no member 'checkPromisedItemIsReachable'
179 |             guard !reachableFile else {return}
180 |             throw FactoryError.unreachableFile(fileURL)
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/EmptyModifier.swift:18:17: error: cannot find type 'URLRequest' in scope
16 |     @inlinable public func modifying(
17 |         _ request: consuming URLRequest
18 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
19 |         return request
20 |     }
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/EmptyModifier.swift:17:30: error: cannot find type 'URLRequest' in scope
15 | extension EmptyModifier: RequestModifier {
16 |     @inlinable public func modifying(
17 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
18 |     ) throws -> URLRequest {
19 |         return request
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                                               `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 |     ///
32 |     /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 |     func modifying(_ request: consuming URLRequest) throws -> URLRequest
   |                                         `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_ConditionalModifier.swift:26:17: error: cannot find type 'URLRequest' in scope
24 |     public func modifying(
25 |         _ request: consuming URLRequest
26 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
27 |         switch storage {
28 |             case .trueContent(let mod):
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_ConditionalModifier.swift:25:30: error: cannot find type 'URLRequest' in scope
23 | extension _ConditionalModifier: RequestModifier where TrueContent: RequestModifier, FalseContent: RequestModifier {
24 |     public func modifying(
25 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
26 |     ) throws -> URLRequest {
27 |         switch storage {
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_OptionalModifier.swift:22:17: error: cannot find type 'URLRequest' in scope
20 |     public func modifying(
21 |         _ request: consuming URLRequest
22 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
23 |         guard let storage else {
24 |             return request
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_OptionalModifier.swift:21:30: error: cannot find type 'URLRequest' in scope
19 | extension _OptionalModifier: RequestModifier where Modifier: RequestModifier {
20 |     public func modifying(
21 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
22 |     ) throws -> URLRequest {
23 |         guard let storage else {
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_TupleModifier.swift:34:17: error: cannot find type 'URLRequest' in scope
 32 |     public func modifying(
 33 |         _ request: consuming URLRequest
 34 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
 35 |         var urlRequest = try value.0.modifying(consume request)
 36 |         urlRequest = try value.1.modifying(consume urlRequest)
BUILD FAILURE 6.1 linux