The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Spinetail, reference 0.3.0 (1bc157), with Swift 6.0 for macOS (SPM) on 2 Nov 2024 12:04:01 UTC.

Swift 6 data race errors: 256

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdCartsId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdCartsId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/carts/{cart_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdCartsIdLines.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdCartsIdLines.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdCartsIdLines {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdCartsIdLines", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/carts/{cart_id}/lines", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdCartsIdLines.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdCartsIdLines.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdCartsIdLines {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdCartsIdLines", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/carts/{cart_id}/lines", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdCartsIdLinesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdCartsIdLinesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdCartsIdLinesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdCartsIdLinesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/carts/{cart_id}/lines/{line_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdCartsIdLinesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdCartsIdLinesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdCartsIdLinesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdCartsIdLinesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/carts/{cart_id}/lines/{line_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdCustomers.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdCustomers.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdCustomers {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdCustomers", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/customers", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdCustomers.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdCustomers.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdCustomers {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdCustomers", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/customers", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdCustomersId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdCustomersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdCustomersId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdCustomersId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/customers/{customer_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdCustomersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdCustomersId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdCustomersId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdCustomersId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/customers/{customer_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdOrders.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdOrders.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  11 |        */
  12 |       enum GetEcommerceStoresIdOrders {
  13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdOrders", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/orders", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdOrders.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  14 |
  15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdOrders.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   1 | import Foundation
   2 | import Prch
     | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   3 |
   4 | #if !os(watchOS)
     :
  11 |        */
  12 |       enum GetEcommerceStoresIdOrders {
  13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdOrders", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/orders", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                           |- note: annotate 'service' 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
  14 |
  15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdOrdersId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdOrdersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdOrdersId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdOrdersId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/orders/{order_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdOrdersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdOrdersId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdOrdersId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdOrdersId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/orders/{order_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdOrdersIdLines.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdOrdersIdLines.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdOrdersIdLines {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdOrdersIdLines", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/orders/{order_id}/lines", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdOrdersIdLines.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdOrdersIdLines.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdOrdersIdLines {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdOrdersIdLines", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/orders/{order_id}/lines", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdOrdersIdLinesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdOrdersIdLinesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdOrdersIdLinesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdOrdersIdLinesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/orders/{order_id}/lines/{line_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdOrdersIdLinesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdOrdersIdLinesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdOrdersIdLinesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdOrdersIdLinesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/orders/{order_id}/lines/{line_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProducts.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProducts.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdProducts {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProducts", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProducts.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProducts.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdProducts {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProducts", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdImages.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsIdImages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsIdImages {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsIdImages", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}/images", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsIdImages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdImages.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsIdImages {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsIdImages", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}/images", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdImagesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsIdImagesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsIdImagesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsIdImagesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}/images/{image_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsIdImagesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdImagesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsIdImagesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsIdImagesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}/images/{image_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdVariants.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsIdVariants.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsIdVariants {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsIdVariants", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsIdVariants.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdVariants.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsIdVariants {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsIdVariants", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdVariantsId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsIdVariantsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsIdVariantsId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsIdVariantsId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants/{variant_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdProductsIdVariantsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdVariantsId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdProductsIdVariantsId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdProductsIdVariantsId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants/{variant_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdPromocodes.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdPromocodes.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdPromocodes {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdPromocodes", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}/promo-codes", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdPromocodes.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdPromocodes.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdPromocodes {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdPromocodes", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}/promo-codes", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdPromocodesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdPromocodesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdPromocodesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdPromocodesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}/promo-codes/{promo_code_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdPromocodesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdPromocodesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdPromocodesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdPromocodesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}/promo-codes/{promo_code_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdPromorules.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdPromorules.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdPromorules {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdPromorules", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/promo-rules", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdPromorules.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdPromorules.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdPromorules {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdPromorules", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/promo-rules", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdPromorulesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdPromorulesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum GetEcommerceStoresIdPromorulesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdPromorulesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.GetEcommerceStoresIdPromorulesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/GetEcommerceStoresIdPromorulesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum GetEcommerceStoresIdPromorulesId {
 13 |         public static let service = Service<Response>(id: "getEcommerceStoresIdPromorulesId", tag: "ecommerce", method: "GET", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdCartsId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdCartsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresIdCartsId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdCartsId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/carts/{cart_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdCartsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdCartsId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresIdCartsId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdCartsId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/carts/{cart_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdCartsIdLinesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdCartsIdLinesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresIdCartsIdLinesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdCartsIdLinesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/carts/{cart_id}/lines/{line_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdCartsIdLinesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdCartsIdLinesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresIdCartsIdLinesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdCartsIdLinesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/carts/{cart_id}/lines/{line_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdCustomersId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdCustomersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresIdCustomersId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdCustomersId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/customers/{customer_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdCustomersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdCustomersId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresIdCustomersId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdCustomersId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/customers/{customer_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdOrdersId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdOrdersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  11 |        */
  12 |       enum PatchEcommerceStoresIdOrdersId {
  13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdOrdersId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/orders/{order_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdOrdersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  14 |
  15 |         /** The Mailchimp tracking code for the order. Uses the 'mc_tc' parameter in E-Commerce tracking URLs. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdOrdersId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   1 | import Foundation
   2 | import Prch
     | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   3 |
   4 | #if !os(watchOS)
     :
  11 |        */
  12 |       enum PatchEcommerceStoresIdOrdersId {
  13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdOrdersId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/orders/{order_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                           |- note: annotate 'service' 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
  14 |
  15 |         /** The Mailchimp tracking code for the order. Uses the 'mc_tc' parameter in E-Commerce tracking URLs. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdOrdersIdLinesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdOrdersIdLinesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresIdOrdersIdLinesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdOrdersIdLinesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/orders/{order_id}/lines/{line_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdOrdersIdLinesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdOrdersIdLinesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresIdOrdersIdLinesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdOrdersIdLinesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/orders/{order_id}/lines/{line_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdProductsId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdProductsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresIdProductsId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdProductsId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/products/{product_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdProductsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdProductsId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresIdProductsId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdProductsId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/products/{product_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdProductsIdImagesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdProductsIdImagesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresIdProductsIdImagesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdProductsIdImagesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/products/{product_id}/images/{image_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdProductsIdImagesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdProductsIdImagesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresIdProductsIdImagesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdProductsIdImagesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/products/{product_id}/images/{image_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdProductsIdVariantsId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdProductsIdVariantsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresIdProductsIdVariantsId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdProductsIdVariantsId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants/{variant_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdProductsIdVariantsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdProductsIdVariantsId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresIdProductsIdVariantsId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdProductsIdVariantsId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants/{variant_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdPromocodesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdPromocodesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresIdPromocodesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdPromocodesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}/promo-codes/{promo_code_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdPromocodesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdPromocodesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresIdPromocodesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdPromocodesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}/promo-codes/{promo_code_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdPromorulesId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdPromorulesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PatchEcommerceStoresIdPromorulesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdPromorulesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PatchEcommerceStoresIdPromorulesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         /** The target that the discount applies to. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PatchEcommerceStoresIdPromorulesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PatchEcommerceStoresIdPromorulesId {
 13 |         public static let service = Service<Response>(id: "patchEcommerceStoresIdPromorulesId", tag: "ecommerce", method: "PATCH", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         /** The target that the discount applies to. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStores.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStores.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStores {
 13 |         public static let service = Service<Response>(id: "postEcommerceStores", tag: "ecommerce", method: "POST", path: "/ecommerce/stores", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStores.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStores.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStores {
 13 |         public static let service = Service<Response>(id: "postEcommerceStores", tag: "ecommerce", method: "POST", path: "/ecommerce/stores", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdCarts.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdCarts.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStoresIdCarts {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdCarts", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/carts", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdCarts.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdCarts.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStoresIdCarts {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdCarts", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/carts", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdCartsIdLines.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdCartsIdLines.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStoresIdCartsIdLines {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdCartsIdLines", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/carts/{cart_id}/lines", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdCartsIdLines.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdCartsIdLines.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStoresIdCartsIdLines {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdCartsIdLines", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/carts/{cart_id}/lines", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdCustomers.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdCustomers.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStoresIdCustomers {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdCustomers", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/customers", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdCustomers.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdCustomers.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStoresIdCustomers {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdCustomers", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/customers", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdOrders.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdOrders.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  11 |        */
  12 |       enum PostEcommerceStoresIdOrders {
  13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdOrders", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/orders", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdOrders.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  14 |
  15 |         /** The Mailchimp tracking code for the order. Uses the 'mc_tc' parameter in E-Commerce tracking URLs. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdOrders.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   1 | import Foundation
   2 | import Prch
     | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   3 |
   4 | #if !os(watchOS)
     :
  11 |        */
  12 |       enum PostEcommerceStoresIdOrders {
  13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdOrders", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/orders", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                           |- note: annotate 'service' 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
  14 |
  15 |         /** The Mailchimp tracking code for the order. Uses the 'mc_tc' parameter in E-Commerce tracking URLs. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdOrdersIdLines.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdOrdersIdLines.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStoresIdOrdersIdLines {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdOrdersIdLines", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/orders/{order_id}/lines", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdOrdersIdLines.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdOrdersIdLines.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStoresIdOrdersIdLines {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdOrdersIdLines", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/orders/{order_id}/lines", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdProducts.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdProducts.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStoresIdProducts {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdProducts", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/products", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdProducts.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdProducts.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStoresIdProducts {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdProducts", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/products", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdProductsIdImages.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdProductsIdImages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStoresIdProductsIdImages {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdProductsIdImages", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/products/{product_id}/images", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdProductsIdImages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdProductsIdImages.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStoresIdProductsIdImages {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdProductsIdImages", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/products/{product_id}/images", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdProductsIdVariants.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdProductsIdVariants.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStoresIdProductsIdVariants {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdProductsIdVariants", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdProductsIdVariants.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdProductsIdVariants.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStoresIdProductsIdVariants {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdProductsIdVariants", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdPromocodes.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdPromocodes.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStoresIdPromocodes {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdPromocodes", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}/promo-codes", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdPromocodes.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdPromocodes.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStoresIdPromocodes {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdPromocodes", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/promo-rules/{promo_rule_id}/promo-codes", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdPromorules.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdPromorules.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PostEcommerceStoresIdPromorules {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdPromorules", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/promo-rules", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PostEcommerceStoresIdPromorules.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         /** The target that the discount applies to. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PostEcommerceStoresIdPromorules.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PostEcommerceStoresIdPromorules {
 13 |         public static let service = Service<Response>(id: "postEcommerceStoresIdPromorules", tag: "ecommerce", method: "POST", path: "/ecommerce/stores/{store_id}/promo-rules", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         /** The target that the discount applies to. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PutEcommerceStoresIdCustomersId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PutEcommerceStoresIdCustomersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PutEcommerceStoresIdCustomersId {
 13 |         public static let service = Service<Response>(id: "putEcommerceStoresIdCustomersId", tag: "ecommerce", method: "PUT", path: "/ecommerce/stores/{store_id}/customers/{customer_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PutEcommerceStoresIdCustomersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PutEcommerceStoresIdCustomersId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PutEcommerceStoresIdCustomersId {
 13 |         public static let service = Service<Response>(id: "putEcommerceStoresIdCustomersId", tag: "ecommerce", method: "PUT", path: "/ecommerce/stores/{store_id}/customers/{customer_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PutEcommerceStoresIdProductsIdVariantsId.swift:13:27: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PutEcommerceStoresIdProductsIdVariantsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |        */
 12 |       enum PutEcommerceStoresIdProductsIdVariantsId {
 13 |         public static let service = Service<Response>(id: "putEcommerceStoresIdProductsIdVariantsId", tag: "ecommerce", method: "PUT", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants/{variant_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ecommerce.PutEcommerceStoresIdProductsIdVariantsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ecommerce/PutEcommerceStoresIdProductsIdVariantsId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 11 |        */
 12 |       enum PutEcommerceStoresIdProductsIdVariantsId {
 13 |         public static let service = Service<Response>(id: "putEcommerceStoresIdProductsIdVariantsId", tag: "ecommerce", method: "PUT", path: "/ecommerce/stores/{store_id}/products/{product_id}/variants/{variant_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                           |- note: annotate 'service' 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
 14 |
 15 |         public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FacebookAds/GetAllFacebookAds.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FacebookAds.GetAllFacebookAds.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetAllFacebookAds {
 12 |       public static let service = Service<Response>(id: "getAllFacebookAds", tag: "facebookAds", method: "GET", path: "/facebook-ads", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FacebookAds.GetAllFacebookAds.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       /** Returns files sorted by the specified field. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FacebookAds/GetAllFacebookAds.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetAllFacebookAds {
 12 |       public static let service = Service<Response>(id: "getAllFacebookAds", tag: "facebookAds", method: "GET", path: "/facebook-ads", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       /** Returns files sorted by the specified field. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FacebookAds/GetFacebookAdsId.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FacebookAds.GetFacebookAdsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  10 |      */
  11 |     enum GetFacebookAdsId {
  12 |       public static let service = Service<Response>(id: "getFacebookAdsId", tag: "facebookAds", method: "GET", path: "/facebook-ads/{outreach_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FacebookAds.GetFacebookAdsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  13 |
  14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FacebookAds/GetFacebookAdsId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   1 | import Foundation
   2 | import Prch
     | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   3 |
   4 | #if !os(watchOS)
     :
  10 |      */
  11 |     enum GetFacebookAdsId {
  12 |       public static let service = Service<Response>(id: "getFacebookAdsId", tag: "facebookAds", method: "GET", path: "/facebook-ads/{outreach_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                         |- note: annotate 'service' 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
  13 |
  14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/DeleteFileManagerFilesId.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.DeleteFileManagerFilesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum DeleteFileManagerFilesId {
 11 |     public static let service = Service<Response>(id: "deleteFileManagerFilesId", tag: "fileManager", method: "DELETE", path: "/file-manager/files/{file_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.DeleteFileManagerFilesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/DeleteFileManagerFilesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum DeleteFileManagerFilesId {
 11 |     public static let service = Service<Response>(id: "deleteFileManagerFilesId", tag: "fileManager", method: "DELETE", path: "/file-manager/files/{file_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/DeleteFileManagerFoldersId.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.DeleteFileManagerFoldersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum DeleteFileManagerFoldersId {
 11 |     public static let service = Service<Response>(id: "deleteFileManagerFoldersId", tag: "fileManager", method: "DELETE", path: "/file-manager/folders/{folder_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.DeleteFileManagerFoldersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/DeleteFileManagerFoldersId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum DeleteFileManagerFoldersId {
 11 |     public static let service = Service<Response>(id: "deleteFileManagerFoldersId", tag: "fileManager", method: "DELETE", path: "/file-manager/folders/{folder_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/GetFileManagerFiles.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.GetFileManagerFiles.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum GetFileManagerFiles {
 11 |     public static let service = Service<Response>(id: "getFileManagerFiles", tag: "fileManager", method: "GET", path: "/file-manager/files", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.GetFileManagerFiles.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     /** Returns files sorted by the specified field. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/GetFileManagerFiles.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum GetFileManagerFiles {
 11 |     public static let service = Service<Response>(id: "getFileManagerFiles", tag: "fileManager", method: "GET", path: "/file-manager/files", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     /** Returns files sorted by the specified field. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/GetFileManagerFilesId.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.GetFileManagerFilesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum GetFileManagerFilesId {
 11 |     public static let service = Service<Response>(id: "getFileManagerFilesId", tag: "fileManager", method: "GET", path: "/file-manager/files/{file_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.GetFileManagerFilesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/GetFileManagerFilesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum GetFileManagerFilesId {
 11 |     public static let service = Service<Response>(id: "getFileManagerFilesId", tag: "fileManager", method: "GET", path: "/file-manager/files/{file_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/GetFileManagerFolders.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.GetFileManagerFolders.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum GetFileManagerFolders {
 11 |     public static let service = Service<Response>(id: "getFileManagerFolders", tag: "fileManager", method: "GET", path: "/file-manager/folders", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.GetFileManagerFolders.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/GetFileManagerFolders.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum GetFileManagerFolders {
 11 |     public static let service = Service<Response>(id: "getFileManagerFolders", tag: "fileManager", method: "GET", path: "/file-manager/folders", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/GetFileManagerFoldersId.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.GetFileManagerFoldersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum GetFileManagerFoldersId {
 11 |     public static let service = Service<Response>(id: "getFileManagerFoldersId", tag: "fileManager", method: "GET", path: "/file-manager/folders/{folder_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.GetFileManagerFoldersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/GetFileManagerFoldersId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum GetFileManagerFoldersId {
 11 |     public static let service = Service<Response>(id: "getFileManagerFoldersId", tag: "fileManager", method: "GET", path: "/file-manager/folders/{folder_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/PatchFileManagerFilesId.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.PatchFileManagerFilesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum PatchFileManagerFilesId {
 11 |     public static let service = Service<Response>(id: "patchFileManagerFilesId", tag: "fileManager", method: "PATCH", path: "/file-manager/files/{file_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.PatchFileManagerFilesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     public struct Request: BodyRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/PatchFileManagerFilesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum PatchFileManagerFilesId {
 11 |     public static let service = Service<Response>(id: "patchFileManagerFilesId", tag: "fileManager", method: "PATCH", path: "/file-manager/files/{file_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     public struct Request: BodyRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/PatchFileManagerFoldersId.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.PatchFileManagerFoldersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum PatchFileManagerFoldersId {
 11 |     public static let service = Service<Response>(id: "patchFileManagerFoldersId", tag: "fileManager", method: "PATCH", path: "/file-manager/folders/{folder_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.PatchFileManagerFoldersId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     public struct Request: BodyRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/PatchFileManagerFoldersId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum PatchFileManagerFoldersId {
 11 |     public static let service = Service<Response>(id: "patchFileManagerFoldersId", tag: "fileManager", method: "PATCH", path: "/file-manager/folders/{folder_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     public struct Request: BodyRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/PostFileManagerFiles.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.PostFileManagerFiles.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum PostFileManagerFiles {
 11 |     public static let service = Service<Response>(id: "postFileManagerFiles", tag: "fileManager", method: "POST", path: "/file-manager/files", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.PostFileManagerFiles.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     public struct Request: BodyRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/PostFileManagerFiles.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum PostFileManagerFiles {
 11 |     public static let service = Service<Response>(id: "postFileManagerFiles", tag: "fileManager", method: "POST", path: "/file-manager/files", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     public struct Request: BodyRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/PostFileManagerFolders.swift:11:23: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.PostFileManagerFolders.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |    */
 10 |   enum PostFileManagerFolders {
 11 |     public static let service = Service<Response>(id: "postFileManagerFolders", tag: "fileManager", method: "POST", path: "/file-manager/folders", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<FileManager.PostFileManagerFolders.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 |     public struct Request: BodyRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/FileManager/PostFileManagerFolders.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension FileManager {
    :
  9 |    */
 10 |   enum PostFileManagerFolders {
 11 |     public static let service = Service<Response>(id: "postFileManagerFolders", tag: "fileManager", method: "POST", path: "/file-manager/folders", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                       |- note: annotate 'service' 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
 12 |
 13 |     public struct Request: BodyRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/DeleteLandingPageId.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.DeleteLandingPageId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum DeleteLandingPageId {
 12 |       public static let service = Service<Response>(id: "deleteLandingPageId", tag: "landingPages", method: "DELETE", path: "/landing-pages/{page_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.DeleteLandingPageId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/DeleteLandingPageId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum DeleteLandingPageId {
 12 |       public static let service = Service<Response>(id: "deleteLandingPageId", tag: "landingPages", method: "DELETE", path: "/landing-pages/{page_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/GetAllLandingPages.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.GetAllLandingPages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetAllLandingPages {
 12 |       public static let service = Service<Response>(id: "getAllLandingPages", tag: "landingPages", method: "GET", path: "/landing-pages", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.GetAllLandingPages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       /** Determines the order direction for sorted results. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/GetAllLandingPages.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetAllLandingPages {
 12 |       public static let service = Service<Response>(id: "getAllLandingPages", tag: "landingPages", method: "GET", path: "/landing-pages", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       /** Determines the order direction for sorted results. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/GetLandingPageId.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.GetLandingPageId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetLandingPageId {
 12 |       public static let service = Service<Response>(id: "getLandingPageId", tag: "landingPages", method: "GET", path: "/landing-pages/{page_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.GetLandingPageId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/GetLandingPageId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetLandingPageId {
 12 |       public static let service = Service<Response>(id: "getLandingPageId", tag: "landingPages", method: "GET", path: "/landing-pages/{page_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/GetLandingPageIdContent.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.GetLandingPageIdContent.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetLandingPageIdContent {
 12 |       public static let service = Service<Response>(id: "getLandingPageIdContent", tag: "landingPages", method: "GET", path: "/landing-pages/{page_id}/content", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.GetLandingPageIdContent.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/GetLandingPageIdContent.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetLandingPageIdContent {
 12 |       public static let service = Service<Response>(id: "getLandingPageIdContent", tag: "landingPages", method: "GET", path: "/landing-pages/{page_id}/content", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/PatchLandingPageId.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.PatchLandingPageId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum PatchLandingPageId {
 12 |       public static let service = Service<Response>(id: "patchLandingPageId", tag: "landingPages", method: "PATCH", path: "/landing-pages/{page_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.PatchLandingPageId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/PatchLandingPageId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum PatchLandingPageId {
 12 |       public static let service = Service<Response>(id: "patchLandingPageId", tag: "landingPages", method: "PATCH", path: "/landing-pages/{page_id}", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/PostAllLandingPages.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.PostAllLandingPages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum PostAllLandingPages {
 12 |       public static let service = Service<Response>(id: "postAllLandingPages", tag: "landingPages", method: "POST", path: "/landing-pages", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.PostAllLandingPages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       /** The type of template the landing page has. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/PostAllLandingPages.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum PostAllLandingPages {
 12 |       public static let service = Service<Response>(id: "postAllLandingPages", tag: "landingPages", method: "POST", path: "/landing-pages", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       /** The type of template the landing page has. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/PostLandingPageIdActionsPublish.swift:27:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.PostLandingPageIdActionsPublish.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 25 |      */
 26 |     enum PostLandingPageIdActionsPublish {
 27 |       public static let service = Service<Response>(id: "postLandingPageIdActionsPublish", tag: "landingPages", method: "POST", path: "/landing-pages/{page_id}/actions/publish", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.PostLandingPageIdActionsPublish.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/PostLandingPageIdActionsPublish.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | public extension Prch.Response {
    :
 25 |      */
 26 |     enum PostLandingPageIdActionsPublish {
 27 |       public static let service = Service<Response>(id: "postLandingPageIdActionsPublish", tag: "landingPages", method: "POST", path: "/landing-pages/{page_id}/actions/publish", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 28 |
 29 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/PostLandingPageIdActionsUnpublish.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.PostLandingPageIdActionsUnpublish.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum PostLandingPageIdActionsUnpublish {
 12 |       public static let service = Service<Response>(id: "postLandingPageIdActionsUnpublish", tag: "landingPages", method: "POST", path: "/landing-pages/{page_id}/actions/unpublish", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<LandingPages.PostLandingPageIdActionsUnpublish.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/LandingPages/PostLandingPageIdActionsUnpublish.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum PostLandingPageIdActionsUnpublish {
 12 |       public static let service = Service<Response>(id: "postLandingPageIdActionsUnpublish", tag: "landingPages", method: "POST", path: "/landing-pages/{page_id}/actions/unpublish", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ping/GetPing.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ping.GetPing.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetPing {
 12 |       public static let service = Service<Response>(id: "getPing", tag: "ping", method: "GET", path: "/ping", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Ping.GetPing.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Ping/GetPing.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetPing {
 12 |       public static let service = Service<Response>(id: "getPing", tag: "ping", method: "GET", path: "/ping", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingFacebookAds.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingFacebookAds.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetReportingFacebookAds {
 12 |       public static let service = Service<Response>(id: "getReportingFacebookAds", tag: "reporting", method: "GET", path: "/reporting/facebook-ads", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingFacebookAds.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       /** Returns files sorted by the specified field. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingFacebookAds.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetReportingFacebookAds {
 12 |       public static let service = Service<Response>(id: "getReportingFacebookAds", tag: "reporting", method: "GET", path: "/reporting/facebook-ads", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       /** Returns files sorted by the specified field. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingFacebookAdsId.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingFacebookAdsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  10 |      */
  11 |     enum GetReportingFacebookAdsId {
  12 |       public static let service = Service<Response>(id: "getReportingFacebookAdsId", tag: "reporting", method: "GET", path: "/reporting/facebook-ads/{outreach_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingFacebookAdsId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
  13 |
  14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingFacebookAdsId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   1 | import Foundation
   2 | import Prch
     | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
   3 |
   4 | #if !os(watchOS)
     :
  10 |      */
  11 |     enum GetReportingFacebookAdsId {
  12 |       public static let service = Service<Response>(id: "getReportingFacebookAdsId", tag: "reporting", method: "GET", path: "/reporting/facebook-ads/{outreach_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
     |                         |- note: annotate 'service' 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
  13 |
  14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingFacebookAdsIdEcommerceProductActivity.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingFacebookAdsIdEcommerceProductActivity.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetReportingFacebookAdsIdEcommerceProductActivity {
 12 |       public static let service = Service<Response>(id: "getReportingFacebookAdsIdEcommerceProductActivity", tag: "reporting", method: "GET", path: "/reporting/facebook-ads/{outreach_id}/ecommerce-product-activity", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingFacebookAdsIdEcommerceProductActivity.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       /** Returns files sorted by the specified field. */
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingFacebookAdsIdEcommerceProductActivity.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetReportingFacebookAdsIdEcommerceProductActivity {
 12 |       public static let service = Service<Response>(id: "getReportingFacebookAdsIdEcommerceProductActivity", tag: "reporting", method: "GET", path: "/reporting/facebook-ads/{outreach_id}/ecommerce-product-activity", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       /** Returns files sorted by the specified field. */
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingLandingPages.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingLandingPages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetReportingLandingPages {
 12 |       public static let service = Service<Response>(id: "getReportingLandingPages", tag: "reporting", method: "GET", path: "/reporting/landing-pages", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingLandingPages.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingLandingPages.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetReportingLandingPages {
 12 |       public static let service = Service<Response>(id: "getReportingLandingPages", tag: "reporting", method: "GET", path: "/reporting/landing-pages", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingLandingPagesId.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingLandingPagesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetReportingLandingPagesId {
 12 |       public static let service = Service<Response>(id: "getReportingLandingPagesId", tag: "reporting", method: "GET", path: "/reporting/landing-pages/{outreach_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<Reporting.GetReportingLandingPagesId.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/Reporting/GetReportingLandingPagesId.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetReportingLandingPagesId {
 12 |       public static let service = Service<Response>(id: "getReportingLandingPagesId", tag: "reporting", method: "GET", path: "/reporting/landing-pages/{outreach_id}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/CreateVerifiedDomain.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.CreateVerifiedDomain.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum CreateVerifiedDomain {
 12 |       public static let service = Service<Response>(id: "createVerifiedDomain", tag: "verifiedDomains", method: "POST", path: "/verified-domains", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.CreateVerifiedDomain.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/CreateVerifiedDomain.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum CreateVerifiedDomain {
 12 |       public static let service = Service<Response>(id: "createVerifiedDomain", tag: "verifiedDomains", method: "POST", path: "/verified-domains", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/DeleteVerifiedDomain.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.DeleteVerifiedDomain.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum DeleteVerifiedDomain {
 12 |       public static let service = Service<Response>(id: "deleteVerifiedDomain", tag: "verifiedDomains", method: "DELETE", path: "/verified-domains/{domain_name}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.DeleteVerifiedDomain.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/DeleteVerifiedDomain.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum DeleteVerifiedDomain {
 12 |       public static let service = Service<Response>(id: "deleteVerifiedDomain", tag: "verifiedDomains", method: "DELETE", path: "/verified-domains/{domain_name}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/GetVerifiedDomain.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.GetVerifiedDomain.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetVerifiedDomain {
 12 |       public static let service = Service<Response>(id: "getVerifiedDomain", tag: "verifiedDomains", method: "GET", path: "/verified-domains/{domain_name}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.GetVerifiedDomain.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/GetVerifiedDomain.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetVerifiedDomain {
 12 |       public static let service = Service<Response>(id: "getVerifiedDomain", tag: "verifiedDomains", method: "GET", path: "/verified-domains/{domain_name}", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/GetVerifiedDomains.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.GetVerifiedDomains.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum GetVerifiedDomains {
 12 |       public static let service = Service<Response>(id: "getVerifiedDomains", tag: "verifiedDomains", method: "GET", path: "/verified-domains", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.GetVerifiedDomains.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/GetVerifiedDomains.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum GetVerifiedDomains {
 12 |       public static let service = Service<Response>(id: "getVerifiedDomains", tag: "verifiedDomains", method: "GET", path: "/verified-domains", hasBody: false, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/VerifyDomain.swift:12:25: warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.VerifyDomain.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |      */
 11 |     enum VerifyDomain {
 12 |       public static let service = Service<Response>(id: "verifyDomain", tag: "verifiedDomains", method: "POST", path: "/verified-domains/{domain_name}/actions/verify", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         `- warning: static property 'service' is not concurrency-safe because non-'Sendable' type 'Service<VerifiedDomains.VerifyDomain.Response>' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |       public struct Request: ServiceRequest {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Prch/Sources/Prch/Service.swift:1:15: note: generic struct 'Service' does not conform to the 'Sendable' protocol
 1 | public struct Service<ResponseType: Response> {
   |               `- note: generic struct 'Service' does not conform to the 'Sendable' protocol
 2 |   public let id: String
 3 |   public let tag: String
/Users/admin/builder/spi-builder-workspace/Sources/Spinetail/Requests/Regular/VerifiedDomains/VerifyDomain.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  1 | import Foundation
  2 | import Prch
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Prch'
  3 |
  4 | #if !os(watchOS)
    :
 10 |      */
 11 |     enum VerifyDomain {
 12 |       public static let service = Service<Response>(id: "verifyDomain", tag: "verifiedDomains", method: "POST", path: "/verified-domains/{domain_name}/actions/verify", hasBody: true, securityRequirements: [SecurityRequirement(type: "basicAuth", scopes: [])])
    |                         |- note: annotate 'service' 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
 13 |
 14 |       public struct Request: ServiceRequest {
Build complete! (67.70s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "prch",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/brightdigit/Prch.git"
    }
  ],
  "manifest_display_name" : "Spinetail",
  "name" : "Spinetail",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "Spinetail",
      "targets" : [
        "Spinetail"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SpinetailTests",
      "module_type" : "SwiftTarget",
      "name" : "SpinetailTests",
      "path" : "Tests/SpinetailTests",
      "sources" : [
        "Helpers/Client.Helpers.swift",
        "Helpers/Settings.swift",
        "Helpers/String.swift",
        "Tests/CampaignTests.swift",
        "Tests/ListsTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Spinetail"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Spinetail",
      "module_type" : "SwiftTarget",
      "name" : "Spinetail",
      "path" : "Sources/Spinetail",
      "product_dependencies" : [
        "Prch"
      ],
      "product_memberships" : [
        "Spinetail"
      ],
      "sources" : [
        "Mailchimp.API.swift",
        "Mailchimp.swift",
        "Models/DefaultResponse.swift",
        "Models/Links.swift",
        "Requests/Lite/CampaignFolders/DeleteCampaignFoldersId.swift",
        "Requests/Lite/CampaignFolders/GetCampaignFolders.swift",
        "Requests/Lite/CampaignFolders/GetCampaignFoldersId.swift",
        "Requests/Lite/CampaignFolders/PatchCampaignFoldersId.swift",
        "Requests/Lite/CampaignFolders/PostCampaignFolders.swift",
        "Requests/Lite/Campaigns/DeleteCampaignsId.swift",
        "Requests/Lite/Campaigns/DeleteCampaignsIdFeedbackId.swift",
        "Requests/Lite/Campaigns/GetCampaigns.swift",
        "Requests/Lite/Campaigns/GetCampaignsId.swift",
        "Requests/Lite/Campaigns/GetCampaignsIdContent.swift",
        "Requests/Lite/Campaigns/GetCampaignsIdFeedback.swift",
        "Requests/Lite/Campaigns/GetCampaignsIdFeedbackId.swift",
        "Requests/Lite/Campaigns/GetCampaignsIdSendChecklist.swift",
        "Requests/Lite/Campaigns/PatchCampaignsId.swift",
        "Requests/Lite/Campaigns/PatchCampaignsIdFeedbackId.swift",
        "Requests/Lite/Campaigns/PostCampaigns.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdActionsCancelSend.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdActionsCreateResend.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdActionsPause.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdActionsReplicate.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdActionsResume.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdActionsSchedule.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdActionsSend.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdActionsTest.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdActionsUnschedule.swift",
        "Requests/Lite/Campaigns/PostCampaignsIdFeedback.swift",
        "Requests/Lite/Campaigns/PutCampaignsIdContent.swift",
        "Requests/Lite/Lists/DeleteListsId.swift",
        "Requests/Lite/Lists/DeleteListsIdInterestCategoriesId.swift",
        "Requests/Lite/Lists/DeleteListsIdInterestCategoriesIdInterestsId.swift",
        "Requests/Lite/Lists/DeleteListsIdMembersId.swift",
        "Requests/Lite/Lists/DeleteListsIdMembersIdNotesId.swift",
        "Requests/Lite/Lists/DeleteListsIdMergeFieldsId.swift",
        "Requests/Lite/Lists/DeleteListsIdSegmentsId.swift",
        "Requests/Lite/Lists/DeleteListsIdSegmentsIdMembersId.swift",
        "Requests/Lite/Lists/DeleteListsIdWebhooksId.swift",
        "Requests/Lite/Lists/GetListMemberTags.swift",
        "Requests/Lite/Lists/GetLists.swift",
        "Requests/Lite/Lists/GetListsId.swift",
        "Requests/Lite/Lists/GetListsIdAbuseReports.swift",
        "Requests/Lite/Lists/GetListsIdAbuseReportsId.swift",
        "Requests/Lite/Lists/GetListsIdActivity.swift",
        "Requests/Lite/Lists/GetListsIdClients.swift",
        "Requests/Lite/Lists/GetListsIdGrowthHistory.swift",
        "Requests/Lite/Lists/GetListsIdGrowthHistoryId.swift",
        "Requests/Lite/Lists/GetListsIdInterestCategories.swift",
        "Requests/Lite/Lists/GetListsIdInterestCategoriesId.swift",
        "Requests/Lite/Lists/GetListsIdInterestCategoriesIdInterests.swift",
        "Requests/Lite/Lists/GetListsIdInterestCategoriesIdInterestsId.swift",
        "Requests/Lite/Lists/GetListsIdLocations.swift",
        "Requests/Lite/Lists/GetListsIdMembers.swift",
        "Requests/Lite/Lists/GetListsIdMembersId.swift",
        "Requests/Lite/Lists/GetListsIdMembersIdActivity.swift",
        "Requests/Lite/Lists/GetListsIdMembersIdActivityFeed.swift",
        "Requests/Lite/Lists/GetListsIdMembersIdEvents.swift",
        "Requests/Lite/Lists/GetListsIdMembersIdGoals.swift",
        "Requests/Lite/Lists/GetListsIdMembersIdNotes.swift",
        "Requests/Lite/Lists/GetListsIdMembersIdNotesId.swift",
        "Requests/Lite/Lists/GetListsIdMergeFields.swift",
        "Requests/Lite/Lists/GetListsIdMergeFieldsId.swift",
        "Requests/Lite/Lists/GetListsIdSegmentsId.swift",
        "Requests/Lite/Lists/GetListsIdSegmentsIdMembers.swift",
        "Requests/Lite/Lists/GetListsIdSignupForms.swift",
        "Requests/Lite/Lists/GetListsIdWebhooks.swift",
        "Requests/Lite/Lists/GetListsIdWebhooksId.swift",
        "Requests/Lite/Lists/PatchListsId.swift",
        "Requests/Lite/Lists/PatchListsIdInterestCategoriesId.swift",
        "Requests/Lite/Lists/PatchListsIdInterestCategoriesIdInterestsId.swift",
        "Requests/Lite/Lists/PatchListsIdMembersId.swift",
        "Requests/Lite/Lists/PatchListsIdMembersIdNotesId.swift",
        "Requests/Lite/Lists/PatchListsIdMergeFieldsId.swift",
        "Requests/Lite/Lists/PatchListsIdSegmentsId.swift",
        "Requests/Lite/Lists/PatchListsIdWebhooksId.swift",
        "Requests/Lite/Lists/PostListMemberEvents.swift",
        "Requests/Lite/Lists/PostListMemberTags.swift",
        "Requests/Lite/Lists/PostLists.swift",
        "Requests/Lite/Lists/PostListsId.swift",
        "Requests/Lite/Lists/PostListsIdInterestCategories.swift",
        "Requests/Lite/Lists/PostListsIdInterestCategoriesIdInterests.swift",
        "Requests/Lite/Lists/PostListsIdMembers.swift",
        "Requests/Lite/Lists/PostListsIdMembersHashActionsDeletePermanent.swift",
        "Requests/Lite/Lists/PostListsIdMembersIdNotes.swift",
        "Requests/Lite/Lists/PostListsIdMergeFields.swift",
        "Requests/Lite/Lists/PostListsIdSegments.swift",
        "Requests/Lite/Lists/PostListsIdSegmentsId.swift",
        "Requests/Lite/Lists/PostListsIdSegmentsIdMembers.swift",
        "Requests/Lite/Lists/PostListsIdSignupForms.swift",
        "Requests/Lite/Lists/PostListsIdWebhooks.swift",
        "Requests/Lite/Lists/PreviewASegment.swift",
        "Requests/Lite/Lists/PutListsIdMembersId.swift",
        "Requests/Lite/Lists/SearchTagsByName.swift",
        "Requests/Lite/Reports/GetReports.swift",
        "Requests/Lite/Reports/GetReportsId.swift",
        "Requests/Lite/Reports/GetReportsIdAbuseReportsId.swift",
        "Requests/Lite/Reports/GetReportsIdAbuseReportsIdId.swift",
        "Requests/Lite/Reports/GetReportsIdAdvice.swift",
        "Requests/Lite/Reports/GetReportsIdClickDetails.swift",
        "Requests/Lite/Reports/GetReportsIdClickDetailsId.swift",
        "Requests/Lite/Reports/GetReportsIdClickDetailsIdMembers.swift",
        "Requests/Lite/Reports/GetReportsIdClickDetailsIdMembersId.swift",
        "Requests/Lite/Reports/GetReportsIdDomainPerformance.swift",
        "Requests/Lite/Reports/GetReportsIdEcommerceProductActivity.swift",
        "Requests/Lite/Reports/GetReportsIdEepurl.swift",
        "Requests/Lite/Reports/GetReportsIdEmailActivity.swift",
        "Requests/Lite/Reports/GetReportsIdEmailActivityId.swift",
        "Requests/Lite/Reports/GetReportsIdLocations.swift",
        "Requests/Lite/Reports/GetReportsIdOpenDetails.swift",
        "Requests/Lite/Reports/GetReportsIdOpenDetailsIdMembersId.swift",
        "Requests/Lite/Reports/GetReportsIdSentTo.swift",
        "Requests/Lite/Reports/GetReportsIdSentToId.swift",
        "Requests/Lite/Reports/GetReportsIdSubReportsId.swift",
        "Requests/Lite/Reports/GetReportsIdUnsubscribed.swift",
        "Requests/Lite/Reports/GetReportsIdUnsubscribedId.swift",
        "Requests/Lite/Root/GetRoot.swift",
        "Requests/Lite/SearchCampaigns/GetSearchCampaigns.swift",
        "Requests/Lite/SearchMembers/GetSearchMembers.swift",
        "Requests/Lite/TemplateFolders/DeleteTemplateFoldersId.swift",
        "Requests/Lite/TemplateFolders/GetTemplateFolders.swift",
        "Requests/Lite/TemplateFolders/GetTemplateFoldersId.swift",
        "Requests/Lite/TemplateFolders/PatchTemplateFoldersId.swift",
        "Requests/Lite/TemplateFolders/PostTemplateFolders.swift",
        "Requests/Lite/Templates/DeleteTemplatesId.swift",
        "Requests/Lite/Templates/GetTemplates.swift",
        "Requests/Lite/Templates/GetTemplatesId.swift",
        "Requests/Lite/Templates/GetTemplatesIdDefaultContent.swift",
        "Requests/Lite/Templates/PatchTemplatesId.swift",
        "Requests/Lite/Templates/PostTemplates.swift",
        "Requests/Regular/ActivityFeed/GetActivityFeedChimpChatter.swift",
        "Requests/Regular/AuthorizedApps/GetAuthorizedApps.swift",
        "Requests/Regular/AuthorizedApps/GetAuthorizedAppsId.swift",
        "Requests/Regular/Automations/ArchiveAutomations.swift",
        "Requests/Regular/Automations/DeleteAutomationsIdEmailsId.swift",
        "Requests/Regular/Automations/GetAutomations.swift",
        "Requests/Regular/Automations/GetAutomationsId.swift",
        "Requests/Regular/Automations/GetAutomationsIdEmails.swift",
        "Requests/Regular/Automations/GetAutomationsIdEmailsId.swift",
        "Requests/Regular/Automations/GetAutomationsIdEmailsIdQueue.swift",
        "Requests/Regular/Automations/GetAutomationsIdEmailsIdQueueId.swift",
        "Requests/Regular/Automations/GetAutomationsIdRemovedSubscribers.swift",
        "Requests/Regular/Automations/GetAutomationsIdRemovedSubscribersId.swift",
        "Requests/Regular/Automations/PatchAutomationEmailWorkflowId.swift",
        "Requests/Regular/Automations/PostAutomations.swift",
        "Requests/Regular/Automations/PostAutomationsIdActionsPauseAllEmails.swift",
        "Requests/Regular/Automations/PostAutomationsIdActionsStartAllEmails.swift",
        "Requests/Regular/Automations/PostAutomationsIdEmailsIdActionsPause.swift",
        "Requests/Regular/Automations/PostAutomationsIdEmailsIdActionsStart.swift",
        "Requests/Regular/Automations/PostAutomationsIdEmailsIdQueue.swift",
        "Requests/Regular/Automations/PostAutomationsIdRemovedSubscribers.swift",
        "Requests/Regular/BatchWebhooks/DeleteBatchWebhookId.swift",
        "Requests/Regular/BatchWebhooks/GetBatchWebhook.swift",
        "Requests/Regular/BatchWebhooks/GetBatchWebhooks.swift",
        "Requests/Regular/BatchWebhooks/PatchBatchWebhooks.swift",
        "Requests/Regular/BatchWebhooks/PostBatchWebhooks.swift",
        "Requests/Regular/Batches/DeleteBatchesId.swift",
        "Requests/Regular/Batches/GetBatches.swift",
        "Requests/Regular/Batches/GetBatchesId.swift",
        "Requests/Regular/Batches/PostBatches.swift",
        "Requests/Regular/ConnectedSites/DeleteConnectedSitesId.swift",
        "Requests/Regular/ConnectedSites/GetConnectedSites.swift",
        "Requests/Regular/ConnectedSites/GetConnectedSitesId.swift",
        "Requests/Regular/ConnectedSites/PostConnectedSites.swift",
        "Requests/Regular/ConnectedSites/PostConnectedSitesIdActionsVerifyScriptInstallation.swift",
        "Requests/Regular/Conversations/GetConversations.swift",
        "Requests/Regular/Conversations/GetConversationsId.swift",
        "Requests/Regular/Conversations/GetConversationsIdMessages.swift",
        "Requests/Regular/Conversations/GetConversationsIdMessagesId.swift",
        "Requests/Regular/CustomerJourneys/PostCustomerJourneysJourneysIdStepsIdActionsTrigger.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdCartsId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdCartsLinesId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdCustomersId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdOrdersId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdOrdersIdLinesId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdProductsId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdProductsIdImagesId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdProductsIdVariantsId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdPromocodesId.swift",
        "Requests/Regular/Ecommerce/DeleteEcommerceStoresIdPromorulesId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceOrders.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStores.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdCarts.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdCartsId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdCartsIdLines.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdCartsIdLinesId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdCustomers.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdCustomersId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdOrders.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdOrdersId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdOrdersIdLines.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdOrdersIdLinesId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdProducts.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdImages.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdImagesId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdVariants.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdProductsIdVariantsId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdPromocodes.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdPromocodesId.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdPromorules.swift",
        "Requests/Regular/Ecommerce/GetEcommerceStoresIdPromorulesId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdCartsId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdCartsIdLinesId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdCustomersId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdOrdersId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdOrdersIdLinesId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdProductsId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdProductsIdImagesId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdProductsIdVariantsId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdPromocodesId.swift",
        "Requests/Regular/Ecommerce/PatchEcommerceStoresIdPromorulesId.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStores.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdCarts.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdCartsIdLines.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdCustomers.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdOrders.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdOrdersIdLines.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdProducts.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdProductsIdImages.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdProductsIdVariants.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdPromocodes.swift",
        "Requests/Regular/Ecommerce/PostEcommerceStoresIdPromorules.swift",
        "Requests/Regular/Ecommerce/PutEcommerceStoresIdCustomersId.swift",
        "Requests/Regular/Ecommerce/PutEcommerceStoresIdProductsIdVariantsId.swift",
        "Requests/Regular/FacebookAds/GetAllFacebookAds.swift",
        "Requests/Regular/FacebookAds/GetFacebookAdsId.swift",
        "Requests/Regular/FileManager/DeleteFileManagerFilesId.swift",
        "Requests/Regular/FileManager/DeleteFileManagerFoldersId.swift",
        "Requests/Regular/FileManager/GetFileManagerFiles.swift",
        "Requests/Regular/FileManager/GetFileManagerFilesId.swift",
        "Requests/Regular/FileManager/GetFileManagerFolders.swift",
        "Requests/Regular/FileManager/GetFileManagerFoldersId.swift",
        "Requests/Regular/FileManager/PatchFileManagerFilesId.swift",
        "Requests/Regular/FileManager/PatchFileManagerFoldersId.swift",
        "Requests/Regular/FileManager/PostFileManagerFiles.swift",
        "Requests/Regular/FileManager/PostFileManagerFolders.swift",
        "Requests/Regular/LandingPages/DeleteLandingPageId.swift",
        "Requests/Regular/LandingPages/GetAllLandingPages.swift",
        "Requests/Regular/LandingPages/GetLandingPageId.swift",
        "Requests/Regular/LandingPages/GetLandingPageIdContent.swift",
        "Requests/Regular/LandingPages/PatchLandingPageId.swift",
        "Requests/Regular/LandingPages/PostAllLandingPages.swift",
        "Requests/Regular/LandingPages/PostLandingPageIdActionsPublish.swift",
        "Requests/Regular/LandingPages/PostLandingPageIdActionsUnpublish.swift",
        "Requests/Regular/Ping/GetPing.swift",
        "Requests/Regular/Reporting/GetReportingFacebookAds.swift",
        "Requests/Regular/Reporting/GetReportingFacebookAdsId.swift",
        "Requests/Regular/Reporting/GetReportingFacebookAdsIdEcommerceProductActivity.swift",
        "Requests/Regular/Reporting/GetReportingLandingPages.swift",
        "Requests/Regular/Reporting/GetReportingLandingPagesId.swift",
        "Requests/Regular/VerifiedDomains/CreateVerifiedDomain.swift",
        "Requests/Regular/VerifiedDomains/DeleteVerifiedDomain.swift",
        "Requests/Regular/VerifiedDomains/GetVerifiedDomain.swift",
        "Requests/Regular/VerifiedDomains/GetVerifiedDomains.swift",
        "Requests/Regular/VerifiedDomains/VerifyDomain.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.