This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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

Failed to build Siren with Swift 6.0 for watchOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Siren -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |   public static let finland: AppStoreCountry = "FI"
 70 |   public static let fiji: AppStoreCountry = "FJ"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:69:21: warning: static property 'finland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 67 |   public static let egypt: AppStoreCountry = "EG"
 68 |   public static let spain: AppStoreCountry = "ES"
 69 |   public static let finland: AppStoreCountry = "FI"
    |                     |- warning: static property 'finland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'finland' 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
 70 |   public static let fiji: AppStoreCountry = "FJ"
 71 |   public static let micronesia: AppStoreCountry = "FM"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:70:21: warning: static property 'fiji' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 68 |   public static let spain: AppStoreCountry = "ES"
 69 |   public static let finland: AppStoreCountry = "FI"
 70 |   public static let fiji: AppStoreCountry = "FJ"
    |                     |- warning: static property 'fiji' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'fiji' 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
 71 |   public static let micronesia: AppStoreCountry = "FM"
 72 |   public static let france: AppStoreCountry = "FR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:71:21: warning: static property 'micronesia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 69 |   public static let finland: AppStoreCountry = "FI"
 70 |   public static let fiji: AppStoreCountry = "FJ"
 71 |   public static let micronesia: AppStoreCountry = "FM"
    |                     |- warning: static property 'micronesia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'micronesia' 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
 72 |   public static let france: AppStoreCountry = "FR"
 73 |   public static let gabon: AppStoreCountry = "GAB"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:72:21: warning: static property 'france' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 70 |   public static let fiji: AppStoreCountry = "FJ"
 71 |   public static let micronesia: AppStoreCountry = "FM"
 72 |   public static let france: AppStoreCountry = "FR"
    |                     |- warning: static property 'france' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'france' 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
 73 |   public static let gabon: AppStoreCountry = "GAB"
 74 |   public static let unitedKingdom: AppStoreCountry = "GB"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:73:21: warning: static property 'gabon' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 71 |   public static let micronesia: AppStoreCountry = "FM"
 72 |   public static let france: AppStoreCountry = "FR"
 73 |   public static let gabon: AppStoreCountry = "GAB"
    |                     |- warning: static property 'gabon' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'gabon' 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
 74 |   public static let unitedKingdom: AppStoreCountry = "GB"
 75 |   public static let grenada: AppStoreCountry = "GD"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:74:21: warning: static property 'unitedKingdom' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 72 |   public static let france: AppStoreCountry = "FR"
 73 |   public static let gabon: AppStoreCountry = "GAB"
 74 |   public static let unitedKingdom: AppStoreCountry = "GB"
    |                     |- warning: static property 'unitedKingdom' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'unitedKingdom' 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
 75 |   public static let grenada: AppStoreCountry = "GD"
 76 |   public static let georgia: AppStoreCountry = "GEO"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:75:21: warning: static property 'grenada' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 73 |   public static let gabon: AppStoreCountry = "GAB"
 74 |   public static let unitedKingdom: AppStoreCountry = "GB"
 75 |   public static let grenada: AppStoreCountry = "GD"
    |                     |- warning: static property 'grenada' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'grenada' 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
 76 |   public static let georgia: AppStoreCountry = "GEO"
 77 |   public static let ghana: AppStoreCountry = "GH"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:76:21: warning: static property 'georgia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 74 |   public static let unitedKingdom: AppStoreCountry = "GB"
 75 |   public static let grenada: AppStoreCountry = "GD"
 76 |   public static let georgia: AppStoreCountry = "GEO"
    |                     |- warning: static property 'georgia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'georgia' 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
 77 |   public static let ghana: AppStoreCountry = "GH"
 78 |   public static let gambia: AppStoreCountry = "GM"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:77:21: warning: static property 'ghana' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 75 |   public static let grenada: AppStoreCountry = "GD"
 76 |   public static let georgia: AppStoreCountry = "GEO"
 77 |   public static let ghana: AppStoreCountry = "GH"
    |                     |- warning: static property 'ghana' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'ghana' 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
 78 |   public static let gambia: AppStoreCountry = "GM"
 79 |   public static let greece: AppStoreCountry = "GR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:78:21: warning: static property 'gambia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 76 |   public static let georgia: AppStoreCountry = "GEO"
 77 |   public static let ghana: AppStoreCountry = "GH"
 78 |   public static let gambia: AppStoreCountry = "GM"
    |                     |- warning: static property 'gambia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'gambia' 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
 79 |   public static let greece: AppStoreCountry = "GR"
 80 |   public static let guatemala: AppStoreCountry = "GT"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:79:21: warning: static property 'greece' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 77 |   public static let ghana: AppStoreCountry = "GH"
 78 |   public static let gambia: AppStoreCountry = "GM"
 79 |   public static let greece: AppStoreCountry = "GR"
    |                     |- warning: static property 'greece' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'greece' 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
 80 |   public static let guatemala: AppStoreCountry = "GT"
 81 |   public static let guineaBissau: AppStoreCountry = "GW"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:80:21: warning: static property 'guatemala' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 78 |   public static let gambia: AppStoreCountry = "GM"
 79 |   public static let greece: AppStoreCountry = "GR"
 80 |   public static let guatemala: AppStoreCountry = "GT"
    |                     |- warning: static property 'guatemala' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'guatemala' 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
 81 |   public static let guineaBissau: AppStoreCountry = "GW"
 82 |   public static let guyana: AppStoreCountry = "GY"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:81:21: warning: static property 'guineaBissau' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 79 |   public static let greece: AppStoreCountry = "GR"
 80 |   public static let guatemala: AppStoreCountry = "GT"
 81 |   public static let guineaBissau: AppStoreCountry = "GW"
    |                     |- warning: static property 'guineaBissau' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'guineaBissau' 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
 82 |   public static let guyana: AppStoreCountry = "GY"
 83 |   public static let hongKong: AppStoreCountry = "HK"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:82:21: warning: static property 'guyana' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 80 |   public static let guatemala: AppStoreCountry = "GT"
 81 |   public static let guineaBissau: AppStoreCountry = "GW"
 82 |   public static let guyana: AppStoreCountry = "GY"
    |                     |- warning: static property 'guyana' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'guyana' 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
 83 |   public static let hongKong: AppStoreCountry = "HK"
 84 |   public static let honduras: AppStoreCountry = "HN"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:83:21: warning: static property 'hongKong' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 81 |   public static let guineaBissau: AppStoreCountry = "GW"
 82 |   public static let guyana: AppStoreCountry = "GY"
 83 |   public static let hongKong: AppStoreCountry = "HK"
    |                     |- warning: static property 'hongKong' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hongKong' 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
 84 |   public static let honduras: AppStoreCountry = "HN"
 85 |   public static let croatia: AppStoreCountry = "HR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:84:21: warning: static property 'honduras' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 82 |   public static let guyana: AppStoreCountry = "GY"
 83 |   public static let hongKong: AppStoreCountry = "HK"
 84 |   public static let honduras: AppStoreCountry = "HN"
    |                     |- warning: static property 'honduras' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'honduras' 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
 85 |   public static let croatia: AppStoreCountry = "HR"
 86 |   public static let hungary: AppStoreCountry = "HU"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:85:21: warning: static property 'croatia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 83 |   public static let hongKong: AppStoreCountry = "HK"
 84 |   public static let honduras: AppStoreCountry = "HN"
 85 |   public static let croatia: AppStoreCountry = "HR"
    |                     |- warning: static property 'croatia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'croatia' 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
 86 |   public static let hungary: AppStoreCountry = "HU"
 87 |   public static let indonesia: AppStoreCountry = "ID"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:86:21: warning: static property 'hungary' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 84 |   public static let honduras: AppStoreCountry = "HN"
 85 |   public static let croatia: AppStoreCountry = "HR"
 86 |   public static let hungary: AppStoreCountry = "HU"
    |                     |- warning: static property 'hungary' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hungary' 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
 87 |   public static let indonesia: AppStoreCountry = "ID"
 88 |   public static let ireland: AppStoreCountry = "IE"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:87:21: warning: static property 'indonesia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 85 |   public static let croatia: AppStoreCountry = "HR"
 86 |   public static let hungary: AppStoreCountry = "HU"
 87 |   public static let indonesia: AppStoreCountry = "ID"
    |                     |- warning: static property 'indonesia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'indonesia' 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
 88 |   public static let ireland: AppStoreCountry = "IE"
 89 |   public static let israel: AppStoreCountry = "IL"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:88:21: warning: static property 'ireland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 86 |   public static let hungary: AppStoreCountry = "HU"
 87 |   public static let indonesia: AppStoreCountry = "ID"
 88 |   public static let ireland: AppStoreCountry = "IE"
    |                     |- warning: static property 'ireland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'ireland' 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
 89 |   public static let israel: AppStoreCountry = "IL"
 90 |   public static let india: AppStoreCountry = "IN"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:89:21: warning: static property 'israel' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 87 |   public static let indonesia: AppStoreCountry = "ID"
 88 |   public static let ireland: AppStoreCountry = "IE"
 89 |   public static let israel: AppStoreCountry = "IL"
    |                     |- warning: static property 'israel' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'israel' 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
 90 |   public static let india: AppStoreCountry = "IN"
 91 |   public static let iraq: AppStoreCountry = "IRQ"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:90:21: warning: static property 'india' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 88 |   public static let ireland: AppStoreCountry = "IE"
 89 |   public static let israel: AppStoreCountry = "IL"
 90 |   public static let india: AppStoreCountry = "IN"
    |                     |- warning: static property 'india' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'india' 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
 91 |   public static let iraq: AppStoreCountry = "IRQ"
 92 |   public static let iceland: AppStoreCountry = "IS"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:91:21: warning: static property 'iraq' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 89 |   public static let israel: AppStoreCountry = "IL"
 90 |   public static let india: AppStoreCountry = "IN"
 91 |   public static let iraq: AppStoreCountry = "IRQ"
    |                     |- warning: static property 'iraq' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'iraq' 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
 92 |   public static let iceland: AppStoreCountry = "IS"
 93 |   public static let italy: AppStoreCountry = "IT"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:92:21: warning: static property 'iceland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 90 |   public static let india: AppStoreCountry = "IN"
 91 |   public static let iraq: AppStoreCountry = "IRQ"
 92 |   public static let iceland: AppStoreCountry = "IS"
    |                     |- warning: static property 'iceland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'iceland' 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
 93 |   public static let italy: AppStoreCountry = "IT"
 94 |   public static let jamaica: AppStoreCountry = "JM"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:93:21: warning: static property 'italy' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 91 |   public static let iraq: AppStoreCountry = "IRQ"
 92 |   public static let iceland: AppStoreCountry = "IS"
 93 |   public static let italy: AppStoreCountry = "IT"
    |                     |- warning: static property 'italy' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'italy' 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
 94 |   public static let jamaica: AppStoreCountry = "JM"
 95 |   public static let jordan: AppStoreCountry = "JO"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:94:21: warning: static property 'jamaica' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 92 |   public static let iceland: AppStoreCountry = "IS"
 93 |   public static let italy: AppStoreCountry = "IT"
 94 |   public static let jamaica: AppStoreCountry = "JM"
    |                     |- warning: static property 'jamaica' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'jamaica' 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
 95 |   public static let jordan: AppStoreCountry = "JO"
 96 |   public static let japan: AppStoreCountry = "JP"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:95:21: warning: static property 'jordan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 93 |   public static let italy: AppStoreCountry = "IT"
 94 |   public static let jamaica: AppStoreCountry = "JM"
 95 |   public static let jordan: AppStoreCountry = "JO"
    |                     |- warning: static property 'jordan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'jordan' 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
 96 |   public static let japan: AppStoreCountry = "JP"
 97 |   public static let kenya: AppStoreCountry = "KE"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:96:21: warning: static property 'japan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 94 |   public static let jamaica: AppStoreCountry = "JM"
 95 |   public static let jordan: AppStoreCountry = "JO"
 96 |   public static let japan: AppStoreCountry = "JP"
    |                     |- warning: static property 'japan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'japan' 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
 97 |   public static let kenya: AppStoreCountry = "KE"
 98 |   public static let kyrgyzstan: AppStoreCountry = "KG"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:97:21: warning: static property 'kenya' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 95 |   public static let jordan: AppStoreCountry = "JO"
 96 |   public static let japan: AppStoreCountry = "JP"
 97 |   public static let kenya: AppStoreCountry = "KE"
    |                     |- warning: static property 'kenya' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'kenya' 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
 98 |   public static let kyrgyzstan: AppStoreCountry = "KG"
 99 |   public static let cambodia: AppStoreCountry = "KH"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:98:21: warning: static property 'kyrgyzstan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 96 |   public static let japan: AppStoreCountry = "JP"
 97 |   public static let kenya: AppStoreCountry = "KE"
 98 |   public static let kyrgyzstan: AppStoreCountry = "KG"
    |                     |- warning: static property 'kyrgyzstan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'kyrgyzstan' 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
 99 |   public static let cambodia: AppStoreCountry = "KH"
