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

Build Command

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

Build Log

 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 |
[288/369] Compiling NetworkingCore AcceptLanguage.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 |
[289/369] Compiling NetworkingCore ContentDisposition.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 |
[290/369] Compiling NetworkingCore Configurable.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:53:45: error: cannot find type 'URLRequest' in scope
 51 |     /// - Returns: The configured ``URLRequest``.
 52 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 53 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 54 |         return try storage.makeURLRequest()
 55 |     }
/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/AnyRequest.swift:80:50: error: cannot find type 'URLRequest' in scope
 78 |         ///
 79 |         /// - Returns: A configured ``URLRequest``.
 80 |         internal func makeURLRequest() throws -> URLRequest {
    |                                                  `- error: cannot find type 'URLRequest' in scope
 81 |             fatalError("Subclasses must override this member.")
 82 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:112:62: error: cannot find type 'URLRequest' in scope
110 |         ///
111 |         /// - Returns: A configured ``URLRequest``.
112 |         fileprivate override func makeURLRequest() throws -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
113 |             return try request._makeURLRequest()
114 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:120:45: error: cannot find type 'URLRequest' in scope
118 |     /// - Returns: The configured ``URLRequest``.
119 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
120 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
121 |         let baseURL = configurations.baseURL
122 |         guard let url = url ?? baseURL else {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:126:26: error: cannot find 'URLRequest' in scope
124 |         }
125 |
126 |         var urlRequest = URLRequest(url: url)
    |                          `- error: cannot find 'URLRequest' in scope
127 |         if let path {
128 |             urlRequest = try PathRequestModifier([path])
/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/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/ModifiableRequest.swift:57:45: error: cannot find type 'URLRequest' in scope
 55 |     /// - Returns: A modified ``URLRequest`` ready to be sent.
 56 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 57 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 58 |         let urlRequest = try request._makeURLRequest()
 59 |         return try modifier.modifying(consume urlRequest)
/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()
[291/369] Compiling NetworkingCore Configurations.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:53:45: error: cannot find type 'URLRequest' in scope
 51 |     /// - Returns: The configured ``URLRequest``.
 52 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 53 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 54 |         return try storage.makeURLRequest()
 55 |     }
/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/AnyRequest.swift:80:50: error: cannot find type 'URLRequest' in scope
 78 |         ///
 79 |         /// - Returns: A configured ``URLRequest``.
 80 |         internal func makeURLRequest() throws -> URLRequest {
    |                                                  `- error: cannot find type 'URLRequest' in scope
 81 |             fatalError("Subclasses must override this member.")
 82 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:112:62: error: cannot find type 'URLRequest' in scope
110 |         ///
111 |         /// - Returns: A configured ``URLRequest``.
112 |         fileprivate override func makeURLRequest() throws -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
113 |             return try request._makeURLRequest()
114 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:120:45: error: cannot find type 'URLRequest' in scope
118 |     /// - Returns: The configured ``URLRequest``.
119 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
120 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
121 |         let baseURL = configurations.baseURL
122 |         guard let url = url ?? baseURL else {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:126:26: error: cannot find 'URLRequest' in scope
124 |         }
125 |
126 |         var urlRequest = URLRequest(url: url)
    |                          `- error: cannot find 'URLRequest' in scope
127 |         if let path {
128 |             urlRequest = try PathRequestModifier([path])
/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/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/ModifiableRequest.swift:57:45: error: cannot find type 'URLRequest' in scope
 55 |     /// - Returns: A modified ``URLRequest`` ready to be sent.
 56 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 57 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 58 |         let urlRequest = try request._makeURLRequest()
 59 |         return try modifier.modifying(consume urlRequest)
/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()
[292/369] Compiling NetworkingCore DynamicConfigurable.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:53:45: error: cannot find type 'URLRequest' in scope
 51 |     /// - Returns: The configured ``URLRequest``.
 52 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 53 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 54 |         return try storage.makeURLRequest()
 55 |     }
/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/AnyRequest.swift:80:50: error: cannot find type 'URLRequest' in scope
 78 |         ///
 79 |         /// - Returns: A configured ``URLRequest``.
 80 |         internal func makeURLRequest() throws -> URLRequest {
    |                                                  `- error: cannot find type 'URLRequest' in scope
 81 |             fatalError("Subclasses must override this member.")
 82 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:112:62: error: cannot find type 'URLRequest' in scope
110 |         ///
111 |         /// - Returns: A configured ``URLRequest``.
112 |         fileprivate override func makeURLRequest() throws -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
113 |             return try request._makeURLRequest()
114 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:120:45: error: cannot find type 'URLRequest' in scope
118 |     /// - Returns: The configured ``URLRequest``.
119 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
120 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
121 |         let baseURL = configurations.baseURL
122 |         guard let url = url ?? baseURL else {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:126:26: error: cannot find 'URLRequest' in scope
124 |         }
125 |
126 |         var urlRequest = URLRequest(url: url)
    |                          `- error: cannot find 'URLRequest' in scope
127 |         if let path {
128 |             urlRequest = try PathRequestModifier([path])
/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/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/ModifiableRequest.swift:57:45: error: cannot find type 'URLRequest' in scope
 55 |     /// - Returns: A modified ``URLRequest`` ready to be sent.
 56 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 57 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 58 |         let urlRequest = try request._makeURLRequest()
 59 |         return try modifier.modifying(consume urlRequest)
/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()
[293/369] Compiling NetworkingCore FormDataError.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:53:45: error: cannot find type 'URLRequest' in scope
 51 |     /// - Returns: The configured ``URLRequest``.
 52 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 53 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 54 |         return try storage.makeURLRequest()
 55 |     }
/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/AnyRequest.swift:80:50: error: cannot find type 'URLRequest' in scope
 78 |         ///
 79 |         /// - Returns: A configured ``URLRequest``.
 80 |         internal func makeURLRequest() throws -> URLRequest {
    |                                                  `- error: cannot find type 'URLRequest' in scope
 81 |             fatalError("Subclasses must override this member.")
 82 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:112:62: error: cannot find type 'URLRequest' in scope
110 |         ///
111 |         /// - Returns: A configured ``URLRequest``.
112 |         fileprivate override func makeURLRequest() throws -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
113 |             return try request._makeURLRequest()
114 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:120:45: error: cannot find type 'URLRequest' in scope
118 |     /// - Returns: The configured ``URLRequest``.
119 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
120 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
121 |         let baseURL = configurations.baseURL
122 |         guard let url = url ?? baseURL else {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:126:26: error: cannot find 'URLRequest' in scope
124 |         }
125 |
126 |         var urlRequest = URLRequest(url: url)
    |                          `- error: cannot find 'URLRequest' in scope
127 |         if let path {
128 |             urlRequest = try PathRequestModifier([path])
/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/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/ModifiableRequest.swift:57:45: error: cannot find type 'URLRequest' in scope
 55 |     /// - Returns: A modified ``URLRequest`` ready to be sent.
 56 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 57 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 58 |         let urlRequest = try request._makeURLRequest()
 59 |         return try modifier.modifying(consume urlRequest)
/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()
[294/369] Compiling NetworkingCore JSONError.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:53:45: error: cannot find type 'URLRequest' in scope
 51 |     /// - Returns: The configured ``URLRequest``.
 52 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 53 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 54 |         return try storage.makeURLRequest()
 55 |     }
/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/AnyRequest.swift:80:50: error: cannot find type 'URLRequest' in scope
 78 |         ///
 79 |         /// - Returns: A configured ``URLRequest``.
 80 |         internal func makeURLRequest() throws -> URLRequest {
    |                                                  `- error: cannot find type 'URLRequest' in scope
 81 |             fatalError("Subclasses must override this member.")
 82 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:112:62: error: cannot find type 'URLRequest' in scope
110 |         ///
111 |         /// - Returns: A configured ``URLRequest``.
112 |         fileprivate override func makeURLRequest() throws -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
113 |             return try request._makeURLRequest()
114 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:120:45: error: cannot find type 'URLRequest' in scope
118 |     /// - Returns: The configured ``URLRequest``.
119 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
120 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
121 |         let baseURL = configurations.baseURL
122 |         guard let url = url ?? baseURL else {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:126:26: error: cannot find 'URLRequest' in scope
124 |         }
125 |
126 |         var urlRequest = URLRequest(url: url)
    |                          `- error: cannot find 'URLRequest' in scope
127 |         if let path {
128 |             urlRequest = try PathRequestModifier([path])
/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/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/ModifiableRequest.swift:57:45: error: cannot find type 'URLRequest' in scope
 55 |     /// - Returns: A modified ``URLRequest`` ready to be sent.
 56 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 57 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 58 |         let urlRequest = try request._makeURLRequest()
 59 |         return try modifier.modifying(consume urlRequest)
/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()
[295/369] Compiling NetworkingCore NetworkingError.swift
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:53:45: error: cannot find type 'URLRequest' in scope
 51 |     /// - Returns: The configured ``URLRequest``.
 52 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 53 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 54 |         return try storage.makeURLRequest()
 55 |     }
/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/AnyRequest.swift:80:50: error: cannot find type 'URLRequest' in scope
 78 |         ///
 79 |         /// - Returns: A configured ``URLRequest``.
 80 |         internal func makeURLRequest() throws -> URLRequest {
    |                                                  `- error: cannot find type 'URLRequest' in scope
 81 |             fatalError("Subclasses must override this member.")
 82 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:112:62: error: cannot find type 'URLRequest' in scope
110 |         ///
111 |         /// - Returns: A configured ``URLRequest``.
112 |         fileprivate override func makeURLRequest() throws -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
113 |             return try request._makeURLRequest()
114 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:120:45: error: cannot find type 'URLRequest' in scope
118 |     /// - Returns: The configured ``URLRequest``.
119 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
120 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
121 |         let baseURL = configurations.baseURL
122 |         guard let url = url ?? baseURL else {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:126:26: error: cannot find 'URLRequest' in scope
124 |         }
125 |
126 |         var urlRequest = URLRequest(url: url)
    |                          `- error: cannot find 'URLRequest' in scope
127 |         if let path {
128 |             urlRequest = try PathRequestModifier([path])
/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/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/ModifiableRequest.swift:57:45: error: cannot find type 'URLRequest' in scope
 55 |     /// - Returns: A modified ``URLRequest`` ready to be sent.
 56 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 57 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 58 |         let urlRequest = try request._makeURLRequest()
 59 |         return try modifier.modifying(consume urlRequest)
/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()
[296/369] Compiling NetworkingCore ContentType.swift
/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/Parameters/RequestParameter.swift:30:17: error: cannot find type 'URLRequest' in scope
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
 30 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
 32 |             request.url?.append(queryItems: parameters)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Parameters/RequestParameter.swift:29:30: error: cannot find type 'URLRequest' in scope
 27 |     /// - Returns: The modified ``URLRequest`` with query parameters added.
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 30 |     ) throws -> URLRequest {
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
[297/369] Compiling NetworkingCore Header.swift
/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/Parameters/RequestParameter.swift:30:17: error: cannot find type 'URLRequest' in scope
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
 30 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
 32 |             request.url?.append(queryItems: parameters)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Parameters/RequestParameter.swift:29:30: error: cannot find type 'URLRequest' in scope
 27 |     /// - Returns: The modified ``URLRequest`` with query parameters added.
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 30 |     ) throws -> URLRequest {
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
[298/369] Compiling NetworkingCore RequestHeader.swift
/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/Parameters/RequestParameter.swift:30:17: error: cannot find type 'URLRequest' in scope
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
 30 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
 32 |             request.url?.append(queryItems: parameters)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Parameters/RequestParameter.swift:29:30: error: cannot find type 'URLRequest' in scope
 27 |     /// - Returns: The modified ``URLRequest`` with query parameters added.
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 30 |     ) throws -> URLRequest {
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
[299/369] Compiling NetworkingCore Parameter.swift
/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/Parameters/RequestParameter.swift:30:17: error: cannot find type 'URLRequest' in scope
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
 30 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
 32 |             request.url?.append(queryItems: parameters)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Parameters/RequestParameter.swift:29:30: error: cannot find type 'URLRequest' in scope
 27 |     /// - Returns: The modified ``URLRequest`` with query parameters added.
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 30 |     ) throws -> URLRequest {
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
[300/369] Compiling NetworkingCore RequestParameter.swift
/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/Parameters/RequestParameter.swift:30:17: error: cannot find type 'URLRequest' in scope
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
 30 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
 32 |             request.url?.append(queryItems: parameters)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Parameters/RequestParameter.swift:29:30: error: cannot find type 'URLRequest' in scope
 27 |     /// - Returns: The modified ``URLRequest`` with query parameters added.
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 30 |     ) throws -> URLRequest {
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
[301/369] Compiling NetworkingCore ConfigurationMacro.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 |
[302/369] Compiling NetworkingCore ModifierMacros.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 |
[303/369] Compiling NetworkingCore RequestMacro.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 |
[304/369] Compiling NetworkingCore AnyRequest.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 |
[305/369] Compiling NetworkingCore HTTPRequest.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 |
[306/369] Compiling NetworkingCore PathRequestModifier.swift
/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
[307/369] Compiling NetworkingCore TimeoutRequestModifier.swift
/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
[308/369] Compiling NetworkingCore FormDataItemBuilder.swift
/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
[309/369] Compiling NetworkingCore HeadersBuilder.swift
/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
[310/369] Compiling NetworkingCore ModifiersBuilder.swift
/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
[311/369] Compiling NetworkingCore ParametersBuilder.swift
/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
[312/369] Compiling NetworkingCore ModifiableRequest.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 |
[313/369] Compiling NetworkingCore Never+Request.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 |
[314/369] Compiling NetworkingCore Request.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 |
[315/369] Compiling NetworkingCore RequestModifier.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 |
[316/369] Compiling NetworkingCore RequestMethod.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 |
[317/369] Compiling NetworkingCore FormData.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 |
[318/369] Compiling NetworkingCore EmptyModifier.swift
/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)
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_TupleModifier.swift:33:30: error: cannot find type 'URLRequest' in scope
 31 |
 32 |     public func modifying(
 33 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 34 |     ) throws -> URLRequest {
 35 |         var urlRequest = try value.0.modifying(consume request)
[319/369] Compiling NetworkingCore _ConditionalModifier.swift
/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)
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_TupleModifier.swift:33:30: error: cannot find type 'URLRequest' in scope
 31 |
 32 |     public func modifying(
 33 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 34 |     ) throws -> URLRequest {
 35 |         var urlRequest = try value.0.modifying(consume request)
[320/369] Compiling NetworkingCore _OptionalModifier.swift
/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)
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_TupleModifier.swift:33:30: error: cannot find type 'URLRequest' in scope
 31 |
 32 |     public func modifying(
 33 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 34 |     ) throws -> URLRequest {
 35 |         var urlRequest = try value.0.modifying(consume request)
[321/369] Compiling NetworkingCore _TupleModifier.swift
/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)
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_TupleModifier.swift:33:30: error: cannot find type 'URLRequest' in scope
 31 |
 32 |     public func modifying(
 33 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 34 |     ) throws -> URLRequest {
 35 |         var urlRequest = try value.0.modifying(consume request)
[322/369] Compiling NetworkingCore UTTypeSupport.swift
/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)
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_TupleModifier.swift:33:30: error: cannot find type 'URLRequest' in scope
 31 |
 32 |     public func modifying(
 33 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 34 |     ) throws -> URLRequest {
 35 |         var urlRequest = try value.0.modifying(consume request)
[323/369] Compiling NetworkingCore FormDataBoundaryFactory.swift
/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 |         }
[324/369] Compiling NetworkingCore FormDataBody.swift
/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 |         }
[325/369] Compiling NetworkingCore FormDataFile.swift
/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 |         }
[326/369] Compiling NetworkingCore FormDataItem.swift
/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 |         }
[327/369] Compiling NetworkingCore CodableJSONEncoder.swift
/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 |         }
[328/369] Compiling NetworkingCore DictionaryJSONEncoder.swift
/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 |         }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[329/369] Emitting module NetworkingCore
/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/Request/AnyRequest.swift:53:45: error: cannot find type 'URLRequest' in scope
 51 |     /// - Returns: The configured ``URLRequest``.
 52 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 53 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 54 |         return try storage.makeURLRequest()
 55 |     }
