The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of DiscordKit, reference 1.0.0 (c2f7e6), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 11:05:40 UTC.

Swift 6 data race errors: 135

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 60 | extension AudioSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 61 |   public static let protoMessageName: String = "AudioSettings"
 62 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |     1: .same(proto: "user"),
 64 |     2: .same(proto: "stream"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Audio.pb.swift:100:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 98 | extension AudioContextSetting: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 99 |   public static let protoMessageName: String = "AudioContextSetting"
100 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "muted"),
102 |     2: .same(proto: "volume"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:58:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 56 | extension FavoriteChannelType: CaseIterable {
 57 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 58 |   public static var allCases: [FavoriteChannelType] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |     .unsetFavoriteChannelType,
 60 |     .referenceOriginal,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:108:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
106 |
107 | extension FavoriteChannelType: SwiftProtobuf._ProtoNameProviding {
108 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
109 |     0: .same(proto: "UNSET_FAVORITE_CHANNEL_TYPE"),
110 |     1: .same(proto: "REFERENCE_ORIGINAL"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
106 |
107 | extension FavoriteChannelType: SwiftProtobuf._ProtoNameProviding {
108 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "UNSET_FAVORITE_CHANNEL_TYPE"),
110 |     1: .same(proto: "REFERENCE_ORIGINAL"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:117:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
115 | extension Favorites: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
116 |   public static let protoMessageName: String = "Favorites"
117 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "favorite_channels"),
119 |     2: .same(proto: "muted"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:155:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
153 | extension FavoriteChannel: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
154 |   public static let protoMessageName: String = "FavoriteChannel"
155 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "nickname"),
157 |     2: .same(proto: "type"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:58:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 56 | extension GIFType: CaseIterable {
 57 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 58 |   public static var allCases: [GIFType] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |     .none,
 60 |     .image,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:111:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
109 |
110 | extension GIFType: SwiftProtobuf._ProtoNameProviding {
111 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
112 |     0: .same(proto: "NONE"),
113 |     1: .same(proto: "IMAGE"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
109 |
110 | extension GIFType: SwiftProtobuf._ProtoNameProviding {
111 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "NONE"),
113 |     1: .same(proto: "IMAGE"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:120:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
118 | extension FavoriteGIFs: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
119 |   public static let protoMessageName: String = "FavoriteGIFs"
120 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "gifs"),
122 |     2: .standard(proto: "hide_tooltip"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:158:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
156 | extension FavoriteGIF: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
157 |   public static let protoMessageName: String = "FavoriteGIF"
158 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "type"),
160 |     2: .same(proto: "src"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:58:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 56 | extension FavoriteChannelType: CaseIterable {
 57 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 58 |   public static var allCases: [FavoriteChannelType] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |     .unsetFavoriteChannelType,
 60 |     .referenceOriginal,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:108:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
106 |
107 | extension FavoriteChannelType: SwiftProtobuf._ProtoNameProviding {
108 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
109 |     0: .same(proto: "UNSET_FAVORITE_CHANNEL_TYPE"),
110 |     1: .same(proto: "REFERENCE_ORIGINAL"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
106 |
107 | extension FavoriteChannelType: SwiftProtobuf._ProtoNameProviding {
108 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "UNSET_FAVORITE_CHANNEL_TYPE"),
110 |     1: .same(proto: "REFERENCE_ORIGINAL"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:117:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
115 | extension Favorites: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
116 |   public static let protoMessageName: String = "Favorites"
117 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "favorite_channels"),
119 |     2: .same(proto: "muted"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:155:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
153 | extension FavoriteChannel: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
154 |   public static let protoMessageName: String = "FavoriteChannel"
155 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "nickname"),
157 |     2: .same(proto: "type"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:58:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 56 | extension GIFType: CaseIterable {
 57 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 58 |   public static var allCases: [GIFType] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |     .none,
 60 |     .image,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:111:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
109 |
110 | extension GIFType: SwiftProtobuf._ProtoNameProviding {
111 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
112 |     0: .same(proto: "NONE"),
113 |     1: .same(proto: "IMAGE"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
109 |
110 | extension GIFType: SwiftProtobuf._ProtoNameProviding {
111 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "NONE"),
113 |     1: .same(proto: "IMAGE"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:120:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
118 | extension FavoriteGIFs: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
119 |   public static let protoMessageName: String = "FavoriteGIFs"
120 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "gifs"),
122 |     2: .standard(proto: "hide_tooltip"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:158:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
156 | extension FavoriteGIF: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
157 |   public static let protoMessageName: String = "FavoriteGIF"
158 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "type"),
160 |     2: .same(proto: "src"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Notification.pb.swift:64:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 62 | extension NotificationSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "NotificationSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 65 |     1: .standard(proto: "show_in_app_notifications"),
 66 |     2: .standard(proto: "notify_friends_on_go_live"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Notification.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 62 | extension NotificationSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "NotificationSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     1: .standard(proto: "show_in_app_notifications"),
 66 |     2: .standard(proto: "notify_friends_on_go_live"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:57:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 55 | extension GuildActivityStatusRestrictionDefault: CaseIterable {
 56 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 57 |   public static var allCases: [GuildActivityStatusRestrictionDefault] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     .off,
 59 |     .onForLargeGuilds,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:179:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | extension GuildActivityStatusRestrictionDefault: SwiftProtobuf._ProtoNameProviding {
179 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
180 |     0: .same(proto: "OFF"),
181 |     1: .same(proto: "ON_FOR_LARGE_GUILDS"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
177 |
178 | extension GuildActivityStatusRestrictionDefault: SwiftProtobuf._ProtoNameProviding {
179 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "OFF"),
181 |     1: .same(proto: "ON_FOR_LARGE_GUILDS"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:187:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
185 | extension PrivacySettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
186 |   public static let protoMessageName: String = "PrivacySettings"
187 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "allow_activity_party_privacy_friends"),
189 |     2: .standard(proto: "allow_activity_party_privacy_voice_channel"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Notification.pb.swift:64:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 62 | extension NotificationSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "NotificationSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 65 |     1: .standard(proto: "show_in_app_notifications"),
 66 |     2: .standard(proto: "notify_friends_on_go_live"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Notification.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 62 | extension NotificationSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "NotificationSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     1: .standard(proto: "show_in_app_notifications"),
 66 |     2: .standard(proto: "notify_friends_on_go_live"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:57:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 55 | extension GuildActivityStatusRestrictionDefault: CaseIterable {
 56 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 57 |   public static var allCases: [GuildActivityStatusRestrictionDefault] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     .off,
 59 |     .onForLargeGuilds,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:179:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | extension GuildActivityStatusRestrictionDefault: SwiftProtobuf._ProtoNameProviding {
179 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
180 |     0: .same(proto: "OFF"),
181 |     1: .same(proto: "ON_FOR_LARGE_GUILDS"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
177 |
178 | extension GuildActivityStatusRestrictionDefault: SwiftProtobuf._ProtoNameProviding {
179 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "OFF"),
181 |     1: .same(proto: "ON_FOR_LARGE_GUILDS"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:187:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
185 | extension PrivacySettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
186 |   public static let protoMessageName: String = "PrivacySettings"
187 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "allow_activity_party_privacy_friends"),
189 |     2: .standard(proto: "allow_activity_party_privacy_voice_channel"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/TextAndImages.pb.swift:295:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'TextAndImagesSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
268 |   ]
269 |
270 |   fileprivate class _StorageClass {
    |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
271 |     var _diversitySurrogate: SwiftProtobuf.Google_Protobuf_StringValue? = nil
272 |     var _useRichChatInput: SwiftProtobuf.Google_Protobuf_BoolValue? = nil
    :
293 |     var _useLegacyChatInput: SwiftProtobuf.Google_Protobuf_BoolValue? = nil
294 |
295 |     static let defaultInstance = _StorageClass()
    |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'TextAndImagesSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultInstance' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
296 |
297 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/TextAndImages.pb.swift:244:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
242 | extension TextAndImagesSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
243 |   public static let protoMessageName: String = "TextAndImagesSettings"
244 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
245 |     1: .standard(proto: "diversity_surrogate"),
246 |     2: .standard(proto: "use_rich_chat_input"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/TextAndImages.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
242 | extension TextAndImagesSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
243 |   public static let protoMessageName: String = "TextAndImagesSettings"
244 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
245 |     1: .standard(proto: "diversity_surrogate"),
246 |     2: .standard(proto: "use_rich_chat_input"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/UserContent.pb.swift:64:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 62 | extension UserContentSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "UserContentSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 65 |     1: .standard(proto: "dismissed_contents"),
 66 |     2: .standard(proto: "last_dismissed_outbound_promotion_start_date"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/UserContent.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 62 | extension UserContentSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "UserContentSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     1: .standard(proto: "dismissed_contents"),
 66 |     2: .standard(proto: "last_dismissed_outbound_promotion_start_date"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/TextAndImages.pb.swift:295:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'TextAndImagesSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
268 |   ]
269 |
270 |   fileprivate class _StorageClass {
    |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
271 |     var _diversitySurrogate: SwiftProtobuf.Google_Protobuf_StringValue? = nil
272 |     var _useRichChatInput: SwiftProtobuf.Google_Protobuf_BoolValue? = nil
    :
293 |     var _useLegacyChatInput: SwiftProtobuf.Google_Protobuf_BoolValue? = nil
294 |
295 |     static let defaultInstance = _StorageClass()
    |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'TextAndImagesSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultInstance' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
296 |
297 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/TextAndImages.pb.swift:244:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
242 | extension TextAndImagesSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
243 |   public static let protoMessageName: String = "TextAndImagesSettings"
244 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
245 |     1: .standard(proto: "diversity_surrogate"),
246 |     2: .standard(proto: "use_rich_chat_input"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/TextAndImages.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
242 | extension TextAndImagesSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
243 |   public static let protoMessageName: String = "TextAndImagesSettings"
244 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
245 |     1: .standard(proto: "diversity_surrogate"),
246 |     2: .standard(proto: "use_rich_chat_input"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/UserContent.pb.swift:64:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 62 | extension UserContentSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "UserContentSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 65 |     1: .standard(proto: "dismissed_contents"),
 66 |     2: .standard(proto: "last_dismissed_outbound_promotion_start_date"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/UserContent.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 62 | extension UserContentSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "UserContentSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     1: .standard(proto: "dismissed_contents"),
 66 |     2: .standard(proto: "last_dismissed_outbound_promotion_start_date"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/GuildFolders.pb.swift:91:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 89 | extension GuildFolders: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 90 |   public static let protoMessageName: String = "GuildFolders"
 91 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 92 |     1: .same(proto: "folders"),
 93 |     2: .standard(proto: "guild_positions"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/GuildFolders.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 89 | extension GuildFolders: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 90 |   public static let protoMessageName: String = "GuildFolders"
 91 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "folders"),
 93 |     2: .standard(proto: "guild_positions"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/GuildFolders.pb.swift:129:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
127 | extension GuildFolder: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
128 |   public static let protoMessageName: String = "GuildFolder"
129 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "guild_ids"),
131 |     2: .same(proto: "id"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:73:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension AllGuildSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 72 |   public static let protoMessageName: String = "AllGuildSettings"
 73 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |     1: .same(proto: "guilds"),
 75 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 71 | extension AllGuildSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 72 |   public static let protoMessageName: String = "AllGuildSettings"
 73 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "guilds"),
 75 |   ]
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:105:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
103 | extension GuildSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
104 |   public static let protoMessageName: String = "GuildSettings"
105 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "channels"),
107 |     2: .standard(proto: "hub_progress"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:149:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
147 | extension ChannelSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
148 |   public static let protoMessageName: String = "ChannelSettings"
149 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "collapsed_in_inbox"),
151 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/GuildFolders.pb.swift:91:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 89 | extension GuildFolders: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 90 |   public static let protoMessageName: String = "GuildFolders"
 91 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 92 |     1: .same(proto: "folders"),
 93 |     2: .standard(proto: "guild_positions"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/GuildFolders.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 89 | extension GuildFolders: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 90 |   public static let protoMessageName: String = "GuildFolders"
 91 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "folders"),
 93 |     2: .standard(proto: "guild_positions"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/GuildFolders.pb.swift:129:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
127 | extension GuildFolder: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
128 |   public static let protoMessageName: String = "GuildFolder"
129 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "guild_ids"),
131 |     2: .same(proto: "id"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:73:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension AllGuildSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 72 |   public static let protoMessageName: String = "AllGuildSettings"
 73 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |     1: .same(proto: "guilds"),
 75 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 71 | extension AllGuildSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 72 |   public static let protoMessageName: String = "AllGuildSettings"
 73 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "guilds"),
 75 |   ]
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:105:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
103 | extension GuildSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
104 |   public static let protoMessageName: String = "GuildSettings"
105 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "channels"),
107 |     2: .standard(proto: "hub_progress"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:149:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
147 | extension ChannelSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
148 |   public static let protoMessageName: String = "ChannelSettings"
149 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "collapsed_in_inbox"),
151 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:243:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Discord_UserSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
223 |   ]
224 |
225 |   fileprivate class _StorageClass {
    |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
226 |     var _versions: Discord_UserSettings.Versions? = nil
227 |     var _inbox: InboxSettings? = nil
    :
241 |     var _audioContextSettings: AudioSettings? = nil
242 |
243 |     static let defaultInstance = _StorageClass()
    |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Discord_UserSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultInstance' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
244 |
245 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:206:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
204 | extension Discord_UserSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
205 |   public static let protoMessageName: String = _protobuf_package + ".UserSettings"
206 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
207 |     1: .same(proto: "versions"),
208 |     2: .same(proto: "inbox"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
204 | extension Discord_UserSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
205 |   public static let protoMessageName: String = _protobuf_package + ".UserSettings"
206 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 |     1: .same(proto: "versions"),
208 |     2: .same(proto: "inbox"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:394:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
392 | extension Discord_UserSettings.Versions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
393 |   public static let protoMessageName: String = Discord_UserSettings.protoMessageName + ".Versions"
394 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
395 |     1: .standard(proto: "client_version"),
396 |     2: .standard(proto: "server_version"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:243:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Discord_UserSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
223 |   ]
224 |
225 |   fileprivate class _StorageClass {
    |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
226 |     var _versions: Discord_UserSettings.Versions? = nil
227 |     var _inbox: InboxSettings? = nil
    :
241 |     var _audioContextSettings: AudioSettings? = nil
242 |
243 |     static let defaultInstance = _StorageClass()
    |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Discord_UserSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultInstance' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
244 |
245 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:206:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
204 | extension Discord_UserSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
205 |   public static let protoMessageName: String = _protobuf_package + ".UserSettings"
206 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
207 |     1: .same(proto: "versions"),
208 |     2: .same(proto: "inbox"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
204 | extension Discord_UserSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
205 |   public static let protoMessageName: String = _protobuf_package + ".UserSettings"
206 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 |     1: .same(proto: "versions"),
208 |     2: .same(proto: "inbox"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:394:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
392 | extension Discord_UserSettings.Versions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
393 |   public static let protoMessageName: String = Discord_UserSettings.protoMessageName + ".Versions"
394 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
395 |     1: .standard(proto: "client_version"),
396 |     2: .standard(proto: "server_version"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:243:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Discord_UserSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
223 |   ]
224 |
225 |   fileprivate class _StorageClass {
    |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
226 |     var _versions: Discord_UserSettings.Versions? = nil
227 |     var _inbox: InboxSettings? = nil
    :
241 |     var _audioContextSettings: AudioSettings? = nil
242 |
243 |     static let defaultInstance = _StorageClass()
    |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Discord_UserSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultInstance' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
244 |
245 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:206:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
204 | extension Discord_UserSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
205 |   public static let protoMessageName: String = _protobuf_package + ".UserSettings"
206 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
207 |     1: .same(proto: "versions"),
208 |     2: .same(proto: "inbox"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
204 | extension Discord_UserSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
205 |   public static let protoMessageName: String = _protobuf_package + ".UserSettings"
206 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 |     1: .same(proto: "versions"),
208 |     2: .same(proto: "inbox"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:394:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
392 | extension Discord_UserSettings.Versions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
393 |   public static let protoMessageName: String = Discord_UserSettings.protoMessageName + ".Versions"
394 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
395 |     1: .standard(proto: "client_version"),
396 |     2: .standard(proto: "server_version"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
[245/247] Compiling DiscordKit VoiceAndVideo.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:167:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
165 | extension VoiceAndVideoSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
166 |   public static let protoMessageName: String = "VoiceAndVideoSettings"
167 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
168 |     1: .same(proto: "blur"),
169 |     2: .standard(proto: "preset_option"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
165 | extension VoiceAndVideoSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
166 |   public static let protoMessageName: String = "VoiceAndVideoSettings"
167 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "blur"),
169 |     2: .standard(proto: "preset_option"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:274:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
272 | extension VideoFilterBackgroundBlur: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
273 |   public static let protoMessageName: String = "VideoFilterBackgroundBlur"
274 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
275 |     1: .standard(proto: "use_blur"),
276 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:306:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
304 | extension VideoFilterAsset: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
305 |   public static let protoMessageName: String = "VideoFilterAsset"
306 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
307 |     1: .same(proto: "id"),
308 |     2: .standard(proto: "asset_hash"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Status.pb.swift:94:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 92 | extension CustomStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 93 |   public static let protoMessageName: String = "CustomStatus"
 94 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     1: .same(proto: "text"),
 96 |     2: .standard(proto: "emoji_id"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Status.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 92 | extension CustomStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 93 |   public static let protoMessageName: String = "CustomStatus"
 94 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "text"),
 96 |     2: .standard(proto: "emoji_id"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Status.pb.swift:144:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
142 | extension StatusSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
143 |   public static let protoMessageName: String = "StatusSettings"
144 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "status"),
146 |     2: .standard(proto: "custom_status"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:167:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
165 | extension VoiceAndVideoSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
166 |   public static let protoMessageName: String = "VoiceAndVideoSettings"
167 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
168 |     1: .same(proto: "blur"),
169 |     2: .standard(proto: "preset_option"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
165 | extension VoiceAndVideoSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
166 |   public static let protoMessageName: String = "VoiceAndVideoSettings"
167 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "blur"),
169 |     2: .standard(proto: "preset_option"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:274:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
272 | extension VideoFilterBackgroundBlur: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
273 |   public static let protoMessageName: String = "VideoFilterBackgroundBlur"
274 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
275 |     1: .standard(proto: "use_blur"),
276 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:306:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
304 | extension VideoFilterAsset: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
305 |   public static let protoMessageName: String = "VideoFilterAsset"
306 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
307 |     1: .same(proto: "id"),
308 |     2: .standard(proto: "asset_hash"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Status.pb.swift:94:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 92 | extension CustomStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 93 |   public static let protoMessageName: String = "CustomStatus"
 94 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     1: .same(proto: "text"),
 96 |     2: .standard(proto: "emoji_id"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Status.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 92 | extension CustomStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 93 |   public static let protoMessageName: String = "CustomStatus"
 94 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "text"),
 96 |     2: .standard(proto: "emoji_id"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Status.pb.swift:144:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
142 | extension StatusSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
143 |   public static let protoMessageName: String = "StatusSettings"
144 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "status"),
146 |     2: .standard(proto: "custom_status"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
[247/247] Emitting module DiscordKit
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:243:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Discord_UserSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
223 |   ]
224 |
225 |   fileprivate class _StorageClass {
    |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
226 |     var _versions: Discord_UserSettings.Versions? = nil
227 |     var _inbox: InboxSettings? = nil
    :
241 |     var _audioContextSettings: AudioSettings? = nil
242 |
243 |     static let defaultInstance = _StorageClass()
    |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Discord_UserSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultInstance' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
244 |
245 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:206:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
204 | extension Discord_UserSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
205 |   public static let protoMessageName: String = _protobuf_package + ".UserSettings"
206 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
207 |     1: .same(proto: "versions"),
208 |     2: .same(proto: "inbox"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
204 | extension Discord_UserSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
205 |   public static let protoMessageName: String = _protobuf_package + ".UserSettings"
206 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 |     1: .same(proto: "versions"),
208 |     2: .same(proto: "inbox"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/DiscordProtos.pb.swift:394:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
392 | extension Discord_UserSettings.Versions: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
393 |   public static let protoMessageName: String = Discord_UserSettings.protoMessageName + ".Versions"
394 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
395 |     1: .standard(proto: "client_version"),
396 |     2: .standard(proto: "server_version"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:58:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 56 | extension FavoriteChannelType: CaseIterable {
 57 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 58 |   public static var allCases: [FavoriteChannelType] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |     .unsetFavoriteChannelType,
 60 |     .referenceOriginal,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:108:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
106 |
107 | extension FavoriteChannelType: SwiftProtobuf._ProtoNameProviding {
108 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
109 |     0: .same(proto: "UNSET_FAVORITE_CHANNEL_TYPE"),
110 |     1: .same(proto: "REFERENCE_ORIGINAL"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
106 |
107 | extension FavoriteChannelType: SwiftProtobuf._ProtoNameProviding {
108 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "UNSET_FAVORITE_CHANNEL_TYPE"),
110 |     1: .same(proto: "REFERENCE_ORIGINAL"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:117:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
115 | extension Favorites: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
116 |   public static let protoMessageName: String = "Favorites"
117 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "favorite_channels"),
119 |     2: .same(proto: "muted"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteChannel.pb.swift:155:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
153 | extension FavoriteChannel: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
154 |   public static let protoMessageName: String = "FavoriteChannel"
155 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "nickname"),
157 |     2: .same(proto: "type"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:58:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 56 | extension GIFType: CaseIterable {
 57 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 58 |   public static var allCases: [GIFType] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |     .none,
 60 |     .image,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:111:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
109 |
110 | extension GIFType: SwiftProtobuf._ProtoNameProviding {
111 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
112 |     0: .same(proto: "NONE"),
113 |     1: .same(proto: "IMAGE"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
109 |
110 | extension GIFType: SwiftProtobuf._ProtoNameProviding {
111 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "NONE"),
113 |     1: .same(proto: "IMAGE"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:120:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
118 | extension FavoriteGIFs: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
119 |   public static let protoMessageName: String = "FavoriteGIFs"
120 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "gifs"),
122 |     2: .standard(proto: "hide_tooltip"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/FavoriteGIFs.pb.swift:158:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
156 | extension FavoriteGIF: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
157 |   public static let protoMessageName: String = "FavoriteGIF"
158 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "type"),
160 |     2: .same(proto: "src"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/GuildFolders.pb.swift:91:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 89 | extension GuildFolders: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 90 |   public static let protoMessageName: String = "GuildFolders"
 91 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 92 |     1: .same(proto: "folders"),
 93 |     2: .standard(proto: "guild_positions"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/GuildFolders.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 89 | extension GuildFolders: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 90 |   public static let protoMessageName: String = "GuildFolders"
 91 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "folders"),
 93 |     2: .standard(proto: "guild_positions"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/GuildFolders.pb.swift:129:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
127 | extension GuildFolder: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
128 |   public static let protoMessageName: String = "GuildFolder"
129 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "guild_ids"),
131 |     2: .same(proto: "id"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:73:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension AllGuildSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 72 |   public static let protoMessageName: String = "AllGuildSettings"
 73 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |     1: .same(proto: "guilds"),
 75 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 71 | extension AllGuildSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 72 |   public static let protoMessageName: String = "AllGuildSettings"
 73 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "guilds"),
 75 |   ]
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:105:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
103 | extension GuildSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
104 |   public static let protoMessageName: String = "GuildSettings"
105 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "channels"),
107 |     2: .standard(proto: "hub_progress"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/AllGuildSettings.pb.swift:149:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
147 | extension ChannelSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
148 |   public static let protoMessageName: String = "ChannelSettings"
149 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "collapsed_in_inbox"),
151 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Appearance.pb.swift:59:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 57 | extension Theme: CaseIterable {
 58 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 59 |   public static var allCases: [Theme] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |     .unset,
 61 |     .dark,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Appearance.pb.swift:90:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 | extension Theme: SwiftProtobuf._ProtoNameProviding {
 90 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |     0: .same(proto: "UNSET"),
 92 |     1: .same(proto: "DARK"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Appearance.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 88 |
 89 | extension Theme: SwiftProtobuf._ProtoNameProviding {
 90 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "UNSET"),
 92 |     1: .same(proto: "DARK"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Appearance.pb.swift:99:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 97 | extension AppearanceSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 98 |   public static let protoMessageName: String = "AppearanceSettings"
 99 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "theme"),
101 |     2: .standard(proto: "developer_mode"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Audio.pb.swift:62:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 60 | extension AudioSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 61 |   public static let protoMessageName: String = "AudioSettings"
 62 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 63 |     1: .same(proto: "user"),
 64 |     2: .same(proto: "stream"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Audio.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 60 | extension AudioSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 61 |   public static let protoMessageName: String = "AudioSettings"
 62 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |     1: .same(proto: "user"),
 64 |     2: .same(proto: "stream"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Audio.pb.swift:100:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 98 | extension AudioContextSetting: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 99 |   public static let protoMessageName: String = "AudioContextSetting"
100 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "muted"),
102 |     2: .same(proto: "volume"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Debug.pb.swift:52:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
50 | extension DebugSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
51 |   public static let protoMessageName: String = "DebugSettings"
52 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
   |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
53 |     1: .standard(proto: "rtc_panel_show_voice_states"),
54 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Debug.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 9 |
10 | import Foundation
11 | import SwiftProtobuf
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
12 |
13 | // If the compiler emits an error on this type, it is because this file
   :
50 | extension DebugSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
51 |   public static let protoMessageName: String = "DebugSettings"
52 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
   |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 |     1: .standard(proto: "rtc_panel_show_voice_states"),
54 |   ]
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/GameLibrary.pb.swift:72:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 70 | extension GameLibrarySettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 71 |   public static let protoMessageName: String = "GameLibrarySettings"
 72 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     1: .standard(proto: "install_shortcut_desktop"),
 74 |     2: .standard(proto: "install_shortcut_start_menu"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/GameLibrary.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 70 | extension GameLibrarySettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 71 |   public static let protoMessageName: String = "GameLibrarySettings"
 72 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "install_shortcut_desktop"),
 74 |     2: .standard(proto: "install_shortcut_start_menu"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Inbox.pb.swift:62:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 60 | extension InboxTab: CaseIterable {
 61 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 62 |   public static var allCases: [InboxTab] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |     .unspecified,
 64 |     .mentions,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Inbox.pb.swift:94:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 92 |
 93 | extension InboxTab: SwiftProtobuf._ProtoNameProviding {
 94 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     0: .same(proto: "UNSPECIFIED"),
 96 |     1: .same(proto: "MENTIONS"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Inbox.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 92 |
 93 | extension InboxTab: SwiftProtobuf._ProtoNameProviding {
 94 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "UNSPECIFIED"),
 96 |     1: .same(proto: "MENTIONS"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Inbox.pb.swift:104:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
102 | extension InboxSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
103 |   public static let protoMessageName: String = "InboxSettings"
104 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "current_tab"),
106 |     2: .standard(proto: "viewed_tutorial"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Localization.pb.swift:63:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 61 | extension LocalizationSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 62 |   public static let protoMessageName: String = "LocalizationSettings"
 63 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     1: .same(proto: "locale"),
 65 |     2: .standard(proto: "timezone_offset"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Localization.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 61 | extension LocalizationSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 62 |   public static let protoMessageName: String = "LocalizationSettings"
 63 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |     1: .same(proto: "locale"),
 65 |     2: .standard(proto: "timezone_offset"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Notification.pb.swift:64:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 62 | extension NotificationSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "NotificationSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 65 |     1: .standard(proto: "show_in_app_notifications"),
 66 |     2: .standard(proto: "notify_friends_on_go_live"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Notification.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 62 | extension NotificationSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "NotificationSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     1: .standard(proto: "show_in_app_notifications"),
 66 |     2: .standard(proto: "notify_friends_on_go_live"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:57:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 55 | extension GuildActivityStatusRestrictionDefault: CaseIterable {
 56 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 57 |   public static var allCases: [GuildActivityStatusRestrictionDefault] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'allCases' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     .off,
 59 |     .onForLargeGuilds,
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:179:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | extension GuildActivityStatusRestrictionDefault: SwiftProtobuf._ProtoNameProviding {
179 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
180 |     0: .same(proto: "OFF"),
181 |     1: .same(proto: "ON_FOR_LARGE_GUILDS"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
177 |
178 | extension GuildActivityStatusRestrictionDefault: SwiftProtobuf._ProtoNameProviding {
179 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     0: .same(proto: "OFF"),
181 |     1: .same(proto: "ON_FOR_LARGE_GUILDS"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/Privacy.pb.swift:187:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
185 | extension PrivacySettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
186 |   public static let protoMessageName: String = "PrivacySettings"
187 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .standard(proto: "allow_activity_party_privacy_friends"),
189 |     2: .standard(proto: "allow_activity_party_privacy_voice_channel"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/TextAndImages.pb.swift:295:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'TextAndImagesSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
268 |   ]
269 |
270 |   fileprivate class _StorageClass {
    |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
271 |     var _diversitySurrogate: SwiftProtobuf.Google_Protobuf_StringValue? = nil
272 |     var _useRichChatInput: SwiftProtobuf.Google_Protobuf_BoolValue? = nil
    :
293 |     var _useLegacyChatInput: SwiftProtobuf.Google_Protobuf_BoolValue? = nil
294 |
295 |     static let defaultInstance = _StorageClass()
    |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'TextAndImagesSettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultInstance' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
296 |
297 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/TextAndImages.pb.swift:244:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
242 | extension TextAndImagesSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
243 |   public static let protoMessageName: String = "TextAndImagesSettings"
244 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
245 |     1: .standard(proto: "diversity_surrogate"),
246 |     2: .standard(proto: "use_rich_chat_input"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/TextAndImages.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
242 | extension TextAndImagesSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
243 |   public static let protoMessageName: String = "TextAndImagesSettings"
244 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
245 |     1: .standard(proto: "diversity_surrogate"),
246 |     2: .standard(proto: "use_rich_chat_input"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/UserContent.pb.swift:64:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 62 | extension UserContentSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "UserContentSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 65 |     1: .standard(proto: "dismissed_contents"),
 66 |     2: .standard(proto: "last_dismissed_outbound_promotion_start_date"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/UserContent.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 62 | extension UserContentSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 63 |   public static let protoMessageName: String = "UserContentSettings"
 64 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |     1: .standard(proto: "dismissed_contents"),
 66 |     2: .standard(proto: "last_dismissed_outbound_promotion_start_date"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:167:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
165 | extension VoiceAndVideoSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
166 |   public static let protoMessageName: String = "VoiceAndVideoSettings"
167 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
168 |     1: .same(proto: "blur"),
169 |     2: .standard(proto: "preset_option"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
165 | extension VoiceAndVideoSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
166 |   public static let protoMessageName: String = "VoiceAndVideoSettings"
167 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "blur"),
169 |     2: .standard(proto: "preset_option"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:274:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
272 | extension VideoFilterBackgroundBlur: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
273 |   public static let protoMessageName: String = "VideoFilterBackgroundBlur"
274 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
275 |     1: .standard(proto: "use_blur"),
276 |   ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Settings/VoiceAndVideo.pb.swift:306:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
304 | extension VideoFilterAsset: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
305 |   public static let protoMessageName: String = "VideoFilterAsset"
306 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
307 |     1: .same(proto: "id"),
308 |     2: .standard(proto: "asset_hash"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Status.pb.swift:94:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 92 | extension CustomStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 93 |   public static let protoMessageName: String = "CustomStatus"
 94 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     `- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     1: .same(proto: "text"),
 96 |     2: .standard(proto: "emoji_id"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Status.pb.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
  9 |
 10 | import Foundation
 11 | import SwiftProtobuf
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftProtobuf'
 12 |
 13 | // If the compiler emits an error on this type, it is because this file
    :
 92 | extension CustomStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
 93 |   public static let protoMessageName: String = "CustomStatus"
 94 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "text"),
 96 |     2: .standard(proto: "emoji_id"),
/Users/admin/builder/spi-builder-workspace/Sources/DiscordKit/protos/Status.pb.swift:144:21: warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
142 | extension StatusSettings: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
143 |   public static let protoMessageName: String = "StatusSettings"
144 |   public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                     |- warning: static property '_protobuf_nameMap' is not concurrency-safe because non-'Sendable' type '_NameMap' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_protobuf_nameMap' with '@MainActor' 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 |     1: .same(proto: "status"),
146 |     2: .standard(proto: "custom_status"),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/NameMap.swift:94:15: note: struct '_NameMap' does not conform to the 'Sendable' protocol
 92 | /// for each message as needed, so there is no run-time overhead for
 93 | /// users who do not use text-based serialization formats.
 94 | public struct _NameMap: ExpressibleByDictionaryLiteral {
    |               `- note: struct '_NameMap' does not conform to the 'Sendable' protocol
 95 |
 96 |   /// An immutable interned string container.  The `utf8Start` pointer
Build complete! (31.71s)
warning: 'swift-protobuf': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Sources/SwiftProtobuf/CMakeLists.txt
Build complete.
{
  "dependencies" : [
    {
      "identity" : "reachability.swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.1.0",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ashleymills/Reachability.swift"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swift-protobuf",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.6.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-protobuf.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    }
  ],
  "manifest_display_name" : "DiscordKit",
  "name" : "DiscordKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "DiscordKitCore",
      "targets" : [
        "DiscordKitCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DiscordKit",
      "targets" : [
        "DiscordKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DiscordKitBot",
      "targets" : [
        "DiscordKitBot"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "DiscordKitCore",
      "module_type" : "SwiftTarget",
      "name" : "DiscordKitCore",
      "path" : "Sources/DiscordKitCore",
      "product_dependencies" : [
        "Reachability",
        "SwiftProtobuf",
        "Logging"
      ],
      "product_memberships" : [
        "DiscordKitCore",
        "DiscordKit",
        "DiscordKitBot"
      ],
      "sources" : [
        "APIUtils.swift",
        "DiscordKitConfig.swift",
        "DiscordREST.swift",
        "Extensions/Collection+Identifiable.swift",
        "Extensions/Int+decodeFlags.swift",
        "Extensions/Logger+.swift",
        "Extensions/Message+.swift",
        "Extensions/Snowflake+decode.swift",
        "Extensions/String+random.swift",
        "Extensions/URL+.swift",
        "Extensions/URLSession+.swift",
        "Gateway/DecompressionEngine.swift",
        "Gateway/GatewayIdentify.swift",
        "Gateway/Intents.swift",
        "Gateway/RobustWebSocket.swift",
        "Objects/Data/Activity.swift",
        "Objects/Data/AppCommand.swift",
        "Objects/Data/Application.swift",
        "Objects/Data/Attachment.swift",
        "Objects/Data/Channel.swift",
        "Objects/Data/Connection.swift",
        "Objects/Data/Embed.swift",
        "Objects/Data/Emoji.swift",
        "Objects/Data/Guild.swift",
        "Objects/Data/Integration.swift",
        "Objects/Data/Interaction.swift",
        "Objects/Data/Levels.swift",
        "Objects/Data/Locale.swift",
        "Objects/Data/Member.swift",
        "Objects/Data/Mention.swift",
        "Objects/Data/Message.swift",
        "Objects/Data/Permission.swift",
        "Objects/Data/Presence.swift",
        "Objects/Data/Reaction.swift",
        "Objects/Data/Snowflake.swift",
        "Objects/Data/Stage.swift",
        "Objects/Data/Sticker.swift",
        "Objects/Data/Team.swift",
        "Objects/Data/User+Flags.swift",
        "Objects/Data/User+PremiumType.swift",
        "Objects/Data/User.swift",
        "Objects/Data/Voice.swift",
        "Objects/Gateway/ApplicationObj.swift",
        "Objects/Gateway/DataStructs.swift",
        "Objects/Gateway/Event/ChUnreadUpdate.swift",
        "Objects/Gateway/Event/ChannelPinsUpdate.swift",
        "Objects/Gateway/Event/GatewayEvent.swift",
        "Objects/Gateway/Event/GatewaySettingsProtoUpdate.swift",
        "Objects/Gateway/Event/GuildBan.swift",
        "Objects/Gateway/Event/GuildMemberEvt.swift",
        "Objects/Gateway/Event/GuildMiscUpdate.swift",
        "Objects/Gateway/Event/GuildRoleEvt.swift",
        "Objects/Gateway/Event/GuildSchEvtUserEvt.swift",
        "Objects/Gateway/Event/MessageACKEvt.swift",
        "Objects/Gateway/Event/MessageDelete.swift",
        "Objects/Gateway/Event/ReadyEvt.swift",
        "Objects/Gateway/Event/ReadySuppEvt.swift",
        "Objects/Gateway/Event/ThreadListSync.swift",
        "Objects/Gateway/Event/ThreadMembersUpdate.swift",
        "Objects/Gateway/Event/TypingStart.swift",
        "Objects/Gateway/Event/TypingStartEvt.swift",
        "Objects/Gateway/Gateway.swift",
        "Objects/Gateway/GatewayIO.swift",
        "Objects/Gateway/UserAccount/ReadState.swift",
        "Objects/Gateway/UserSettings.swift",
        "Objects/REST/LogOut.swift",
        "Objects/REST/MessageReadAck.swift",
        "Objects/REST/NewMessage.swift",
        "Objects/REST/ResolvedInvite.swift",
        "REST/APIAchievements.swift",
        "REST/APIApplicationCommands.swift",
        "REST/APIApplicationRoleConnectionMetadata.swift",
        "REST/APIAuditLog.swift",
        "REST/APIAutoModeration.swift",
        "REST/APIChannel.swift",
        "REST/APICurrentUser.swift",
        "REST/APIEmoji.swift",
        "REST/APIGateway.swift",
        "REST/APIGuild.swift",
        "REST/APIGuildScheduledEvent.swift",
        "REST/APIGuildTemplate.swift",
        "REST/APIInvite.swift",
        "REST/APILobbies.swift",
        "REST/APIMultipartFormBody.swift",
        "REST/APIOAuth2.swift",
        "REST/APIReceivingandResponding.swift",
        "REST/APIRequest.swift",
        "REST/APIStageInstance.swift",
        "REST/APISticker.swift",
        "REST/APIStore.swift",
        "REST/APIUser.swift",
        "REST/APIVoice.swift",
        "REST/APIWebhook.swift",
        "Utils/DecodableThrowable.swift",
        "Utils/EventDispatch.swift",
        "Utils/HashedAsset.swift",
        "Utils/HybridSnowflake.swift",
        "Utils/NullEncodable.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DiscordKitCommonTests",
      "module_type" : "SwiftTarget",
      "name" : "DiscordKitCommonTests",
      "path" : "Tests/DiscordKitCommonTests",
      "sources" : [
        "PermissionTests.swift"
      ],
      "target_dependencies" : [
        "DiscordKitCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DiscordKitBot",
      "module_type" : "SwiftTarget",
      "name" : "DiscordKitBot",
      "path" : "Sources/DiscordKitBot",
      "product_dependencies" : [
        "SwiftProtobuf"
      ],
      "product_memberships" : [
        "DiscordKitBot"
      ],
      "sources" : [
        "ApplicationCommand/AppCommandBuilder.swift",
        "ApplicationCommand/CommandData.swift",
        "ApplicationCommand/NewAppCommand.swift",
        "ApplicationCommand/Option/BooleanOption.swift",
        "ApplicationCommand/Option/CommandOption.swift",
        "ApplicationCommand/Option/IntegerOption.swift",
        "ApplicationCommand/Option/NumberOption.swift",
        "ApplicationCommand/Option/OptionBuilder.swift",
        "ApplicationCommand/Option/StringOption.swift",
        "ApplicationCommand/Option/SubCommand.swift",
        "BotMessage.swift",
        "Client.swift",
        "Embed/BotEmbed.swift",
        "Embed/BotEmbedBuilder.swift",
        "Embed/Field/EmbedFieldBuilder.swift",
        "MessageComponent/ActionRow.swift",
        "MessageComponent/Button.swift",
        "MessageComponent/ComponentBuilder.swift",
        "NCWrapper.swift",
        "NotificationNames.swift",
        "Objects/InteractionResponse.swift",
        "Objects/WebhookResponse.swift",
        "REST/APICommand.swift"
      ],
      "target_dependencies" : [
        "DiscordKitCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DiscordKit",
      "module_type" : "SwiftTarget",
      "name" : "DiscordKit",
      "path" : "Sources/DiscordKit",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "DiscordKit"
      ],
      "sources" : [
        "Extensions/Presence+.swift",
        "Gateway/DiscordGateway.swift",
        "Gateway/GatewayCachedState.swift",
        "Objects/REST/UserSettingsProtoUpdate.swift",
        "REST/APIUser+.swift",
        "protos/DiscordProtos.pb.swift",
        "protos/FavoriteChannel.pb.swift",
        "protos/FavoriteGIFs.pb.swift",
        "protos/GuildFolders.pb.swift",
        "protos/Settings/AllGuildSettings.pb.swift",
        "protos/Settings/Appearance.pb.swift",
        "protos/Settings/Audio.pb.swift",
        "protos/Settings/Debug.pb.swift",
        "protos/Settings/GameLibrary.pb.swift",
        "protos/Settings/Inbox.pb.swift",
        "protos/Settings/Localization.pb.swift",
        "protos/Settings/Notification.pb.swift",
        "protos/Settings/Privacy.pb.swift",
        "protos/Settings/TextAndImages.pb.swift",
        "protos/Settings/UserContent.pb.swift",
        "protos/Settings/VoiceAndVideo.pb.swift",
        "protos/Status.pb.swift"
      ],
      "target_dependencies" : [
        "DiscordKitCore"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.