100 |   public static let stKittsAndNevis: AppStoreCountry = "KN"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:99:21: warning: static property 'cambodia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 97 |   public static let kenya: AppStoreCountry = "KE"
 98 |   public static let kyrgyzstan: AppStoreCountry = "KG"
 99 |   public static let cambodia: AppStoreCountry = "KH"
    |                     |- warning: static property 'cambodia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'cambodia' 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
100 |   public static let stKittsAndNevis: AppStoreCountry = "KN"
101 |   public static let korea: AppStoreCountry = "KR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:100:21: warning: static property 'stKittsAndNevis' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 98 |   public static let kyrgyzstan: AppStoreCountry = "KG"
 99 |   public static let cambodia: AppStoreCountry = "KH"
100 |   public static let stKittsAndNevis: AppStoreCountry = "KN"
    |                     |- warning: static property 'stKittsAndNevis' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'stKittsAndNevis' 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
101 |   public static let korea: AppStoreCountry = "KR"
102 |   public static let kuwait: AppStoreCountry = "KW"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:101:21: warning: static property 'korea' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
 99 |   public static let cambodia: AppStoreCountry = "KH"
100 |   public static let stKittsAndNevis: AppStoreCountry = "KN"
101 |   public static let korea: AppStoreCountry = "KR"
    |                     |- warning: static property 'korea' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'korea' 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
102 |   public static let kuwait: AppStoreCountry = "KW"
103 |   public static let caymanIslands: AppStoreCountry = "KY"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:102:21: warning: static property 'kuwait' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
100 |   public static let stKittsAndNevis: AppStoreCountry = "KN"
101 |   public static let korea: AppStoreCountry = "KR"
102 |   public static let kuwait: AppStoreCountry = "KW"
    |                     |- warning: static property 'kuwait' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'kuwait' 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
103 |   public static let caymanIslands: AppStoreCountry = "KY"
104 |   public static let kazakhstan: AppStoreCountry = "KZ"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:103:21: warning: static property 'caymanIslands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
101 |   public static let korea: AppStoreCountry = "KR"
102 |   public static let kuwait: AppStoreCountry = "KW"
103 |   public static let caymanIslands: AppStoreCountry = "KY"
    |                     |- warning: static property 'caymanIslands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'caymanIslands' 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