/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/AnyRequest.swift:80:50: error: cannot find type 'URLRequest' in scope
 78 |         ///
 79 |         /// - Returns: A configured ``URLRequest``.
 80 |         internal func makeURLRequest() throws -> URLRequest {
    |                                                  `- error: cannot find type 'URLRequest' in scope
 81 |             fatalError("Subclasses must override this member.")
 82 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/AnyRequest.swift:112:62: error: cannot find type 'URLRequest' in scope
110 |         ///
111 |         /// - Returns: A configured ``URLRequest``.
112 |         fileprivate override func makeURLRequest() throws -> URLRequest {
    |                                                              `- error: cannot find type 'URLRequest' in scope
113 |             return try request._makeURLRequest()
114 |         }
/host/spi-builder-workspace/Sources/NetworkingCore/Request/HTTPRequest.swift:120:45: error: cannot find type 'URLRequest' in scope
118 |     /// - Returns: The configured ``URLRequest``.
119 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
120 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
121 |         let baseURL = configurations.baseURL
122 |         guard let url = url ?? baseURL else {
/host/spi-builder-workspace/Sources/NetworkingCore/Request/ModifiableRequest.swift:57:45: error: cannot find type 'URLRequest' in scope
 55 |     /// - Returns: A modified ``URLRequest`` ready to be sent.
 56 |     /// - Note: This type is prefixed with `_` to indicate that it is not intended for public use.
 57 |     public func _makeURLRequest() throws -> URLRequest {
    |                                             `- error: cannot find type 'URLRequest' in scope
 58 |         let urlRequest = try request._makeURLRequest()
 59 |         return try modifier.modifying(consume urlRequest)
/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 |
/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/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/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/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/Parameters/RequestParameter.swift:30:17: error: cannot find type 'URLRequest' in scope
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
 30 |     ) throws -> URLRequest {
    |                 `- error: cannot find type 'URLRequest' in scope
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
 32 |             request.url?.append(queryItems: parameters)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Parameters/RequestParameter.swift:29:30: error: cannot find type 'URLRequest' in scope
 27 |     /// - Returns: The modified ``URLRequest`` with query parameters added.
 28 |     public func modifying(
 29 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 30 |     ) throws -> URLRequest {
 31 |         if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:36:17: error: cannot find type 'URLRequest' in scope
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
36 |     ) throws -> URLRequest {
   |                 `- error: cannot find type 'URLRequest' in scope
37 |         for path in paths {
38 |             if #available(iOS 16.0, macOS 13.0, watchOS 9.0, tvOS 16.0, visionOS 1.0, macCatalyst 16.0, *) {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/PathRequestModifier.swift:35:30: error: cannot find type 'URLRequest' in scope
33 |     /// - Returns: The modified ``URLRequest`` with paths appended.
34 |     @usableFromInline internal func modifying(
35 |         _ request: consuming URLRequest
   |                              `- error: cannot find type 'URLRequest' in scope
36 |     ) throws -> URLRequest {
37 |         for path in paths {
/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/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/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)
/host/spi-builder-workspace/Sources/NetworkingCore/ResultBuilders/Shared Modifiers/_TupleModifier.swift:33:30: error: cannot find type 'URLRequest' in scope
 31 |
 32 |     public func modifying(
 33 |         _ request: consuming URLRequest
    |                              `- error: cannot find type 'URLRequest' in scope
 34 |     ) throws -> URLRequest {
 35 |         var urlRequest = try value.0.modifying(consume request)
BUILD FAILURE 6.1 android