Build Information
Failed to build swift-api-client, reference main (b098f1
), with Swift 6.1 for Android on 30 May 2025 13:18:56 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
Build Log
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[319/449] Compiling SwiftAPIClient RequestValidator.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:37: error: value of type 'NSData' has no member 'compressed'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: value of type 'NSData' has no member 'compressed'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
/host/spi-builder-workspace/Sources/SwiftAPIClient/Modifiers/RequestCompression.swift:76:56: error: cannot infer contextual base in reference to member 'zlib'
74 | private func deflate(_ data: Data) throws -> Data {
75 | var output = Data([0x78, 0x5E]) // Header
76 | try output.append((data as NSData).compressed(using: .zlib) as Data)
| `- error: cannot infer contextual base in reference to member 'zlib'
77 | var checksum = adler32Checksum(of: data).bigEndian
78 | output.append(Data(bytes: &checksum, count: MemoryLayout<UInt32>.size))
[320/458] Compiling SwiftAPIClient APIClient.swift
[321/458] Compiling SwiftAPIClient APIClientCaller.swift
[322/458] Compiling SwiftAPIClient APIClientConfigs.swift
[323/458] Compiling SwiftAPIClient HTTPClient.swift
[324/458] Compiling SwiftAPIClient HTTPDownloadClient.swift
[325/458] Compiling SwiftAPIClient HTTPPublisher.swift
[326/458] Compiling SwiftAPIClient HTTPUploadClient.swift
[327/458] Compiling SwiftAPIClient URLSession+Client.swift
[328/458] Compiling SwiftAPIClient Async++.swift
[329/458] Compiling SwiftAPIClient String++.swift
[330/467] Compiling SwiftAPIClient Error+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()
[331/467] Compiling SwiftAPIClient NoneLogger.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()
[332/467] Compiling SwiftAPIClient Publisher+Create.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()
[333/467] Compiling SwiftAPIClient Publishers+Task.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()
[334/467] Compiling SwiftAPIClient Reachability.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()
[335/467] Compiling SwiftAPIClient Status+Ext.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()
[336/467] Compiling SwiftAPIClient URLSessionDelegateWrapper.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()
[337/467] Compiling SwiftAPIClient UpdateMetrics.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()
[338/467] 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()
[339/467] Emitting module SwiftAPIClient
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/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/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()
[349/467] Compiling SwiftAPIClient URLComponentBuilder.swift
[350/467] Compiling SwiftAPIClient URLResponse++.swift
[351/467] Compiling SwiftAPIClient Imports.swift
[352/467] Compiling SwiftAPIClient Macros.swift
[353/467] Compiling SwiftAPIClient AuthModifier.swift
[354/467] Compiling SwiftAPIClient BackgroundModifiers.swift
[355/467] Compiling SwiftAPIClient CodersModifiers.swift
[356/467] Compiling SwiftAPIClient ErrorDecodeModifiers.swift
[357/467] Compiling SwiftAPIClient ErrorHandler.swift
[358/467] Compiling SwiftAPIClient FileIDLine.swift
[359/467] Emitting module SwiftAPIClient
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/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 | }
[370/467] Compiling SwiftAPIClient MultipartFormDataEncoder.swift
[371/467] Compiling SwiftAPIClient ParametersEncoder.swift
[372/467] Compiling SwiftAPIClient ParametersValue.swift
[373/467] Compiling SwiftAPIClient QueryEncoder.swift
[374/467] Compiling SwiftAPIClient HTTPHeadersEncoder.swift
[375/467] Compiling SwiftAPIClient PlainCodingKey.swift
[376/467] Compiling SwiftAPIClient Ref.swift
[377/467] Compiling SwiftAPIClient URLQueryEncoder.swift
[378/467] Compiling SwiftAPIClient ConsoleStyle.swift
[379/467] Compiling SwiftAPIClient ContentSerializer.swift
[380/467] Compiling SwiftAPIClient ContentType.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[381/467] Compiling SwiftAPIClient Errors.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[382/467] Compiling SwiftAPIClient HTTPFields.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[383/467] Compiling SwiftAPIClient HTTPRequestComponents.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[384/467] Compiling SwiftAPIClient LoggingComponent.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[385/467] Compiling SwiftAPIClient Mockable.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[386/467] Compiling SwiftAPIClient RedirectBehaviour.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[387/467] Compiling SwiftAPIClient Serializer.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[388/467] 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'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/MultipartFormData/MultipartFormDataEncoder.swift:17:42: warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
15 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
16 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
17 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
18 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
19 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- 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'
45 | dateEncodingStrategy: JSONEncoder.DateEncodingStrategy = .deferredToDate,
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
| |- warning: 'ArrayEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.ArrayEncodingStrategy'
| `- 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'
46 | keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy = .useDefaultKeys,
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
| |- warning: 'NestedEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.NestedEncodingStrategy'
| `- 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'
47 | arrayEncodingStrategy: URLQueryEncoder.ArrayEncodingStrategy = .commaSeparator,
48 | nestedEncodingStrategy: URLQueryEncoder.NestedEncodingStrategy = .brackets,
49 | boolEncodingStrategy: URLQueryEncoder.BoolEncodingStrategy = .literal
| |- warning: 'BoolEncodingStrategy' is deprecated: renamed to 'SwiftAPIClient.BoolEncodingStrategy'
| `- note: use 'SwiftAPIClient.BoolEncodingStrategy' instead
50 | ) {
51 | self.boundary = boundary ?? RandomBoundaryGenerator.defaultBoundary
[428/467] Compiling SwiftAPIClient ResponseWrapModifires.swift
[429/467] Compiling SwiftAPIClient RetryModifier.swift
[430/467] Compiling SwiftAPIClient ThrottleModifier.swift
[431/467] Compiling SwiftAPIClient TimeoutModifiers.swift
[432/467] Compiling SwiftAPIClient TokenCacheService.swift
[433/467] Compiling SwiftAPIClient TokenRefresher.swift
[434/467] Compiling SwiftAPIClient URLSessionModifiers.swift
[435/467] Compiling SwiftAPIClient WaitForConnectionModifier.swift
[436/467] Compiling SwiftAPIClient RequestBuilder.swift
[437/467] Compiling SwiftAPIClient AsyncValue.swift
[438/467] Compiling SwiftAPIClient AnyAsyncSequence.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
[439/467] Compiling SwiftAPIClient AnyEncodable.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
[440/467] Compiling SwiftAPIClient ContentEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
[441/467] Compiling SwiftAPIClient DataDecoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
[442/467] Compiling SwiftAPIClient EncodingStrategies.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
[443/467] Compiling SwiftAPIClient ErrorDecoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
[444/467] Compiling SwiftAPIClient FormURLEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
[445/467] Compiling SwiftAPIClient HeadersEncoder.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
[446/467] Compiling SwiftAPIClient JSONContentEncoders.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
[447/467] Compiling SwiftAPIClient MultipartFormData.swift
/host/spi-builder-workspace/Sources/SwiftAPIClient/Utils/Coders/EncodingStrategies.swift:171:23: error: pattern variable binding cannot appear in an expression
169 | case .iso8601:
170 | try _iso8601Formatter.string(from: date).encode(to: encoder)
171 | case let .formatted(formatter):
| `- error: pattern variable binding cannot appear in an expression
172 | try formatter.string(from: date).encode(to: encoder)
173 | case let .custom(closure):
BUILD FAILURE 6.1 android