104 |   public static let kazakhstan: AppStoreCountry = "KZ"
105 |   public static let laos: AppStoreCountry = "LA"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:104:21: warning: static property 'kazakhstan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
102 |   public static let kuwait: AppStoreCountry = "KW"
103 |   public static let caymanIslands: AppStoreCountry = "KY"
104 |   public static let kazakhstan: AppStoreCountry = "KZ"
    |                     |- warning: static property 'kazakhstan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'kazakhstan' 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
105 |   public static let laos: AppStoreCountry = "LA"
106 |   public static let lebanon: AppStoreCountry = "LB"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:105:21: warning: static property 'laos' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
103 |   public static let caymanIslands: AppStoreCountry = "KY"
104 |   public static let kazakhstan: AppStoreCountry = "KZ"
105 |   public static let laos: AppStoreCountry = "LA"
    |                     |- warning: static property 'laos' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'laos' 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
106 |   public static let lebanon: AppStoreCountry = "LB"
107 |   public static let libya: AppStoreCountry = "LBY"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:106:21: warning: static property 'lebanon' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
104 |   public static let kazakhstan: AppStoreCountry = "KZ"
105 |   public static let laos: AppStoreCountry = "LA"
106 |   public static let lebanon: AppStoreCountry = "LB"
    |                     |- warning: static property 'lebanon' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'lebanon' 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
107 |   public static let libya: AppStoreCountry = "LBY"
108 |   public static let stLucia: AppStoreCountry = "LC"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:107:21: warning: static property 'libya' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
105 |   public static let laos: AppStoreCountry = "LA"
106 |   public static let lebanon: AppStoreCountry = "LB"
107 |   public static let libya: AppStoreCountry = "LBY"
    |                     |- warning: static property 'libya' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'libya' 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
108 |   public static let stLucia: AppStoreCountry = "LC"
109 |   public static let sriLanka: AppStoreCountry = "LK"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:108:21: warning: static property 'stLucia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
106 |   public static let lebanon: AppStoreCountry = "LB"
107 |   public static let libya: AppStoreCountry = "LBY"
108 |   public static let stLucia: AppStoreCountry = "LC"
    |                     |- warning: static property 'stLucia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'stLucia' 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
109 |   public static let sriLanka: AppStoreCountry = "LK"
110 |   public static let liberia: AppStoreCountry = "LR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:109:21: warning: static property 'sriLanka' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
107 |   public static let libya: AppStoreCountry = "LBY"
108 |   public static let stLucia: AppStoreCountry = "LC"
109 |   public static let sriLanka: AppStoreCountry = "LK"
    |                     |- warning: static property 'sriLanka' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sriLanka' 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
110 |   public static let liberia: AppStoreCountry = "LR"
111 |   public static let lithuania: AppStoreCountry = "LT"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:110:21: warning: static property 'liberia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
108 |   public static let stLucia: AppStoreCountry = "LC"
109 |   public static let sriLanka: AppStoreCountry = "LK"
110 |   public static let liberia: AppStoreCountry = "LR"
    |                     |- warning: static property 'liberia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'liberia' 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
111 |   public static let lithuania: AppStoreCountry = "LT"
112 |   public static let luxembourg: AppStoreCountry = "LU"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:111:21: warning: static property 'lithuania' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
109 |   public static let sriLanka: AppStoreCountry = "LK"
110 |   public static let liberia: AppStoreCountry = "LR"
111 |   public static let lithuania: AppStoreCountry = "LT"
    |                     |- warning: static property 'lithuania' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'lithuania' 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
112 |   public static let luxembourg: AppStoreCountry = "LU"
113 |   public static let latvia: AppStoreCountry = "LV"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:112:21: warning: static property 'luxembourg' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
110 |   public static let liberia: AppStoreCountry = "LR"
111 |   public static let lithuania: AppStoreCountry = "LT"
112 |   public static let luxembourg: AppStoreCountry = "LU"
    |                     |- warning: static property 'luxembourg' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'luxembourg' 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
113 |   public static let latvia: AppStoreCountry = "LV"
114 |   public static let morocco: AppStoreCountry = "MAR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:113:21: warning: static property 'latvia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
111 |   public static let lithuania: AppStoreCountry = "LT"
112 |   public static let luxembourg: AppStoreCountry = "LU"
113 |   public static let latvia: AppStoreCountry = "LV"
    |                     |- warning: static property 'latvia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'latvia' 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
114 |   public static let morocco: AppStoreCountry = "MAR"
115 |   public static let moldova: AppStoreCountry = "MD"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:114:21: warning: static property 'morocco' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
112 |   public static let luxembourg: AppStoreCountry = "LU"
113 |   public static let latvia: AppStoreCountry = "LV"
114 |   public static let morocco: AppStoreCountry = "MAR"
    |                     |- warning: static property 'morocco' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'morocco' 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
115 |   public static let moldova: AppStoreCountry = "MD"
116 |   public static let maldives: AppStoreCountry = "MDV"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:115:21: warning: static property 'moldova' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
113 |   public static let latvia: AppStoreCountry = "LV"
114 |   public static let morocco: AppStoreCountry = "MAR"
115 |   public static let moldova: AppStoreCountry = "MD"
    |                     |- warning: static property 'moldova' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'moldova' 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
116 |   public static let maldives: AppStoreCountry = "MDV"
117 |   public static let madagascar: AppStoreCountry = "MG"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:116:21: warning: static property 'maldives' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
114 |   public static let morocco: AppStoreCountry = "MAR"
115 |   public static let moldova: AppStoreCountry = "MD"
116 |   public static let maldives: AppStoreCountry = "MDV"
    |                     |- warning: static property 'maldives' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'maldives' 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
117 |   public static let madagascar: AppStoreCountry = "MG"
118 |   public static let northMacedonia: AppStoreCountry = "MK"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:117:21: warning: static property 'madagascar' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
115 |   public static let moldova: AppStoreCountry = "MD"
116 |   public static let maldives: AppStoreCountry = "MDV"
117 |   public static let madagascar: AppStoreCountry = "MG"
    |                     |- warning: static property 'madagascar' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'madagascar' 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
118 |   public static let northMacedonia: AppStoreCountry = "MK"
119 |   public static let mali: AppStoreCountry = "ML"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:118:21: warning: static property 'northMacedonia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
116 |   public static let maldives: AppStoreCountry = "MDV"
117 |   public static let madagascar: AppStoreCountry = "MG"
118 |   public static let northMacedonia: AppStoreCountry = "MK"
    |                     |- warning: static property 'northMacedonia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'northMacedonia' 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
119 |   public static let mali: AppStoreCountry = "ML"
120 |   public static let myanmar: AppStoreCountry = "MMR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:119:21: warning: static property 'mali' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
117 |   public static let madagascar: AppStoreCountry = "MG"
118 |   public static let northMacedonia: AppStoreCountry = "MK"
119 |   public static let mali: AppStoreCountry = "ML"
    |                     |- warning: static property 'mali' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'mali' 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
120 |   public static let myanmar: AppStoreCountry = "MMR"
121 |   public static let mongolia: AppStoreCountry = "MN"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:120:21: warning: static property 'myanmar' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
118 |   public static let northMacedonia: AppStoreCountry = "MK"
119 |   public static let mali: AppStoreCountry = "ML"
120 |   public static let myanmar: AppStoreCountry = "MMR"
    |                     |- warning: static property 'myanmar' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'myanmar' 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
