The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ComposableRequest, reference main (151026), with Swift 6.2 for macOS (SPM) on 19 Jun 2025 23:06:18 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sbertix/ComposableRequest.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sbertix/ComposableRequest
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1510263 feat!: update to `7.0.0` (#51)
Cloned https://github.com/sbertix/ComposableRequest.git
Revision (git rev-parse @):
151026359f4a2c89dcd06f6880eb4a940dcbb7bc
SUCCESS checkout https://github.com/sbertix/ComposableRequest.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/sbertix/ComposableRequest.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/13] Compiling Storages Storage.swift
[7/13] Compiling Storages AnyStorage.swift
[8/13] Emitting module Storages
[9/13] Compiling Storages Storable.swift
[10/13] Compiling Storages TransientStorage.swift
[11/13] Compiling Storages UserDefaultsStorage.swift
[12/63] Emitting module KeychainAccess
[13/63] Compiling KeychainAccess Keychain.swift
[14/65] Emitting module Requests
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[15/70] Compiling Requests DefaultResponse.swift
[16/70] Compiling Requests EndpointError.swift
[17/70] Compiling Requests NextAction.swift
[18/70] Compiling Requests NextInput.swift
[19/70] Compiling Requests Lock.swift
[20/70] Compiling Requests AnyDecodable.swift
[21/70] Compiling Requests Cellular.swift
[22/70] Compiling Requests Constrained.swift
[23/70] Compiling Requests Expensive.swift
[24/70] Compiling Requests Service.swift
[25/70] Compiling Requests Timeout.swift
[26/70] Compiling Requests HandleEvents.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Parent.Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init {
 49 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:59: warning: capture of non-sendable type 'R.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                           `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init { try await iterator.next().flatMap(content) }
 49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:44:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
42 |     /// - returns: Some `AsyncStream`.
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
   |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
45 |         return .init { try await iterator.next() }
46 |     }
[27/70] Compiling Requests Last.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Parent.Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init {
 49 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:59: warning: capture of non-sendable type 'R.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                           `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init { try await iterator.next().flatMap(content) }
 49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:44:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
42 |     /// - returns: Some `AsyncStream`.
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
   |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
45 |         return .init { try await iterator.next() }
46 |     }
[28/70] Compiling Requests Loop.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Parent.Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init {
 49 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:59: warning: capture of non-sendable type 'R.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                           `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init { try await iterator.next().flatMap(content) }
 49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:44:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
42 |     /// - returns: Some `AsyncStream`.
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
   |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
45 |         return .init { try await iterator.next() }
46 |     }
[29/70] Compiling Requests Map.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Parent.Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init {
 49 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:59: warning: capture of non-sendable type 'R.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                           `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init { try await iterator.next().flatMap(content) }
 49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:44:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
42 |     /// - returns: Some `AsyncStream`.
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
   |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
45 |         return .init { try await iterator.next() }
46 |     }
[30/70] Compiling Requests Prefix.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Parent.Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init {
 49 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/HandleEvents.swift:51:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |             do {
 50 |                 guard let result = try await iterator.next() else { return nil }
 51 |                 handler(.success(result))
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 52 |                 return result
 53 |             } catch {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:59: warning: capture of non-sendable type 'R.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                                           `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:76:36: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 74 |             guard let input = await nextInput.value else { return nil }
 75 |             let offset = await nextInput.count
 76 |             let output = try await content(offset, input).resolve(with: session)
    |                                    `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 77 |             // Update next input.
 78 |             switch try next(offset, output) {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Loop.swift:68:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
 66 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 67 |     /// - returns: Some `AsyncStream`.
 68 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 69 |         // Hold reference to next input,
 70 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:47:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 45 |     @_spi(Private)
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 48 |         return .init { try await iterator.next().flatMap(content) }
 49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Map.swift:48:58: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 46 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 47 |         var iterator = parent._resolve(with: session).makeAsyncIterator()
 48 |         return .init { try await iterator.next().flatMap(content) }
    |                                                          `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Prefix.swift:44:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
42 |     /// - returns: Some `AsyncStream`.
43 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
44 |         var iterator = parent.resolve(with: session).prefix(count).makeAsyncIterator()
   |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
45 |         return .init { try await iterator.next() }
46 |     }
[31/70] Compiling Requests EndpointBuilder.swift
[32/70] Compiling Requests Components.swift
[33/70] Compiling Requests Path.swift
[34/70] Compiling Requests Response.swift
[35/70] Compiling Requests TupleItem.swift
[36/70] Compiling Requests AnyCodable.swift
[37/70] Compiling EncryptedStorages KeychainStorage.swift
[38/70] Emitting module EncryptedStorages
[39/70] Compiling Requests Single.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     /// - returns: Some `DefaultResponse` publisher.
 40 |     @_spi(Private)
 41 |     func resolve(_ request: URLRequest) -> AnyPublisher<DefaultResponse, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 42 |         // Hold reference to the task, so we can cancel
 43 |         // it according to the `Publisher` stream.
[40/70] Compiling Requests Static.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     /// - returns: Some `DefaultResponse` publisher.
 40 |     @_spi(Private)
 41 |     func resolve(_ request: URLRequest) -> AnyPublisher<DefaultResponse, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 42 |         // Hold reference to the task, so we can cancel
 43 |         // it according to the `Publisher` stream.
[41/70] Compiling Requests Endpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     /// - returns: Some `DefaultResponse` publisher.
 40 |     @_spi(Private)
 41 |     func resolve(_ request: URLRequest) -> AnyPublisher<DefaultResponse, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 42 |         // Hold reference to the task, so we can cancel
 43 |         // it according to the `Publisher` stream.
[42/70] Compiling Requests EndpointResolver.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     /// - returns: Some `DefaultResponse` publisher.
 40 |     @_spi(Private)
 41 |     func resolve(_ request: URLRequest) -> AnyPublisher<DefaultResponse, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 42 |         // Hold reference to the task, so we can cancel
 43 |         // it according to the `Publisher` stream.
[43/70] Compiling Requests LoopEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/EndpointResolver.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     /// - returns: Some `DefaultResponse` publisher.
 40 |     @_spi(Private)
 41 |     func resolve(_ request: URLRequest) -> AnyPublisher<DefaultResponse, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 42 |         // Hold reference to the task, so we can cancel
 43 |         // it according to the `Publisher` stream.
[44/70] Compiling Requests SingleEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:47:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 45 |         var task: Task<Void, Never>?
 46 |         return Deferred {
 47 |             Combine.Future { subscriber in
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:42:44: warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                                            `- warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'R.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:45: warning: capture of non-sendable type 'R.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                             `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
[45/70] Compiling Requests AnyEndpointResolver.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:47:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 45 |         var task: Task<Void, Never>?
 46 |         return Deferred {
 47 |             Combine.Future { subscriber in
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:42:44: warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                                            `- warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'R.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:45: warning: capture of non-sendable type 'R.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                             `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
[46/70] Compiling Requests AnyLoopEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:47:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 45 |         var task: Task<Void, Never>?
 46 |         return Deferred {
 47 |             Combine.Future { subscriber in
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:42:44: warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                                            `- warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'R.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:45: warning: capture of non-sendable type 'R.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                             `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
[47/70] Compiling Requests AnySingleEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:47:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 45 |         var task: Task<Void, Never>?
 46 |         return Deferred {
 47 |             Combine.Future { subscriber in
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:42:44: warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                                            `- warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'R.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:45: warning: capture of non-sendable type 'R.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                             `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
[48/70] Compiling Requests CharacterSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:47:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 45 |         var task: Task<Void, Never>?
 46 |         return Deferred {
 47 |             Combine.Future { subscriber in
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 48 |                 task = .init {
 49 |                     guard !Task.isCancelled else { return }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:42:44: warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
 41 |     /// - returns: Some `AnyPublisher`.
 42 |     func resolve<R: EndpointResolver>(with session: R) -> AnyPublisher<Output, any Error> {
    |                                            `- warning: capture of non-sendable type 'R.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |         // Hold reference to the task, so we can cancel
 44 |         // it according to the `Publisher` stream.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'R.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:80:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 78 |             guard await nextInput.value != nil else { return nil }
 79 |             await nextInput.update(with: nil)
 80 |             return try await resolve(with: session)
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 81 |         }
 82 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Protocols/SingleEndpoint.swift:67:45: warning: capture of non-sendable type 'R.Type' in an isolated closure
 65 |     /// - returns: Some `AsyncStream`.
 66 |     @_spi(Private)
 67 |     func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                             `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 68 |         // You should only ever return one
 69 |         // item.
[49/70] Compiling Requests Collect.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:58:13: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
    |             `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of non-sendable type 'Content.Type' in an isolated closure
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:67: warning: capture of non-sendable type 'R.Type' in an isolated closure
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
66 |             await nextInput.update(with: offset + 1)
67 |             return output
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
[50/70] Compiling Requests Endpoints.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:58:13: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
    |             `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of non-sendable type 'Content.Type' in an isolated closure
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:67: warning: capture of non-sendable type 'R.Type' in an isolated closure
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
66 |             await nextInput.update(with: offset + 1)
67 |             return output
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
[51/70] Compiling Requests First.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:58:13: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
    |             `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of non-sendable type 'Content.Type' in an isolated closure
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:67: warning: capture of non-sendable type 'R.Type' in an isolated closure
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
66 |             await nextInput.update(with: offset + 1)
67 |             return output
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
[52/70] Compiling Requests FlatMap.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:58:13: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
    |             `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of non-sendable type 'Content.Type' in an isolated closure
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:67: warning: capture of non-sendable type 'R.Type' in an isolated closure
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
66 |             await nextInput.update(with: offset + 1)
67 |             return output
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
[53/70] Compiling Requests ForEach.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:58:13: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
    |             `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of non-sendable type 'Content.Type' in an isolated closure
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:67: warning: capture of non-sendable type 'R.Type' in an isolated closure
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
66 |             await nextInput.update(with: offset + 1)
67 |             return output
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
[54/70] Compiling Requests Future.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:58:13: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
    |             `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:61:40: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 59 |         return .init {
 60 |             if iterator == nil {
 61 |                 let output = try await parent.resolve(with: session)
    |                                        `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 62 |                 iterator = child(output)._resolve(with: session).makeAsyncIterator()
 63 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:17: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/FlatMap.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Child.Output, any Error>.AsyncIterator?
 59 |         return .init {
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:64:64: warning: capture of non-sendable type 'Content.Type' in an isolated closure
62 |         return .init {
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
   |                                                                `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
66 |             await nextInput.update(with: offset + 1)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:17: warning: capture of non-sendable type 'Content.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                 `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:65:67: warning: capture of non-sendable type 'R.Type' in an isolated closure
63 |             // If next input is `nil`, cancel the stream.
64 |             guard let offset = await nextInput.value, offset < pages.count else { return nil }
65 |             let output = try await content(offset, pages[offset]).resolve(with: session)
   |                                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
66 |             await nextInput.update(with: offset + 1)
67 |             return output
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/ForEach.swift:58:51: warning: capture of non-sendable type 'R.Type' in an isolated closure
56 |     /// - parameter session: The `EndpointResolver` used to fetch the response.
57 |     /// - returns: Some `AsyncStream`.
58 |     public func resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
   |                                                   `- warning: capture of non-sendable type 'R.Type' in an isolated closure
59 |         // Hold reference to next input,
60 |         // so we can paginate properly.
[55/70] Compiling Requests Data.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[56/70] Compiling Requests Result.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[57/70] Compiling Requests String.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[58/70] Compiling Requests URLRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[59/70] Compiling Requests CodableHTTPCookie.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Misc/CodableHTTPCookie.swift:11:20: warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
 9 |
10 | /// A `subclass` of `HTTPCookie` conforming to `Codable`.
11 | public final class CodableHTTPCookie: HTTPCookie, Codable {
   |                    `- warning: class 'CodableHTTPCookie' must restate inherited '@unchecked Sendable' conformance
12 |     /// Init.
13 |     /// - parameter properties: A valid `Dictionary` of `Any`.
[60/70] Compiling Requests Body.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:58:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |             ._resolve(with: session)
 60 |             .makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:17: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
[61/70] Compiling Requests Headers.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:58:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |             ._resolve(with: session)
 60 |             .makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:17: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
[62/70] Compiling Requests Method.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:58:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |             ._resolve(with: session)
 60 |             .makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:17: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
[63/70] Compiling Requests Query.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:58:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |             ._resolve(with: session)
 60 |             .makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:17: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
[64/70] Compiling Requests Component.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:58:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |             ._resolve(with: session)
 60 |             .makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:17: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
[65/70] Compiling Requests Catch.swift
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:58:13: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
    |             `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 59 |             ._resolve(with: session)
 60 |             .makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:47: warning: capture of non-sendable type 'R.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                               `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:66:34: warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 64 |             } catch {
 65 |                 iterator = nil
 66 |                 return try await child(error).resolve(with: session)
    |                                  `- warning: capture of non-sendable type 'Parent.Type' in an isolated closure
 67 |             }
 68 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:17: warning: capture of non-sendable type 'Child.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                 `- warning: capture of non-sendable type 'Child.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
/Users/admin/builder/spi-builder-workspace/Sources/Requests/Endpoints/Concrete/Catch.swift:57:52: warning: capture of non-sendable type 'R.Type' in an isolated closure
 55 |     /// - returns: Some `AsyncStream`.
 56 |     @_spi(Private)
 57 |     public func _resolve<R: EndpointResolver>(with session: R) -> AsyncThrowingStream<Output, any Error> {
    |                                                    `- warning: capture of non-sendable type 'R.Type' in an isolated closure
 58 |         var iterator: AsyncThrowingStream<Output, any Error>.AsyncIterator? = parent
 59 |             ._resolve(with: session)
[66/70] Compiling Requests Offset.swift
[67/70] Compiling Requests Providers.swift
[68/70] Compiling Requests LockProvider.swift
[69/70] Compiling Requests OffsetProvider.swift
[70/70] Compiling Requests Provider.swift
Build complete! (7.47s)
Fetching https://github.com/kishikawakatsumi/KeychainAccess
[1/4386] Fetching keychainaccess
Fetched https://github.com/kishikawakatsumi/KeychainAccess from cache (1.30s)
Computing version for https://github.com/kishikawakatsumi/KeychainAccess
Computed https://github.com/kishikawakatsumi/KeychainAccess at 4.2.2 (1.83s)
Creating working copy for https://github.com/kishikawakatsumi/KeychainAccess
Working copy of https://github.com/kishikawakatsumi/KeychainAccess resolved at 4.2.2
Build complete.
{
  "dependencies" : [
    {
      "identity" : "keychainaccess",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.2.2",
            "upper_bound" : "4.3.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kishikawakatsumi/KeychainAccess"
    }
  ],
  "manifest_display_name" : "ComposableRequest",
  "name" : "ComposableRequest",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Requests",
      "targets" : [
        "Requests"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Storages",
      "targets" : [
        "Storages"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EncryptedStorages",
      "targets" : [
        "EncryptedStorages"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Storages",
      "module_type" : "SwiftTarget",
      "name" : "Storages",
      "path" : "Sources/Storages",
      "product_memberships" : [
        "Requests",
        "Storages",
        "EncryptedStorages"
      ],
      "sources" : [
        "Concrete/AnyStorage.swift",
        "Concrete/TransientStorage.swift",
        "Concrete/UserDefaultsStorage.swift",
        "Protocols/Storable.swift",
        "Protocols/Storage.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Requests",
      "module_type" : "SwiftTarget",
      "name" : "Requests",
      "path" : "Sources/Requests",
      "product_memberships" : [
        "Requests"
      ],
      "sources" : [
        "Builder/EndpointBuilder.swift",
        "Builder/Items/Components.swift",
        "Builder/Items/Path.swift",
        "Builder/Items/Response.swift",
        "Builder/Items/TupleItem.swift",
        "Codable/AnyCodable.swift",
        "Codable/AnyDecodable.swift",
        "Components/Advanced/Cellular.swift",
        "Components/Advanced/Constrained.swift",
        "Components/Advanced/Expensive.swift",
        "Components/Advanced/Service.swift",
        "Components/Advanced/Timeout.swift",
        "Components/Basics/Body.swift",
        "Components/Basics/Headers.swift",
        "Components/Basics/Method.swift",
        "Components/Basics/Query.swift",
        "Components/Component.swift",
        "Endpoints/Concrete/Catch.swift",
        "Endpoints/Concrete/Collect.swift",
        "Endpoints/Concrete/Endpoints.swift",
        "Endpoints/Concrete/First.swift",
        "Endpoints/Concrete/FlatMap.swift",
        "Endpoints/Concrete/ForEach.swift",
        "Endpoints/Concrete/Future.swift",
        "Endpoints/Concrete/HandleEvents.swift",
        "Endpoints/Concrete/Last.swift",
        "Endpoints/Concrete/Loop.swift",
        "Endpoints/Concrete/Map.swift",
        "Endpoints/Concrete/Prefix.swift",
        "Endpoints/Concrete/Single.swift",
        "Endpoints/Concrete/Static.swift",
        "Endpoints/Protocols/Endpoint.swift",
        "Endpoints/Protocols/EndpointResolver.swift",
        "Endpoints/Protocols/LoopEndpoint.swift",
        "Endpoints/Protocols/SingleEndpoint.swift",
        "Endpoints/Type ereasure/AnyEndpointResolver.swift",
        "Endpoints/Type ereasure/AnyLoopEndpoint.swift",
        "Endpoints/Type ereasure/AnySingleEndpoint.swift",
        "Extensions/CharacterSet.swift",
        "Extensions/Data.swift",
        "Extensions/Result.swift",
        "Extensions/String.swift",
        "Extensions/URLRequest.swift",
        "Misc/CodableHTTPCookie.swift",
        "Misc/DefaultResponse.swift",
        "Misc/EndpointError.swift",
        "Misc/NextAction.swift",
        "Misc/NextInput.swift",
        "Providers/Concrete/Lock.swift",
        "Providers/Concrete/Offset.swift",
        "Providers/Concrete/Providers.swift",
        "Providers/Protocols/LockProvider.swift",
        "Providers/Protocols/OffsetProvider.swift",
        "Providers/Protocols/Provider.swift"
      ],
      "target_dependencies" : [
        "Storages"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EncryptedStorages",
      "module_type" : "SwiftTarget",
      "name" : "EncryptedStorages",
      "path" : "Sources/EncryptedStorages",
      "product_dependencies" : [
        "KeychainAccess"
      ],
      "product_memberships" : [
        "EncryptedStorages"
      ],
      "sources" : [
        "KeychainStorage.swift"
      ],
      "target_dependencies" : [
        "Storages"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ComposableRequestTests",
      "module_type" : "SwiftTarget",
      "name" : "ComposableRequestTests",
      "path" : "Tests/ComposableRequestTests",
      "sources" : [
        "APITests.swift",
        "Shared/Item.swift",
        "StorageTests.swift",
        "WrappersTests.swift"
      ],
      "target_dependencies" : [
        "Requests",
        "Storages",
        "EncryptedStorages"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.7"
}
Done.