Build Information
Failed to build Networking, reference 1.0.2 (e32c6b
), with Swift 6.1 for Linux on 9 Jun 2025 11:04:48 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
| `- error: cannot find type 'URLRequest' in scope
16 |
17 | /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 | ///
19 | /// - Parameter cachePolicy: The cache policy to apply.
20 | @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
| `- error: cannot find type 'URLRequest' in scope
21 | self.cachePolicy = cachePolicy
22 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.cachePolicy = cachePolicy
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 | /// - Returns: A request with the specified cache policy applied.
66 | @inlinable public func cachePolicy(
67 | _ cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
68 | ) -> some Request {
69 | modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.httpMethod = httpMethod.rawValue
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest``.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | public func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | let body = try body()
35 | guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the body set.
31 | public func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 | public func modifying(
27 | _ request: consuming URLRequest
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | for header in headers {
30 | request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 | /// - Returns: The modified ``URLRequest`` with headers added.
26 | public func modifying(
27 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
28 | ) throws -> URLRequest {
29 | for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 | /// The cache policy to apply to the request.
15 | private let cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
16 |
17 | /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 | ///
19 | /// - Parameter cachePolicy: The cache policy to apply.
20 | @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
| `- error: cannot find type 'URLRequest' in scope
21 | self.cachePolicy = cachePolicy
22 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.cachePolicy = cachePolicy
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 | /// - Returns: A request with the specified cache policy applied.
66 | @inlinable public func cachePolicy(
67 | _ cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
68 | ) -> some Request {
69 | modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.httpMethod = httpMethod.rawValue
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest``.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | public func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | let body = try body()
35 | guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the body set.
31 | public func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 | public func modifying(
27 | _ request: consuming URLRequest
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | for header in headers {
30 | request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 | /// - Returns: The modified ``URLRequest`` with headers added.
26 | public func modifying(
27 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
28 | ) throws -> URLRequest {
29 | for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 | /// The cache policy to apply to the request.
15 | private let cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
16 |
17 | /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 | ///
19 | /// - Parameter cachePolicy: The cache policy to apply.
20 | @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
| `- error: cannot find type 'URLRequest' in scope
21 | self.cachePolicy = cachePolicy
22 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.cachePolicy = cachePolicy
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 | /// - Returns: A request with the specified cache policy applied.
66 | @inlinable public func cachePolicy(
67 | _ cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
68 | ) -> some Request {
69 | modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.httpMethod = httpMethod.rawValue
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest``.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.httpMethod = httpMethod.rawValue
[335/374] Compiling NetworkingCore TimeoutRequestModifier.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 |
[336/374] Compiling NetworkingCore FormDataItemBuilder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.timeoutInterval = timeoutInterval
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified `URLRequest` with the timeout set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.timeoutInterval = timeoutInterval
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[337/374] Compiling NetworkingCore HeadersBuilder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.timeoutInterval = timeoutInterval
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified `URLRequest` with the timeout set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.timeoutInterval = timeoutInterval
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[338/374] Compiling NetworkingCore ModifiersBuilder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.timeoutInterval = timeoutInterval
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified `URLRequest` with the timeout set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.timeoutInterval = timeoutInterval
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
[339/374] Compiling NetworkingCore ParametersBuilder.swift
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.timeoutInterval = timeoutInterval
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/TimeoutRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified `URLRequest` with the timeout set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.timeoutInterval = timeoutInterval
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/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 |
/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 |
/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 |
/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 |
/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 |
/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 |
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 | /// A lock to ensure thread safety when reading or writing values.
112 | private var lock = os_unfair_lock_s()
| `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 | /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 | for key: ObjectIdentifier
128 | ) {
129 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
130 | defer { os_unfair_lock_unlock(&lock) }
131 | values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 | ) {
129 | os_unfair_lock_lock(&lock)
130 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
131 | values[key] = value
132 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 | /// Returns the stored value for the given key, if it exists.
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
137 | defer { os_unfair_lock_unlock(&lock) }
138 | return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
137 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
138 | return values[key]
139 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 | /// Returns all stored values.
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
144 | defer { os_unfair_lock_unlock(&lock) }
145 | return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
144 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
145 | return values
146 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 | /// A lock to ensure thread safety when reading or writing values.
112 | private var lock = os_unfair_lock_s()
| `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 | /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 | for key: ObjectIdentifier
128 | ) {
129 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
130 | defer { os_unfair_lock_unlock(&lock) }
131 | values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 | ) {
129 | os_unfair_lock_lock(&lock)
130 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
131 | values[key] = value
132 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 | /// Returns the stored value for the given key, if it exists.
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
137 | defer { os_unfair_lock_unlock(&lock) }
138 | return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
137 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
138 | return values[key]
139 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 | /// Returns all stored values.
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
144 | defer { os_unfair_lock_unlock(&lock) }
145 | return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
144 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
145 | return values
146 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 | /// A lock to ensure thread safety when reading or writing values.
112 | private var lock = os_unfair_lock_s()
| `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 | /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 | for key: ObjectIdentifier
128 | ) {
129 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
130 | defer { os_unfair_lock_unlock(&lock) }
131 | values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 | ) {
129 | os_unfair_lock_lock(&lock)
130 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
131 | values[key] = value
132 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 | /// Returns the stored value for the given key, if it exists.
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
137 | defer { os_unfair_lock_unlock(&lock) }
138 | return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
137 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
138 | return values[key]
139 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 | /// Returns all stored values.
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
144 | defer { os_unfair_lock_unlock(&lock) }
145 | return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
144 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
145 | return values
146 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 | /// A lock to ensure thread safety when reading or writing values.
112 | private var lock = os_unfair_lock_s()
| `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 | /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 | for key: ObjectIdentifier
128 | ) {
129 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
130 | defer { os_unfair_lock_unlock(&lock) }
131 | values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 | ) {
129 | os_unfair_lock_lock(&lock)
130 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
131 | values[key] = value
132 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 | /// Returns the stored value for the given key, if it exists.
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
137 | defer { os_unfair_lock_unlock(&lock) }
138 | return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
137 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
138 | return values[key]
139 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 | /// Returns all stored values.
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
144 | defer { os_unfair_lock_unlock(&lock) }
145 | return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
144 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
145 | return values
146 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 | /// A lock to ensure thread safety when reading or writing values.
112 | private var lock = os_unfair_lock_s()
| `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 | /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 | for key: ObjectIdentifier
128 | ) {
129 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
130 | defer { os_unfair_lock_unlock(&lock) }
131 | values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 | ) {
129 | os_unfair_lock_lock(&lock)
130 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
131 | values[key] = value
132 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 | /// Returns the stored value for the given key, if it exists.
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
137 | defer { os_unfair_lock_unlock(&lock) }
138 | return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
137 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
138 | return values[key]
139 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 | /// Returns all stored values.
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
144 | defer { os_unfair_lock_unlock(&lock) }
145 | return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
144 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
145 | return values
146 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:112:28: error: cannot find 'os_unfair_lock_s' in scope
110 | // MARK: - Properties
111 | /// A lock to ensure thread safety when reading or writing values.
112 | private var lock = os_unfair_lock_s()
| `- error: cannot find 'os_unfair_lock_s' in scope
113 |
114 | /// The stored configuration values, keyed by object identifier.
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:129:13: error: cannot find 'os_unfair_lock_lock' in scope
127 | for key: ObjectIdentifier
128 | ) {
129 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
130 | defer { os_unfair_lock_unlock(&lock) }
131 | values[key] = value
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:130:21: error: cannot find 'os_unfair_lock_unlock' in scope
128 | ) {
129 | os_unfair_lock_lock(&lock)
130 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
131 | values[key] = value
132 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:136:13: error: cannot find 'os_unfair_lock_lock' in scope
134 | /// Returns the stored value for the given key, if it exists.
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
137 | defer { os_unfair_lock_unlock(&lock) }
138 | return values[key]
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:137:21: error: cannot find 'os_unfair_lock_unlock' in scope
135 | fileprivate func value(for key: ObjectIdentifier) -> (any Sendable)? {
136 | os_unfair_lock_lock(&lock)
137 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
138 | return values[key]
139 | }
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:143:13: error: cannot find 'os_unfair_lock_lock' in scope
141 | /// Returns all stored values.
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
| `- error: cannot find 'os_unfair_lock_lock' in scope
144 | defer { os_unfair_lock_unlock(&lock) }
145 | return values
/host/spi-builder-workspace/Sources/NetworkingCore/Configurations/Configurations.swift:144:21: error: cannot find 'os_unfair_lock_unlock' in scope
142 | fileprivate func allValues() -> [ObjectIdentifier: any Sendable] {
143 | os_unfair_lock_lock(&lock)
144 | defer { os_unfair_lock_unlock(&lock) }
| `- error: cannot find 'os_unfair_lock_unlock' in scope
145 | return values
146 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | public func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | let body = try body()
35 | guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the body set.
31 | public func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 | public func modifying(
27 | _ request: consuming URLRequest
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | for header in headers {
30 | request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 | /// - Returns: The modified ``URLRequest`` with headers added.
26 | public func modifying(
27 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
28 | ) throws -> URLRequest {
29 | for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 | /// The cache policy to apply to the request.
15 | private let cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
16 |
17 | /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 | ///
19 | /// - Parameter cachePolicy: The cache policy to apply.
20 | @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
| `- error: cannot find type 'URLRequest' in scope
21 | self.cachePolicy = cachePolicy
22 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.cachePolicy = cachePolicy
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 | /// - Returns: A request with the specified cache policy applied.
66 | @inlinable public func cachePolicy(
67 | _ cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
68 | ) -> some Request {
69 | modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.httpMethod = httpMethod.rawValue
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest``.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | public func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | let body = try body()
35 | guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the body set.
31 | public func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 | public func modifying(
27 | _ request: consuming URLRequest
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | for header in headers {
30 | request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 | /// - Returns: The modified ``URLRequest`` with headers added.
26 | public func modifying(
27 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
28 | ) throws -> URLRequest {
29 | for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 | /// The cache policy to apply to the request.
15 | private let cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
16 |
17 | /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 | ///
19 | /// - Parameter cachePolicy: The cache policy to apply.
20 | @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
| `- error: cannot find type 'URLRequest' in scope
21 | self.cachePolicy = cachePolicy
22 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.cachePolicy = cachePolicy
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 | /// - Returns: A request with the specified cache policy applied.
66 | @inlinable public func cachePolicy(
67 | _ cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
68 | ) -> some Request {
69 | modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.httpMethod = httpMethod.rawValue
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest``.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | public func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | let body = try body()
35 | guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the body set.
31 | public func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 | public func modifying(
27 | _ request: consuming URLRequest
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | for header in headers {
30 | request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 | /// - Returns: The modified ``URLRequest`` with headers added.
26 | public func modifying(
27 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
28 | ) throws -> URLRequest {
29 | for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 | /// The cache policy to apply to the request.
15 | private let cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
16 |
17 | /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 | ///
19 | /// - Parameter cachePolicy: The cache policy to apply.
20 | @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
| `- error: cannot find type 'URLRequest' in scope
21 | self.cachePolicy = cachePolicy
22 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.cachePolicy = cachePolicy
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 | /// - Returns: A request with the specified cache policy applied.
66 | @inlinable public func cachePolicy(
67 | _ cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
68 | ) -> some Request {
69 | modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.httpMethod = httpMethod.rawValue
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest``.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | public func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | let body = try body()
35 | guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the body set.
31 | public func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 | public func modifying(
27 | _ request: consuming URLRequest
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | for header in headers {
30 | request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 | /// - Returns: The modified ``URLRequest`` with headers added.
26 | public func modifying(
27 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
28 | ) throws -> URLRequest {
29 | for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 | /// The cache policy to apply to the request.
15 | private let cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
16 |
17 | /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 | ///
19 | /// - Parameter cachePolicy: The cache policy to apply.
20 | @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
| `- error: cannot find type 'URLRequest' in scope
21 | self.cachePolicy = cachePolicy
22 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.cachePolicy = cachePolicy
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 | /// - Returns: A request with the specified cache policy applied.
66 | @inlinable public func cachePolicy(
67 | _ cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
68 | ) -> some Request {
69 | modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.httpMethod = httpMethod.rawValue
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest``.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | public func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | let body = try body()
35 | guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the body set.
31 | public func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 | public func modifying(
27 | _ request: consuming URLRequest
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | for header in headers {
30 | request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 | /// - Returns: The modified ``URLRequest`` with headers added.
26 | public func modifying(
27 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
28 | ) throws -> URLRequest {
29 | for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 | /// The cache policy to apply to the request.
15 | private let cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
16 |
17 | /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 | ///
19 | /// - Parameter cachePolicy: The cache policy to apply.
20 | @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
| `- error: cannot find type 'URLRequest' in scope
21 | self.cachePolicy = cachePolicy
22 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.cachePolicy = cachePolicy
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 | /// - Returns: A request with the specified cache policy applied.
66 | @inlinable public func cachePolicy(
67 | _ cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
68 | ) -> some Request {
69 | modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.httpMethod = httpMethod.rawValue
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest``.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | public func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | let body = try body()
35 | guard let body else {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Body/RequestBody.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the body set.
31 | public func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | let body = try body()
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:63: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/Request/RequestModifier.swift:33:41: error: cannot find type 'URLRequest' in scope
31 | ///
32 | /// - Returns: The ``URLRequest`` with the modifier applied to it.
33 | func modifying(_ request: consuming URLRequest) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
34 | }
35 |
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:28:17: error: cannot find type 'URLRequest' in scope
26 | public func modifying(
27 | _ request: consuming URLRequest
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | for header in headers {
30 | request.setValue(header.value, forHTTPHeaderField: header.key)
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/Headers/RequestHeader.swift:27:30: error: cannot find type 'URLRequest' in scope
25 | /// - Returns: The modified ``URLRequest`` with headers added.
26 | public func modifying(
27 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
28 | ) throws -> URLRequest {
29 | for header in headers {
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | @RequestModifier @usableFromInline internal struct CachePolicyRequestModifier {
14 | /// The cache policy to apply to the request.
15 | private let cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
16 |
17 | /// Creates a new ``CachePolicyRequestModifier`` with the specified cache policy.
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:20:52: error: cannot find type 'URLRequest' in scope
18 | ///
19 | /// - Parameter cachePolicy: The cache policy to apply.
20 | @usableFromInline internal init(_ cachePolicy: URLRequest.CachePolicy) {
| `- error: cannot find type 'URLRequest' in scope
21 | self.cachePolicy = cachePolicy
22 | }
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.cachePolicy = cachePolicy
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest`` with the cache policy set.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.cachePolicy = cachePolicy
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/CachePolicyRequestModifier.swift:67:24: error: cannot find type 'URLRequest' in scope
65 | /// - Returns: A request with the specified cache policy applied.
66 | @inlinable public func cachePolicy(
67 | _ cachePolicy: URLRequest.CachePolicy
| `- error: cannot find type 'URLRequest' in scope
68 | ) -> some Request {
69 | modifier(CachePolicyRequestModifier(cachePolicy))
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:33:17: error: cannot find type 'URLRequest' in scope
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
33 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
34 | request.httpMethod = httpMethod.rawValue
35 | return request
/host/spi-builder-workspace/Sources/NetworkingCore/RequestModifiers/HTTPMethodRequestModifier.swift:32:30: error: cannot find type 'URLRequest' in scope
30 | /// - Returns: The modified ``URLRequest``.
31 | @usableFromInline internal func modifying(
32 | _ request: consuming URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 | ) throws -> URLRequest {
34 | request.httpMethod = httpMethod.rawValue
/host/spi-builder-workspace/Sources/NetworkingCore/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 {
/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 {
/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 {
/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 {
/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 {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[363/374] 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)
error: emit-module command failed with exit code 1 (use -v to see invocation)
/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)
[365/374] 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)
[366/374] 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)
[367/374] 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)
[368/374] 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)
[369/374] 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)
/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)
/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)
/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)
/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)
/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)
BUILD FAILURE 6.1 linux