121 |   public static let mongolia: AppStoreCountry = "MN"
122 |   public static let montenegro: AppStoreCountry = "MNE"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:121:21: warning: static property 'mongolia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
119 |   public static let mali: AppStoreCountry = "ML"
120 |   public static let myanmar: AppStoreCountry = "MMR"
121 |   public static let mongolia: AppStoreCountry = "MN"
    |                     |- warning: static property 'mongolia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'mongolia' 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
122 |   public static let montenegro: AppStoreCountry = "MNE"
123 |   public static let macau: AppStoreCountry = "MO"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:122:21: warning: static property 'montenegro' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
120 |   public static let myanmar: AppStoreCountry = "MMR"
121 |   public static let mongolia: AppStoreCountry = "MN"
122 |   public static let montenegro: AppStoreCountry = "MNE"
    |                     |- warning: static property 'montenegro' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'montenegro' 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
123 |   public static let macau: AppStoreCountry = "MO"
124 |   public static let mauritania: AppStoreCountry = "MR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:123:21: warning: static property 'macau' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
121 |   public static let mongolia: AppStoreCountry = "MN"
122 |   public static let montenegro: AppStoreCountry = "MNE"
123 |   public static let macau: AppStoreCountry = "MO"
    |                     |- warning: static property 'macau' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'macau' 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
124 |   public static let mauritania: AppStoreCountry = "MR"
125 |   public static let montserrat: AppStoreCountry = "MS"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:124:21: warning: static property 'mauritania' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
122 |   public static let montenegro: AppStoreCountry = "MNE"
123 |   public static let macau: AppStoreCountry = "MO"
124 |   public static let mauritania: AppStoreCountry = "MR"
    |                     |- warning: static property 'mauritania' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'mauritania' 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
125 |   public static let montserrat: AppStoreCountry = "MS"
126 |   public static let malta: AppStoreCountry = "MT"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:125:21: warning: static property 'montserrat' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
123 |   public static let macau: AppStoreCountry = "MO"
124 |   public static let mauritania: AppStoreCountry = "MR"
125 |   public static let montserrat: AppStoreCountry = "MS"
    |                     |- warning: static property 'montserrat' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'montserrat' 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
126 |   public static let malta: AppStoreCountry = "MT"
127 |   public static let mauritius: AppStoreCountry = "MU"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:126:21: warning: static property 'malta' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
124 |   public static let mauritania: AppStoreCountry = "MR"
125 |   public static let montserrat: AppStoreCountry = "MS"
126 |   public static let malta: AppStoreCountry = "MT"
    |                     |- warning: static property 'malta' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'malta' 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
127 |   public static let mauritius: AppStoreCountry = "MU"
128 |   public static let malawi: AppStoreCountry = "MW"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:127:21: warning: static property 'mauritius' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
125 |   public static let montserrat: AppStoreCountry = "MS"
126 |   public static let malta: AppStoreCountry = "MT"
127 |   public static let mauritius: AppStoreCountry = "MU"
    |                     |- warning: static property 'mauritius' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'mauritius' 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
128 |   public static let malawi: AppStoreCountry = "MW"
129 |   public static let mexico: AppStoreCountry = "MX"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:128:21: warning: static property 'malawi' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
126 |   public static let malta: AppStoreCountry = "MT"
127 |   public static let mauritius: AppStoreCountry = "MU"
128 |   public static let malawi: AppStoreCountry = "MW"
    |                     |- warning: static property 'malawi' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'malawi' 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
129 |   public static let mexico: AppStoreCountry = "MX"
130 |   public static let malaysia: AppStoreCountry = "MY"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:129:21: warning: static property 'mexico' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
127 |   public static let mauritius: AppStoreCountry = "MU"
128 |   public static let malawi: AppStoreCountry = "MW"
129 |   public static let mexico: AppStoreCountry = "MX"
    |                     |- warning: static property 'mexico' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'mexico' 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
130 |   public static let malaysia: AppStoreCountry = "MY"
131 |   public static let mozambique: AppStoreCountry = "MZ"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:130:21: warning: static property 'malaysia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
128 |   public static let malawi: AppStoreCountry = "MW"
129 |   public static let mexico: AppStoreCountry = "MX"
130 |   public static let malaysia: AppStoreCountry = "MY"
    |                     |- warning: static property 'malaysia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'malaysia' 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
131 |   public static let mozambique: AppStoreCountry = "MZ"
132 |   public static let namibia: AppStoreCountry = "NA"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:131:21: warning: static property 'mozambique' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
129 |   public static let mexico: AppStoreCountry = "MX"
130 |   public static let malaysia: AppStoreCountry = "MY"
131 |   public static let mozambique: AppStoreCountry = "MZ"
    |                     |- warning: static property 'mozambique' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'mozambique' 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
132 |   public static let namibia: AppStoreCountry = "NA"
133 |   public static let niger: AppStoreCountry = "NE"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:132:21: warning: static property 'namibia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
130 |   public static let malaysia: AppStoreCountry = "MY"
131 |   public static let mozambique: AppStoreCountry = "MZ"
132 |   public static let namibia: AppStoreCountry = "NA"
    |                     |- warning: static property 'namibia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'namibia' 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
133 |   public static let niger: AppStoreCountry = "NE"
134 |   public static let nigeria: AppStoreCountry = "NG"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:133:21: warning: static property 'niger' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
131 |   public static let mozambique: AppStoreCountry = "MZ"
132 |   public static let namibia: AppStoreCountry = "NA"
133 |   public static let niger: AppStoreCountry = "NE"
    |                     |- warning: static property 'niger' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'niger' 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
134 |   public static let nigeria: AppStoreCountry = "NG"
135 |   public static let nicaragua: AppStoreCountry = "NI"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:134:21: warning: static property 'nigeria' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
132 |   public static let namibia: AppStoreCountry = "NA"
133 |   public static let niger: AppStoreCountry = "NE"
134 |   public static let nigeria: AppStoreCountry = "NG"
    |                     |- warning: static property 'nigeria' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'nigeria' 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
135 |   public static let nicaragua: AppStoreCountry = "NI"
136 |   public static let netherlands: AppStoreCountry = "NL"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:135:21: warning: static property 'nicaragua' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
133 |   public static let niger: AppStoreCountry = "NE"
134 |   public static let nigeria: AppStoreCountry = "NG"
135 |   public static let nicaragua: AppStoreCountry = "NI"
    |                     |- warning: static property 'nicaragua' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'nicaragua' 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
136 |   public static let netherlands: AppStoreCountry = "NL"
137 |   public static let norway: AppStoreCountry = "NO"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:136:21: warning: static property 'netherlands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
134 |   public static let nigeria: AppStoreCountry = "NG"
135 |   public static let nicaragua: AppStoreCountry = "NI"
136 |   public static let netherlands: AppStoreCountry = "NL"
    |                     |- warning: static property 'netherlands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'netherlands' 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
137 |   public static let norway: AppStoreCountry = "NO"
138 |   public static let nepal: AppStoreCountry = "NP"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:137:21: warning: static property 'norway' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
135 |   public static let nicaragua: AppStoreCountry = "NI"
136 |   public static let netherlands: AppStoreCountry = "NL"
137 |   public static let norway: AppStoreCountry = "NO"
    |                     |- warning: static property 'norway' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'norway' 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
138 |   public static let nepal: AppStoreCountry = "NP"
139 |   public static let nauru: AppStoreCountry = "NRU"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:138:21: warning: static property 'nepal' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
136 |   public static let netherlands: AppStoreCountry = "NL"
137 |   public static let norway: AppStoreCountry = "NO"
138 |   public static let nepal: AppStoreCountry = "NP"
    |                     |- warning: static property 'nepal' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'nepal' 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
