The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of swift-api-client, reference main (b098f1), with Swift 6.2 (beta) for Linux on 23 Jun 2025 08:24:00 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
[373/510] Compiling SwiftAPIClient WithSynchronizedAccess.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
[374/510] Compiling SwiftAPIClient APIClient.swift
[375/510] Compiling SwiftAPIClient APIClientCaller.swift
[376/510] Compiling SwiftAPIClient APIClientConfigs.swift
[377/510] Compiling SwiftAPIClient HTTPClient.swift
[378/510] Compiling SwiftAPIClient HTTPDownloadClient.swift
[379/510] Compiling SwiftAPIClient HTTPPublisher.swift
[380/510] Compiling SwiftAPIClient HTTPUploadClient.swift
[381/510] Compiling SwiftAPIClient URLSession+Client.swift
[382/510] Compiling SwiftAPIClient Async++.swift
[383/510] Compiling SwiftAPIClient String++.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/URLSessionDelegateWrapper.swift:44:6: warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 42 | final class SessionDelegateProxy: NSObject {
 43 |
 44 | 	var configs: APIClient.Configs?
    |      `- warning: stored property 'configs' of 'Sendable'-conforming class 'SessionDelegateProxy' is mutable; this is an error in the Swift 6 language mode
 45 | 	var originalDelegate: URLSessionDelegate? { configs?.urlSessionDelegate }
 46 | }
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:19:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 17 | 	task: @escaping @Sendable () async throws -> T
 18 | ) async throws -> T {
 19 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 20 | 		if let task = cached as? Task<T, Error> {
 21 | 			return try await task.value
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:58:40: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 56 | 	task: @escaping @Sendable () async -> T
 57 | ) async -> T {
 58 | 	if let cached = await Barriers.shared.tasks[taskIdentifier] {
    |                                        `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 59 | 		if let task = cached as? Task<T, Error> {
 60 | 			//            logger("Attempted to access a throwing synchronized task from a non-throwing context.")
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:96:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 94 | @discardableResult
 95 | public func waitForThrowingSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async throws -> T? {
 96 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
 97 | 		return nil
 98 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/WithSynchronizedAccess.swift:123:43: warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
121 | @discardableResult
122 | public func waitForSynchronizedAccess<ID: Hashable, T>(id taskIdentifier: ID, of type: T.Type = T.self) async -> T? {
123 | 	guard let cached = await Barriers.shared.tasks[taskIdentifier] else {
    |                                           `- warning: non-Sendable type '[AnyHashable : any AnyTask]' of property 'tasks' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
124 | 		return nil
125 | 	}
Swift.Dictionary:1:23: note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
1 | @frozen public struct Dictionary<Key, Value> where Key : Hashable {
  |                       `- note: generic struct 'Dictionary' does not conform to the 'Sendable' protocol
2 |     public typealias Element = (key: Key, value: Value)
3 |     @inlinable public init()
[393/510] Compiling SwiftAPIClient AnyAsyncSequence.swift
[394/510] Compiling SwiftAPIClient AnyEncodable.swift
[395/510] Compiling SwiftAPIClient ContentEncoder.swift
[396/510] Compiling SwiftAPIClient DataDecoder.swift
[397/510] Compiling SwiftAPIClient EncodingStrategies.swift
[398/510] Compiling SwiftAPIClient ErrorDecoder.swift
[399/510] Compiling SwiftAPIClient FormURLEncoder.swift
[400/510] Compiling SwiftAPIClient HeadersEncoder.swift
[401/510] Compiling SwiftAPIClient JSONContentEncoders.swift
[402/510] Compiling SwiftAPIClient MultipartFormData.swift
[403/510] Compiling SwiftAPIClient MultipartFormDataEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[404/510] Compiling SwiftAPIClient ParametersEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[405/510] Compiling SwiftAPIClient ParametersValue.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[406/510] Compiling SwiftAPIClient QueryEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[407/510] Compiling SwiftAPIClient HTTPHeadersEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[408/510] Compiling SwiftAPIClient PlainCodingKey.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[409/510] Compiling SwiftAPIClient Ref.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[410/510] Compiling SwiftAPIClient URLQueryEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[411/510] Compiling SwiftAPIClient ConsoleStyle.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[412/510] Compiling SwiftAPIClient ResponseWrapModifires.swift
[413/510] Compiling SwiftAPIClient RetryModifier.swift
[414/510] Compiling SwiftAPIClient ThrottleModifier.swift
[415/510] Compiling SwiftAPIClient TimeoutModifiers.swift
[416/510] Compiling SwiftAPIClient TokenCacheService.swift
[417/510] Compiling SwiftAPIClient TokenRefresher.swift
[418/510] Compiling SwiftAPIClient URLSessionModifiers.swift
[419/510] Compiling SwiftAPIClient WaitForConnectionModifier.swift
[420/510] Compiling SwiftAPIClient RequestBuilder.swift
[421/510] Compiling SwiftAPIClient AsyncValue.swift
[422/510] Compiling SwiftAPIClient ContentSerializer.swift
[423/510] Compiling SwiftAPIClient ContentType.swift
[424/510] Compiling SwiftAPIClient Errors.swift
[425/510] Compiling SwiftAPIClient HTTPFields.swift
[426/510] Compiling SwiftAPIClient HTTPRequestComponents.swift
[427/510] Compiling SwiftAPIClient LoggingComponent.swift
[428/510] Compiling SwiftAPIClient Mockable.swift
[429/510] Compiling SwiftAPIClient RedirectBehaviour.swift
[430/510] Compiling SwiftAPIClient Serializer.swift
[431/510] Compiling SwiftAPIClient TimeoutError.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
15 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:18:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
16 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
20 | 	) -> Self {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:19:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
17 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
20 | 	) -> Self {
21 | 		MultipartFormDataEncoder(
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:47:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
45 | 		dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
   |                                          |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy' [#DeprecatedDeclaration]
   |                                          `- note: use 'SwiftAPIClient.ArrayEncodingStrategy' instead
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:48:43: warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
46 | 		keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
   |                                           |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy' [#DeprecatedDeclaration]
   |                                           `- note: use 'SwiftAPIClient.NestedEncodingStrategy' instead
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
50 | 	) {
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:49:41: warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
47 | 		arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | 		nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | 		boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
   |                                         |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy' [#DeprecatedDeclaration]
   |                                         `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | 	) {
51 | 		self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
[461/510] Compiling SwiftAPIClient HTTPClientMiddleware.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
[462/510] Compiling SwiftAPIClient HTTPResponseValidator.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
[463/510] Compiling SwiftAPIClient LoggingModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
[464/510] Compiling SwiftAPIClient MetricsModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
[465/510] Compiling SwiftAPIClient MockResponses.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
[466/510] Compiling SwiftAPIClient RateLimitModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
[467/510] Compiling SwiftAPIClient RedirectModifier.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
[468/510] Compiling SwiftAPIClient RequestCompression.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
[469/510] Compiling SwiftAPIClient RequestModifiers.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
[470/510] Compiling SwiftAPIClient RequestValidator.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:62:46: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 | 			count += 1
61 | 			try await withThrowingSynchronizedAccess(id: id) {
62 | 				try await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
   |                                              `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
63 | 			}
64 | 			res = try await next(request, configs)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RateLimitModifier.swift:47:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
45 | 	let maxCount: Int
46 |
47 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
48 | 		request: HTTPRequestComponents,
49 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:81:10: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
79 | 		Task {
80 | 			try? await Task.sleep(nanoseconds: UInt64(interval * 1_000_000_000))
81 | 			await cache.removeResponse(for: requestID)
   |          `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
82 | 		}
83 | 		return (value, httpResponse)
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/ThrottleModifier.swift:64:7: warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
62 | 	let id: (HTTPRequestComponents) -> ID
63 |
64 | 	func execute<T>(
   |       `- warning: capture of non-Sendable type 'ID.Type' in an isolated closure; this is an error in the Swift 6 language mode
65 | 		request: HTTPRequestComponents,
66 | 		configs: APIClient.Configs,
Build complete! (261.05s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "swift-http-types",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-http-types.git"
    },
    {
      "identity" : "swift-metrics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-metrics.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "509.0.0",
            "upper_bound" : "601.0.0-prerelease"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax"
    }
  ],
  "manifest_display_name" : "swift-api-client",
  "name" : "swift-api-client",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "5.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftAPIClient",
      "targets" : [
        "SwiftAPIClient"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftAPIClientMacros",
      "targets" : [
        "SwiftAPIClientMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftAPIClientTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftAPIClientTests",
      "path" : "Tests/SwiftAPIClientTests",
      "sources" : [
        "CURLTests.swift",
        "EncodersTests/MultipartFormDataTests.swift",
        "HTTPHeadersEncoderTests.swift",
        "Modifiers/AuthModifierTests.swift",
        "Modifiers/ErrorDecodingTests.swift",
        "Modifiers/HTTPResponseValidatorTests.swift",
        "Modifiers/LogLevelModifierTests.swift",
        "Modifiers/MockResponsesTests.swift",
        "Modifiers/RequestCompressionTests.swift",
        "Modifiers/RequestModifiersTests.swift",
        "NetworkClientTests.swift",
        "TestUtils/Client+Ext.swift",
        "TestUtils/TestHTTPClient.swift",
        "URLQueryEncoderTests.swift",
        "UtilsTests/URLComponentBuilderTests.swift",
        "UtilsTests/WithTimeoutTests.swift"
      ],
      "target_dependencies" : [
        "SwiftAPIClient"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftAPIClientMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftAPIClientMacrosTests",
      "path" : "Tests/SwiftAPIClientMacrosTests",
      "product_dependencies" : [
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "APIMacroTests.swift",
        "CallMacroTests.swift",
        "PathMacroTests.swift"
      ],
      "target_dependencies" : [
        "SwiftAPIClientMacros"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftAPIClientMacros",
      "module_type" : "SwiftTarget",
      "name" : "SwiftAPIClientMacros",
      "path" : "Sources/SwiftAPIClientMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SwiftAPIClient",
        "SwiftAPIClientMacros"
      ],
      "sources" : [
        "Collection++.swift",
        "MacroError.swift",
        "String++.swift",
        "SwiftAPIClientMacros.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "SwiftAPIClient",
      "module_type" : "SwiftTarget",
      "name" : "SwiftAPIClient",
      "path" : "Sources/SwiftAPIClient",
      "product_dependencies" : [
        "Logging",
        "Metrics",
        "HTTPTypes",
        "HTTPTypesFoundation"
      ],
      "product_memberships" : [
        "SwiftAPIClient"
      ],
      "sources" : [
        "APIClient.swift",
        "APIClientCaller.swift",
        "APIClientConfigs.swift",
        "Clients/HTTPClient.swift",
        "Clients/HTTPDownloadClient.swift",
        "Clients/HTTPPublisher.swift",
        "Clients/HTTPUploadClient.swift",
        "Clients/URLSession+Client.swift",
        "Extensions/Async++.swift",
        "Extensions/String++.swift",
        "Extensions/URLComponentBuilder.swift",
        "Extensions/URLResponse++.swift",
        "Imports.swift",
        "Macros.swift",
        "Modifiers/AuthModifier.swift",
        "Modifiers/BackgroundModifiers.swift",
        "Modifiers/CodersModifiers.swift",
        "Modifiers/ErrorDecodeModifiers.swift",
        "Modifiers/ErrorHandler.swift",
        "Modifiers/FileIDLine.swift",
        "Modifiers/HTTPClientMiddleware.swift",
        "Modifiers/HTTPResponseValidator.swift",
        "Modifiers/LoggingModifier.swift",
        "Modifiers/MetricsModifier.swift",
        "Modifiers/MockResponses.swift",
        "Modifiers/RateLimitModifier.swift",
        "Modifiers/RedirectModifier.swift",
        "Modifiers/RequestCompression.swift",
        "Modifiers/RequestModifiers.swift",
        "Modifiers/RequestValidator.swift",
        "Modifiers/ResponseWrapModifires.swift",
        "Modifiers/RetryModifier.swift",
        "Modifiers/ThrottleModifier.swift",
        "Modifiers/TimeoutModifiers.swift",
        "Modifiers/TokenRefresher/TokenCacheService.swift",
        "Modifiers/TokenRefresher/TokenRefresher.swift",
        "Modifiers/URLSessionModifiers.swift",
        "Modifiers/WaitForConnectionModifier.swift",
        "RequestBuilder.swift",
        "Types/AsyncValue.swift",
        "Types/ContentSerializer.swift",
        "Types/ContentType.swift",
        "Types/Errors.swift",
        "Types/HTTPFields.swift",
        "Types/HTTPRequestComponents.swift",
        "Types/LoggingComponent.swift",
        "Types/Mockable.swift",
        "Types/RedirectBehaviour.swift",
        "Types/Serializer.swift",
        "Types/TimeoutError.swift",
        "Utils/AnyAsyncSequence.swift",
        "Utils/AnyEncodable.swift",
        "Utils/Coders/ContentEncoder.swift",
        "Utils/Coders/DataDecoder.swift",
        "Utils/Coders/EncodingStrategies.swift",
        "Utils/Coders/ErrorDecoder.swift",
        "Utils/Coders/FormURLEncoder.swift",
        "Utils/Coders/HeadersEncoder.swift",
        "Utils/Coders/JSONContentEncoders.swift",
        "Utils/Coders/MultipartFormData/MultipartFormData.swift",
        "Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift",
        "Utils/Coders/ParametersEncoder.swift",
        "Utils/Coders/ParametersValue.swift",
        "Utils/Coders/QueryEncoder.swift",
        "Utils/Coders/URLQuery/HTTPHeadersEncoder.swift",
        "Utils/Coders/URLQuery/PlainCodingKey.swift",
        "Utils/Coders/URLQuery/Ref.swift",
        "Utils/Coders/URLQuery/URLQueryEncoder.swift",
        "Utils/ConsoleStyle.swift",
        "Utils/Error+String.swift",
        "Utils/NoneLogger.swift",
        "Utils/Publisher+Create.swift",
        "Utils/Publishers+Task.swift",
        "Utils/Reachability.swift",
        "Utils/Status+Ext.swift",
        "Utils/URLSessionDelegateWrapper.swift",
        "Utils/UpdateMetrics.swift",
        "Utils/WithSynchronizedAccess.swift"
      ],
      "target_dependencies" : [
        "SwiftAPIClientMacros"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.