The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Spinetail, reference 1.0.0-alpha.2 (6d0f2b), with Swift 6.0 for Linux on 28 Nov 2024 19:39:20 UTC.

Swift 6 data race errors: 2

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

   |                       |- 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 |
[92/200] 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 |
[93/200] 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 |
[94/200] 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 |
[95/200] 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 |
[96/200] 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 |
[97/200] 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 |
[98/200] 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 |
[99/200] 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 |
[100/225] Compiling Spinetail CreateAnAccountExport.swift
[101/225] Compiling Spinetail Customers.swift
[102/225] Compiling Spinetail DailyClicksAndVisitsData.swift
[103/225] Compiling Spinetail DailyListActivity.swift
[104/225] Compiling Spinetail DailySendingDays.swift
[105/225] Compiling Spinetail DomainPerformance.swift
[106/225] Compiling Spinetail ECommerceCart.swift
[107/225] Compiling Spinetail ECommerceCart1.swift
[108/225] Compiling Spinetail ECommerceCart2.swift
[109/225] Compiling Spinetail ECommerceCartLineItem.swift
[110/225] Compiling Spinetail ECommerceCartLineItem1.swift
[111/225] Compiling Spinetail ECommerceCartLineItem2.swift
[112/225] Compiling Spinetail ECommerceCustomer.swift
[113/225] Compiling Spinetail ECommerceCustomer1.swift
[114/225] Compiling Spinetail ECommerceCustomer2.swift
[115/225] Compiling Spinetail ECommerceCustomer3.swift
[116/225] Compiling Spinetail ECommerceCustomer4.swift
[117/225] Compiling Spinetail ECommerceOrder.swift
[118/225] Compiling Spinetail ECommerceOrder1.swift
[119/225] Compiling Spinetail ECommerceOrder2.swift
[120/225] Compiling Spinetail ECommerceOrderLineItem.swift
[121/225] Compiling Spinetail ECommerceOrderLineItem1.swift
[122/225] Compiling Spinetail ECommerceOrderLineItem2.swift
[123/225] Compiling Spinetail ECommerceProduct.swift
[124/225] Compiling Spinetail ECommerceProduct1.swift
[125/300] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivityImpressionsInner.swift
[126/300] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivityRevenueInner.swift
[127/300] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummary.swift
[128/300] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryAverageOrderAmount.swift
[129/300] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryEcommerce.swift
[130/300] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryExtendedAt.swift
[131/300] Compiling Spinetail GetReportingFacebookAdsId200Response.swift
[132/300] Compiling Spinetail GetReportingLandingPages200Response.swift
[133/300] Compiling Spinetail GetReportingSurveys200Response.swift
[134/300] Compiling Spinetail GetReportingSurveysIdQuestions200Response.swift
[135/300] Compiling Spinetail GetReportingSurveysIdQuestionsIdAnswers200Response.swift
[136/300] Compiling Spinetail GetReportingSurveysIdResponses200Response.swift
[137/300] Compiling Spinetail GetReportsIdEcommerceProductActivity200Response.swift
[138/300] Compiling Spinetail GetReportsIdEcommerceProductActivity200ResponseProductsInner.swift
[139/300] Compiling Spinetail Goal.swift
[140/300] Compiling Spinetail GroupA.swift
[141/300] Compiling Spinetail GroupB.swift
[142/300] Compiling Spinetail GrowthHistory.swift
[143/300] Compiling Spinetail Hours.swift
[144/300] Compiling Spinetail IndustryStats.swift
[145/300] Compiling Spinetail IndustryStats1.swift
[146/300] Compiling Spinetail Interest.swift
[147/300] Compiling Spinetail Interest1.swift
[148/300] Compiling Spinetail InterestCategory.swift
[149/300] Compiling Spinetail InterestCategory1.swift
[150/325] Compiling Spinetail InterestGroupings.swift
[151/325] Compiling Spinetail Interests.swift
[152/325] Compiling Spinetail ItemsInner.swift
[153/325] Compiling Spinetail LandingPage.swift
[154/325] Compiling Spinetail LandingPage1.swift
[155/325] Compiling Spinetail LandingPage2.swift
[156/325] Compiling Spinetail LandingPageContent.swift
[157/325] Compiling Spinetail LandingPageReport.swift
[158/325] Compiling Spinetail LandingPageReportEcommerce.swift
[159/325] Compiling Spinetail LandingPageReportTimeseries.swift
[160/325] Compiling Spinetail LastMessage.swift
[161/325] Compiling Spinetail List.swift
[162/325] Compiling Spinetail List1.swift
[163/325] Compiling Spinetail List10.swift
[164/325] Compiling Spinetail List2.swift
[165/325] Compiling Spinetail List3.swift
[166/325] Compiling Spinetail List4.swift
[167/325] Compiling Spinetail List5.swift
[168/325] Compiling Spinetail List6.swift
[169/325] Compiling Spinetail List7.swift
[170/325] Compiling Spinetail List8.swift
[171/325] Compiling Spinetail List9.swift
[172/325] Compiling Spinetail ListActivity.swift
[173/325] Compiling Spinetail ListContact.swift
[174/325] Compiling Spinetail ListContact1.swift
[175/349] Compiling Spinetail EmailClients.swift
[176/349] Compiling Spinetail EmailDomain.swift
[177/349] Compiling Spinetail ErrorsInner.swift
[178/349] Compiling Spinetail ErrorsInner1.swift
[179/349] Compiling Spinetail Event.swift
[180/349] Compiling Spinetail Events.swift
[181/349] Compiling Spinetail Events1.swift
[182/349] Compiling Spinetail Events2.swift
[183/349] Compiling Spinetail ExactMatches.swift
[184/349] Compiling Spinetail FacebookLikes.swift
[185/349] Compiling Spinetail FileManager.swift
[186/349] Compiling Spinetail FileManagerFolders.swift
[187/349] Compiling Spinetail Forwards.swift
[188/349] Compiling Spinetail GalleryFile.swift
[189/349] Compiling Spinetail GalleryFile1.swift
[190/349] Compiling Spinetail GalleryFile2.swift
[191/349] Compiling Spinetail GalleryFolder.swift
[192/349] Compiling Spinetail GalleryFolder1.swift
[193/349] Compiling Spinetail GetAccountExports200Response.swift
[194/349] Compiling Spinetail GetActivityFeedChimpChatter200Response.swift
[195/349] Compiling Spinetail GetAllFacebookAds200Response.swift
[196/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInner.swift
[197/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf.swift
[198/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf1.swift
[199/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2.swift
[200/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Audience.swift
[201/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceEmailSource.swift
[202/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceTargetingSpecs.swift
[203/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceTargetingSpecsInterestsInner.swift
[204/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2AudienceTargetingSpecsLocations.swift
[205/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Budget.swift
[206/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Channel.swift
[207/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Content.swift
[208/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2ContentAttachmentsInner.swift
[209/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Feedback.swift
[210/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf2Site.swift
[211/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOf3.swift
[212/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOfReportSummary.swift
[213/349] Compiling Spinetail GetAllFacebookAds200ResponseFacebookAdsInnerAllOfReportSummaryEcommerce.swift
[214/349] Compiling Spinetail GetAllLandingPages200Response.swift
[215/349] Compiling Spinetail GetAuthorizedApps200Response.swift
[216/349] Compiling Spinetail GetAutomations200Response.swift
[217/349] Compiling Spinetail GetAutomationsIdEmailsIdQueue200Response.swift
[218/349] Compiling Spinetail GetCampaigns200Response.swift
[219/349] Compiling Spinetail GetFacebookAdsId200Response.swift
[220/349] Compiling Spinetail GetReportingFacebookAds200Response.swift
[221/349] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInner.swift
[222/349] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOf.swift
[223/349] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivity.swift
[224/349] Compiling Spinetail GetReportingFacebookAds200ResponseFacebookAdsInnerAllOfAudienceActivityClicksInner.swift
[225/397] Compiling Spinetail Members.swift
[226/397] Compiling Spinetail MembersToAddRemoveToFromaStaticSegment.swift
[227/397] Compiling Spinetail MembersToSubscribeUnsubscribeToFromaListInBatch.swift
[228/397] Compiling Spinetail MergeField.swift
[229/397] Compiling Spinetail MergeField1.swift
[230/397] Compiling Spinetail MergeField2.swift
[231/397] Compiling Spinetail MergeField3.swift
[232/397] Compiling Spinetail MergeFieldOptions.swift
[233/397] Compiling Spinetail MergeFieldOptions1.swift
[234/397] Compiling Spinetail MergeFieldOptions2.swift
[235/397] Compiling Spinetail Notes.swift
[236/397] Compiling Spinetail OpenActivity.swift
[237/397] Compiling Spinetail OpenDetailReport.swift
[238/397] Compiling Spinetail OpenLocations.swift
[239/397] Compiling Spinetail Opens.swift
[240/397] Compiling Spinetail Operations.swift
[241/397] Compiling Spinetail OptionsInner.swift
[242/397] Compiling Spinetail OrderLines.swift
[243/397] Compiling Spinetail Orders.swift
[244/397] Compiling Spinetail Orders1.swift
[245/397] Compiling Spinetail Outreach.swift
[246/397] Compiling Spinetail Outreach1.swift
[247/397] Compiling Spinetail PartialMatches.swift
[248/397] Compiling Spinetail PostBatchesRequest.swift
[249/421] Compiling Spinetail ListContact2.swift
[250/421] Compiling Spinetail ListLocation.swift
[251/421] Compiling Spinetail ListLocations.swift
[252/421] Compiling Spinetail ListMembers.swift
[253/421] Compiling Spinetail ListMembers1.swift
[254/421] Compiling Spinetail ListMembers2.swift
[255/421] Compiling Spinetail ListSignupForms.swift
[256/421] Compiling Spinetail ListStats.swift
[257/421] Compiling Spinetail ListWebhooks.swift
[258/421] Compiling Spinetail ListsInner.swift
[259/421] Compiling Spinetail Location.swift
[260/421] Compiling Spinetail Location1.swift
[261/421] Compiling Spinetail Location2.swift
[262/421] Compiling Spinetail Location3.swift
[263/421] Compiling Spinetail MarketingPermission.swift
[264/421] Compiling Spinetail MarketingPermission1.swift
[265/421] Compiling Spinetail MemberActivity.swift
[266/421] Compiling Spinetail MemberActivity1.swift
[267/421] Compiling Spinetail MemberActivity2.swift
[268/421] Compiling Spinetail MemberActivityEvents.swift
[269/421] Compiling Spinetail MemberActivityEvents1.swift
[270/421] Compiling Spinetail MemberNotes.swift
[271/421] Compiling Spinetail MemberNotes1.swift
[272/421] Compiling Spinetail MemberTag.swift
[273/421] Compiling Spinetail MemberTags.swift
[274/445] Compiling Spinetail PostCampaignsIdActionsScheduleRequest.swift
[275/445] Compiling Spinetail PostCampaignsIdActionsTestRequest.swift
[276/445] Compiling Spinetail PostListsIdSegmentsIdMembersRequest.swift
[277/445] Compiling Spinetail ProblemDetailDocument.swift
[278/445] Compiling Spinetail Products.swift
[279/445] Compiling Spinetail PromoCodes.swift
[280/445] Compiling Spinetail PromoRules.swift
[281/445] Compiling Spinetail PromosInner.swift
[282/445] Compiling Spinetail PromosInner1.swift
[283/445] Compiling Spinetail RSSOptions.swift
[284/445] Compiling Spinetail RSSOptions1.swift
[285/445] Compiling Spinetail RSSOptions2.swift
[286/445] Compiling Spinetail RSSOptions3.swift
[287/445] Compiling Spinetail Referrer.swift
[288/445] Compiling Spinetail RemovedSubscribers.swift
[289/445] Compiling Spinetail ResourceLink.swift
[290/445] Compiling Spinetail Response.swift
[291/445] Compiling Spinetail ResultsInner.swift
[292/445] Compiling Spinetail SalesforceCRMTracking.swift
[293/445] Compiling Spinetail SalesforceCRMTracking1.swift
[294/445] Compiling Spinetail Script.swift
[295/445] Compiling Spinetail Script1.swift
[296/445] Compiling Spinetail SegmentMembers.swift
[297/445] Compiling Spinetail SegmentOptions.swift
[298/445] Compiling Spinetail SegmentOptions1.swift
[299/445] Compiling Spinetail SegmentOptions2.swift
[300/445] Compiling Spinetail SendChecklist.swift
[301/445] Compiling Spinetail SendingSchedule.swift
[302/445] Compiling Spinetail SendingSchedule1.swift
[303/445] Compiling Spinetail SentTo.swift
[304/445] Compiling Spinetail ShareReport.swift
[305/445] Compiling Spinetail ShippingAddress.swift
[306/445] Compiling Spinetail ShippingAddress1.swift
[307/445] Compiling Spinetail SignupForm.swift
[308/445] Compiling Spinetail SignupForm1.swift
[309/445] Compiling Spinetail SignupFormHeaderOptions.swift
[310/445] Compiling Spinetail Sources.swift
[311/445] Compiling Spinetail Sources1.swift
[312/445] Compiling Spinetail Statistics.swift
[313/445] Compiling Spinetail SubscriberInAutomationQueue.swift
[314/445] Compiling Spinetail SubscriberInAutomationQueue1.swift
[315/445] Compiling Spinetail SubscriberInAutomationQueue2.swift
[316/445] Compiling Spinetail SubscriberInCustomerJourneysAudience.swift
[317/445] Compiling Spinetail SubscriberList.swift
[318/445] Compiling Spinetail SubscriberList1.swift
[319/445] Compiling Spinetail SubscriberList2.swift
[320/445] Compiling Spinetail SubscriberLists.swift
[321/445] Compiling Spinetail SubscriberRemovedFromAutomationWorkflow.swift
[322/493] Compiling Spinetail ECommerceProduct2.swift
[323/493] Compiling Spinetail ECommerceProductImage.swift
[324/493] Compiling Spinetail ECommerceProductImage1.swift
[325/493] Compiling Spinetail ECommerceProductImage2.swift
[326/493] Compiling Spinetail ECommerceProductVariant.swift
[327/493] Compiling Spinetail ECommerceProductVariant1.swift
[328/493] Compiling Spinetail ECommerceProductVariant2.swift
[329/493] Compiling Spinetail ECommercePromoCode.swift
[330/493] Compiling Spinetail ECommercePromoCode1.swift
[331/493] Compiling Spinetail ECommercePromoCode2.swift
[332/493] Compiling Spinetail ECommercePromoRule.swift
[333/493] Compiling Spinetail ECommercePromoRule1.swift
[334/493] Compiling Spinetail ECommercePromoRule2.swift
[335/493] Compiling Spinetail ECommerceReport.swift
[336/493] Compiling Spinetail ECommerceReport1.swift
[337/493] Compiling Spinetail ECommerceStore.swift
[338/493] Compiling Spinetail ECommerceStore1.swift
[339/493] Compiling Spinetail ECommerceStore2.swift
[340/493] Compiling Spinetail ECommerceStores.swift
[341/493] Compiling Spinetail EcommerceProductImages.swift
[342/493] Compiling Spinetail EcommerceProductVariants.swift
[343/493] Compiling Spinetail EcommerceStats.swift
[344/493] Compiling Spinetail EepurlActivity.swift
[345/493] Compiling Spinetail EmailActivity.swift
[346/493] Compiling Spinetail EmailClient.swift
[347/493] Compiling Spinetail AnOptionForSignupFormStyles.swift
[348/493] Compiling Spinetail AuthorizedApplicationsInner.swift
[349/493] Compiling Spinetail AutomationCampaignSettings.swift
[350/493] Compiling Spinetail AutomationCampaignSettings1.swift
[351/493] Compiling Spinetail AutomationDelay.swift
[352/493] Compiling Spinetail AutomationDelay1.swift
[353/493] Compiling Spinetail AutomationEmails.swift
[354/493] Compiling Spinetail AutomationTrackingOptions.swift
[355/493] Compiling Spinetail AutomationTrigger.swift
[356/493] Compiling Spinetail AutomationTrigger1.swift
[357/493] Compiling Spinetail AutomationWorkflow.swift
[358/493] Compiling Spinetail AutomationWorkflow1.swift
[359/493] Compiling Spinetail AutomationWorkflowEmail.swift
[360/493] Compiling Spinetail AutomationWorkflowRuntimeSettings.swift
[361/493] Compiling Spinetail Automations.swift
[362/493] Compiling Spinetail Batch.swift
[363/493] Compiling Spinetail BatchAddRemoveListMembersToFromStaticSegment.swift
[364/493] Compiling Spinetail BatchDelivery.swift
[365/493] Compiling Spinetail BatchOperations.swift
[366/493] Compiling Spinetail BatchUpdateListMembers.swift
[367/493] Compiling Spinetail BatchWebhook.swift
[368/493] Compiling Spinetail BatchWebhook1.swift
[369/493] Compiling Spinetail BatchWebhook2.swift
[370/493] Compiling Spinetail BatchWebhooks.swift
[371/493] Compiling Spinetail BillingAddress.swift
[372/493] Compiling Spinetail Clicks.swift
[373/493] Compiling Spinetail Clicks1Inner.swift
[374/493] Compiling Spinetail Clicks1Inner1.swift
[375/493] Compiling Spinetail CollectionAuthorization.swift
[376/493] Compiling Spinetail CollectionOfContentForListSignupForms.swift
[377/493] Compiling Spinetail CollectionOfConversationMessages.swift
[378/493] Compiling Spinetail CollectionOfElementStyleForListSignupForms.swift
[379/493] Compiling Spinetail CollectionOfEvents.swift
[380/493] Compiling Spinetail CollectionOfMemberActivityEvents.swift
[381/493] Compiling Spinetail CollectionOfMergeFields.swift
[382/493] Compiling Spinetail CollectionOfNotes.swift
[383/493] Compiling Spinetail CollectionOfSegments.swift
[384/493] Compiling Spinetail CollectionOfTags.swift
[385/493] Compiling Spinetail CombinationsInner.swift
[386/493] Compiling Spinetail Conditions.swift
[387/493] Compiling Spinetail Conditions1.swift
[388/493] Compiling Spinetail Conditions2.swift
[389/493] Compiling Spinetail ConnectedSite.swift
[390/493] Compiling Spinetail ConnectedSite1.swift
[391/493] Compiling Spinetail ConnectedSite2.swift
[392/493] Compiling Spinetail ConnectedSites.swift
[393/493] Compiling Spinetail Contact.swift
[394/493] Compiling Spinetail ContactCounts.swift
[395/493] Compiling Spinetail Conversation.swift
[396/493] Compiling Spinetail ConversationMessage.swift
[397/493] 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 |
[398/589] Compiling Spinetail TrackingSettings.swift
[399/589] Compiling Spinetail TwitterStats.swift
[400/589] Compiling Spinetail TwitterStatus.swift
[401/589] Compiling Spinetail UniqueVisitsInner.swift
[402/589] Compiling Spinetail Unsubscribes.swift
[403/589] Compiling Spinetail UpdateInformationAboutaSpecificWorkflowEmail.swift
[404/589] Compiling Spinetail UploadArchive.swift
[405/589] Compiling Spinetail VariateContentsInner.swift
[406/589] Compiling Spinetail VariateContentsInner1.swift
[407/589] Compiling Spinetail VerifiedDomains.swift
[408/589] Compiling Spinetail VerifiedDomains1.swift
[409/589] Compiling Spinetail VerifiedDomains2.swift
[410/589] Compiling Spinetail VerifyaDomainForSending.swift
[411/589] Compiling Spinetail VisitsInner.swift
[412/589] Compiling Spinetail VisitsInner1.swift
[413/589] Compiling Spinetail WeeklyClicksAndVisitsData.swift
[414/589] Compiling Spinetail GetAccountExportId.swift
[415/589] Compiling Spinetail GetAccountExports.swift
[416/589] Compiling Spinetail PostAccountExport.swift
[417/589] Compiling Spinetail GetActivityFeedChimpChatter.swift
[418/589] Compiling Spinetail GetAuthorizedApps.swift
[419/589] Compiling Spinetail GetAuthorizedAppsId.swift
[420/589] Compiling Spinetail ArchiveAutomations.swift
[421/589] Compiling Spinetail DeleteAutomationsIdEmailsId.swift
[422/613] Compiling Spinetail PostBatches.swift
[423/613] Compiling Spinetail DeleteCampaignFoldersId.swift
[424/613] Compiling Spinetail GetCampaignFolders.swift
[425/613] Compiling Spinetail GetCampaignFoldersId.swift
[426/613] Compiling Spinetail PatchCampaignFoldersId.swift
[427/613] Compiling Spinetail PostCampaignFolders.swift
[428/613] Compiling Spinetail DeleteCampaignsId.swift
[429/613] Compiling Spinetail DeleteCampaignsIdFeedbackId.swift
[430/613] Compiling Spinetail GetCampaigns.swift
[431/613] Compiling Spinetail GetCampaignsId.swift
[432/613] Compiling Spinetail GetCampaignsIdContent.swift
[433/613] Compiling Spinetail GetCampaignsIdFeedback.swift
[434/613] Compiling Spinetail GetCampaignsIdFeedbackId.swift
[435/613] Compiling Spinetail GetCampaignsIdSendChecklist.swift
[436/613] Compiling Spinetail PatchCampaignsId.swift
[437/613] Compiling Spinetail PatchCampaignsIdFeedbackId.swift
[438/613] Compiling Spinetail PostCampaigns.swift
[439/613] Compiling Spinetail PostCampaignsIdActionsCancelSend.swift
[440/613] Compiling Spinetail PostCampaignsIdActionsCreateResend.swift
[441/613] Compiling Spinetail PostCampaignsIdActionsPause.swift
[442/613] Compiling Spinetail PostCampaignsIdActionsReplicate.swift
[443/613] Compiling Spinetail PostCampaignsIdActionsResume.swift
[444/613] Compiling Spinetail PostCampaignsIdActionsSchedule.swift
[445/613] Compiling Spinetail PostCampaignsIdActionsSend.swift
[446/613] Compiling Spinetail GetAutomations.swift
[447/613] Compiling Spinetail GetAutomationsId.swift
[448/613] Compiling Spinetail GetAutomationsIdEmails.swift
[449/613] Compiling Spinetail GetAutomationsIdEmailsId.swift
[450/613] Compiling Spinetail GetAutomationsIdEmailsIdQueue.swift
[451/613] Compiling Spinetail GetAutomationsIdEmailsIdQueueId.swift
[452/613] Compiling Spinetail GetAutomationsIdRemovedSubscribers.swift
[453/613] Compiling Spinetail GetAutomationsIdRemovedSubscribersId.swift
[454/613] Compiling Spinetail PatchAutomationEmailWorkflowId.swift
[455/613] Compiling Spinetail PostAutomations.swift
[456/613] Compiling Spinetail PostAutomationsIdActionsPauseAllEmails.swift
[457/613] Compiling Spinetail PostAutomationsIdActionsStartAllEmails.swift
[458/613] Compiling Spinetail PostAutomationsIdEmailsIdActionsPause.swift
[459/613] Compiling Spinetail PostAutomationsIdEmailsIdActionsStart.swift
[460/613] Compiling Spinetail PostAutomationsIdEmailsIdQueue.swift
[461/613] Compiling Spinetail PostAutomationsIdRemovedSubscribers.swift
[462/613] Compiling Spinetail DeleteBatchWebhookId.swift
[463/613] Compiling Spinetail GetBatchWebhook.swift
[464/613] Compiling Spinetail GetBatchWebhooks.swift
[465/613] Compiling Spinetail PatchBatchWebhooks.swift
[466/613] Compiling Spinetail PostBatchWebhooks.swift
[467/613] Compiling Spinetail DeleteBatchesId.swift
[468/613] Compiling Spinetail GetBatches.swift
[469/613] Compiling Spinetail GetBatchesId.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 DeleteEcommerceStoresIdPromorulesId.swift
[519/709] Compiling Spinetail GetEcommerceOrders.swift
[520/709] Compiling Spinetail GetEcommerceStores.swift
[521/709] Compiling Spinetail GetEcommerceStoresId.swift
[522/709] Compiling Spinetail GetEcommerceStoresIdCarts.swift
[523/709] Compiling Spinetail GetEcommerceStoresIdCartsId.swift
[524/709] Compiling Spinetail GetEcommerceStoresIdCartsIdLines.swift
[525/709] Compiling Spinetail GetEcommerceStoresIdCartsIdLinesId.swift
[526/709] Compiling Spinetail GetEcommerceStoresIdCustomers.swift
[527/709] Compiling Spinetail GetEcommerceStoresIdCustomersId.swift
[528/709] Compiling Spinetail GetEcommerceStoresIdOrders.swift
[529/709] Compiling Spinetail GetEcommerceStoresIdOrdersId.swift
[530/709] Compiling Spinetail GetEcommerceStoresIdOrdersIdLines.swift
[531/709] Compiling Spinetail GetEcommerceStoresIdOrdersIdLinesId.swift
[532/709] Compiling Spinetail GetEcommerceStoresIdProducts.swift
[533/709] Compiling Spinetail GetEcommerceStoresIdProductsId.swift
[534/709] Compiling Spinetail GetEcommerceStoresIdProductsIdImages.swift
[535/709] Compiling Spinetail GetEcommerceStoresIdProductsIdImagesId.swift
[536/709] Compiling Spinetail GetEcommerceStoresIdProductsIdVariants.swift
[537/709] Compiling Spinetail GetEcommerceStoresIdProductsIdVariantsId.swift
[538/709] Compiling Spinetail GetEcommerceStoresIdPromocodes.swift
[539/709] Compiling Spinetail GetEcommerceStoresIdPromocodesId.swift
[540/709] Compiling Spinetail GetEcommerceStoresIdPromorules.swift
[541/709] Compiling Spinetail GetEcommerceStoresIdPromorulesId.swift
[542/709] Compiling Spinetail GetAllFacebookAds.swift
[543/709] Compiling Spinetail GetFacebookAdsId.swift
[544/709] Compiling Spinetail DeleteFileManagerFilesId.swift
[545/709] Compiling Spinetail DeleteFileManagerFoldersId.swift
[546/709] Compiling Spinetail GetFileManagerFiles.swift
[547/709] Compiling Spinetail GetFileManagerFilesId.swift
[548/709] Compiling Spinetail GetFileManagerFolders.swift
[549/709] Compiling Spinetail GetFileManagerFoldersId.swift
[550/709] Compiling Spinetail PatchFileManagerFilesId.swift
[551/709] Compiling Spinetail PatchFileManagerFoldersId.swift
[552/709] Compiling Spinetail PostFileManagerFiles.swift
[553/709] Compiling Spinetail PostFileManagerFolders.swift
[554/709] Compiling Spinetail DeleteLandingPageId.swift
[555/709] Compiling Spinetail GetAllLandingPages.swift
[556/709] Compiling Spinetail GetLandingPageId.swift
[557/709] Compiling Spinetail GetLandingPageIdContent.swift
[558/709] Compiling Spinetail PatchLandingPageId.swift
[559/709] Compiling Spinetail PostAllLandingPages.swift
[560/709] Compiling Spinetail PostLandingPageIdActionsPublish.swift
[561/709] Compiling Spinetail PostLandingPageIdActionsUnpublish.swift
[562/709] Compiling Spinetail DeleteListsId.swift
[563/709] Compiling Spinetail DeleteListsIdInterestCategoriesId.swift
[564/709] Compiling Spinetail DeleteListsIdInterestCategoriesIdInterestsId.swift
[565/709] Compiling Spinetail DeleteListsIdMembersId.swift
[566/709] Compiling Spinetail PatchEcommerceStoresId.swift
[567/709] Compiling Spinetail PatchEcommerceStoresIdCartsId.swift
[568/709] Compiling Spinetail PatchEcommerceStoresIdCartsIdLinesId.swift
[569/709] Compiling Spinetail PatchEcommerceStoresIdCustomersId.swift
[570/709] Compiling Spinetail PatchEcommerceStoresIdOrdersId.swift
[571/709] Compiling Spinetail PatchEcommerceStoresIdOrdersIdLinesId.swift
[572/709] Compiling Spinetail PatchEcommerceStoresIdProductsId.swift
[573/709] Compiling Spinetail PatchEcommerceStoresIdProductsIdImagesId.swift
[574/709] Compiling Spinetail PatchEcommerceStoresIdProductsIdVariantsId.swift
[575/709] Compiling Spinetail PatchEcommerceStoresIdPromocodesId.swift
[576/709] Compiling Spinetail PatchEcommerceStoresIdPromorulesId.swift
[577/709] Compiling Spinetail PostEcommerceStores.swift
[578/709] Compiling Spinetail PostEcommerceStoresIdCarts.swift
[579/709] Compiling Spinetail PostEcommerceStoresIdCartsIdLines.swift
[580/709] Compiling Spinetail PostEcommerceStoresIdCustomers.swift
[581/709] Compiling Spinetail PostEcommerceStoresIdOrders.swift
[582/709] Compiling Spinetail PostEcommerceStoresIdOrdersIdLines.swift
[583/709] Compiling Spinetail PostEcommerceStoresIdProducts.swift
[584/709] Compiling Spinetail PostEcommerceStoresIdProductsIdImages.swift
[585/709] Compiling Spinetail PostEcommerceStoresIdProductsIdVariants.swift
[586/709] Compiling Spinetail PostEcommerceStoresIdPromocodes.swift
[587/709] Compiling Spinetail PostEcommerceStoresIdPromorules.swift
[588/709] Compiling Spinetail PutEcommerceStoresIdCustomersId.swift
[589/709] Compiling Spinetail PutEcommerceStoresIdProductsIdVariantsId.swift
[590/709] Compiling Spinetail PostListsIdInterestCategories.swift
[591/709] Compiling Spinetail PostListsIdInterestCategoriesIdInterests.swift
[592/709] Compiling Spinetail PostListsIdMembers.swift
[593/709] Compiling Spinetail PostListsIdMembersHashActionsDeletePermanent.swift
[594/709] Compiling Spinetail PostListsIdMembersIdNotes.swift
[595/709] Compiling Spinetail PostListsIdMergeFields.swift
[596/709] Compiling Spinetail PostListsIdSegments.swift
[597/709] Compiling Spinetail PostListsIdSegmentsId.swift
[598/709] Compiling Spinetail PostListsIdSegmentsIdMembers.swift
[599/709] Compiling Spinetail PostListsIdSignupForms.swift
[600/709] Compiling Spinetail PostListsIdWebhooks.swift
[601/709] Compiling Spinetail PreviewASegment.swift
[602/709] Compiling Spinetail PutListsIdMembersId.swift
[603/709] Compiling Spinetail SearchTagsByName.swift
[604/709] Compiling Spinetail GetPing.swift
[605/709] Compiling Spinetail GetReportingFacebookAds.swift
[606/709] Compiling Spinetail GetReportingFacebookAdsId.swift
[607/709] Compiling Spinetail GetReportingFacebookAdsIdEcommerceProductActivity.swift
[608/709] Compiling Spinetail GetReportingLandingPages.swift
[609/709] Compiling Spinetail GetReportingLandingPagesId.swift
[610/709] Compiling Spinetail GetReportingSurveys.swift
[611/709] Compiling Spinetail GetReportingSurveysId.swift
[612/709] Compiling Spinetail GetReportingSurveysIdQuestions.swift
[613/709] Compiling Spinetail GetReportingSurveysIdQuestionsId.swift
[614/709] Compiling Spinetail DeleteListsIdMembersIdNotesId.swift
[615/709] Compiling Spinetail DeleteListsIdMergeFieldsId.swift
[616/709] Compiling Spinetail DeleteListsIdSegmentsId.swift
[617/709] Compiling Spinetail DeleteListsIdSegmentsIdMembersId.swift
[618/709] Compiling Spinetail DeleteListsIdWebhooksId.swift
[619/709] Compiling Spinetail GetListMemberTags.swift
[620/709] Compiling Spinetail GetLists.swift
[621/709] Compiling Spinetail GetListsId.swift
[622/709] Compiling Spinetail GetListsIdAbuseReports.swift
[623/709] Compiling Spinetail GetListsIdAbuseReportsId.swift
[624/709] Compiling Spinetail GetListsIdActivity.swift
[625/709] Compiling Spinetail GetListsIdClients.swift
[626/709] Compiling Spinetail GetListsIdGrowthHistory.swift
[627/709] Compiling Spinetail GetListsIdGrowthHistoryId.swift
[628/709] Compiling Spinetail GetListsIdInterestCategories.swift
[629/709] Compiling Spinetail GetListsIdInterestCategoriesId.swift
[630/709] Compiling Spinetail GetListsIdInterestCategoriesIdInterests.swift
[631/709] Compiling Spinetail GetListsIdInterestCategoriesIdInterestsId.swift
[632/709] Compiling Spinetail GetListsIdLocations.swift
[633/709] Compiling Spinetail GetListsIdMembers.swift
[634/709] Compiling Spinetail GetListsIdMembersId.swift
[635/709] Compiling Spinetail GetListsIdMembersIdActivity.swift
[636/709] Compiling Spinetail GetListsIdMembersIdActivityFeed.swift
[637/709] Compiling Spinetail GetListsIdMembersIdEvents.swift
[638/709] Compiling Spinetail GetListsIdMembersIdGoals.swift
[639/709] Compiling Spinetail GetListsIdMembersIdNotes.swift
[640/709] Compiling Spinetail GetListsIdMembersIdNotesId.swift
[641/709] Compiling Spinetail GetListsIdMergeFields.swift
[642/709] Compiling Spinetail GetListsIdMergeFieldsId.swift
[643/709] Compiling Spinetail GetListsIdSegmentsId.swift
[644/709] Compiling Spinetail GetListsIdSegmentsIdMembers.swift
[645/709] Compiling Spinetail GetListsIdSignupForms.swift
[646/709] Compiling Spinetail GetListsIdSurveys.swift
[647/709] Compiling Spinetail GetListsIdSurveysId.swift
[648/709] Compiling Spinetail GetListsIdWebhooks.swift
[649/709] Compiling Spinetail GetListsIdWebhooksId.swift
[650/709] Compiling Spinetail PatchListsId.swift
[651/709] Compiling Spinetail PatchListsIdInterestCategoriesId.swift
[652/709] Compiling Spinetail PatchListsIdInterestCategoriesIdInterestsId.swift
[653/709] Compiling Spinetail PatchListsIdMembersId.swift
[654/709] Compiling Spinetail PatchListsIdMembersIdNotesId.swift
[655/709] Compiling Spinetail PatchListsIdMergeFieldsId.swift
[656/709] Compiling Spinetail PatchListsIdSegmentsId.swift
[657/709] Compiling Spinetail PatchListsIdWebhooksId.swift
[658/709] Compiling Spinetail PostListMemberEvents.swift
[659/709] Compiling Spinetail PostListMemberTags.swift
[660/709] Compiling Spinetail PostLists.swift
[661/709] Compiling Spinetail PostListsId.swift
[662/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 |
[663/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 |
[664/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 |
[665/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 |
[666/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 |
[667/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 |
[668/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 |
[669/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 |
[670/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 |
[671/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 |
[672/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 |
[673/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 |
[674/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 |
[675/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 |
[676/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 |
[677/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 |
[678/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 |
[679/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 |
[680/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 |
[681/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 |
[682/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 |
[683/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 |
[684/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 |
[685/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 |
[686/709] Compiling Spinetail GetReportingSurveysIdQuestionsIdAnswers.swift
[687/709] Compiling Spinetail GetReportingSurveysIdResponses.swift
[688/709] Compiling Spinetail GetReportingSurveysIdResponsesId.swift
[689/709] Compiling Spinetail GetReports.swift
[690/709] Compiling Spinetail GetReportsId.swift
[691/709] Compiling Spinetail GetReportsIdAbuseReportsId.swift
[692/709] Compiling Spinetail GetReportsIdAbuseReportsIdId.swift
[693/709] Compiling Spinetail GetReportsIdAdvice.swift
[694/709] Compiling Spinetail GetReportsIdClickDetails.swift
[695/709] Compiling Spinetail GetReportsIdClickDetailsId.swift
[696/709] Compiling Spinetail GetReportsIdClickDetailsIdMembers.swift
[697/709] Compiling Spinetail GetReportsIdClickDetailsIdMembersId.swift
[698/709] Compiling Spinetail GetReportsIdDomainPerformance.swift
[699/709] Compiling Spinetail GetReportsIdEcommerceProductActivity.swift
[700/709] Compiling Spinetail GetReportsIdEepurl.swift
[701/709] Compiling Spinetail GetReportsIdEmailActivity.swift
[702/709] Compiling Spinetail GetReportsIdEmailActivityId.swift
[703/709] Compiling Spinetail GetReportsIdLocations.swift
[704/709] Compiling Spinetail GetReportsIdOpenDetails.swift
[705/709] Compiling Spinetail GetReportsIdOpenDetailsIdMembersId.swift
[706/709] Compiling Spinetail GetReportsIdSentTo.swift
[707/709] Compiling Spinetail GetReportsIdSentToId.swift
[708/709] Compiling Spinetail GetReportsIdSubReportsId.swift
[709/709] Compiling Spinetail GetReportsIdUnsubscribed.swift
Build complete! (86.05s)
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.