139 |   public static let nauru: AppStoreCountry = "NRU"
140 |   public static let newZealand: AppStoreCountry = "NZ"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:139:21: warning: static property 'nauru' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
137 |   public static let norway: AppStoreCountry = "NO"
138 |   public static let nepal: AppStoreCountry = "NP"
139 |   public static let nauru: AppStoreCountry = "NRU"
    |                     |- warning: static property 'nauru' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'nauru' 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
140 |   public static let newZealand: AppStoreCountry = "NZ"
141 |   public static let oman: AppStoreCountry = "OM"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:140:21: warning: static property 'newZealand' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
138 |   public static let nepal: AppStoreCountry = "NP"
139 |   public static let nauru: AppStoreCountry = "NRU"
140 |   public static let newZealand: AppStoreCountry = "NZ"
    |                     |- warning: static property 'newZealand' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'newZealand' 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
141 |   public static let oman: AppStoreCountry = "OM"
142 |   public static let panama: AppStoreCountry = "PA"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:141:21: warning: static property 'oman' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
139 |   public static let nauru: AppStoreCountry = "NRU"
140 |   public static let newZealand: AppStoreCountry = "NZ"
141 |   public static let oman: AppStoreCountry = "OM"
    |                     |- warning: static property 'oman' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'oman' 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
142 |   public static let panama: AppStoreCountry = "PA"
143 |   public static let peru: AppStoreCountry = "PE"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:142:21: warning: static property 'panama' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
140 |   public static let newZealand: AppStoreCountry = "NZ"
141 |   public static let oman: AppStoreCountry = "OM"
142 |   public static let panama: AppStoreCountry = "PA"
    |                     |- warning: static property 'panama' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'panama' 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
143 |   public static let peru: AppStoreCountry = "PE"
144 |   public static let papuaNewGuinea: AppStoreCountry = "PG"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:143:21: warning: static property 'peru' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
141 |   public static let oman: AppStoreCountry = "OM"
142 |   public static let panama: AppStoreCountry = "PA"
143 |   public static let peru: AppStoreCountry = "PE"
    |                     |- warning: static property 'peru' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'peru' 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
144 |   public static let papuaNewGuinea: AppStoreCountry = "PG"
145 |   public static let philippines: AppStoreCountry = "PH"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:144:21: warning: static property 'papuaNewGuinea' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
142 |   public static let panama: AppStoreCountry = "PA"
143 |   public static let peru: AppStoreCountry = "PE"
144 |   public static let papuaNewGuinea: AppStoreCountry = "PG"
    |                     |- warning: static property 'papuaNewGuinea' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'papuaNewGuinea' 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
145 |   public static let philippines: AppStoreCountry = "PH"
146 |   public static let pakistan: AppStoreCountry = "PK"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:145:21: warning: static property 'philippines' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
143 |   public static let peru: AppStoreCountry = "PE"
144 |   public static let papuaNewGuinea: AppStoreCountry = "PG"
145 |   public static let philippines: AppStoreCountry = "PH"
    |                     |- warning: static property 'philippines' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'philippines' 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
146 |   public static let pakistan: AppStoreCountry = "PK"
147 |   public static let poland: AppStoreCountry = "PL"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:146:21: warning: static property 'pakistan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
144 |   public static let papuaNewGuinea: AppStoreCountry = "PG"
145 |   public static let philippines: AppStoreCountry = "PH"
146 |   public static let pakistan: AppStoreCountry = "PK"
    |                     |- warning: static property 'pakistan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'pakistan' 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
147 |   public static let poland: AppStoreCountry = "PL"
148 |   public static let portugal: AppStoreCountry = "PT"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:147:21: warning: static property 'poland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
145 |   public static let philippines: AppStoreCountry = "PH"
146 |   public static let pakistan: AppStoreCountry = "PK"
147 |   public static let poland: AppStoreCountry = "PL"
    |                     |- warning: static property 'poland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'poland' 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
148 |   public static let portugal: AppStoreCountry = "PT"
149 |   public static let palau: AppStoreCountry = "PW"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:148:21: warning: static property 'portugal' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
146 |   public static let pakistan: AppStoreCountry = "PK"
147 |   public static let poland: AppStoreCountry = "PL"
148 |   public static let portugal: AppStoreCountry = "PT"
    |                     |- warning: static property 'portugal' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'portugal' 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
149 |   public static let palau: AppStoreCountry = "PW"
150 |   public static let paraguay: AppStoreCountry = "PY"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:149:21: warning: static property 'palau' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
147 |   public static let poland: AppStoreCountry = "PL"
148 |   public static let portugal: AppStoreCountry = "PT"
149 |   public static let palau: AppStoreCountry = "PW"
    |                     |- warning: static property 'palau' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'palau' 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
150 |   public static let paraguay: AppStoreCountry = "PY"
151 |   public static let qatar: AppStoreCountry = "QA"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:150:21: warning: static property 'paraguay' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
148 |   public static let portugal: AppStoreCountry = "PT"
149 |   public static let palau: AppStoreCountry = "PW"
150 |   public static let paraguay: AppStoreCountry = "PY"
    |                     |- warning: static property 'paraguay' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'paraguay' 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
151 |   public static let qatar: AppStoreCountry = "QA"
152 |   public static let romania: AppStoreCountry = "RO"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:151:21: warning: static property 'qatar' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
149 |   public static let palau: AppStoreCountry = "PW"
150 |   public static let paraguay: AppStoreCountry = "PY"
151 |   public static let qatar: AppStoreCountry = "QA"
    |                     |- warning: static property 'qatar' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'qatar' 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
152 |   public static let romania: AppStoreCountry = "RO"
153 |   public static let russia: AppStoreCountry = "RU"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:152:21: warning: static property 'romania' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
150 |   public static let paraguay: AppStoreCountry = "PY"
151 |   public static let qatar: AppStoreCountry = "QA"
152 |   public static let romania: AppStoreCountry = "RO"
    |                     |- warning: static property 'romania' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'romania' 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
153 |   public static let russia: AppStoreCountry = "RU"
154 |   public static let rwanda: AppStoreCountry = "RWA"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:153:21: warning: static property 'russia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
151 |   public static let qatar: AppStoreCountry = "QA"
152 |   public static let romania: AppStoreCountry = "RO"
153 |   public static let russia: AppStoreCountry = "RU"
    |                     |- warning: static property 'russia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'russia' 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
154 |   public static let rwanda: AppStoreCountry = "RWA"
155 |   public static let saudiArabia: AppStoreCountry = "SA"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:154:21: warning: static property 'rwanda' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
152 |   public static let romania: AppStoreCountry = "RO"
153 |   public static let russia: AppStoreCountry = "RU"
154 |   public static let rwanda: AppStoreCountry = "RWA"
    |                     |- warning: static property 'rwanda' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'rwanda' 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
155 |   public static let saudiArabia: AppStoreCountry = "SA"
156 |   public static let solomonIslands: AppStoreCountry = "SB"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:155:21: warning: static property 'saudiArabia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
153 |   public static let russia: AppStoreCountry = "RU"
154 |   public static let rwanda: AppStoreCountry = "RWA"
155 |   public static let saudiArabia: AppStoreCountry = "SA"
    |                     |- warning: static property 'saudiArabia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'saudiArabia' 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
156 |   public static let solomonIslands: AppStoreCountry = "SB"
157 |   public static let seychelles: AppStoreCountry = "SC"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:156:21: warning: static property 'solomonIslands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
154 |   public static let rwanda: AppStoreCountry = "RWA"
155 |   public static let saudiArabia: AppStoreCountry = "SA"
156 |   public static let solomonIslands: AppStoreCountry = "SB"
    |                     |- warning: static property 'solomonIslands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'solomonIslands' 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
