The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Spinetail, reference 1.0.0-alpha.2 (6d0f2b), with Swift 6.0 for Linux on 2 Nov 2024 11:56:14 UTC.

Swift 6 data race errors: 2

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[117/275] Compiling Spinetail AccountExportsInner.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[118/275] Compiling Spinetail AddListMembers.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[119/275] Compiling Spinetail AddListMembers1.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[120/275] Compiling Spinetail AddListMembers2.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[121/275] Compiling Spinetail AddListMembers3.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[122/275] Compiling Spinetail AddWebhook.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[123/275] Compiling Spinetail Address.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[124/275] Compiling Spinetail Address1.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[125/300] Compiling Spinetail EmailClients.swift
[126/300] Compiling Spinetail EmailDomain.swift
[127/300] Compiling Spinetail ErrorsInner.swift
[128/300] Compiling Spinetail ErrorsInner1.swift
[129/300] Compiling Spinetail Event.swift
[130/300] Compiling Spinetail Events.swift
[131/300] Compiling Spinetail Events1.swift
[132/300] Compiling Spinetail Events2.swift
[133/300] Compiling Spinetail ExactMatches.swift
[134/300] Compiling Spinetail FacebookLikes.swift
[135/300] Compiling Spinetail FileManager.swift
[136/300] Compiling Spinetail FileManagerFolders.swift
[137/300] Compiling Spinetail Forwards.swift
[138/300] Compiling Spinetail GalleryFile.swift
[139/300] Compiling Spinetail GalleryFile1.swift
[140/300] Compiling Spinetail GalleryFile2.swift
[141/300] Compiling Spinetail GalleryFolder.swift
[142/300] Compiling Spinetail GalleryFolder1.swift
[143/300] Compiling Spinetail GetAccountExports200Response.swift
[144/300] Compiling Spinetail GetActivityFeedChimpChatter200Response.swift
[145/300] Compiling Spinetail GetAllFacebookAds200Response.swift
[146/300] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInner.swift
[147/300] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf.swift
[148/300] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf1.swift
[149/300] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2.swift
[150/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Audience.swift
[151/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceEmailSource.swift
[152/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceTargetingSpecs.swift
[153/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceTargetingSpecsInterestsInner.swift
[154/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceTargetingSpecsLocations.swift
[155/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Budget.swift
[156/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Channel.swift
[157/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Content.swift
[158/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2ContentAttachmentsInner.swift
[159/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Feedback.swift
[160/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Site.swift
[161/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf3.swift
[162/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOfReportSummary.swift
[163/325] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryEcommerce.swift
[164/325] Compiling Spinetail GetAllLandingPages200Response.swift
[165/325] Compiling Spinetail GetAuthorizedApps200Response.swift
[166/325] Compiling Spinetail GetAutomations200Response.swift
[167/325] Compiling Spinetail GetAutomationsIdEmailsIdQueue200Response.swift
[168/325] Compiling Spinetail GetCampaigns200Response.swift
[169/325] Compiling Spinetail GetFacebookAdsId200Response.swift
[170/325] Compiling Spinetail GetReportingFacebookAds200Response.swift
[171/325] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInner.swift
[172/325] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOf.swift
[173/325] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivity.swift
[174/325] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivityClicksInner.swift
[175/349] Compiling Spinetail InterestGroupings.swift
[176/349] Compiling Spinetail Interests.swift
[177/349] Compiling Spinetail ItemsInner.swift
[178/349] Compiling Spinetail LandingPage.swift
[179/349] Compiling Spinetail LandingPage1.swift
[180/349] Compiling Spinetail LandingPage2.swift
[181/349] Compiling Spinetail LandingPageContent.swift
[182/349] Compiling Spinetail LandingPageReport.swift
[183/349] Compiling Spinetail LandingPageReportEcommerce.swift
[184/349] Compiling Spinetail LandingPageReportTimeseries.swift
[185/349] Compiling Spinetail LastMessage.swift
[186/349] Compiling Spinetail List.swift
[187/349] Compiling Spinetail List1.swift
[188/349] Compiling Spinetail List10.swift
[189/349] Compiling Spinetail List2.swift
[190/349] Compiling Spinetail List3.swift
[191/349] Compiling Spinetail List4.swift
[192/349] Compiling Spinetail List5.swift
[193/349] Compiling Spinetail List6.swift
[194/349] Compiling Spinetail List7.swift
[195/349] Compiling Spinetail List8.swift
[196/349] Compiling Spinetail List9.swift
[197/349] Compiling Spinetail ListActivity.swift
[198/349] Compiling Spinetail ListContact.swift
[199/349] Compiling Spinetail ListContact1.swift
[200/373] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivityImpressionsInner.swift
[201/373] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivityRevenueInner.swift
[202/373] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummary.swift
[203/373] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryAverageOrderAmount.swift
[204/373] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryEcommerce.swift
[205/373] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryExtendedAt.swift
[206/373] Compiling Spinetail GetReportingFacebookAdsId200Response.swift
[207/373] Compiling Spinetail GetReportingLandingPages200Response.swift
[208/373] Compiling Spinetail GetReportingSurveys200Response.swift
[209/373] Compiling Spinetail GetReportingSurveysIdQuestions200Response.swift
[210/373] Compiling Spinetail GetReportingSurveysIdQuestionsIdAnswers200Response.swift
[211/373] Compiling Spinetail GetReportingSurveysIdResponses200Response.swift
[212/373] Compiling Spinetail GetReportsIdEcommerceProductActivity200Response.swift
[213/373] Compiling Spinetail GetReportsIdEcommerceProductActivity200ResponseProductsInner.swift
[214/373] Compiling Spinetail Goal.swift
[215/373] Compiling Spinetail GroupA.swift
[216/373] Compiling Spinetail GroupB.swift
[217/373] Compiling Spinetail GrowthHistory.swift
[218/373] Compiling Spinetail Hours.swift
[219/373] Compiling Spinetail IndustryStats.swift
[220/373] Compiling Spinetail IndustryStats1.swift
[221/373] Compiling Spinetail Interest.swift
[222/373] Compiling Spinetail Interest1.swift
[223/373] Compiling Spinetail InterestCategory.swift
[224/373] Compiling Spinetail InterestCategory1.swift
[225/397] Compiling Spinetail ListContact2.swift
[226/397] Compiling Spinetail ListLocation.swift
[227/397] Compiling Spinetail ListLocations.swift
[228/397] Compiling Spinetail ListMembers.swift
[229/397] Compiling Spinetail ListMembers1.swift
[230/397] Compiling Spinetail ListMembers2.swift
[231/397] Compiling Spinetail ListSignupForms.swift
[232/397] Compiling Spinetail ListStats.swift
[233/397] Compiling Spinetail ListWebhooks.swift
[234/397] Compiling Spinetail ListsInner.swift
[235/397] Compiling Spinetail Location.swift
[236/397] Compiling Spinetail Location1.swift
[237/397] Compiling Spinetail Location2.swift
[238/397] Compiling Spinetail Location3.swift
[239/397] Compiling Spinetail MarketingPermission.swift
[240/397] Compiling Spinetail MarketingPermission1.swift
[241/397] Compiling Spinetail MemberActivity.swift
[242/397] Compiling Spinetail MemberActivity1.swift
[243/397] Compiling Spinetail MemberActivity2.swift
[244/397] Compiling Spinetail MemberActivityEvents.swift
[245/397] Compiling Spinetail MemberActivityEvents1.swift
[246/397] Compiling Spinetail MemberNotes.swift
[247/397] Compiling Spinetail MemberNotes1.swift
[248/397] Compiling Spinetail MemberTag.swift
[249/397] Compiling Spinetail MemberTags.swift
[250/421] Compiling Spinetail PostCampaignsIdActionsScheduleRequest.swift
[251/421] Compiling Spinetail PostCampaignsIdActionsTestRequest.swift
[252/421] Compiling Spinetail PostListsIdSegmentsIdMembersRequest.swift
[253/421] Compiling Spinetail ProblemDetailDocument.swift
[254/421] Compiling Spinetail Products.swift
[255/421] Compiling Spinetail PromoCodes.swift
[256/421] Compiling Spinetail PromoRules.swift
[257/421] Compiling Spinetail PromosInner.swift
[258/421] Compiling Spinetail PromosInner1.swift
[259/421] Compiling Spinetail RSSOptions.swift
[260/421] Compiling Spinetail RSSOptions1.swift
[261/421] Compiling Spinetail RSSOptions2.swift
[262/421] Compiling Spinetail RSSOptions3.swift
[263/421] Compiling Spinetail Referrer.swift
[264/421] Compiling Spinetail RemovedSubscribers.swift
[265/421] Compiling Spinetail ResourceLink.swift
[266/421] Compiling Spinetail Response.swift
[267/421] Compiling Spinetail ResultsInner.swift
[268/421] Compiling Spinetail SalesforceCRMTracking.swift
[269/421] Compiling Spinetail SalesforceCRMTracking1.swift
[270/421] Compiling Spinetail Script.swift
[271/421] Compiling Spinetail Script1.swift
[272/421] Compiling Spinetail SegmentMembers.swift
[273/421] Compiling Spinetail SegmentOptions.swift
[274/445] Compiling Spinetail Members.swift
[275/445] Compiling Spinetail MembersToAddRemoveToFromaStaticSegment.swift
[276/445] Compiling Spinetail MembersToSubscribeUnsubscribeToFromaListInBatch.swift
[277/445] Compiling Spinetail MergeField.swift
[278/445] Compiling Spinetail MergeField1.swift
[279/445] Compiling Spinetail MergeField2.swift
[280/445] Compiling Spinetail MergeField3.swift
[281/445] Compiling Spinetail MergeFieldOptions.swift
[282/445] Compiling Spinetail MergeFieldOptions1.swift
[283/445] Compiling Spinetail MergeFieldOptions2.swift
[284/445] Compiling Spinetail Notes.swift
[285/445] Compiling Spinetail OpenActivity.swift
[286/445] Compiling Spinetail OpenDetailReport.swift
[287/445] Compiling Spinetail OpenLocations.swift
[288/445] Compiling Spinetail Opens.swift
[289/445] Compiling Spinetail Operations.swift
[290/445] Compiling Spinetail OptionsInner.swift
[291/445] Compiling Spinetail OrderLines.swift
[292/445] Compiling Spinetail Orders.swift
[293/445] Compiling Spinetail Orders1.swift
[294/445] Compiling Spinetail Outreach.swift
[295/445] Compiling Spinetail Outreach1.swift
[296/445] Compiling Spinetail PartialMatches.swift
[297/445] Compiling Spinetail PostBatchesRequest.swift
[298/469] Compiling Spinetail GetAutomations.swift
[299/469] Compiling Spinetail GetAutomationsId.swift
[300/469] Compiling Spinetail GetAutomationsIdEmails.swift
[301/469] Compiling Spinetail GetAutomationsIdEmailsId.swift
[302/469] Compiling Spinetail GetAutomationsIdEmailsIdQueue.swift
[303/469] Compiling Spinetail GetAutomationsIdEmailsIdQueueId.swift
[304/469] Compiling Spinetail GetAutomationsIdRemovedSubscribers.swift
[305/469] Compiling Spinetail GetAutomationsIdRemovedSubscribersId.swift
[306/469] Compiling Spinetail PatchAutomationEmailWorkflowId.swift
[307/469] Compiling Spinetail PostAutomations.swift
[308/469] Compiling Spinetail PostAutomationsIdActionsPauseAllEmails.swift
[309/469] Compiling Spinetail PostAutomationsIdActionsStartAllEmails.swift
[310/469] Compiling Spinetail PostAutomationsIdEmailsIdActionsPause.swift
[311/469] Compiling Spinetail PostAutomationsIdEmailsIdActionsStart.swift
[312/469] Compiling Spinetail PostAutomationsIdEmailsIdQueue.swift
[313/469] Compiling Spinetail PostAutomationsIdRemovedSubscribers.swift
[314/469] Compiling Spinetail DeleteBatchWebhookId.swift
[315/469] Compiling Spinetail GetBatchWebhook.swift
[316/469] Compiling Spinetail GetBatchWebhooks.swift
[317/469] Compiling Spinetail PatchBatchWebhooks.swift
[318/469] Compiling Spinetail PostBatchWebhooks.swift
[319/469] Compiling Spinetail DeleteBatchesId.swift
[320/469] Compiling Spinetail GetBatches.swift
[321/469] Compiling Spinetail GetBatchesId.swift
[322/493] Compiling Spinetail SegmentOptions1.swift
[323/493] Compiling Spinetail SegmentOptions2.swift
[324/493] Compiling Spinetail SendChecklist.swift
[325/493] Compiling Spinetail SendingSchedule.swift
[326/493] Compiling Spinetail SendingSchedule1.swift
[327/493] Compiling Spinetail SentTo.swift
[328/493] Compiling Spinetail ShareReport.swift
[329/493] Compiling Spinetail ShippingAddress.swift
[330/493] Compiling Spinetail ShippingAddress1.swift
[331/493] Compiling Spinetail SignupForm.swift
[332/493] Compiling Spinetail SignupForm1.swift
[333/493] Compiling Spinetail SignupFormHeaderOptions.swift
[334/493] Compiling Spinetail Sources.swift
[335/493] Compiling Spinetail Sources1.swift
[336/493] Compiling Spinetail Statistics.swift
[337/493] Compiling Spinetail SubscriberInAutomationQueue.swift
[338/493] Compiling Spinetail SubscriberInAutomationQueue1.swift
[339/493] Compiling Spinetail SubscriberInAutomationQueue2.swift
[340/493] Compiling Spinetail SubscriberInCustomerJourneysAudience.swift
[341/493] Compiling Spinetail SubscriberList.swift
[342/493] Compiling Spinetail SubscriberList1.swift
[343/493] Compiling Spinetail SubscriberList2.swift
[344/493] Compiling Spinetail SubscriberLists.swift
[345/493] Compiling Spinetail SubscriberRemovedFromAutomationWorkflow.swift
[346/517] Compiling Spinetail TrackingSettings.swift
[347/517] Compiling Spinetail TwitterStats.swift
[348/517] Compiling Spinetail TwitterStatus.swift
[349/517] Compiling Spinetail UniqueVisitsInner.swift
[350/517] Compiling Spinetail Unsubscribes.swift
[351/517] Compiling Spinetail UpdateInformationAboutaSpecificWorkflowEmail.swift
[352/517] Compiling Spinetail UploadArchive.swift
[353/517] Compiling Spinetail VariateContentsInner.swift
[354/517] Compiling Spinetail VariateContentsInner1.swift
[355/517] Compiling Spinetail VerifiedDomains.swift
[356/517] Compiling Spinetail VerifiedDomains1.swift
[357/517] Compiling Spinetail VerifiedDomains2.swift
[358/517] Compiling Spinetail VerifyaDomainForSending.swift
[359/517] Compiling Spinetail VisitsInner.swift
[360/517] Compiling Spinetail VisitsInner1.swift
[361/517] Compiling Spinetail WeeklyClicksAndVisitsData.swift
[362/517] Compiling Spinetail GetAccountExportId.swift
[363/517] Compiling Spinetail GetAccountExports.swift
[364/517] Compiling Spinetail PostAccountExport.swift
[365/517] Compiling Spinetail GetActivityFeedChimpChatter.swift
[366/517] Compiling Spinetail GetAuthorizedApps.swift
[367/517] Compiling Spinetail GetAuthorizedAppsId.swift
[368/517] Compiling Spinetail ArchiveAutomations.swift
[369/517] Compiling Spinetail DeleteAutomationsIdEmailsId.swift
[370/541] Compiling Spinetail AnOptionForSignupFormStyles.swift
[371/541] Compiling Spinetail AuthorizedApplicationsInner.swift
[372/541] Compiling Spinetail AutomationCampaignSettings.swift
[373/541] Compiling Spinetail AutomationCampaignSettings1.swift
[374/541] Compiling Spinetail AutomationDelay.swift
[375/541] Compiling Spinetail AutomationDelay1.swift
[376/541] Compiling Spinetail AutomationEmails.swift
[377/541] Compiling Spinetail AutomationTrackingOptions.swift
[378/541] Compiling Spinetail AutomationTrigger.swift
[379/541] Compiling Spinetail AutomationTrigger1.swift
[380/541] Compiling Spinetail AutomationWorkflow.swift
[381/541] Compiling Spinetail AutomationWorkflow1.swift
[382/541] Compiling Spinetail AutomationWorkflowEmail.swift
[383/541] Compiling Spinetail AutomationWorkflowRuntimeSettings.swift
[384/541] Compiling Spinetail Automations.swift
[385/541] Compiling Spinetail Batch.swift
[386/541] Compiling Spinetail BatchAddRemoveListMembersToFromStaticSegment.swift
[387/541] Compiling Spinetail BatchDelivery.swift
[388/541] Compiling Spinetail BatchOperations.swift
[389/541] Compiling Spinetail BatchUpdateListMembers.swift
[390/541] Compiling Spinetail BatchWebhook.swift
[391/541] Compiling Spinetail BatchWebhook1.swift
[392/541] Compiling Spinetail BatchWebhook2.swift
[393/541] Compiling Spinetail BatchWebhooks.swift
[394/541] Compiling Spinetail BillingAddress.swift
[395/541] Compiling Spinetail CreateAnAccountExport.swift
[396/541] Compiling Spinetail Customers.swift
[397/541] Compiling Spinetail DailyClicksAndVisitsData.swift
[398/541] Compiling Spinetail DailyListActivity.swift
[399/541] Compiling Spinetail DailySendingDays.swift
[400/541] Compiling Spinetail DomainPerformance.swift
[401/541] Compiling Spinetail ECommerceCart.swift
[402/541] Compiling Spinetail ECommerceCart1.swift
[403/541] Compiling Spinetail ECommerceCart2.swift
[404/541] Compiling Spinetail ECommerceCartLineItem.swift
[405/541] Compiling Spinetail ECommerceCartLineItem1.swift
[406/541] Compiling Spinetail ECommerceCartLineItem2.swift
[407/541] Compiling Spinetail ECommerceCustomer.swift
[408/541] Compiling Spinetail ECommerceCustomer1.swift
[409/541] Compiling Spinetail ECommerceCustomer2.swift
[410/541] Compiling Spinetail ECommerceCustomer3.swift
[411/541] Compiling Spinetail ECommerceCustomer4.swift
[412/541] Compiling Spinetail ECommerceOrder.swift
[413/541] Compiling Spinetail ECommerceOrder1.swift
[414/541] Compiling Spinetail ECommerceOrder2.swift
[415/541] Compiling Spinetail ECommerceOrderLineItem.swift
[416/541] Compiling Spinetail ECommerceOrderLineItem1.swift
[417/541] Compiling Spinetail ECommerceOrderLineItem2.swift
[418/541] Compiling Spinetail ECommerceProduct.swift
[419/541] Compiling Spinetail ECommerceProduct1.swift
[420/541] Compiling Spinetail ECommerceProduct2.swift
[421/541] Compiling Spinetail ECommerceProductImage.swift
[422/541] Compiling Spinetail ECommerceProductImage1.swift
[423/541] Compiling Spinetail ECommerceProductImage2.swift
[424/541] Compiling Spinetail ECommerceProductVariant.swift
[425/541] Compiling Spinetail ECommerceProductVariant1.swift
[426/541] Compiling Spinetail ECommerceProductVariant2.swift
[427/541] Compiling Spinetail ECommercePromoCode.swift
[428/541] Compiling Spinetail ECommercePromoCode1.swift
[429/541] Compiling Spinetail ECommercePromoCode2.swift
[430/541] Compiling Spinetail ECommercePromoRule.swift
[431/541] Compiling Spinetail ECommercePromoRule1.swift
[432/541] Compiling Spinetail ECommercePromoRule2.swift
[433/541] Compiling Spinetail ECommerceReport.swift
[434/541] Compiling Spinetail ECommerceReport1.swift
[435/541] Compiling Spinetail ECommerceStore.swift
[436/541] Compiling Spinetail ECommerceStore1.swift
[437/541] Compiling Spinetail ECommerceStore2.swift
[438/541] Compiling Spinetail ECommerceStores.swift
[439/541] Compiling Spinetail EcommerceProductImages.swift
[440/541] Compiling Spinetail EcommerceProductVariants.swift
[441/541] Compiling Spinetail EcommerceStats.swift
[442/541] Compiling Spinetail EepurlActivity.swift
[443/541] Compiling Spinetail EmailActivity.swift
[444/541] Compiling Spinetail EmailClient.swift
[445/541] Emitting module Spinetail
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:34:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
32 | }
33 |
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentDecodable' was already stated in the protocol's module 'PrchModel'
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:3:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
1 | import Foundation
2 |
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentDecodable' here
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:36:23: warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
34 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
35 |
36 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
   |                       `- warning: conformance of 'Dictionary<Key, Value>' to protocol 'ContentEncodable' was already stated in the protocol's module 'PrchModel'
37 |
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Dictionary.swift:5:1: note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
3 | extension Dictionary: ContentDecodable where Key: Decodable, Value: Decodable {}
4 |
5 | extension Dictionary: ContentEncodable where Key: Encodable, Value: Encodable {}
  | `- note: 'Dictionary<Key, Value>' declares conformance to protocol 'ContentEncodable' here
6 |
[446/637] Compiling Spinetail PostBatches.swift
[447/637] Compiling Spinetail DeleteCampaignFoldersId.swift
[448/637] Compiling Spinetail GetCampaignFolders.swift
[449/637] Compiling Spinetail GetCampaignFoldersId.swift
[450/637] Compiling Spinetail PatchCampaignFoldersId.swift
[451/637] Compiling Spinetail PostCampaignFolders.swift
[452/637] Compiling Spinetail DeleteCampaignsId.swift
[453/637] Compiling Spinetail DeleteCampaignsIdFeedbackId.swift
[454/637] Compiling Spinetail GetCampaigns.swift
[455/637] Compiling Spinetail GetCampaignsId.swift
[456/637] Compiling Spinetail GetCampaignsIdContent.swift
[457/637] Compiling Spinetail GetCampaignsIdFeedback.swift
[458/637] Compiling Spinetail GetCampaignsIdFeedbackId.swift
[459/637] Compiling Spinetail GetCampaignsIdSendChecklist.swift
[460/637] Compiling Spinetail PatchCampaignsId.swift
[461/637] Compiling Spinetail PatchCampaignsIdFeedbackId.swift
[462/637] Compiling Spinetail PostCampaigns.swift
[463/637] Compiling Spinetail PostCampaignsIdActionsCancelSend.swift
[464/637] Compiling Spinetail PostCampaignsIdActionsCreateResend.swift
[465/637] Compiling Spinetail PostCampaignsIdActionsPause.swift
[466/637] Compiling Spinetail PostCampaignsIdActionsReplicate.swift
[467/637] Compiling Spinetail PostCampaignsIdActionsResume.swift
[468/637] Compiling Spinetail PostCampaignsIdActionsSchedule.swift
[469/637] Compiling Spinetail PostCampaignsIdActionsSend.swift
[470/661] Compiling Spinetail SubscriberStats.swift
[471/661] Compiling Spinetail SubscriberStats1.swift
[472/661] Compiling Spinetail SurveyQuestionAnswer.swift
[473/661] Compiling Spinetail SurveyQuestionReport.swift
[474/661] Compiling Spinetail SurveyReport.swift
[475/661] Compiling Spinetail SurveyRespondents.swift
[476/661] Compiling Spinetail SurveyResponse.swift
[477/661] Compiling Spinetail Tag.swift
[478/661] Compiling Spinetail TagSearchResults.swift
[479/661] Compiling Spinetail TagsInner.swift
[480/661] Compiling Spinetail TagsInner1.swift
[481/661] Compiling Spinetail TagsInner2.swift
[482/661] Compiling Spinetail TemplateContent.swift
[483/661] Compiling Spinetail TemplateContent1.swift
[484/661] Compiling Spinetail TemplateDefaultContent.swift
[485/661] Compiling Spinetail TemplateFolder.swift
[486/661] Compiling Spinetail TemplateFolder1.swift
[487/661] Compiling Spinetail TemplateFolders.swift
[488/661] Compiling Spinetail TemplateInstance.swift
[489/661] Compiling Spinetail TemplateInstance1.swift
[490/661] Compiling Spinetail Templates.swift
[491/661] Compiling Spinetail TimeseriesInner.swift
[492/661] Compiling Spinetail TimewarpStatsInner.swift
[493/661] Compiling Spinetail TrackedConversations.swift
[494/685] Compiling Spinetail PostCampaignsIdActionsTest.swift
[495/685] Compiling Spinetail PostCampaignsIdActionsUnschedule.swift
[496/685] Compiling Spinetail PostCampaignsIdFeedback.swift
[497/685] Compiling Spinetail PutCampaignsIdContent.swift
[498/685] Compiling Spinetail DeleteConnectedSitesId.swift
[499/685] Compiling Spinetail GetConnectedSites.swift
[500/685] Compiling Spinetail GetConnectedSitesId.swift
[501/685] Compiling Spinetail PostConnectedSites.swift
[502/685] Compiling Spinetail PostConnectedSitesIdActionsVerifyScriptInstallation.swift
[503/685] Compiling Spinetail GetConversations.swift
[504/685] Compiling Spinetail GetConversationsId.swift
[505/685] Compiling Spinetail GetConversationsIdMessages.swift
[506/685] Compiling Spinetail GetConversationsIdMessagesId.swift
[507/685] Compiling Spinetail PostCustomerJourneysJourneysIdStepsIdActionsTrigger.swift
[508/685] Compiling Spinetail DeleteEcommerceStoresId.swift
[509/685] Compiling Spinetail DeleteEcommerceStoresIdCartsId.swift
[510/685] Compiling Spinetail DeleteEcommerceStoresIdCartsLinesId.swift
[511/685] Compiling Spinetail DeleteEcommerceStoresIdCustomersId.swift
[512/685] Compiling Spinetail DeleteEcommerceStoresIdOrdersId.swift
[513/685] Compiling Spinetail DeleteEcommerceStoresIdOrdersIdLinesId.swift
[514/685] Compiling Spinetail DeleteEcommerceStoresIdProductsId.swift
[515/685] Compiling Spinetail DeleteEcommerceStoresIdProductsIdImagesId.swift
[516/685] Compiling Spinetail DeleteEcommerceStoresIdProductsIdVariantsId.swift
[517/685] Compiling Spinetail DeleteEcommerceStoresIdPromocodesId.swift
[518/709] Compiling Spinetail GetAllFacebookAds.swift
[519/709] Compiling Spinetail GetFacebookAdsId.swift
[520/709] Compiling Spinetail DeleteFileManagerFilesId.swift
[521/709] Compiling Spinetail DeleteFileManagerFoldersId.swift
[522/709] Compiling Spinetail GetFileManagerFiles.swift
[523/709] Compiling Spinetail GetFileManagerFilesId.swift
[524/709] Compiling Spinetail GetFileManagerFolders.swift
[525/709] Compiling Spinetail GetFileManagerFoldersId.swift
[526/709] Compiling Spinetail PatchFileManagerFilesId.swift
[527/709] Compiling Spinetail PatchFileManagerFoldersId.swift
[528/709] Compiling Spinetail PostFileManagerFiles.swift
[529/709] Compiling Spinetail PostFileManagerFolders.swift
[530/709] Compiling Spinetail DeleteLandingPageId.swift
[531/709] Compiling Spinetail GetAllLandingPages.swift
[532/709] Compiling Spinetail GetLandingPageId.swift
[533/709] Compiling Spinetail GetLandingPageIdContent.swift
[534/709] Compiling Spinetail PatchLandingPageId.swift
[535/709] Compiling Spinetail PostAllLandingPages.swift
[536/709] Compiling Spinetail PostLandingPageIdActionsPublish.swift
[537/709] Compiling Spinetail PostLandingPageIdActionsUnpublish.swift
[538/709] Compiling Spinetail DeleteListsId.swift
[539/709] Compiling Spinetail DeleteListsIdInterestCategoriesId.swift
[540/709] Compiling Spinetail DeleteListsIdInterestCategoriesIdInterestsId.swift
[541/709] Compiling Spinetail DeleteListsIdMembersId.swift
[542/709] Compiling Spinetail PatchEcommerceStoresId.swift
[543/709] Compiling Spinetail PatchEcommerceStoresIdCartsId.swift
[544/709] Compiling Spinetail PatchEcommerceStoresIdCartsIdLinesId.swift
[545/709] Compiling Spinetail PatchEcommerceStoresIdCustomersId.swift
[546/709] Compiling Spinetail PatchEcommerceStoresIdOrdersId.swift
[547/709] Compiling Spinetail PatchEcommerceStoresIdOrdersIdLinesId.swift
[548/709] Compiling Spinetail PatchEcommerceStoresIdProductsId.swift
[549/709] Compiling Spinetail PatchEcommerceStoresIdProductsIdImagesId.swift
[550/709] Compiling Spinetail PatchEcommerceStoresIdProductsIdVariantsId.swift
[551/709] Compiling Spinetail PatchEcommerceStoresIdPromocodesId.swift
[552/709] Compiling Spinetail PatchEcommerceStoresIdPromorulesId.swift
[553/709] Compiling Spinetail PostEcommerceStores.swift
[554/709] Compiling Spinetail PostEcommerceStoresIdCarts.swift
[555/709] Compiling Spinetail PostEcommerceStoresIdCartsIdLines.swift
[556/709] Compiling Spinetail PostEcommerceStoresIdCustomers.swift
[557/709] Compiling Spinetail PostEcommerceStoresIdOrders.swift
[558/709] Compiling Spinetail PostEcommerceStoresIdOrdersIdLines.swift
[559/709] Compiling Spinetail PostEcommerceStoresIdProducts.swift
[560/709] Compiling Spinetail PostEcommerceStoresIdProductsIdImages.swift
[561/709] Compiling Spinetail PostEcommerceStoresIdProductsIdVariants.swift
[562/709] Compiling Spinetail PostEcommerceStoresIdPromocodes.swift
[563/709] Compiling Spinetail PostEcommerceStoresIdPromorules.swift
[564/709] Compiling Spinetail PutEcommerceStoresIdCustomersId.swift
[565/709] Compiling Spinetail PutEcommerceStoresIdProductsIdVariantsId.swift
[566/709] Compiling Spinetail DeleteEcommerceStoresIdPromorulesId.swift
[567/709] Compiling Spinetail GetEcommerceOrders.swift
[568/709] Compiling Spinetail GetEcommerceStores.swift
[569/709] Compiling Spinetail GetEcommerceStoresId.swift
[570/709] Compiling Spinetail GetEcommerceStoresIdCarts.swift
[571/709] Compiling Spinetail GetEcommerceStoresIdCartsId.swift
[572/709] Compiling Spinetail GetEcommerceStoresIdCartsIdLines.swift
[573/709] Compiling Spinetail GetEcommerceStoresIdCartsIdLinesId.swift
[574/709] Compiling Spinetail GetEcommerceStoresIdCustomers.swift
[575/709] Compiling Spinetail GetEcommerceStoresIdCustomersId.swift
[576/709] Compiling Spinetail GetEcommerceStoresIdOrders.swift
[577/709] Compiling Spinetail GetEcommerceStoresIdOrdersId.swift
[578/709] Compiling Spinetail GetEcommerceStoresIdOrdersIdLines.swift
[579/709] Compiling Spinetail GetEcommerceStoresIdOrdersIdLinesId.swift
[580/709] Compiling Spinetail GetEcommerceStoresIdProducts.swift
[581/709] Compiling Spinetail GetEcommerceStoresIdProductsId.swift
[582/709] Compiling Spinetail GetEcommerceStoresIdProductsIdImages.swift
[583/709] Compiling Spinetail GetEcommerceStoresIdProductsIdImagesId.swift
[584/709] Compiling Spinetail GetEcommerceStoresIdProductsIdVariants.swift
[585/709] Compiling Spinetail GetEcommerceStoresIdProductsIdVariantsId.swift
[586/709] Compiling Spinetail GetEcommerceStoresIdPromocodes.swift
[587/709] Compiling Spinetail GetEcommerceStoresIdPromocodesId.swift
[588/709] Compiling Spinetail GetEcommerceStoresIdPromorules.swift
[589/709] Compiling Spinetail GetEcommerceStoresIdPromorulesId.swift
[590/709] Compiling Spinetail GetListsIdMembersIdGoals.swift
[591/709] Compiling Spinetail GetListsIdMembersIdNotes.swift
[592/709] Compiling Spinetail GetListsIdMembersIdNotesId.swift
[593/709] Compiling Spinetail GetListsIdMergeFields.swift
[594/709] Compiling Spinetail GetListsIdMergeFieldsId.swift
[595/709] Compiling Spinetail GetListsIdSegmentsId.swift
[596/709] Compiling Spinetail GetListsIdSegmentsIdMembers.swift
[597/709] Compiling Spinetail GetListsIdSignupForms.swift
[598/709] Compiling Spinetail GetListsIdSurveys.swift
[599/709] Compiling Spinetail GetListsIdSurveysId.swift
[600/709] Compiling Spinetail GetListsIdWebhooks.swift
[601/709] Compiling Spinetail GetListsIdWebhooksId.swift
[602/709] Compiling Spinetail PatchListsId.swift
[603/709] Compiling Spinetail PatchListsIdInterestCategoriesId.swift
[604/709] Compiling Spinetail PatchListsIdInterestCategoriesIdInterestsId.swift
[605/709] Compiling Spinetail PatchListsIdMembersId.swift
[606/709] Compiling Spinetail PatchListsIdMembersIdNotesId.swift
[607/709] Compiling Spinetail PatchListsIdMergeFieldsId.swift
[608/709] Compiling Spinetail PatchListsIdSegmentsId.swift
[609/709] Compiling Spinetail PatchListsIdWebhooksId.swift
[610/709] Compiling Spinetail PostListMemberEvents.swift
[611/709] Compiling Spinetail PostListMemberTags.swift
[612/709] Compiling Spinetail PostLists.swift
[613/709] Compiling Spinetail PostListsId.swift
[614/709] Compiling Spinetail PostListsIdInterestCategories.swift
[615/709] Compiling Spinetail PostListsIdInterestCategoriesIdInterests.swift
[616/709] Compiling Spinetail PostListsIdMembers.swift
[617/709] Compiling Spinetail PostListsIdMembersHashActionsDeletePermanent.swift
[618/709] Compiling Spinetail PostListsIdMembersIdNotes.swift
[619/709] Compiling Spinetail PostListsIdMergeFields.swift
[620/709] Compiling Spinetail PostListsIdSegments.swift
[621/709] Compiling Spinetail PostListsIdSegmentsId.swift
[622/709] Compiling Spinetail PostListsIdSegmentsIdMembers.swift
[623/709] Compiling Spinetail PostListsIdSignupForms.swift
[624/709] Compiling Spinetail PostListsIdWebhooks.swift
[625/709] Compiling Spinetail PreviewASegment.swift
[626/709] Compiling Spinetail PutListsIdMembersId.swift
[627/709] Compiling Spinetail SearchTagsByName.swift
[628/709] Compiling Spinetail GetPing.swift
[629/709] Compiling Spinetail GetReportingFacebookAds.swift
[630/709] Compiling Spinetail GetReportingFacebookAdsId.swift
[631/709] Compiling Spinetail GetReportingFacebookAdsIdEcommerceProductActivity.swift
[632/709] Compiling Spinetail GetReportingLandingPages.swift
[633/709] Compiling Spinetail GetReportingLandingPagesId.swift
[634/709] Compiling Spinetail GetReportingSurveys.swift
[635/709] Compiling Spinetail GetReportingSurveysId.swift
[636/709] Compiling Spinetail GetReportingSurveysIdQuestions.swift
[637/709] Compiling Spinetail GetReportingSurveysIdQuestionsId.swift
[638/709] Compiling Spinetail DeleteListsIdMembersIdNotesId.swift
[639/709] Compiling Spinetail DeleteListsIdMergeFieldsId.swift
[640/709] Compiling Spinetail DeleteListsIdSegmentsId.swift
[641/709] Compiling Spinetail DeleteListsIdSegmentsIdMembersId.swift
[642/709] Compiling Spinetail DeleteListsIdWebhooksId.swift
[643/709] Compiling Spinetail GetListMemberTags.swift
[644/709] Compiling Spinetail GetLists.swift
[645/709] Compiling Spinetail GetListsId.swift
[646/709] Compiling Spinetail GetListsIdAbuseReports.swift
[647/709] Compiling Spinetail GetListsIdAbuseReportsId.swift
[648/709] Compiling Spinetail GetListsIdActivity.swift
[649/709] Compiling Spinetail GetListsIdClients.swift
[650/709] Compiling Spinetail GetListsIdGrowthHistory.swift
[651/709] Compiling Spinetail GetListsIdGrowthHistoryId.swift
[652/709] Compiling Spinetail GetListsIdInterestCategories.swift
[653/709] Compiling Spinetail GetListsIdInterestCategoriesId.swift
[654/709] Compiling Spinetail GetListsIdInterestCategoriesIdInterests.swift
[655/709] Compiling Spinetail GetListsIdInterestCategoriesIdInterestsId.swift
[656/709] Compiling Spinetail GetListsIdLocations.swift
[657/709] Compiling Spinetail GetListsIdMembers.swift
[658/709] Compiling Spinetail GetListsIdMembersId.swift
[659/709] Compiling Spinetail GetListsIdMembersIdActivity.swift
[660/709] Compiling Spinetail GetListsIdMembersIdActivityFeed.swift
[661/709] Compiling Spinetail GetListsIdMembersIdEvents.swift
[662/709] Compiling Spinetail GetReportingSurveysIdQuestionsIdAnswers.swift
[663/709] Compiling Spinetail GetReportingSurveysIdResponses.swift
[664/709] Compiling Spinetail GetReportingSurveysIdResponsesId.swift
[665/709] Compiling Spinetail GetReports.swift
[666/709] Compiling Spinetail GetReportsId.swift
[667/709] Compiling Spinetail GetReportsIdAbuseReportsId.swift
[668/709] Compiling Spinetail GetReportsIdAbuseReportsIdId.swift
[669/709] Compiling Spinetail GetReportsIdAdvice.swift
[670/709] Compiling Spinetail GetReportsIdClickDetails.swift
[671/709] Compiling Spinetail GetReportsIdClickDetailsId.swift
[672/709] Compiling Spinetail GetReportsIdClickDetailsIdMembers.swift
[673/709] Compiling Spinetail GetReportsIdClickDetailsIdMembersId.swift
[674/709] Compiling Spinetail GetReportsIdDomainPerformance.swift
[675/709] Compiling Spinetail GetReportsIdEcommerceProductActivity.swift
[676/709] Compiling Spinetail GetReportsIdEepurl.swift
[677/709] Compiling Spinetail GetReportsIdEmailActivity.swift
[678/709] Compiling Spinetail GetReportsIdEmailActivityId.swift
[679/709] Compiling Spinetail GetReportsIdLocations.swift
[680/709] Compiling Spinetail GetReportsIdOpenDetails.swift
[681/709] Compiling Spinetail GetReportsIdOpenDetailsIdMembersId.swift
[682/709] Compiling Spinetail GetReportsIdSentTo.swift
[683/709] Compiling Spinetail GetReportsIdSentToId.swift
[684/709] Compiling Spinetail GetReportsIdSubReportsId.swift
[685/709] Compiling Spinetail GetReportsIdUnsubscribed.swift
[686/709] Compiling Spinetail GetReportsIdUnsubscribedId.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[687/709] Compiling Spinetail GetRoot.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[688/709] Compiling Spinetail GetSearchCampaigns.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[689/709] Compiling Spinetail GetSearchMembers.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[690/709] Compiling Spinetail PostListsIdSurveysIdActionsPublish.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[691/709] Compiling Spinetail PostListsIdSurveysIdActionsUnpublish.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[692/709] Compiling Spinetail DeleteTemplateFoldersId.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[693/709] Compiling Spinetail GetTemplateFolders.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[694/709] Compiling Spinetail GetTemplateFoldersId.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[695/709] Compiling Spinetail PatchTemplateFoldersId.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[696/709] Compiling Spinetail PostTemplateFolders.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[697/709] Compiling Spinetail DeleteTemplatesId.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[698/709] Compiling Spinetail GetTemplates.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[699/709] Compiling Spinetail GetTemplatesId.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[700/709] Compiling Spinetail GetTemplatesIdDefaultContent.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[701/709] Compiling Spinetail PatchTemplatesId.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[702/709] Compiling Spinetail PostTemplates.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[703/709] Compiling Spinetail CreateVerifiedDomain.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[704/709] Compiling Spinetail DeleteVerifiedDomain.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[705/709] Compiling Spinetail GetVerifiedDomain.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[706/709] Compiling Spinetail GetVerifiedDomains.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[707/709] Compiling Spinetail VerifyDomain.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[708/709] Compiling Spinetail Spinetail.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
[709/709] Compiling Spinetail SpinetailAPI.swift
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:28:23: warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       `- warning: static property 'encoder' is not concurrency-safe because non-'Sendable' type 'any Encoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Encoder.swift:1:17: note: protocol 'Encoder' does not conform to the 'Sendable' protocol
1 | public protocol Encoder<DataType> {
  |                 `- note: protocol 'Encoder' does not conform to the 'Sendable' protocol
2 |   associatedtype DataType
3 |
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 1 | import Foundation
 2 | import PrchModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PrchModel'
 3 |
 4 | extension JSONDecoder {
   :
26 |     }()
27 |
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- note: annotate 'encoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
/host/spi-builder-workspace/Sources/Spinetail/Coding.swift:30:23: warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     public static let encoder: any Encoder<Data> = JSONEncoder(dateFormatter: Self.dateEncodingFormatter)
29 |
30 |     public static let decoder: any Decoder<Data> = JSONDecoder(dateFormatter: Self.dateEncodingFormatter)
   |                       |- warning: static property 'decoder' is not concurrency-safe because non-'Sendable' type 'any Decoder<Data>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decoder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |   }
32 | }
/host/spi-builder-workspace/.build/checkouts/Prch/Sources/PrchModel/Decoder.swift:1:17: note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 1 | public protocol Decoder<DataType> {
   |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
 2 |   associatedtype DataType
 3 |
Build complete! (50.60s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "prch",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0-alpha.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/brightdigit/Prch.git"
    }
  ],
  "manifest_display_name" : "Spinetail",
  "name" : "Spinetail",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "Spinetail",
      "targets" : [
        "Spinetail"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SpinetailTests",
      "module_type" : "SwiftTarget",
      "name" : "SpinetailTests",
      "path" : "Tests/SpinetailTests",
      "product_dependencies" : [
        "Prch"
      ],
      "sources" : [
        "Helpers/Client.Helpers.swift",
        "Helpers/Settings.swift",
        "Helpers/String.swift",
        "Tests/CampaignTests.swift",
        "Tests/ListsTests.swift"
      ],
      "target_dependencies" : [
        "Spinetail"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Spinetail",
      "module_type" : "SwiftTarget",
      "name" : "Spinetail",
      "path" : "Sources/Spinetail",
      "product_dependencies" : [
        "PrchModel"
      ],
      "product_memberships" : [
        "Spinetail"
      ],
      "sources" : [
        "Coding.swift",
        "MailchimpOptionalDate.swift",
        "Models/ABSplit.swift",
        "Models/ABSplitStats.swift",
        "Models/ABTestOptions.swift",
        "Models/ABTestOptions1.swift",
        "Models/ABTestOptions2.swift",
        "Models/ABTestingOptions.swift",
        "Models/APIHealthStatus.swift",
        "Models/APIRoot.swift",
        "Models/AbandonedBrowseAutomation.swift",
        "Models/AbandonedCartAutomation.swift",
        "Models/AbuseComplaint.swift",
        "Models/AbuseComplaint1.swift",
        "Models/AbuseComplaints.swift",
        "Models/AbuseComplaints1.swift",
        "Models/AccountContact.swift",
        "Models/AccountExportsInner.swift",
        "Models/AddListMembers.swift",
        "Models/AddListMembers1.swift",
        "Models/AddListMembers2.swift",
        "Models/AddListMembers3.swift",
        "Models/AddWebhook.swift",
        "Models/Address.swift",
        "Models/Address1.swift",
        "Models/AnOptionForSignupFormStyles.swift",
        "Models/AuthorizedApplicationsInner.swift",
        "Models/AutomationCampaignSettings.swift",
        "Models/AutomationCampaignSettings1.swift",
        "Models/AutomationDelay.swift",
        "Models/AutomationDelay1.swift",
        "Models/AutomationEmails.swift",
        "Models/AutomationTrackingOptions.swift",
        "Models/AutomationTrigger.swift",
        "Models/AutomationTrigger1.swift",
        "Models/AutomationWorkflow.swift",
        "Models/AutomationWorkflow1.swift",
        "Models/AutomationWorkflowEmail.swift",
        "Models/AutomationWorkflowRuntimeSettings.swift",
        "Models/Automations.swift",
        "Models/Batch.swift",
        "Models/BatchAddRemoveListMembersToFromStaticSegment.swift",
        "Models/BatchDelivery.swift",
        "Models/BatchOperations.swift",
        "Models/BatchUpdateListMembers.swift",
        "Models/BatchWebhook.swift",
        "Models/BatchWebhook1.swift",
        "Models/BatchWebhook2.swift",
        "Models/BatchWebhooks.swift",
        "Models/BillingAddress.swift",
        "Models/BillingAddress1.swift",
        "Models/Bounces.swift",
        "Models/Campaign.swift",
        "Models/Campaign1.swift",
        "Models/Campaign2.swift",
        "Models/Campaign3.swift",
        "Models/CampaignA.swift",
        "Models/CampaignAdvice.swift",
        "Models/CampaignAdviceReport.swift",
        "Models/CampaignB.swift",
        "Models/CampaignContent.swift",
        "Models/CampaignContent1.swift",
        "Models/CampaignDefaults.swift",
        "Models/CampaignDefaults1.swift",
        "Models/CampaignDeliveryStatus.swift",
        "Models/CampaignFeedback.swift",
        "Models/CampaignFeedback1.swift",
        "Models/CampaignFeedback2.swift",
        "Models/CampaignFeedback3.swift",
        "Models/CampaignFolder.swift",
        "Models/CampaignFolder1.swift",
        "Models/CampaignFolders.swift",
        "Models/CampaignReport.swift",
        "Models/CampaignReportSummary.swift",
        "Models/CampaignReportSummary1.swift",
        "Models/CampaignReportSummary2.swift",
        "Models/CampaignReportSummary3.swift",
        "Models/CampaignReports.swift",
        "Models/CampaignReports1.swift",
        "Models/CampaignSettings.swift",
        "Models/CampaignSettings1.swift",
        "Models/CampaignSettings2.swift",
        "Models/CampaignSettings3.swift",
        "Models/CampaignSettings4.swift",
        "Models/CampaignSettings5.swift",
        "Models/CampaignSocialCard.swift",
        "Models/CampaignSubReports.swift",
        "Models/CampaignTrackingOptions.swift",
        "Models/CampaignTrackingOptions1.swift",
        "Models/Campaigns.swift",
        "Models/CapsuleCRMTracking.swift",
        "Models/CapsuleCRMTracking1.swift",
        "Models/CapsuleCRMTracking2.swift",
        "Models/CartLines.swift",
        "Models/Carts.swift",
        "Models/ChimpChatter.swift",
        "Models/ClickDetailMember.swift",
        "Models/ClickDetailMembers.swift",
        "Models/ClickDetailReport.swift",
        "Models/ClickSummary.swift",
        "Models/Clicks.swift",
        "Models/Clicks1Inner.swift",
        "Models/Clicks1Inner1.swift",
        "Models/CollectionAuthorization.swift",
        "Models/CollectionOfContentForListSignupForms.swift",
        "Models/CollectionOfConversationMessages.swift",
        "Models/CollectionOfElementStyleForListSignupForms.swift",
        "Models/CollectionOfEvents.swift",
        "Models/CollectionOfMemberActivityEvents.swift",
        "Models/CollectionOfMergeFields.swift",
        "Models/CollectionOfNotes.swift",
        "Models/CollectionOfSegments.swift",
        "Models/CollectionOfTags.swift",
        "Models/CombinationsInner.swift",
        "Models/Conditions.swift",
        "Models/Conditions1.swift",
        "Models/Conditions2.swift",
        "Models/ConnectedSite.swift",
        "Models/ConnectedSite1.swift",
        "Models/ConnectedSite2.swift",
        "Models/ConnectedSites.swift",
        "Models/Contact.swift",
        "Models/ContactCounts.swift",
        "Models/Conversation.swift",
        "Models/ConversationMessage.swift",
        "Models/CreateAnAccountExport.swift",
        "Models/Customers.swift",
        "Models/DailyClicksAndVisitsData.swift",
        "Models/DailyListActivity.swift",
        "Models/DailySendingDays.swift",
        "Models/DomainPerformance.swift",
        "Models/ECommerceCart.swift",
        "Models/ECommerceCart1.swift",
        "Models/ECommerceCart2.swift",
        "Models/ECommerceCartLineItem.swift",
        "Models/ECommerceCartLineItem1.swift",
        "Models/ECommerceCartLineItem2.swift",
        "Models/ECommerceCustomer.swift",
        "Models/ECommerceCustomer1.swift",
        "Models/ECommerceCustomer2.swift",
        "Models/ECommerceCustomer3.swift",
        "Models/ECommerceCustomer4.swift",
        "Models/ECommerceOrder.swift",
        "Models/ECommerceOrder1.swift",
        "Models/ECommerceOrder2.swift",
        "Models/ECommerceOrderLineItem.swift",
        "Models/ECommerceOrderLineItem1.swift",
        "Models/ECommerceOrderLineItem2.swift",
        "Models/ECommerceProduct.swift",
        "Models/ECommerceProduct1.swift",
        "Models/ECommerceProduct2.swift",
        "Models/ECommerceProductImage.swift",
        "Models/ECommerceProductImage1.swift",
        "Models/ECommerceProductImage2.swift",
        "Models/ECommerceProductVariant.swift",
        "Models/ECommerceProductVariant1.swift",
        "Models/ECommerceProductVariant2.swift",
        "Models/ECommercePromoCode.swift",
        "Models/ECommercePromoCode1.swift",
        "Models/ECommercePromoCode2.swift",
        "Models/ECommercePromoRule.swift",
        "Models/ECommercePromoRule1.swift",
        "Models/ECommercePromoRule2.swift",
        "Models/ECommerceReport.swift",
        "Models/ECommerceReport1.swift",
        "Models/ECommerceStore.swift",
        "Models/ECommerceStore1.swift",
        "Models/ECommerceStore2.swift",
        "Models/ECommerceStores.swift",
        "Models/EcommerceProductImages.swift",
        "Models/EcommerceProductVariants.swift",
        "Models/EcommerceStats.swift",
        "Models/EepurlActivity.swift",
        "Models/EmailActivity.swift",
        "Models/EmailClient.swift",
        "Models/EmailClients.swift",
        "Models/EmailDomain.swift",
        "Models/ErrorsInner.swift",
        "Models/ErrorsInner1.swift",
        "Models/Event.swift",
        "Models/Events.swift",
        "Models/Events1.swift",
        "Models/Events2.swift",
        "Models/ExactMatches.swift",
        "Models/FacebookLikes.swift",
        "Models/FileManager.swift",
        "Models/FileManagerFolders.swift",
        "Models/Forwards.swift",
        "Models/GalleryFile.swift",
        "Models/GalleryFile1.swift",
        "Models/GalleryFile2.swift",
        "Models/GalleryFolder.swift",
        "Models/GalleryFolder1.swift",
        "Models/GetAccountExports200Response.swift",
        "Models/GetActivityFeedChimpChatter200Response.swift",
        "Models/GetAllFacebookAds200Response.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInner.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf1.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Audience.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceEmailSource.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceTargetingSpecs.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceTargetingSpecsInterestsInner.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceTargetingSpecsLocations.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Budget.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Channel.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Content.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2ContentAttachmentsInner.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Feedback.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Site.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOf3.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOfReportSummary.swift",
        "Models/GetAllFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryEcommerce.swift",
        "Models/GetAllLandingPages200Response.swift",
        "Models/GetAuthorizedApps200Response.swift",
        "Models/GetAutomations200Response.swift",
        "Models/GetAutomationsIdEmailsIdQueue200Response.swift",
        "Models/GetCampaigns200Response.swift",
        "Models/GetFacebookAdsId200Response.swift",
        "Models/GetReportingFacebookAds200Response.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInner.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInnerAllOf.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivity.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivityClicksInner.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivityImpressionsInner.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivityRevenueInner.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummary.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryAverageOrderAmount.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryEcommerce.swift",
        "Models/GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryExtendedAt.swift",
        "Models/GetReportingFacebookAdsId200Response.swift",
        "Models/GetReportingLandingPages200Response.swift",
        "Models/GetReportingSurveys200Response.swift",
        "Models/GetReportingSurveysIdQuestions200Response.swift",
        "Models/GetReportingSurveysIdQuestionsIdAnswers200Response.swift",
        "Models/GetReportingSurveysIdResponses200Response.swift",
        "Models/GetReportsIdEcommerceProductActivity200Response.swift",
        "Models/GetReportsIdEcommerceProductActivity200ResponseProductsInner.swift",
        "Models/Goal.swift",
        "Models/GroupA.swift",
        "Models/GroupB.swift",
        "Models/GrowthHistory.swift",
        "Models/Hours.swift",
        "Models/IndustryStats.swift",
        "Models/IndustryStats1.swift",
        "Models/Interest.swift",
        "Models/Interest1.swift",
        "Models/InterestCategory.swift",
        "Models/InterestCategory1.swift",
        "Models/InterestGroupings.swift",
        "Models/Interests.swift",
        "Models/ItemsInner.swift",
        "Models/LandingPage.swift",
        "Models/LandingPage1.swift",
        "Models/LandingPage2.swift",
        "Models/LandingPageContent.swift",
        "Models/LandingPageReport.swift",
        "Models/LandingPageReportEcommerce.swift",
        "Models/LandingPageReportTimeseries.swift",
        "Models/LastMessage.swift",
        "Models/List.swift",
        "Models/List1.swift",
        "Models/List10.swift",
        "Models/List2.swift",
        "Models/List3.swift",
        "Models/List4.swift",
        "Models/List5.swift",
        "Models/List6.swift",
        "Models/List7.swift",
        "Models/List8.swift",
        "Models/List9.swift",
        "Models/ListActivity.swift",
        "Models/ListContact.swift",
        "Models/ListContact1.swift",
        "Models/ListContact2.swift",
        "Models/ListLocation.swift",
        "Models/ListLocations.swift",
        "Models/ListMembers.swift",
        "Models/ListMembers1.swift",
        "Models/ListMembers2.swift",
        "Models/ListSignupForms.swift",
        "Models/ListStats.swift",
        "Models/ListWebhooks.swift",
        "Models/ListsInner.swift",
        "Models/Location.swift",
        "Models/Location1.swift",
        "Models/Location2.swift",
        "Models/Location3.swift",
        "Models/MarketingPermission.swift",
        "Models/MarketingPermission1.swift",
        "Models/MemberActivity.swift",
        "Models/MemberActivity1.swift",
        "Models/MemberActivity2.swift",
        "Models/MemberActivityEvents.swift",
        "Models/MemberActivityEvents1.swift",
        "Models/MemberNotes.swift",
        "Models/MemberNotes1.swift",
        "Models/MemberTag.swift",
        "Models/MemberTags.swift",
        "Models/Members.swift",
        "Models/MembersToAddRemoveToFromaStaticSegment.swift",
        "Models/MembersToSubscribeUnsubscribeToFromaListInBatch.swift",
        "Models/MergeField.swift",
        "Models/MergeField1.swift",
        "Models/MergeField2.swift",
        "Models/MergeField3.swift",
        "Models/MergeFieldOptions.swift",
        "Models/MergeFieldOptions1.swift",
        "Models/MergeFieldOptions2.swift",
        "Models/Notes.swift",
        "Models/OpenActivity.swift",
        "Models/OpenDetailReport.swift",
        "Models/OpenLocations.swift",
        "Models/Opens.swift",
        "Models/Operations.swift",
        "Models/OptionsInner.swift",
        "Models/OrderLines.swift",
        "Models/Orders.swift",
        "Models/Orders1.swift",
        "Models/Outreach.swift",
        "Models/Outreach1.swift",
        "Models/PartialMatches.swift",
        "Models/PostBatchesRequest.swift",
        "Models/PostCampaignsIdActionsScheduleRequest.swift",
        "Models/PostCampaignsIdActionsTestRequest.swift",
        "Models/PostListsIdSegmentsIdMembersRequest.swift",
        "Models/ProblemDetailDocument.swift",
        "Models/Products.swift",
        "Models/PromoCodes.swift",
        "Models/PromoRules.swift",
        "Models/PromosInner.swift",
        "Models/PromosInner1.swift",
        "Models/RSSOptions.swift",
        "Models/RSSOptions1.swift",
        "Models/RSSOptions2.swift",
        "Models/RSSOptions3.swift",
        "Models/Referrer.swift",
        "Models/RemovedSubscribers.swift",
        "Models/ResourceLink.swift",
        "Models/Response.swift",
        "Models/ResultsInner.swift",
        "Models/SalesforceCRMTracking.swift",
        "Models/SalesforceCRMTracking1.swift",
        "Models/Script.swift",
        "Models/Script1.swift",
        "Models/SegmentMembers.swift",
        "Models/SegmentOptions.swift",
        "Models/SegmentOptions1.swift",
        "Models/SegmentOptions2.swift",
        "Models/SendChecklist.swift",
        "Models/SendingSchedule.swift",
        "Models/SendingSchedule1.swift",
        "Models/SentTo.swift",
        "Models/ShareReport.swift",
        "Models/ShippingAddress.swift",
        "Models/ShippingAddress1.swift",
        "Models/SignupForm.swift",
        "Models/SignupForm1.swift",
        "Models/SignupFormHeaderOptions.swift",
        "Models/Sources.swift",
        "Models/Sources1.swift",
        "Models/Statistics.swift",
        "Models/SubscriberInAutomationQueue.swift",
        "Models/SubscriberInAutomationQueue1.swift",
        "Models/SubscriberInAutomationQueue2.swift",
        "Models/SubscriberInCustomerJourneysAudience.swift",
        "Models/SubscriberList.swift",
        "Models/SubscriberList1.swift",
        "Models/SubscriberList2.swift",
        "Models/SubscriberLists.swift",
        "Models/SubscriberRemovedFromAutomationWorkflow.swift",
        "Models/SubscriberStats.swift",
        "Models/SubscriberStats1.swift",
        "Models/SurveyQuestionAnswer.swift",
        "Models/SurveyQuestionReport.swift",
        "Models/SurveyReport.swift",
        "Models/SurveyRespondents.swift",
        "Models/SurveyResponse.swift",
        "Models/Tag.swift",
        "Models/TagSearchResults.swift",
        "Models/TagsInner.swift",
        "Models/TagsInner1.swift",
        "Models/TagsInner2.swift",
        "Models/TemplateContent.swift",
        "Models/TemplateContent1.swift",
        "Models/TemplateDefaultContent.swift",
        "Models/TemplateFolder.swift",
        "Models/TemplateFolder1.swift",
        "Models/TemplateFolders.swift",
        "Models/TemplateInstance.swift",
        "Models/TemplateInstance1.swift",
        "Models/Templates.swift",
        "Models/TimeseriesInner.swift",
        "Models/TimewarpStatsInner.swift",
        "Models/TrackedConversations.swift",
        "Models/TrackingSettings.swift",
        "Models/TwitterStats.swift",
        "Models/TwitterStatus.swift",
        "Models/UniqueVisitsInner.swift",
        "Models/Unsubscribes.swift",
        "Models/UpdateInformationAboutaSpecificWorkflowEmail.swift",
        "Models/UploadArchive.swift",
        "Models/VariateContentsInner.swift",
        "Models/VariateContentsInner1.swift",
        "Models/VerifiedDomains.swift",
        "Models/VerifiedDomains1.swift",
        "Models/VerifiedDomains2.swift",
        "Models/VerifyaDomainForSending.swift",
        "Models/VisitsInner.swift",
        "Models/VisitsInner1.swift",
        "Models/WeeklyClicksAndVisitsData.swift",
        "Requests/AccountExport/GetAccountExportId.swift",
        "Requests/AccountExports/GetAccountExports.swift",
        "Requests/AccountExports/PostAccountExport.swift",
        "Requests/ActivityFeed/GetActivityFeedChimpChatter.swift",
        "Requests/AuthorizedApps/GetAuthorizedApps.swift",
        "Requests/AuthorizedApps/GetAuthorizedAppsId.swift",
        "Requests/Automations/ArchiveAutomations.swift",
        "Requests/Automations/DeleteAutomationsIdEmailsId.swift",
        "Requests/Automations/GetAutomations.swift",
        "Requests/Automations/GetAutomationsId.swift",
        "Requests/Automations/GetAutomationsIdEmails.swift",
        "Requests/Automations/GetAutomationsIdEmailsId.swift",
        "Requests/Automations/GetAutomationsIdEmailsIdQueue.swift",
        "Requests/Automations/GetAutomationsIdEmailsIdQueueId.swift",
        "Requests/Automations/GetAutomationsIdRemovedSubscribers.swift",
        "Requests/Automations/GetAutomationsIdRemovedSubscribersId.swift",
        "Requests/Automations/PatchAutomationEmailWorkflowId.swift",
        "Requests/Automations/PostAutomations.swift",
        "Requests/Automations/PostAutomationsIdActionsPauseAllEmails.swift",
        "Requests/Automations/PostAutomationsIdActionsStartAllEmails.swift",
        "Requests/Automations/PostAutomationsIdEmailsIdActionsPause.swift",
        "Requests/Automations/PostAutomationsIdEmailsIdActionsStart.swift",
        "Requests/Automations/PostAutomationsIdEmailsIdQueue.swift",
        "Requests/Automations/PostAutomationsIdRemovedSubscribers.swift",
        "Requests/BatchWebhooks/DeleteBatchWebhookId.swift",
        "Requests/BatchWebhooks/GetBatchWebhook.swift",
        "Requests/BatchWebhooks/GetBatchWebhooks.swift",
        "Requests/BatchWebhooks/PatchBatchWebhooks.swift",
        "Requests/BatchWebhooks/PostBatchWebhooks.swift",
        "Requests/Batches/DeleteBatchesId.swift",
        "Requests/Batches/GetBatches.swift",
        "Requests/Batches/GetBatchesId.swift",
        "Requests/Batches/PostBatches.swift",
        "Requests/CampaignFolders/DeleteCampaignFoldersId.swift",
        "Requests/CampaignFolders/GetCampaignFolders.swift",
        "Requests/CampaignFolders/GetCampaignFoldersId.swift",
        "Requests/CampaignFolders/PatchCampaignFoldersId.swift",
        "Requests/CampaignFolders/PostCampaignFolders.swift",
        "Requests/Campaigns/DeleteCampaignsId.swift",
        "Requests/Campaigns/DeleteCampaignsIdFeedbackId.swift",
        "Requests/Campaigns/GetCampaigns.swift",
        "Requests/Campaigns/GetCampaignsId.swift",
        "Requests/Campaigns/GetCampaignsIdContent.swift",
        "Requests/Campaigns/GetCampaignsIdFeedback.swift",
        "Requests/Campaigns/GetCampaignsIdFeedbackId.swift",
        "Requests/Campaigns/GetCampaignsIdSendChecklist.swift",
        "Requests/Campaigns/PatchCampaignsId.swift",
        "Requests/Campaigns/PatchCampaignsIdFeedbackId.swift",
        "Requests/Campaigns/PostCampaigns.swift",
        "Requests/Campaigns/PostCampaignsIdActionsCancelSend.swift",
        "Requests/Campaigns/PostCampaignsIdActionsCreateResend.swift",
        "Requests/Campaigns/PostCampaignsIdActionsPause.swift",
        "Requests/Campaigns/PostCampaignsIdActionsReplicate.swift",
        "Requests/Campaigns/PostCampaignsIdActionsResume.swift",
        "Requests/Campaigns/PostCampaignsIdActionsSchedule.swift",
        "Requests/Campaigns/PostCampaignsIdActionsSend.swift",
        "Requests/Campaigns/PostCampaignsIdActionsTest.swift",
        "Requests/Campaigns/PostCampaignsIdActionsUnschedule.swift",
        "Requests/Campaigns/PostCampaignsIdFeedback.swift",
        "Requests/Campaigns/PutCampaignsIdContent.swift",
        "Requests/ConnectedSites/DeleteConnectedSitesId.swift",
        "Requests/ConnectedSites/GetConnectedSites.swift",
        "Requests/ConnectedSites/GetConnectedSitesId.swift",
        "Requests/ConnectedSites/PostConnectedSites.swift",
        "Requests/ConnectedSites/PostConnectedSitesIdActionsVerifyScriptInstallation.swift",
        "Requests/Conversations/GetConversations.swift",
        "Requests/Conversations/GetConversationsId.swift",
        "Requests/Conversations/GetConversationsIdMessages.swift",
        "Requests/Conversations/GetConversationsIdMessagesId.swift",
        "Requests/CustomerJourneys/PostCustomerJourneysJourneysIdStepsIdActionsTrigger.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdCartsId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdCartsLinesId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdCustomersId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdOrdersId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdOrdersIdLinesId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdProductsId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdProductsIdImagesId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdProductsIdVariantsId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdPromocodesId.swift",
        "Requests/Ecommerce/DeleteEcommerceStoresIdPromorulesId.swift",
        "Requests/Ecommerce/GetEcommerceOrders.swift",
        "Requests/Ecommerce/GetEcommerceStores.swift",
        "Requests/Ecommerce/GetEcommerceStoresId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdCarts.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdCartsId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdCartsIdLines.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdCartsIdLinesId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdCustomers.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdCustomersId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdOrders.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdOrdersId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdOrdersIdLines.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdOrdersIdLinesId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdProducts.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdProductsId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdProductsIdImages.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdProductsIdImagesId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdProductsIdVariants.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdProductsIdVariantsId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdPromocodes.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdPromocodesId.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdPromorules.swift",
        "Requests/Ecommerce/GetEcommerceStoresIdPromorulesId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdCartsId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdCartsIdLinesId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdCustomersId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdOrdersId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdOrdersIdLinesId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdProductsId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdProductsIdImagesId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdProductsIdVariantsId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdPromocodesId.swift",
        "Requests/Ecommerce/PatchEcommerceStoresIdPromorulesId.swift",
        "Requests/Ecommerce/PostEcommerceStores.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdCarts.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdCartsIdLines.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdCustomers.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdOrders.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdOrdersIdLines.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdProducts.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdProductsIdImages.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdProductsIdVariants.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdPromocodes.swift",
        "Requests/Ecommerce/PostEcommerceStoresIdPromorules.swift",
        "Requests/Ecommerce/PutEcommerceStoresIdCustomersId.swift",
        "Requests/Ecommerce/PutEcommerceStoresIdProductsIdVariantsId.swift",
        "Requests/FacebookAds/GetAllFacebookAds.swift",
        "Requests/FacebookAds/GetFacebookAdsId.swift",
        "Requests/FileManager/DeleteFileManagerFilesId.swift",
        "Requests/FileManager/DeleteFileManagerFoldersId.swift",
        "Requests/FileManager/GetFileManagerFiles.swift",
        "Requests/FileManager/GetFileManagerFilesId.swift",
        "Requests/FileManager/GetFileManagerFolders.swift",
        "Requests/FileManager/GetFileManagerFoldersId.swift",
        "Requests/FileManager/PatchFileManagerFilesId.swift",
        "Requests/FileManager/PatchFileManagerFoldersId.swift",
        "Requests/FileManager/PostFileManagerFiles.swift",
        "Requests/FileManager/PostFileManagerFolders.swift",
        "Requests/LandingPages/DeleteLandingPageId.swift",
        "Requests/LandingPages/GetAllLandingPages.swift",
        "Requests/LandingPages/GetLandingPageId.swift",
        "Requests/LandingPages/GetLandingPageIdContent.swift",
        "Requests/LandingPages/PatchLandingPageId.swift",
        "Requests/LandingPages/PostAllLandingPages.swift",
        "Requests/LandingPages/PostLandingPageIdActionsPublish.swift",
        "Requests/LandingPages/PostLandingPageIdActionsUnpublish.swift",
        "Requests/Lists/DeleteListsId.swift",
        "Requests/Lists/DeleteListsIdInterestCategoriesId.swift",
        "Requests/Lists/DeleteListsIdInterestCategoriesIdInterestsId.swift",
        "Requests/Lists/DeleteListsIdMembersId.swift",
        "Requests/Lists/DeleteListsIdMembersIdNotesId.swift",
        "Requests/Lists/DeleteListsIdMergeFieldsId.swift",
        "Requests/Lists/DeleteListsIdSegmentsId.swift",
        "Requests/Lists/DeleteListsIdSegmentsIdMembersId.swift",
        "Requests/Lists/DeleteListsIdWebhooksId.swift",
        "Requests/Lists/GetListMemberTags.swift",
        "Requests/Lists/GetLists.swift",
        "Requests/Lists/GetListsId.swift",
        "Requests/Lists/GetListsIdAbuseReports.swift",
        "Requests/Lists/GetListsIdAbuseReportsId.swift",
        "Requests/Lists/GetListsIdActivity.swift",
        "Requests/Lists/GetListsIdClients.swift",
        "Requests/Lists/GetListsIdGrowthHistory.swift",
        "Requests/Lists/GetListsIdGrowthHistoryId.swift",
        "Requests/Lists/GetListsIdInterestCategories.swift",
        "Requests/Lists/GetListsIdInterestCategoriesId.swift",
        "Requests/Lists/GetListsIdInterestCategoriesIdInterests.swift",
        "Requests/Lists/GetListsIdInterestCategoriesIdInterestsId.swift",
        "Requests/Lists/GetListsIdLocations.swift",
        "Requests/Lists/GetListsIdMembers.swift",
        "Requests/Lists/GetListsIdMembersId.swift",
        "Requests/Lists/GetListsIdMembersIdActivity.swift",
        "Requests/Lists/GetListsIdMembersIdActivityFeed.swift",
        "Requests/Lists/GetListsIdMembersIdEvents.swift",
        "Requests/Lists/GetListsIdMembersIdGoals.swift",
        "Requests/Lists/GetListsIdMembersIdNotes.swift",
        "Requests/Lists/GetListsIdMembersIdNotesId.swift",
        "Requests/Lists/GetListsIdMergeFields.swift",
        "Requests/Lists/GetListsIdMergeFieldsId.swift",
        "Requests/Lists/GetListsIdSegmentsId.swift",
        "Requests/Lists/GetListsIdSegmentsIdMembers.swift",
        "Requests/Lists/GetListsIdSignupForms.swift",
        "Requests/Lists/GetListsIdSurveys.swift",
        "Requests/Lists/GetListsIdSurveysId.swift",
        "Requests/Lists/GetListsIdWebhooks.swift",
        "Requests/Lists/GetListsIdWebhooksId.swift",
        "Requests/Lists/PatchListsId.swift",
        "Requests/Lists/PatchListsIdInterestCategoriesId.swift",
        "Requests/Lists/PatchListsIdInterestCategoriesIdInterestsId.swift",
        "Requests/Lists/PatchListsIdMembersId.swift",
        "Requests/Lists/PatchListsIdMembersIdNotesId.swift",
        "Requests/Lists/PatchListsIdMergeFieldsId.swift",
        "Requests/Lists/PatchListsIdSegmentsId.swift",
        "Requests/Lists/PatchListsIdWebhooksId.swift",
        "Requests/Lists/PostListMemberEvents.swift",
        "Requests/Lists/PostListMemberTags.swift",
        "Requests/Lists/PostLists.swift",
        "Requests/Lists/PostListsId.swift",
        "Requests/Lists/PostListsIdInterestCategories.swift",
        "Requests/Lists/PostListsIdInterestCategoriesIdInterests.swift",
        "Requests/Lists/PostListsIdMembers.swift",
        "Requests/Lists/PostListsIdMembersHashActionsDeletePermanent.swift",
        "Requests/Lists/PostListsIdMembersIdNotes.swift",
        "Requests/Lists/PostListsIdMergeFields.swift",
        "Requests/Lists/PostListsIdSegments.swift",
        "Requests/Lists/PostListsIdSegmentsId.swift",
        "Requests/Lists/PostListsIdSegmentsIdMembers.swift",
        "Requests/Lists/PostListsIdSignupForms.swift",
        "Requests/Lists/PostListsIdWebhooks.swift",
        "Requests/Lists/PreviewASegment.swift",
        "Requests/Lists/PutListsIdMembersId.swift",
        "Requests/Lists/SearchTagsByName.swift",
        "Requests/Ping/GetPing.swift",
        "Requests/Reporting/GetReportingFacebookAds.swift",
        "Requests/Reporting/GetReportingFacebookAdsId.swift",
        "Requests/Reporting/GetReportingFacebookAdsIdEcommerceProductActivity.swift",
        "Requests/Reporting/GetReportingLandingPages.swift",
        "Requests/Reporting/GetReportingLandingPagesId.swift",
        "Requests/Reporting/GetReportingSurveys.swift",
        "Requests/Reporting/GetReportingSurveysId.swift",
        "Requests/Reporting/GetReportingSurveysIdQuestions.swift",
        "Requests/Reporting/GetReportingSurveysIdQuestionsId.swift",
        "Requests/Reporting/GetReportingSurveysIdQuestionsIdAnswers.swift",
        "Requests/Reporting/GetReportingSurveysIdResponses.swift",
        "Requests/Reporting/GetReportingSurveysIdResponsesId.swift",
        "Requests/Reports/GetReports.swift",
        "Requests/Reports/GetReportsId.swift",
        "Requests/Reports/GetReportsIdAbuseReportsId.swift",
        "Requests/Reports/GetReportsIdAbuseReportsIdId.swift",
        "Requests/Reports/GetReportsIdAdvice.swift",
        "Requests/Reports/GetReportsIdClickDetails.swift",
        "Requests/Reports/GetReportsIdClickDetailsId.swift",
        "Requests/Reports/GetReportsIdClickDetailsIdMembers.swift",
        "Requests/Reports/GetReportsIdClickDetailsIdMembersId.swift",
        "Requests/Reports/GetReportsIdDomainPerformance.swift",
        "Requests/Reports/GetReportsIdEcommerceProductActivity.swift",
        "Requests/Reports/GetReportsIdEepurl.swift",
        "Requests/Reports/GetReportsIdEmailActivity.swift",
        "Requests/Reports/GetReportsIdEmailActivityId.swift",
        "Requests/Reports/GetReportsIdLocations.swift",
        "Requests/Reports/GetReportsIdOpenDetails.swift",
        "Requests/Reports/GetReportsIdOpenDetailsIdMembersId.swift",
        "Requests/Reports/GetReportsIdSentTo.swift",
        "Requests/Reports/GetReportsIdSentToId.swift",
        "Requests/Reports/GetReportsIdSubReportsId.swift",
        "Requests/Reports/GetReportsIdUnsubscribed.swift",
        "Requests/Reports/GetReportsIdUnsubscribedId.swift",
        "Requests/Root/GetRoot.swift",
        "Requests/SearchCampaigns/GetSearchCampaigns.swift",
        "Requests/SearchMembers/GetSearchMembers.swift",
        "Requests/Surveys/PostListsIdSurveysIdActionsPublish.swift",
        "Requests/Surveys/PostListsIdSurveysIdActionsUnpublish.swift",
        "Requests/TemplateFolders/DeleteTemplateFoldersId.swift",
        "Requests/TemplateFolders/GetTemplateFolders.swift",
        "Requests/TemplateFolders/GetTemplateFoldersId.swift",
        "Requests/TemplateFolders/PatchTemplateFoldersId.swift",
        "Requests/TemplateFolders/PostTemplateFolders.swift",
        "Requests/Templates/DeleteTemplatesId.swift",
        "Requests/Templates/GetTemplates.swift",
        "Requests/Templates/GetTemplatesId.swift",
        "Requests/Templates/GetTemplatesIdDefaultContent.swift",
        "Requests/Templates/PatchTemplatesId.swift",
        "Requests/Templates/PostTemplates.swift",
        "Requests/VerifiedDomains/CreateVerifiedDomain.swift",
        "Requests/VerifiedDomains/DeleteVerifiedDomain.swift",
        "Requests/VerifiedDomains/GetVerifiedDomain.swift",
        "Requests/VerifiedDomains/GetVerifiedDomains.swift",
        "Requests/VerifiedDomains/VerifyDomain.swift",
        "Spinetail.swift",
        "SpinetailAPI.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.