157 |   public static let seychelles: AppStoreCountry = "SC"
158 |   public static let sweden: AppStoreCountry = "SE"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:157:21: warning: static property 'seychelles' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
155 |   public static let saudiArabia: AppStoreCountry = "SA"
156 |   public static let solomonIslands: AppStoreCountry = "SB"
157 |   public static let seychelles: AppStoreCountry = "SC"
    |                     |- warning: static property 'seychelles' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'seychelles' 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
158 |   public static let sweden: AppStoreCountry = "SE"
159 |   public static let singapore: AppStoreCountry = "SG"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:158:21: warning: static property 'sweden' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
156 |   public static let solomonIslands: AppStoreCountry = "SB"
157 |   public static let seychelles: AppStoreCountry = "SC"
158 |   public static let sweden: AppStoreCountry = "SE"
    |                     |- warning: static property 'sweden' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sweden' 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
159 |   public static let singapore: AppStoreCountry = "SG"
160 |   public static let slovenia: AppStoreCountry = "SI"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:159:21: warning: static property 'singapore' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
157 |   public static let seychelles: AppStoreCountry = "SC"
158 |   public static let sweden: AppStoreCountry = "SE"
159 |   public static let singapore: AppStoreCountry = "SG"
    |                     |- warning: static property 'singapore' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'singapore' 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
160 |   public static let slovenia: AppStoreCountry = "SI"
161 |   public static let slovakia: AppStoreCountry = "SK"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:160:21: warning: static property 'slovenia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
158 |   public static let sweden: AppStoreCountry = "SE"
159 |   public static let singapore: AppStoreCountry = "SG"
160 |   public static let slovenia: AppStoreCountry = "SI"
    |                     |- warning: static property 'slovenia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'slovenia' 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
161 |   public static let slovakia: AppStoreCountry = "SK"
162 |   public static let sierraLeone: AppStoreCountry = "SL"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:161:21: warning: static property 'slovakia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
159 |   public static let singapore: AppStoreCountry = "SG"
160 |   public static let slovenia: AppStoreCountry = "SI"
161 |   public static let slovakia: AppStoreCountry = "SK"
    |                     |- warning: static property 'slovakia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'slovakia' 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
162 |   public static let sierraLeone: AppStoreCountry = "SL"
163 |   public static let senegal: AppStoreCountry = "SN"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:162:21: warning: static property 'sierraLeone' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
160 |   public static let slovenia: AppStoreCountry = "SI"
161 |   public static let slovakia: AppStoreCountry = "SK"
162 |   public static let sierraLeone: AppStoreCountry = "SL"
    |                     |- warning: static property 'sierraLeone' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sierraLeone' 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
163 |   public static let senegal: AppStoreCountry = "SN"
164 |   public static let suriname: AppStoreCountry = "SR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:163:21: warning: static property 'senegal' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
161 |   public static let slovakia: AppStoreCountry = "SK"
162 |   public static let sierraLeone: AppStoreCountry = "SL"
163 |   public static let senegal: AppStoreCountry = "SN"
    |                     |- warning: static property 'senegal' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'senegal' 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
164 |   public static let suriname: AppStoreCountry = "SR"
165 |   public static let serbia: AppStoreCountry = "SRB"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:164:21: warning: static property 'suriname' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
162 |   public static let sierraLeone: AppStoreCountry = "SL"
163 |   public static let senegal: AppStoreCountry = "SN"
164 |   public static let suriname: AppStoreCountry = "SR"
    |                     |- warning: static property 'suriname' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'suriname' 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
165 |   public static let serbia: AppStoreCountry = "SRB"
166 |   public static let saoTomeAndPrincipe: AppStoreCountry = "ST"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:165:21: warning: static property 'serbia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
163 |   public static let senegal: AppStoreCountry = "SN"
164 |   public static let suriname: AppStoreCountry = "SR"
165 |   public static let serbia: AppStoreCountry = "SRB"
    |                     |- warning: static property 'serbia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'serbia' 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
166 |   public static let saoTomeAndPrincipe: AppStoreCountry = "ST"
167 |   public static let elSalvador: AppStoreCountry = "SV"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:166:21: warning: static property 'saoTomeAndPrincipe' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
164 |   public static let suriname: AppStoreCountry = "SR"
165 |   public static let serbia: AppStoreCountry = "SRB"
166 |   public static let saoTomeAndPrincipe: AppStoreCountry = "ST"
    |                     |- warning: static property 'saoTomeAndPrincipe' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'saoTomeAndPrincipe' 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
167 |   public static let elSalvador: AppStoreCountry = "SV"
168 |   public static let swaziland: AppStoreCountry = "SZ"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:167:21: warning: static property 'elSalvador' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
165 |   public static let serbia: AppStoreCountry = "SRB"
166 |   public static let saoTomeAndPrincipe: AppStoreCountry = "ST"
167 |   public static let elSalvador: AppStoreCountry = "SV"
    |                     |- warning: static property 'elSalvador' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'elSalvador' 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
168 |   public static let swaziland: AppStoreCountry = "SZ"
169 |   public static let turksAndCaicosIslands: AppStoreCountry = "TC"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:168:21: warning: static property 'swaziland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
166 |   public static let saoTomeAndPrincipe: AppStoreCountry = "ST"
167 |   public static let elSalvador: AppStoreCountry = "SV"
168 |   public static let swaziland: AppStoreCountry = "SZ"
    |                     |- warning: static property 'swaziland' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'swaziland' 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
169 |   public static let turksAndCaicosIslands: AppStoreCountry = "TC"
170 |   public static let chad: AppStoreCountry = "TD"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:169:21: warning: static property 'turksAndCaicosIslands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
167 |   public static let elSalvador: AppStoreCountry = "SV"
168 |   public static let swaziland: AppStoreCountry = "SZ"
169 |   public static let turksAndCaicosIslands: AppStoreCountry = "TC"
    |                     |- warning: static property 'turksAndCaicosIslands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'turksAndCaicosIslands' 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
170 |   public static let chad: AppStoreCountry = "TD"
171 |   public static let thailand: AppStoreCountry = "TH"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:170:21: warning: static property 'chad' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
168 |   public static let swaziland: AppStoreCountry = "SZ"
169 |   public static let turksAndCaicosIslands: AppStoreCountry = "TC"
170 |   public static let chad: AppStoreCountry = "TD"
    |                     |- warning: static property 'chad' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'chad' 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
171 |   public static let thailand: AppStoreCountry = "TH"
172 |   public static let tajikistan: AppStoreCountry = "TJ"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:171:21: warning: static property 'thailand' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
169 |   public static let turksAndCaicosIslands: AppStoreCountry = "TC"
170 |   public static let chad: AppStoreCountry = "TD"
171 |   public static let thailand: AppStoreCountry = "TH"
    |                     |- warning: static property 'thailand' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'thailand' 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
172 |   public static let tajikistan: AppStoreCountry = "TJ"
173 |   public static let turkmenistan: AppStoreCountry = "TM"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:172:21: warning: static property 'tajikistan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
170 |   public static let chad: AppStoreCountry = "TD"
171 |   public static let thailand: AppStoreCountry = "TH"
172 |   public static let tajikistan: AppStoreCountry = "TJ"
    |                     |- warning: static property 'tajikistan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'tajikistan' 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
173 |   public static let turkmenistan: AppStoreCountry = "TM"
174 |   public static let tunisia: AppStoreCountry = "TN"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:173:21: warning: static property 'turkmenistan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
171 |   public static let thailand: AppStoreCountry = "TH"
172 |   public static let tajikistan: AppStoreCountry = "TJ"
173 |   public static let turkmenistan: AppStoreCountry = "TM"
    |                     |- warning: static property 'turkmenistan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'turkmenistan' 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
174 |   public static let tunisia: AppStoreCountry = "TN"
175 |   public static let tonga: AppStoreCountry = "TON"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:174:21: warning: static property 'tunisia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
172 |   public static let tajikistan: AppStoreCountry = "TJ"
173 |   public static let turkmenistan: AppStoreCountry = "TM"
174 |   public static let tunisia: AppStoreCountry = "TN"
    |                     |- warning: static property 'tunisia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'tunisia' 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
175 |   public static let tonga: AppStoreCountry = "TON"
176 |   public static let turkey: AppStoreCountry = "TR"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:175:21: warning: static property 'tonga' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
173 |   public static let turkmenistan: AppStoreCountry = "TM"
174 |   public static let tunisia: AppStoreCountry = "TN"
175 |   public static let tonga: AppStoreCountry = "TON"
    |                     |- warning: static property 'tonga' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'tonga' 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
176 |   public static let turkey: AppStoreCountry = "TR"
177 |   public static let trinidadAndTobago: AppStoreCountry = "TT"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:176:21: warning: static property 'turkey' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
174 |   public static let tunisia: AppStoreCountry = "TN"
175 |   public static let tonga: AppStoreCountry = "TON"
176 |   public static let turkey: AppStoreCountry = "TR"
    |                     |- warning: static property 'turkey' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'turkey' 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
177 |   public static let trinidadAndTobago: AppStoreCountry = "TT"
178 |   public static let taiwan: AppStoreCountry = "TW"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:177:21: warning: static property 'trinidadAndTobago' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
175 |   public static let tonga: AppStoreCountry = "TON"
176 |   public static let turkey: AppStoreCountry = "TR"
177 |   public static let trinidadAndTobago: AppStoreCountry = "TT"
    |                     |- warning: static property 'trinidadAndTobago' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'trinidadAndTobago' 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
178 |   public static let taiwan: AppStoreCountry = "TW"
179 |   public static let tanzania: AppStoreCountry = "TZ"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:178:21: warning: static property 'taiwan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
176 |   public static let turkey: AppStoreCountry = "TR"
177 |   public static let trinidadAndTobago: AppStoreCountry = "TT"
178 |   public static let taiwan: AppStoreCountry = "TW"
    |                     |- warning: static property 'taiwan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'taiwan' 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
179 |   public static let tanzania: AppStoreCountry = "TZ"
180 |   public static let ukraine: AppStoreCountry = "UA"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:179:21: warning: static property 'tanzania' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
177 |   public static let trinidadAndTobago: AppStoreCountry = "TT"
178 |   public static let taiwan: AppStoreCountry = "TW"
179 |   public static let tanzania: AppStoreCountry = "TZ"
    |                     |- warning: static property 'tanzania' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'tanzania' 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
180 |   public static let ukraine: AppStoreCountry = "UA"
181 |   public static let uganda: AppStoreCountry = "UG"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:180:21: warning: static property 'ukraine' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
178 |   public static let taiwan: AppStoreCountry = "TW"
179 |   public static let tanzania: AppStoreCountry = "TZ"
180 |   public static let ukraine: AppStoreCountry = "UA"
    |                     |- warning: static property 'ukraine' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'ukraine' 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
181 |   public static let uganda: AppStoreCountry = "UG"
182 |   public static let unitedStates: AppStoreCountry = "US"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:181:21: warning: static property 'uganda' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
179 |   public static let tanzania: AppStoreCountry = "TZ"
180 |   public static let ukraine: AppStoreCountry = "UA"
181 |   public static let uganda: AppStoreCountry = "UG"
    |                     |- warning: static property 'uganda' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'uganda' 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
182 |   public static let unitedStates: AppStoreCountry = "US"
183 |   public static let uruguay: AppStoreCountry = "UY"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:183:21: warning: static property 'uruguay' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
181 |   public static let uganda: AppStoreCountry = "UG"
182 |   public static let unitedStates: AppStoreCountry = "US"
183 |   public static let uruguay: AppStoreCountry = "UY"
    |                     |- warning: static property 'uruguay' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'uruguay' 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
184 |   public static let uzbekistan: AppStoreCountry = "UZ"
185 |   public static let stVincentAndTheGrenadines: AppStoreCountry = "VC"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:184:21: warning: static property 'uzbekistan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
182 |   public static let unitedStates: AppStoreCountry = "US"
183 |   public static let uruguay: AppStoreCountry = "UY"
184 |   public static let uzbekistan: AppStoreCountry = "UZ"
    |                     |- warning: static property 'uzbekistan' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'uzbekistan' 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
185 |   public static let stVincentAndTheGrenadines: AppStoreCountry = "VC"
186 |   public static let venezuela: AppStoreCountry = "VE"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:185:21: warning: static property 'stVincentAndTheGrenadines' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
183 |   public static let uruguay: AppStoreCountry = "UY"
184 |   public static let uzbekistan: AppStoreCountry = "UZ"
185 |   public static let stVincentAndTheGrenadines: AppStoreCountry = "VC"
    |                     |- warning: static property 'stVincentAndTheGrenadines' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'stVincentAndTheGrenadines' 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
186 |   public static let venezuela: AppStoreCountry = "VE"
187 |   public static let britishVirginIslands: AppStoreCountry = "VG"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:186:21: warning: static property 'venezuela' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
184 |   public static let uzbekistan: AppStoreCountry = "UZ"
185 |   public static let stVincentAndTheGrenadines: AppStoreCountry = "VC"
186 |   public static let venezuela: AppStoreCountry = "VE"
    |                     |- warning: static property 'venezuela' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'venezuela' 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
187 |   public static let britishVirginIslands: AppStoreCountry = "VG"
188 |   public static let vietnam: AppStoreCountry = "VN"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:187:21: warning: static property 'britishVirginIslands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
185 |   public static let stVincentAndTheGrenadines: AppStoreCountry = "VC"
186 |   public static let venezuela: AppStoreCountry = "VE"
187 |   public static let britishVirginIslands: AppStoreCountry = "VG"
    |                     |- warning: static property 'britishVirginIslands' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'britishVirginIslands' 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
188 |   public static let vietnam: AppStoreCountry = "VN"
189 |   public static let vanuatu: AppStoreCountry = "VUT"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:188:21: warning: static property 'vietnam' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
186 |   public static let venezuela: AppStoreCountry = "VE"
187 |   public static let britishVirginIslands: AppStoreCountry = "VG"
188 |   public static let vietnam: AppStoreCountry = "VN"
    |                     |- warning: static property 'vietnam' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'vietnam' 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
189 |   public static let vanuatu: AppStoreCountry = "VUT"
190 |   public static let kosovo: AppStoreCountry = "XKS"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:189:21: warning: static property 'vanuatu' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
187 |   public static let britishVirginIslands: AppStoreCountry = "VG"
188 |   public static let vietnam: AppStoreCountry = "VN"
189 |   public static let vanuatu: AppStoreCountry = "VUT"
    |                     |- warning: static property 'vanuatu' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'vanuatu' 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
190 |   public static let kosovo: AppStoreCountry = "XKS"
191 |   public static let yemen: AppStoreCountry = "YE"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:190:21: warning: static property 'kosovo' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
188 |   public static let vietnam: AppStoreCountry = "VN"
189 |   public static let vanuatu: AppStoreCountry = "VUT"
190 |   public static let kosovo: AppStoreCountry = "XKS"
    |                     |- warning: static property 'kosovo' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'kosovo' 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
191 |   public static let yemen: AppStoreCountry = "YE"
192 |   public static let southAfrica: AppStoreCountry = "ZA"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:191:21: warning: static property 'yemen' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
189 |   public static let vanuatu: AppStoreCountry = "VUT"
190 |   public static let kosovo: AppStoreCountry = "XKS"
191 |   public static let yemen: AppStoreCountry = "YE"
    |                     |- warning: static property 'yemen' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'yemen' 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
192 |   public static let southAfrica: AppStoreCountry = "ZA"
193 |   public static let zambia: AppStoreCountry = "ZMB"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:192:21: warning: static property 'southAfrica' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
190 |   public static let kosovo: AppStoreCountry = "XKS"
191 |   public static let yemen: AppStoreCountry = "YE"
192 |   public static let southAfrica: AppStoreCountry = "ZA"
    |                     |- warning: static property 'southAfrica' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'southAfrica' 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
193 |   public static let zambia: AppStoreCountry = "ZMB"
194 |   public static let zimbabwe: AppStoreCountry = "ZW"
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:193:21: warning: static property 'zambia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
191 |   public static let yemen: AppStoreCountry = "YE"
192 |   public static let southAfrica: AppStoreCountry = "ZA"
193 |   public static let zambia: AppStoreCountry = "ZMB"
    |                     |- warning: static property 'zambia' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'zambia' 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
194 |   public static let zimbabwe: AppStoreCountry = "ZW"
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift:194:21: warning: static property 'zimbabwe' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | ///
 13 | /// [List of country codes](https://help.apple.com/app-store-connect/#/dev997f9cf7c)
 14 | public struct AppStoreCountry {
    |               `- note: consider making struct 'AppStoreCountry' conform to the 'Sendable' protocol
 15 |     /// Raw country code. ex. "US" for United States.
 16 |     public let code: String?
    :
192 |   public static let southAfrica: AppStoreCountry = "ZA"
193 |   public static let zambia: AppStoreCountry = "ZMB"
194 |   public static let zimbabwe: AppStoreCountry = "ZW"
    |                     |- warning: static property 'zimbabwe' is not concurrency-safe because non-'Sendable' type 'AppStoreCountry' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'zimbabwe' 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
195 | }
196 |
/Users/admin/builder/spi-builder-workspace/Sources/Siren.swift:17:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Siren' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// The Siren Class.
 12 | public final class Siren: NSObject {
    |                    `- note: class 'Siren' does not conform to the 'Sendable' protocol
 13 |     /// Return results or errors obtained from performing a version check with Siren.
 14 |     public typealias ResultsHandler = (Result<UpdateResults, KnownError>) -> Void
 15 |
 16 |     /// The Siren singleton. The main point of entry to the Siren library.
 17 |     public static let shared = Siren()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Siren' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' 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
 18 |
 19 |     /// The manager that controls the App Store API that is
/Users/admin/builder/spi-builder-workspace/Sources/View Controllers/SirenViewController.swift:15:25: error: cannot find type 'UIWindow' in scope
13 |     /// This creates a retain cycle.
14 |     /// This is needed to retain the UIAlertController in iOS 13.0+
15 |     var retainedWindow: UIWindow?
   |                         `- error: cannot find type 'UIWindow' in scope
16 |
17 |     deinit {
/Users/admin/builder/spi-builder-workspace/Sources/View Controllers/SirenViewController.swift:12:34: error: cannot find type 'UIViewController' in scope
10 |
11 | /// `UIViewController` Extension for Siren
12 | final class SirenViewController: UIViewController {
   |                                  `- error: cannot find type 'UIViewController' in scope
13 |     /// This creates a retain cycle.
14 |     /// This is needed to retain the UIAlertController in iOS 13.0+
SwiftEmitModule normal arm64 Emitting\ module\ for\ Siren (in target 'Siren' from project 'Siren')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/BundleExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/DateExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIAlertControllerExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/UserDefaultsExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/APIManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/PresentationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/RulesManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/APIModel.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/AlertAction.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/AlertConstants.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/Model.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/PerformCheck.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/Rules.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/UpdateResults.swift /Users/admin/builder/spi-builder-workspace/Sources/Siren.swift /Users/admin/builder/spi-builder-workspace/Sources/Utilities/DataParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Utilities/KnownError.swift /Users/admin/builder/spi-builder-workspace/Sources/View\ Controllers/SirenViewController.swift -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/Siren_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Siren -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/Siren.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/Siren.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/Siren-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/Siren-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/Siren-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/Siren.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/Siren.abi.json
SwiftCompile normal armv7k Compiling\ resource_bundle_accessor.swift,\ BundleExtension.swift,\ DateExtension.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/BundleExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/DateExtension.swift (in target 'Siren' from project 'Siren')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources/resource_bundle_accessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extensions/BundleExtension.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extensions/DateExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIAlertControllerExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/UserDefaultsExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/APIManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/PresentationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/RulesManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/APIModel.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/AlertAction.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/AlertConstants.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/Model.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/PerformCheck.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/Rules.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/UpdateResults.swift /Users/admin/builder/spi-builder-workspace/Sources/Siren.swift /Users/admin/builder/spi-builder-workspace/Sources/Utilities/DataParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Utilities/KnownError.swift /Users/admin/builder/spi-builder-workspace/Sources/View\ Controllers/SirenViewController.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/armv7k/supplementaryOutputs-3 -target armv7k-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/armv7k/Siren_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Siren -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/armv7k/resource_bundle_accessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/armv7k/BundleExtension.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/armv7k/DateExtension.o -index-unit-output-path /Siren.build/Debug-watchos/Siren.build/Objects-normal/armv7k/resource_bundle_accessor.o -index-unit-output-path /Siren.build/Debug-watchos/Siren.build/Objects-normal/armv7k/BundleExtension.o -index-unit-output-path /Siren.build/Debug-watchos/Siren.build/Objects-normal/armv7k/DateExtension.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ APIManager.swift,\ PresentationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/APIManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/PresentationManager.swift (in target 'Siren' from project 'Siren')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/BundleExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/DateExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIAlertControllerExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/UserDefaultsExtension.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Managers/APIManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Managers/PresentationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/RulesManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/APIModel.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/AlertAction.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/AlertConstants.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/AppStoreCountry.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/Localization.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/Model.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/PerformCheck.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/Rules.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/UpdateResults.swift /Users/admin/builder/spi-builder-workspace/Sources/Siren.swift /Users/admin/builder/spi-builder-workspace/Sources/Utilities/DataParser.swift /Users/admin/builder/spi-builder-workspace/Sources/Utilities/KnownError.swift /Users/admin/builder/spi-builder-workspace/Sources/View\ Controllers/SirenViewController.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/APIManager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/APIManager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/APIManager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/APIManager.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/PresentationManager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/PresentationManager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/PresentationManager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/PresentationManager.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/Siren_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Siren -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/APIManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/PresentationManager.o -index-unit-output-path /Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/APIManager.o -index-unit-output-path /Siren.build/Debug-watchos/Siren.build/Objects-normal/arm64/PresentationManager.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Siren' from project 'Siren')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Siren_Siren' from project 'Siren')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Siren (in target 'Siren' from project 'Siren')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ Siren (in target 'Siren' from project 'Siren')
	SwiftCompile normal arm64 Compiling\ APIManager.swift,\ PresentationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/APIManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Managers/PresentationManager.swift (in target 'Siren' from project 'Siren')
(3 failures)
BUILD FAILURE 6.0 watchOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.