The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftTelegramSdk, reference 3.9.4 (bdb178), with Swift 6.1 for Linux on 31 May 2025 20:19:31 UTC.

Swift 6 data race errors: 7

Build Command

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

Build Log

/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:25:27: warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
23 |         public static let messageUpdates = Options(rawValue: 1)
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
   |                           |- warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'channelPostUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:27:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
25 |         public static let channelPostUpdates = Options(rawValue: 2)
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     }
29 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:50:23: warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
 49 |     @available(*, deprecated, message: "Please use instance property \"log\". This static property doesn't work")
 50 |     public static var log = Logger(label: "com.tgbot")
    |                       |- warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'log' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     public let connectionType: TGConnectionType
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:58:35: warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 56 |     public var tgClient: TGClientPrtcl {
 57 |         get async throws {
 58 |             try await clientActor.client()
    |                                   `- warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 59 |         }
 60 |     }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGClientPrtcl.swift:11:17: note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
 9 | import Logging
10 |
11 | public protocol TGClientPrtcl {
   |                 `- note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
12 |
13 |     var log: Logger { get set }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:65:34: warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public final class TGLongPollingConnection: TGConnectionPrtcl {
    |                    `- note: class 'TGLongPollingConnection' does not conform to the 'Sendable' protocol
 24 |     public var limit: Int?
 25 |     public var timeout: Int? = 10
    :
 63 |             let group = DispatchGroup()
 64 |             while true {
 65 |                 guard let self = self else { break }
    |                                  `- warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |                 group.enter()
 67 |                 Task.detached {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:88:27: warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
 86 |         var tgClient = tgClient
 87 |         tgClient.log = log
 88 |         await clientActor.set(tgClient)
    |                           |- warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
    |                           `- note: sending task-isolated 'tgClient' to actor-isolated instance method 'set' risks causing data races between actor-isolated and task-isolated uses
 89 |         self.botId = botId
 90 |         self.tgURI = tgURI
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:67:22: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
 65 |                 guard let self = self else { break }
 66 |                 group.enter()
 67 |                 Task.detached {
    |                      |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
    |                      |- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
    |                      `- note: access can happen concurrently
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGDispatcher.swift:99:52: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 97 |             for handler in handlersGroup[handlersGroup.count - i] {
 98 |                 if handler.check(update: update) {
 99 |                     Task.detached(priority: .high) { [log] in
    |                                                    `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
100 |                         do {
101 |                             try await handler.handle(update: update)
    |                                       |                      `- note: closure captures non-Sendable 'update'
    |                                       `- note: closure captures non-Sendable 'handler'
102 |                         } catch {
103 |                             log.error("\(makeError(BotError(String(describing: error))).localizedDescription)")
[89/244] Compiling SwiftTelegramSdk TGMultiPart.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/CommandHandler.swift:33:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
23 |     public var name: String
24 |
25 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
26 |         public let rawValue: Int
27 |
   :
31 |
32 |         /// Determines Whether the handler should also accept edited messages. Not used by default.
33 |         public static let editedUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     }
35 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:23:27: warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
21 |
22 |         ///Should “normal” message updates be handled?
23 |         public static let messageUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'messageUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:25:27: warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
23 |         public static let messageUpdates = Options(rawValue: 1)
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
   |                           |- warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'channelPostUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:27:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
25 |         public static let channelPostUpdates = Options(rawValue: 2)
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     }
29 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:50:23: warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
 49 |     @available(*, deprecated, message: "Please use instance property \"log\". This static property doesn't work")
 50 |     public static var log = Logger(label: "com.tgbot")
    |                       |- warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'log' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     public let connectionType: TGConnectionType
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:58:35: warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 56 |     public var tgClient: TGClientPrtcl {
 57 |         get async throws {
 58 |             try await clientActor.client()
    |                                   `- warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 59 |         }
 60 |     }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGClientPrtcl.swift:11:17: note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
 9 | import Logging
10 |
11 | public protocol TGClientPrtcl {
   |                 `- note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
12 |
13 |     var log: Logger { get set }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:65:34: warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public final class TGLongPollingConnection: TGConnectionPrtcl {
    |                    `- note: class 'TGLongPollingConnection' does not conform to the 'Sendable' protocol
 24 |     public var limit: Int?
 25 |     public var timeout: Int? = 10
    :
 63 |             let group = DispatchGroup()
 64 |             while true {
 65 |                 guard let self = self else { break }
    |                                  `- warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |                 group.enter()
 67 |                 Task.detached {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:88:27: warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
 86 |         var tgClient = tgClient
 87 |         tgClient.log = log
 88 |         await clientActor.set(tgClient)
    |                           |- warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
    |                           `- note: sending task-isolated 'tgClient' to actor-isolated instance method 'set' risks causing data races between actor-isolated and task-isolated uses
 89 |         self.botId = botId
 90 |         self.tgURI = tgURI
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:67:22: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
 65 |                 guard let self = self else { break }
 66 |                 group.enter()
 67 |                 Task.detached {
    |                      |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
    |                      |- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
    |                      `- note: access can happen concurrently
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGDispatcher.swift:99:52: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 97 |             for handler in handlersGroup[handlersGroup.count - i] {
 98 |                 if handler.check(update: update) {
 99 |                     Task.detached(priority: .high) { [log] in
    |                                                    `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
100 |                         do {
101 |                             try await handler.handle(update: update)
    |                                       |                      `- note: closure captures non-Sendable 'update'
    |                                       `- note: closure captures non-Sendable 'handler'
102 |                         } catch {
103 |                             log.error("\(makeError(BotError(String(describing: error))).localizedDescription)")
[90/244] Compiling SwiftTelegramSdk AddStickerToSet.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/CommandHandler.swift:33:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
23 |     public var name: String
24 |
25 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
26 |         public let rawValue: Int
27 |
   :
31 |
32 |         /// Determines Whether the handler should also accept edited messages. Not used by default.
33 |         public static let editedUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     }
35 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:23:27: warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
21 |
22 |         ///Should “normal” message updates be handled?
23 |         public static let messageUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'messageUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:25:27: warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
23 |         public static let messageUpdates = Options(rawValue: 1)
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
   |                           |- warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'channelPostUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:27:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
25 |         public static let channelPostUpdates = Options(rawValue: 2)
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     }
29 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:50:23: warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
 49 |     @available(*, deprecated, message: "Please use instance property \"log\". This static property doesn't work")
 50 |     public static var log = Logger(label: "com.tgbot")
    |                       |- warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'log' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     public let connectionType: TGConnectionType
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:58:35: warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 56 |     public var tgClient: TGClientPrtcl {
 57 |         get async throws {
 58 |             try await clientActor.client()
    |                                   `- warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 59 |         }
 60 |     }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGClientPrtcl.swift:11:17: note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
 9 | import Logging
10 |
11 | public protocol TGClientPrtcl {
   |                 `- note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
12 |
13 |     var log: Logger { get set }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:65:34: warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public final class TGLongPollingConnection: TGConnectionPrtcl {
    |                    `- note: class 'TGLongPollingConnection' does not conform to the 'Sendable' protocol
 24 |     public var limit: Int?
 25 |     public var timeout: Int? = 10
    :
 63 |             let group = DispatchGroup()
 64 |             while true {
 65 |                 guard let self = self else { break }
    |                                  `- warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |                 group.enter()
 67 |                 Task.detached {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:88:27: warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
 86 |         var tgClient = tgClient
 87 |         tgClient.log = log
 88 |         await clientActor.set(tgClient)
    |                           |- warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
    |                           `- note: sending task-isolated 'tgClient' to actor-isolated instance method 'set' risks causing data races between actor-isolated and task-isolated uses
 89 |         self.botId = botId
 90 |         self.tgURI = tgURI
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:67:22: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
 65 |                 guard let self = self else { break }
 66 |                 group.enter()
 67 |                 Task.detached {
    |                      |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
    |                      |- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
    |                      `- note: access can happen concurrently
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGDispatcher.swift:99:52: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 97 |             for handler in handlersGroup[handlersGroup.count - i] {
 98 |                 if handler.check(update: update) {
 99 |                     Task.detached(priority: .high) { [log] in
    |                                                    `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
100 |                         do {
101 |                             try await handler.handle(update: update)
    |                                       |                      `- note: closure captures non-Sendable 'update'
    |                                       `- note: closure captures non-Sendable 'handler'
102 |                         } catch {
103 |                             log.error("\(makeError(BotError(String(describing: error))).localizedDescription)")
[91/244] Compiling SwiftTelegramSdk AnswerCallbackQuery.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/CommandHandler.swift:33:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
23 |     public var name: String
24 |
25 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
26 |         public let rawValue: Int
27 |
   :
31 |
32 |         /// Determines Whether the handler should also accept edited messages. Not used by default.
33 |         public static let editedUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     }
35 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:23:27: warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
21 |
22 |         ///Should “normal” message updates be handled?
23 |         public static let messageUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'messageUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:25:27: warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
23 |         public static let messageUpdates = Options(rawValue: 1)
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
   |                           |- warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'channelPostUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:27:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
25 |         public static let channelPostUpdates = Options(rawValue: 2)
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     }
29 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:50:23: warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
 49 |     @available(*, deprecated, message: "Please use instance property \"log\". This static property doesn't work")
 50 |     public static var log = Logger(label: "com.tgbot")
    |                       |- warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'log' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     public let connectionType: TGConnectionType
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:58:35: warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 56 |     public var tgClient: TGClientPrtcl {
 57 |         get async throws {
 58 |             try await clientActor.client()
    |                                   `- warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 59 |         }
 60 |     }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGClientPrtcl.swift:11:17: note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
 9 | import Logging
10 |
11 | public protocol TGClientPrtcl {
   |                 `- note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
12 |
13 |     var log: Logger { get set }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:65:34: warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public final class TGLongPollingConnection: TGConnectionPrtcl {
    |                    `- note: class 'TGLongPollingConnection' does not conform to the 'Sendable' protocol
 24 |     public var limit: Int?
 25 |     public var timeout: Int? = 10
    :
 63 |             let group = DispatchGroup()
 64 |             while true {
 65 |                 guard let self = self else { break }
    |                                  `- warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |                 group.enter()
 67 |                 Task.detached {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:88:27: warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
 86 |         var tgClient = tgClient
 87 |         tgClient.log = log
 88 |         await clientActor.set(tgClient)
    |                           |- warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
    |                           `- note: sending task-isolated 'tgClient' to actor-isolated instance method 'set' risks causing data races between actor-isolated and task-isolated uses
 89 |         self.botId = botId
 90 |         self.tgURI = tgURI
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:67:22: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
 65 |                 guard let self = self else { break }
 66 |                 group.enter()
 67 |                 Task.detached {
    |                      |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
    |                      |- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
    |                      `- note: access can happen concurrently
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGDispatcher.swift:99:52: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 97 |             for handler in handlersGroup[handlersGroup.count - i] {
 98 |                 if handler.check(update: update) {
 99 |                     Task.detached(priority: .high) { [log] in
    |                                                    `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
100 |                         do {
101 |                             try await handler.handle(update: update)
    |                                       |                      `- note: closure captures non-Sendable 'update'
    |                                       `- note: closure captures non-Sendable 'handler'
102 |                         } catch {
103 |                             log.error("\(makeError(BotError(String(describing: error))).localizedDescription)")
[92/244] Compiling SwiftTelegramSdk AnswerInlineQuery.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/CommandHandler.swift:33:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
23 |     public var name: String
24 |
25 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
26 |         public let rawValue: Int
27 |
   :
31 |
32 |         /// Determines Whether the handler should also accept edited messages. Not used by default.
33 |         public static let editedUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     }
35 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:23:27: warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
21 |
22 |         ///Should “normal” message updates be handled?
23 |         public static let messageUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'messageUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:25:27: warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
23 |         public static let messageUpdates = Options(rawValue: 1)
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
   |                           |- warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'channelPostUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:27:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
25 |         public static let channelPostUpdates = Options(rawValue: 2)
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     }
29 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:50:23: warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
 49 |     @available(*, deprecated, message: "Please use instance property \"log\". This static property doesn't work")
 50 |     public static var log = Logger(label: "com.tgbot")
    |                       |- warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'log' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     public let connectionType: TGConnectionType
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:58:35: warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 56 |     public var tgClient: TGClientPrtcl {
 57 |         get async throws {
 58 |             try await clientActor.client()
    |                                   `- warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 59 |         }
 60 |     }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGClientPrtcl.swift:11:17: note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
 9 | import Logging
10 |
11 | public protocol TGClientPrtcl {
   |                 `- note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
12 |
13 |     var log: Logger { get set }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:65:34: warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public final class TGLongPollingConnection: TGConnectionPrtcl {
    |                    `- note: class 'TGLongPollingConnection' does not conform to the 'Sendable' protocol
 24 |     public var limit: Int?
 25 |     public var timeout: Int? = 10
    :
 63 |             let group = DispatchGroup()
 64 |             while true {
 65 |                 guard let self = self else { break }
    |                                  `- warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |                 group.enter()
 67 |                 Task.detached {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:88:27: warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
 86 |         var tgClient = tgClient
 87 |         tgClient.log = log
 88 |         await clientActor.set(tgClient)
    |                           |- warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
    |                           `- note: sending task-isolated 'tgClient' to actor-isolated instance method 'set' risks causing data races between actor-isolated and task-isolated uses
 89 |         self.botId = botId
 90 |         self.tgURI = tgURI
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:67:22: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
 65 |                 guard let self = self else { break }
 66 |                 group.enter()
 67 |                 Task.detached {
    |                      |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
    |                      |- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
    |                      `- note: access can happen concurrently
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGDispatcher.swift:99:52: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 97 |             for handler in handlersGroup[handlersGroup.count - i] {
 98 |                 if handler.check(update: update) {
 99 |                     Task.detached(priority: .high) { [log] in
    |                                                    `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
100 |                         do {
101 |                             try await handler.handle(update: update)
    |                                       |                      `- note: closure captures non-Sendable 'update'
    |                                       `- note: closure captures non-Sendable 'handler'
102 |                         } catch {
103 |                             log.error("\(makeError(BotError(String(describing: error))).localizedDescription)")
[93/244] Compiling SwiftTelegramSdk AnswerPreCheckoutQuery.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/CommandHandler.swift:33:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
23 |     public var name: String
24 |
25 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
26 |         public let rawValue: Int
27 |
   :
31 |
32 |         /// Determines Whether the handler should also accept edited messages. Not used by default.
33 |         public static let editedUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     }
35 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:23:27: warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
21 |
22 |         ///Should “normal” message updates be handled?
23 |         public static let messageUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'messageUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:25:27: warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
23 |         public static let messageUpdates = Options(rawValue: 1)
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
   |                           |- warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'channelPostUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:27:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
25 |         public static let channelPostUpdates = Options(rawValue: 2)
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     }
29 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:50:23: warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
 49 |     @available(*, deprecated, message: "Please use instance property \"log\". This static property doesn't work")
 50 |     public static var log = Logger(label: "com.tgbot")
    |                       |- warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'log' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     public let connectionType: TGConnectionType
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:58:35: warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 56 |     public var tgClient: TGClientPrtcl {
 57 |         get async throws {
 58 |             try await clientActor.client()
    |                                   `- warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 59 |         }
 60 |     }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGClientPrtcl.swift:11:17: note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
 9 | import Logging
10 |
11 | public protocol TGClientPrtcl {
   |                 `- note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
12 |
13 |     var log: Logger { get set }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:65:34: warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public final class TGLongPollingConnection: TGConnectionPrtcl {
    |                    `- note: class 'TGLongPollingConnection' does not conform to the 'Sendable' protocol
 24 |     public var limit: Int?
 25 |     public var timeout: Int? = 10
    :
 63 |             let group = DispatchGroup()
 64 |             while true {
 65 |                 guard let self = self else { break }
    |                                  `- warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |                 group.enter()
 67 |                 Task.detached {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:88:27: warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
 86 |         var tgClient = tgClient
 87 |         tgClient.log = log
 88 |         await clientActor.set(tgClient)
    |                           |- warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
    |                           `- note: sending task-isolated 'tgClient' to actor-isolated instance method 'set' risks causing data races between actor-isolated and task-isolated uses
 89 |         self.botId = botId
 90 |         self.tgURI = tgURI
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:67:22: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
 65 |                 guard let self = self else { break }
 66 |                 group.enter()
 67 |                 Task.detached {
    |                      |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
    |                      |- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
    |                      `- note: access can happen concurrently
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGDispatcher.swift:99:52: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 97 |             for handler in handlersGroup[handlersGroup.count - i] {
 98 |                 if handler.check(update: update) {
 99 |                     Task.detached(priority: .high) { [log] in
    |                                                    `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
100 |                         do {
101 |                             try await handler.handle(update: update)
    |                                       |                      `- note: closure captures non-Sendable 'update'
    |                                       `- note: closure captures non-Sendable 'handler'
102 |                         } catch {
103 |                             log.error("\(makeError(BotError(String(describing: error))).localizedDescription)")
[94/244] Compiling SwiftTelegramSdk AnswerShippingQuery.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/CommandHandler.swift:33:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
23 |     public var name: String
24 |
25 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
26 |         public let rawValue: Int
27 |
   :
31 |
32 |         /// Determines Whether the handler should also accept edited messages. Not used by default.
33 |         public static let editedUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     }
35 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:23:27: warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
21 |
22 |         ///Should “normal” message updates be handled?
23 |         public static let messageUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'messageUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:25:27: warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
23 |         public static let messageUpdates = Options(rawValue: 1)
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
   |                           |- warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'channelPostUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:27:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
25 |         public static let channelPostUpdates = Options(rawValue: 2)
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     }
29 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:50:23: warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
 49 |     @available(*, deprecated, message: "Please use instance property \"log\". This static property doesn't work")
 50 |     public static var log = Logger(label: "com.tgbot")
    |                       |- warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'log' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     public let connectionType: TGConnectionType
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:58:35: warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 56 |     public var tgClient: TGClientPrtcl {
 57 |         get async throws {
 58 |             try await clientActor.client()
    |                                   `- warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 59 |         }
 60 |     }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGClientPrtcl.swift:11:17: note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
 9 | import Logging
10 |
11 | public protocol TGClientPrtcl {
   |                 `- note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
12 |
13 |     var log: Logger { get set }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:65:34: warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public final class TGLongPollingConnection: TGConnectionPrtcl {
    |                    `- note: class 'TGLongPollingConnection' does not conform to the 'Sendable' protocol
 24 |     public var limit: Int?
 25 |     public var timeout: Int? = 10
    :
 63 |             let group = DispatchGroup()
 64 |             while true {
 65 |                 guard let self = self else { break }
    |                                  `- warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |                 group.enter()
 67 |                 Task.detached {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:88:27: warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
 86 |         var tgClient = tgClient
 87 |         tgClient.log = log
 88 |         await clientActor.set(tgClient)
    |                           |- warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
    |                           `- note: sending task-isolated 'tgClient' to actor-isolated instance method 'set' risks causing data races between actor-isolated and task-isolated uses
 89 |         self.botId = botId
 90 |         self.tgURI = tgURI
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:67:22: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
 65 |                 guard let self = self else { break }
 66 |                 group.enter()
 67 |                 Task.detached {
    |                      |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
    |                      |- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
    |                      `- note: access can happen concurrently
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGDispatcher.swift:99:52: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 97 |             for handler in handlersGroup[handlersGroup.count - i] {
 98 |                 if handler.check(update: update) {
 99 |                     Task.detached(priority: .high) { [log] in
    |                                                    `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
100 |                         do {
101 |                             try await handler.handle(update: update)
    |                                       |                      `- note: closure captures non-Sendable 'update'
    |                                       `- note: closure captures non-Sendable 'handler'
102 |                         } catch {
103 |                             log.error("\(makeError(BotError(String(describing: error))).localizedDescription)")
[95/244] Compiling SwiftTelegramSdk AnswerWebAppQuery.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/CommandHandler.swift:33:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
23 |     public var name: String
24 |
25 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
26 |         public let rawValue: Int
27 |
   :
31 |
32 |         /// Determines Whether the handler should also accept edited messages. Not used by default.
33 |         public static let editedUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     }
35 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:23:27: warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
21 |
22 |         ///Should “normal” message updates be handled?
23 |         public static let messageUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'messageUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:25:27: warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
23 |         public static let messageUpdates = Options(rawValue: 1)
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
   |                           |- warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'channelPostUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:27:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
25 |         public static let channelPostUpdates = Options(rawValue: 2)
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     }
29 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:50:23: warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
 49 |     @available(*, deprecated, message: "Please use instance property \"log\". This static property doesn't work")
 50 |     public static var log = Logger(label: "com.tgbot")
    |                       |- warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'log' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     public let connectionType: TGConnectionType
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:58:35: warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 56 |     public var tgClient: TGClientPrtcl {
 57 |         get async throws {
 58 |             try await clientActor.client()
    |                                   `- warning: non-sendable result type 'any TGClientPrtcl' cannot be sent from actor-isolated context in call to instance method 'client()'; this is an error in the Swift 6 language mode
 59 |         }
 60 |     }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGClientPrtcl.swift:11:17: note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
 9 | import Logging
10 |
11 | public protocol TGClientPrtcl {
   |                 `- note: protocol 'TGClientPrtcl' does not conform to the 'Sendable' protocol
12 |
13 |     var log: Logger { get set }
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:65:34: warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 21 | }
 22 |
 23 | public final class TGLongPollingConnection: TGConnectionPrtcl {
    |                    `- note: class 'TGLongPollingConnection' does not conform to the 'Sendable' protocol
 24 |     public var limit: Int?
 25 |     public var timeout: Int? = 10
    :
 63 |             let group = DispatchGroup()
 64 |             while true {
 65 |                 guard let self = self else { break }
    |                                  `- warning: capture of 'self' with non-sendable type 'TGLongPollingConnection?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |                 group.enter()
 67 |                 Task.detached {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:69:82: warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 67 |                 Task.detached {
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
    |                                                                                  `- warning: capture of 'bot' with non-sendable type 'TGBot' in an isolated closure; this is an error in the Swift 6 language mode
 70 |                         bot.dispatcher.process(updates)
 71 |                     } catch {
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:46:20: note: class 'TGBot' does not conform to the 'Sendable' protocol
 44 |
 45 |
 46 | public final class TGBot: TGBotPrtcl {
    |                    `- note: class 'TGBot' does not conform to the 'Sendable' protocol
 47 |
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:88:27: warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
 86 |         var tgClient = tgClient
 87 |         tgClient.log = log
 88 |         await clientActor.set(tgClient)
    |                           |- warning: sending 'tgClient' risks causing data races; this is an error in the Swift 6 language mode
    |                           `- note: sending task-isolated 'tgClient' to actor-isolated instance method 'set' risks causing data races between actor-isolated and task-isolated uses
 89 |         self.botId = botId
 90 |         self.tgURI = tgURI
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGConnection.swift:67:22: warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
 65 |                 guard let self = self else { break }
 66 |                 group.enter()
 67 |                 Task.detached {
    |                      |- warning: sending value of non-Sendable type '() async -> ()' risks causing data races; this is an error in the Swift 6 language mode
    |                      |- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument risks causing races in between local and caller code
    |                      `- note: access can happen concurrently
 68 |                     do {
 69 |                         let updates: [TGUpdate] = try await self.getUpdates(bot: bot)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGDispatcher.swift:99:52: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 97 |             for handler in handlersGroup[handlersGroup.count - i] {
 98 |                 if handler.check(update: update) {
 99 |                     Task.detached(priority: .high) { [log] in
    |                                                    `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
100 |                         do {
101 |                             try await handler.handle(update: update)
    |                                       |                      `- note: closure captures non-Sendable 'update'
    |                                       `- note: closure captures non-Sendable 'handler'
102 |                         } catch {
103 |                             log.error("\(makeError(BotError(String(describing: error))).localizedDescription)")
[96/268] Compiling SwiftTelegramSdk RemoveChatVerification.swift
[97/268] Compiling SwiftTelegramSdk RemoveUserVerification.swift
[98/268] Compiling SwiftTelegramSdk ReopenForumTopic.swift
[99/268] Compiling SwiftTelegramSdk ReopenGeneralForumTopic.swift
[100/268] Compiling SwiftTelegramSdk ReplaceStickerInSet.swift
[101/268] Compiling SwiftTelegramSdk RestrictChatMember.swift
[102/268] Compiling SwiftTelegramSdk RevokeChatInviteLink.swift
[103/268] Compiling SwiftTelegramSdk SavePreparedInlineMessage.swift
[104/268] Compiling SwiftTelegramSdk SendAnimation.swift
[105/268] Compiling SwiftTelegramSdk SendAudio.swift
[106/268] Compiling SwiftTelegramSdk SendChatAction.swift
[107/268] Compiling SwiftTelegramSdk SendContact.swift
[108/268] Compiling SwiftTelegramSdk SendDice.swift
[109/268] Compiling SwiftTelegramSdk SendDocument.swift
[110/268] Compiling SwiftTelegramSdk SendGame.swift
[111/268] Compiling SwiftTelegramSdk SendGift.swift
[112/268] Compiling SwiftTelegramSdk SendInvoice.swift
[113/268] Compiling SwiftTelegramSdk SendLocation.swift
[114/268] Compiling SwiftTelegramSdk SendMediaGroup.swift
[115/268] Compiling SwiftTelegramSdk SendMessage.swift
[116/268] Compiling SwiftTelegramSdk SendPaidMedia.swift
[117/268] Compiling SwiftTelegramSdk SendPhoto.swift
[118/268] Compiling SwiftTelegramSdk SendPoll.swift
[119/268] Compiling SwiftTelegramSdk SendSticker.swift
[120/268] Compiling SwiftTelegramSdk SendVenue.swift
[121/292] Compiling SwiftTelegramSdk TGAffiliateInfo.swift
[122/292] Compiling SwiftTelegramSdk TGAnimation.swift
[123/292] Compiling SwiftTelegramSdk TGAudio.swift
[124/292] Compiling SwiftTelegramSdk TGBackgroundFill.swift
[125/292] Compiling SwiftTelegramSdk TGBackgroundFillFreeformGradient.swift
[126/292] Compiling SwiftTelegramSdk TGBackgroundFillFreeformGradientType.swift
[127/292] Compiling SwiftTelegramSdk TGBackgroundFillGradient.swift
[128/292] Compiling SwiftTelegramSdk TGBackgroundFillGradientType.swift
[129/292] Compiling SwiftTelegramSdk TGBackgroundFillSolid.swift
[130/292] Compiling SwiftTelegramSdk TGBackgroundFillSolidType.swift
[131/292] Compiling SwiftTelegramSdk TGBackgroundType.swift
[132/292] Compiling SwiftTelegramSdk TGBackgroundTypeChatTheme.swift
[133/292] Compiling SwiftTelegramSdk TGBackgroundTypeChatThemeType.swift
[134/292] Compiling SwiftTelegramSdk TGBackgroundTypeFill.swift
[135/292] Compiling SwiftTelegramSdk TGBackgroundTypeFillType.swift
[136/292] Compiling SwiftTelegramSdk TGBackgroundTypePattern.swift
[137/292] Compiling SwiftTelegramSdk TGBackgroundTypePatternType.swift
[138/292] Compiling SwiftTelegramSdk TGBackgroundTypeWallpaper.swift
[139/292] Compiling SwiftTelegramSdk TGBackgroundTypeWallpaperType.swift
[140/292] Compiling SwiftTelegramSdk TGBirthdate.swift
[141/292] Compiling SwiftTelegramSdk TGBotCommand.swift
[142/292] Compiling SwiftTelegramSdk TGBotCommandScope.swift
[143/292] Compiling SwiftTelegramSdk TGBotCommandScopeAllChatAdministrators.swift
[144/292] Compiling SwiftTelegramSdk TGBotCommandScopeAllChatAdministratorsType.swift
[145/316] Compiling SwiftTelegramSdk TGBotCommandScopeAllGroupChats.swift
[146/316] Compiling SwiftTelegramSdk TGBotCommandScopeAllGroupChatsType.swift
[147/316] Compiling SwiftTelegramSdk TGBotCommandScopeAllPrivateChats.swift
[148/316] Compiling SwiftTelegramSdk TGBotCommandScopeAllPrivateChatsType.swift
[149/316] Compiling SwiftTelegramSdk TGBotCommandScopeChat.swift
[150/316] Compiling SwiftTelegramSdk TGBotCommandScopeChatAdministrators.swift
[151/316] Compiling SwiftTelegramSdk TGBotCommandScopeChatAdministratorsType.swift
[152/316] Compiling SwiftTelegramSdk TGBotCommandScopeChatMember.swift
[153/316] Compiling SwiftTelegramSdk TGBotCommandScopeChatMemberType.swift
[154/316] Compiling SwiftTelegramSdk TGBotCommandScopeChatType.swift
[155/316] Compiling SwiftTelegramSdk TGBotCommandScopeDefault.swift
[156/316] Compiling SwiftTelegramSdk TGBotCommandScopeDefaultType.swift
[157/316] Compiling SwiftTelegramSdk TGBotDescription.swift
[158/316] Compiling SwiftTelegramSdk TGBotName.swift
[159/316] Compiling SwiftTelegramSdk TGBotShortDescription.swift
[160/316] Compiling SwiftTelegramSdk TGBusinessBotRights.swift
[161/316] Compiling SwiftTelegramSdk TGBusinessConnection.swift
[162/316] Compiling SwiftTelegramSdk TGBusinessIntro.swift
[163/316] Compiling SwiftTelegramSdk TGBusinessLocation.swift
[164/316] Compiling SwiftTelegramSdk TGBusinessMessagesDeleted.swift
[165/316] Compiling SwiftTelegramSdk TGBusinessOpeningHours.swift
[166/316] Compiling SwiftTelegramSdk TGBusinessOpeningHoursInterval.swift
[167/316] Compiling SwiftTelegramSdk TGCallbackGame.swift
[168/316] Compiling SwiftTelegramSdk TGCallbackQuery.swift
[169/340] Compiling SwiftTelegramSdk SetStickerKeywords.swift
[170/340] Compiling SwiftTelegramSdk SetStickerMaskPosition.swift
[171/340] Compiling SwiftTelegramSdk SetStickerPositionInSet.swift
[172/340] Compiling SwiftTelegramSdk SetStickerSetThumbnail.swift
[173/340] Compiling SwiftTelegramSdk SetStickerSetTitle.swift
[174/340] Compiling SwiftTelegramSdk SetUserEmojiStatus.swift
[175/340] Compiling SwiftTelegramSdk SetWebhook.swift
[176/340] Compiling SwiftTelegramSdk StopMessageLiveLocation.swift
[177/340] Compiling SwiftTelegramSdk StopPoll.swift
[178/340] Compiling SwiftTelegramSdk TransferBusinessAccountStars.swift
[179/340] Compiling SwiftTelegramSdk TransferGift.swift
[180/340] Compiling SwiftTelegramSdk UnbanChatMember.swift
[181/340] Compiling SwiftTelegramSdk UnbanChatSenderChat.swift
[182/340] Compiling SwiftTelegramSdk UnhideGeneralForumTopic.swift
[183/340] Compiling SwiftTelegramSdk UnpinAllChatMessages.swift
[184/340] Compiling SwiftTelegramSdk UnpinAllForumTopicMessages.swift
[185/340] Compiling SwiftTelegramSdk UnpinAllGeneralForumTopicMessages.swift
[186/340] Compiling SwiftTelegramSdk UnpinChatMessage.swift
[187/340] Compiling SwiftTelegramSdk UpgradeGift.swift
[188/340] Compiling SwiftTelegramSdk UploadStickerFile.swift
[189/340] Compiling SwiftTelegramSdk VerifyChat.swift
[190/340] Compiling SwiftTelegramSdk VerifyUser.swift
[191/340] Compiling SwiftTelegramSdk TGMaybeInaccessibleMessageExtensions.swift
[192/340] Compiling SwiftTelegramSdk TGAcceptedGiftTypes.swift
[193/364] Compiling SwiftTelegramSdk TGChat.swift
[194/364] Compiling SwiftTelegramSdk TGChatAdministratorRights.swift
[195/364] Compiling SwiftTelegramSdk TGChatBackground.swift
[196/364] Compiling SwiftTelegramSdk TGChatBoost.swift
[197/364] Compiling SwiftTelegramSdk TGChatBoostAdded.swift
[198/364] Compiling SwiftTelegramSdk TGChatBoostRemoved.swift
[199/364] Compiling SwiftTelegramSdk TGChatBoostSource.swift
[200/364] Compiling SwiftTelegramSdk TGChatBoostSourceGiftCode.swift
[201/364] Compiling SwiftTelegramSdk TGChatBoostSourceGiveaway.swift
[202/364] Compiling SwiftTelegramSdk TGChatBoostSourcePremium.swift
[203/364] Compiling SwiftTelegramSdk TGChatBoostUpdated.swift
[204/364] Compiling SwiftTelegramSdk TGChatFullInfo.swift
[205/364] Compiling SwiftTelegramSdk TGChatFullInfoType.swift
[206/364] Compiling SwiftTelegramSdk TGChatInviteLink.swift
[207/364] Compiling SwiftTelegramSdk TGChatJoinRequest.swift
[208/364] Compiling SwiftTelegramSdk TGChatLocation.swift
[209/364] Compiling SwiftTelegramSdk TGChatMember.swift
[210/364] Compiling SwiftTelegramSdk TGChatMemberAdministrator.swift
[211/364] Compiling SwiftTelegramSdk TGChatMemberBanned.swift
[212/364] Compiling SwiftTelegramSdk TGChatMemberLeft.swift
[213/364] Compiling SwiftTelegramSdk TGChatMemberMember.swift
[214/364] Compiling SwiftTelegramSdk TGChatMemberOwner.swift
[215/364] Compiling SwiftTelegramSdk TGChatMemberRestricted.swift
[216/364] Compiling SwiftTelegramSdk TGChatMemberUpdated.swift
[217/388] Compiling SwiftTelegramSdk TGInlineQueryResultCachedPhoto.swift
[218/388] Compiling SwiftTelegramSdk TGInlineQueryResultCachedPhotoType.swift
[219/388] Compiling SwiftTelegramSdk TGInlineQueryResultCachedSticker.swift
[220/388] Compiling SwiftTelegramSdk TGInlineQueryResultCachedStickerType.swift
[221/388] Compiling SwiftTelegramSdk TGInlineQueryResultCachedVideo.swift
[222/388] Compiling SwiftTelegramSdk TGInlineQueryResultCachedVideoType.swift
[223/388] Compiling SwiftTelegramSdk TGInlineQueryResultCachedVoice.swift
[224/388] Compiling SwiftTelegramSdk TGInlineQueryResultCachedVoiceType.swift
[225/388] Compiling SwiftTelegramSdk TGInlineQueryResultContact.swift
[226/388] Compiling SwiftTelegramSdk TGInlineQueryResultContactType.swift
[227/388] Compiling SwiftTelegramSdk TGInlineQueryResultDocument.swift
[228/388] Compiling SwiftTelegramSdk TGInlineQueryResultDocumentType.swift
[229/388] Compiling SwiftTelegramSdk TGInlineQueryResultGame.swift
[230/388] Compiling SwiftTelegramSdk TGInlineQueryResultGameType.swift
[231/388] Compiling SwiftTelegramSdk TGInlineQueryResultGif.swift
[232/388] Compiling SwiftTelegramSdk TGInlineQueryResultGifType.swift
[233/388] Compiling SwiftTelegramSdk TGInlineQueryResultLocation.swift
[234/388] Compiling SwiftTelegramSdk TGInlineQueryResultLocationType.swift
[235/388] Compiling SwiftTelegramSdk TGInlineQueryResultMpeg4Gif.swift
[236/388] Compiling SwiftTelegramSdk TGInlineQueryResultMpeg4GifType.swift
[237/388] Compiling SwiftTelegramSdk TGInlineQueryResultPhoto.swift
[238/388] Compiling SwiftTelegramSdk TGInlineQueryResultPhotoType.swift
[239/388] Compiling SwiftTelegramSdk TGInlineQueryResultVenue.swift
[240/388] Compiling SwiftTelegramSdk TGInlineQueryResultVenueType.swift
[241/412] Compiling SwiftTelegramSdk TGChatPermissions.swift
[242/412] Compiling SwiftTelegramSdk TGChatPhoto.swift
[243/412] Compiling SwiftTelegramSdk TGChatShared.swift
[244/412] Compiling SwiftTelegramSdk TGChatType.swift
[245/412] Compiling SwiftTelegramSdk TGChosenInlineResult.swift
[246/412] Compiling SwiftTelegramSdk TGContact.swift
[247/412] Compiling SwiftTelegramSdk TGCopyTextButton.swift
[248/412] Compiling SwiftTelegramSdk TGDice.swift
[249/412] Compiling SwiftTelegramSdk TGDocument.swift
[250/412] Compiling SwiftTelegramSdk TGEncryptedCredentials.swift
[251/412] Compiling SwiftTelegramSdk TGEncryptedPassportElement.swift
[252/412] Compiling SwiftTelegramSdk TGEncryptedPassportElementType.swift
[253/412] Compiling SwiftTelegramSdk TGExternalReplyInfo.swift
[254/412] Compiling SwiftTelegramSdk TGFile.swift
[255/412] Compiling SwiftTelegramSdk TGForceReply.swift
[256/412] Compiling SwiftTelegramSdk TGForumTopic.swift
[257/412] Compiling SwiftTelegramSdk TGForumTopicClosed.swift
[258/412] Compiling SwiftTelegramSdk TGForumTopicCreated.swift
[259/412] Compiling SwiftTelegramSdk TGForumTopicEdited.swift
[260/412] Compiling SwiftTelegramSdk TGForumTopicReopened.swift
[261/412] Compiling SwiftTelegramSdk TGGame.swift
[262/412] Compiling SwiftTelegramSdk TGGameHighScore.swift
[263/412] Compiling SwiftTelegramSdk TGGeneralForumTopicHidden.swift
[264/412] Compiling SwiftTelegramSdk TGGeneralForumTopicUnhidden.swift
[265/436] Compiling SwiftTelegramSdk TGGift.swift
[266/436] Compiling SwiftTelegramSdk TGGiftInfo.swift
[267/436] Compiling SwiftTelegramSdk TGGifts.swift
[268/436] Compiling SwiftTelegramSdk TGGiveaway.swift
[269/436] Compiling SwiftTelegramSdk TGGiveawayCompleted.swift
[270/436] Compiling SwiftTelegramSdk TGGiveawayCreated.swift
[271/436] Compiling SwiftTelegramSdk TGGiveawayWinners.swift
[272/436] Compiling SwiftTelegramSdk TGInaccessibleMessage.swift
[273/436] Compiling SwiftTelegramSdk TGInlineKeyboardButton.swift
[274/436] Compiling SwiftTelegramSdk TGInlineKeyboardMarkup.swift
[275/436] Compiling SwiftTelegramSdk TGInlineQuery.swift
[276/436] Compiling SwiftTelegramSdk TGInlineQueryResult.swift
[277/436] Compiling SwiftTelegramSdk TGInlineQueryResultArticle.swift
[278/436] Compiling SwiftTelegramSdk TGInlineQueryResultArticleType.swift
[279/436] Compiling SwiftTelegramSdk TGInlineQueryResultAudio.swift
[280/436] Compiling SwiftTelegramSdk TGInlineQueryResultAudioType.swift
[281/436] Compiling SwiftTelegramSdk TGInlineQueryResultCachedAudio.swift
[282/436] Compiling SwiftTelegramSdk TGInlineQueryResultCachedAudioType.swift
[283/436] Compiling SwiftTelegramSdk TGInlineQueryResultCachedDocument.swift
[284/436] Compiling SwiftTelegramSdk TGInlineQueryResultCachedDocumentType.swift
[285/436] Compiling SwiftTelegramSdk TGInlineQueryResultCachedGif.swift
[286/436] Compiling SwiftTelegramSdk TGInlineQueryResultCachedGifType.swift
[287/436] Compiling SwiftTelegramSdk TGInlineQueryResultCachedMpeg4Gif.swift
[288/436] Compiling SwiftTelegramSdk TGInlineQueryResultCachedMpeg4GifType.swift
[289/460] Emitting module SwiftTelegramSdk
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/CommandHandler.swift:33:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
23 |     public var name: String
24 |
25 |     public struct Options: OptionSet {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
26 |         public let rawValue: Int
27 |
   :
31 |
32 |         /// Determines Whether the handler should also accept edited messages. Not used by default.
33 |         public static let editedUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGCommandHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     }
35 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:23:27: warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
21 |
22 |         ///Should “normal” message updates be handled?
23 |         public static let messageUpdates = Options(rawValue: 1)
   |                           |- warning: static property 'messageUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'messageUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:25:27: warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
23 |         public static let messageUpdates = Options(rawValue: 1)
24 |         ///Should channel posts updates be handled?
25 |         public static let channelPostUpdates = Options(rawValue: 2)
   |                           |- warning: static property 'channelPostUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'channelPostUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/Handlers/MessageHandler.swift:27:27: warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Option Set for `MessageHandler`
15 |     public struct Options: OptionSet, Hashable {
   |                   `- note: consider making struct 'Options' conform to the 'Sendable' protocol
16 |         public let rawValue: Int
17 |
   :
25 |         public static let channelPostUpdates = Options(rawValue: 2)
26 |         ///Should “edited” message updates be handled?
27 |         public static let editedUpdates = Options(rawValue: 4)
   |                           |- warning: static property 'editedUpdates' is not concurrency-safe because non-'Sendable' type 'TGMessageHandler.Options' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: add '@MainActor' to make static property 'editedUpdates' part of global actor 'MainActor'
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     }
29 |
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Bot/TGBot.swift:50:23: warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 48 |     public static let standardTGURL: URL = .init(string: "https://api.telegram.org")!
 49 |     @available(*, deprecated, message: "Please use instance property \"log\". This static property doesn't work")
 50 |     public static var log = Logger(label: "com.tgbot")
    |                       |- warning: static property 'log' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'log' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'log' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     public let connectionType: TGConnectionType
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[290/460] Compiling SwiftTelegramSdk DeleteWebhook.swift
[291/460] Compiling SwiftTelegramSdk EditChatInviteLink.swift
[292/460] Compiling SwiftTelegramSdk EditChatSubscriptionInviteLink.swift
[293/460] Compiling SwiftTelegramSdk EditForumTopic.swift
[294/460] Compiling SwiftTelegramSdk EditGeneralForumTopic.swift
[295/460] Compiling SwiftTelegramSdk EditMessageCaption.swift
[296/460] Compiling SwiftTelegramSdk EditMessageLiveLocation.swift
[297/460] Compiling SwiftTelegramSdk EditMessageMedia.swift
[298/460] Compiling SwiftTelegramSdk EditMessageReplyMarkup.swift
[299/460] Compiling SwiftTelegramSdk EditMessageText.swift
[300/460] Compiling SwiftTelegramSdk EditStory.swift
[301/460] Compiling SwiftTelegramSdk EditUserStarSubscription.swift
[302/460] Compiling SwiftTelegramSdk ExportChatInviteLink.swift
[303/460] Compiling SwiftTelegramSdk ForwardMessage.swift
[304/460] Compiling SwiftTelegramSdk ForwardMessages.swift
[305/460] Compiling SwiftTelegramSdk GetAvailableGifts.swift
[306/460] Compiling SwiftTelegramSdk GetBusinessAccountGifts.swift
[307/460] Compiling SwiftTelegramSdk GetBusinessAccountStarBalance.swift
[308/460] Compiling SwiftTelegramSdk GetBusinessConnection.swift
[309/460] Compiling SwiftTelegramSdk GetChat.swift
[310/460] Compiling SwiftTelegramSdk GetChatAdministrators.swift
[311/460] Compiling SwiftTelegramSdk GetChatMember.swift
[312/460] Compiling SwiftTelegramSdk GetChatMemberCount.swift
[313/460] Compiling SwiftTelegramSdk GetChatMenuButton.swift
[314/460] Compiling SwiftTelegramSdk GetCustomEmojiStickers.swift
[315/460] Compiling SwiftTelegramSdk SendVideo.swift
[316/460] Compiling SwiftTelegramSdk SendVideoNote.swift
[317/460] Compiling SwiftTelegramSdk SendVoice.swift
[318/460] Compiling SwiftTelegramSdk SetBusinessAccountBio.swift
[319/460] Compiling SwiftTelegramSdk SetBusinessAccountGiftSettings.swift
[320/460] Compiling SwiftTelegramSdk SetBusinessAccountName.swift
[321/460] Compiling SwiftTelegramSdk SetBusinessAccountProfilePhoto.swift
[322/460] Compiling SwiftTelegramSdk SetBusinessAccountUsername.swift
[323/460] Compiling SwiftTelegramSdk SetChatAdministratorCustomTitle.swift
[324/460] Compiling SwiftTelegramSdk SetChatDescription.swift
[325/460] Compiling SwiftTelegramSdk SetChatMenuButton.swift
[326/460] Compiling SwiftTelegramSdk SetChatPermissions.swift
[327/460] Compiling SwiftTelegramSdk SetChatPhoto.swift
[328/460] Compiling SwiftTelegramSdk SetChatStickerSet.swift
[329/460] Compiling SwiftTelegramSdk SetChatTitle.swift
[330/460] Compiling SwiftTelegramSdk SetCustomEmojiStickerSetThumbnail.swift
[331/460] Compiling SwiftTelegramSdk SetGameScore.swift
[332/460] Compiling SwiftTelegramSdk SetMessageReaction.swift
[333/460] Compiling SwiftTelegramSdk SetMyCommands.swift
[334/460] Compiling SwiftTelegramSdk SetMyDefaultAdministratorRights.swift
[335/460] Compiling SwiftTelegramSdk SetMyDescription.swift
[336/460] Compiling SwiftTelegramSdk SetMyName.swift
[337/460] Compiling SwiftTelegramSdk SetMyShortDescription.swift
[338/460] Compiling SwiftTelegramSdk SetPassportDataErrors.swift
[339/460] Compiling SwiftTelegramSdk SetStickerEmojiList.swift
[340/460] Compiling SwiftTelegramSdk ApproveChatJoinRequest.swift
[341/460] Compiling SwiftTelegramSdk BanChatMember.swift
[342/460] Compiling SwiftTelegramSdk BanChatSenderChat.swift
[343/460] Compiling SwiftTelegramSdk Close.swift
[344/460] Compiling SwiftTelegramSdk CloseForumTopic.swift
[345/460] Compiling SwiftTelegramSdk CloseGeneralForumTopic.swift
[346/460] Compiling SwiftTelegramSdk ConvertGiftToStars.swift
[347/460] Compiling SwiftTelegramSdk CopyMessage.swift
[348/460] Compiling SwiftTelegramSdk CopyMessages.swift
[349/460] Compiling SwiftTelegramSdk CreateChatInviteLink.swift
[350/460] Compiling SwiftTelegramSdk CreateChatSubscriptionInviteLink.swift
[351/460] Compiling SwiftTelegramSdk CreateForumTopic.swift
[352/460] Compiling SwiftTelegramSdk CreateInvoiceLink.swift
[353/460] Compiling SwiftTelegramSdk CreateNewStickerSet.swift
[354/460] Compiling SwiftTelegramSdk DeclineChatJoinRequest.swift
[355/460] Compiling SwiftTelegramSdk DeleteBusinessMessages.swift
[356/460] Compiling SwiftTelegramSdk DeleteChatPhoto.swift
[357/460] Compiling SwiftTelegramSdk DeleteChatStickerSet.swift
[358/460] Compiling SwiftTelegramSdk DeleteForumTopic.swift
[359/460] Compiling SwiftTelegramSdk DeleteMessage.swift
[360/460] Compiling SwiftTelegramSdk DeleteMessages.swift
[361/460] Compiling SwiftTelegramSdk DeleteMyCommands.swift
[362/460] Compiling SwiftTelegramSdk DeleteStickerFromSet.swift
[363/460] Compiling SwiftTelegramSdk DeleteStickerSet.swift
[364/460] Compiling SwiftTelegramSdk DeleteStory.swift
[365/556] Compiling SwiftTelegramSdk TGInputPaidMediaVideoType.swift
[366/556] Compiling SwiftTelegramSdk TGInputPollOption.swift
[367/556] Compiling SwiftTelegramSdk TGInputProfilePhoto.swift
[368/556] Compiling SwiftTelegramSdk TGInputProfilePhotoAnimated.swift
[369/556] Compiling SwiftTelegramSdk TGInputProfilePhotoAnimatedType.swift
[370/556] Compiling SwiftTelegramSdk TGInputProfilePhotoStatic.swift
[371/556] Compiling SwiftTelegramSdk TGInputProfilePhotoStaticType.swift
[372/556] Compiling SwiftTelegramSdk TGInputSticker.swift
[373/556] Compiling SwiftTelegramSdk TGInputStoryContent.swift
[374/556] Compiling SwiftTelegramSdk TGInputStoryContentPhoto.swift
[375/556] Compiling SwiftTelegramSdk TGInputStoryContentPhotoType.swift
[376/556] Compiling SwiftTelegramSdk TGInputStoryContentVideo.swift
[377/556] Compiling SwiftTelegramSdk TGInputStoryContentVideoType.swift
[378/556] Compiling SwiftTelegramSdk TGInputTextMessageContent.swift
[379/556] Compiling SwiftTelegramSdk TGInputVenueMessageContent.swift
[380/556] Compiling SwiftTelegramSdk TGInvoice.swift
[381/556] Compiling SwiftTelegramSdk TGKeyboardButton.swift
[382/556] Compiling SwiftTelegramSdk TGKeyboardButtonPollType.swift
[383/556] Compiling SwiftTelegramSdk TGKeyboardButtonRequestChat.swift
[384/556] Compiling SwiftTelegramSdk TGKeyboardButtonRequestUsers.swift
[385/556] Compiling SwiftTelegramSdk TGLabeledPrice.swift
[386/556] Compiling SwiftTelegramSdk TGLinkPreviewOptions.swift
[387/556] Compiling SwiftTelegramSdk TGLocation.swift
[388/556] Compiling SwiftTelegramSdk TGLocationAddress.swift
[389/580] Compiling SwiftTelegramSdk TGInlineQueryResultVideo.swift
[390/580] Compiling SwiftTelegramSdk TGInlineQueryResultVideoType.swift
[391/580] Compiling SwiftTelegramSdk TGInlineQueryResultVoice.swift
[392/580] Compiling SwiftTelegramSdk TGInlineQueryResultVoiceType.swift
[393/580] Compiling SwiftTelegramSdk TGInlineQueryResultsButton.swift
[394/580] Compiling SwiftTelegramSdk TGInputContactMessageContent.swift
[395/580] Compiling SwiftTelegramSdk TGInputInvoiceMessageContent.swift
[396/580] Compiling SwiftTelegramSdk TGInputLocationMessageContent.swift
[397/580] Compiling SwiftTelegramSdk TGInputMedia.swift
[398/580] Compiling SwiftTelegramSdk TGInputMediaAnimation.swift
[399/580] Compiling SwiftTelegramSdk TGInputMediaAnimationType.swift
[400/580] Compiling SwiftTelegramSdk TGInputMediaAudio.swift
[401/580] Compiling SwiftTelegramSdk TGInputMediaAudioType.swift
[402/580] Compiling SwiftTelegramSdk TGInputMediaDocument.swift
[403/580] Compiling SwiftTelegramSdk TGInputMediaDocumentType.swift
[404/580] Compiling SwiftTelegramSdk TGInputMediaPhoto.swift
[405/580] Compiling SwiftTelegramSdk TGInputMediaPhotoType.swift
[406/580] Compiling SwiftTelegramSdk TGInputMediaVideo.swift
[407/580] Compiling SwiftTelegramSdk TGInputMediaVideoType.swift
[408/580] Compiling SwiftTelegramSdk TGInputMessageContent.swift
[409/580] Compiling SwiftTelegramSdk TGInputPaidMedia.swift
[410/580] Compiling SwiftTelegramSdk TGInputPaidMediaPhoto.swift
[411/580] Compiling SwiftTelegramSdk TGInputPaidMediaPhotoType.swift
[412/580] Compiling SwiftTelegramSdk TGInputPaidMediaVideo.swift
[413/580] Compiling SwiftTelegramSdk TGLoginUrl.swift
[414/580] Compiling SwiftTelegramSdk TGMaskPosition.swift
[415/580] Compiling SwiftTelegramSdk TGMaybeInaccessibleMessage.swift
[416/580] Compiling SwiftTelegramSdk TGMenuButton.swift
[417/580] Compiling SwiftTelegramSdk TGMenuButtonCommands.swift
[418/580] Compiling SwiftTelegramSdk TGMenuButtonCommandsType.swift
[419/580] Compiling SwiftTelegramSdk TGMenuButtonDefault.swift
[420/580] Compiling SwiftTelegramSdk TGMenuButtonDefaultType.swift
[421/580] Compiling SwiftTelegramSdk TGMenuButtonWebApp.swift
[422/580] Compiling SwiftTelegramSdk TGMenuButtonWebAppType.swift
[423/580] Compiling SwiftTelegramSdk TGMessage.swift
[424/580] Compiling SwiftTelegramSdk TGMessageAutoDeleteTimerChanged.swift
[425/580] Compiling SwiftTelegramSdk TGMessageEntity.swift
[426/580] Compiling SwiftTelegramSdk TGMessageEntityType.swift
[427/580] Compiling SwiftTelegramSdk TGMessageId.swift
[428/580] Compiling SwiftTelegramSdk TGMessageOrigin.swift
[429/580] Compiling SwiftTelegramSdk TGMessageOriginChannel.swift
[430/580] Compiling SwiftTelegramSdk TGMessageOriginChannelType.swift
[431/580] Compiling SwiftTelegramSdk TGMessageOriginChat.swift
[432/580] Compiling SwiftTelegramSdk TGMessageOriginChatType.swift
[433/580] Compiling SwiftTelegramSdk TGMessageOriginHiddenUser.swift
[434/580] Compiling SwiftTelegramSdk TGMessageOriginHiddenUserType.swift
[435/580] Compiling SwiftTelegramSdk TGMessageOriginUser.swift
[436/580] Compiling SwiftTelegramSdk TGMessageOriginUserType.swift
[437/580] Compiling SwiftTelegramSdk TGMessageReactionCountUpdated.swift
[438/580] Compiling SwiftTelegramSdk TGMessageReactionUpdated.swift
[439/580] Compiling SwiftTelegramSdk TGOrderInfo.swift
[440/580] Compiling SwiftTelegramSdk TGOwnedGift.swift
[441/580] Compiling SwiftTelegramSdk TGOwnedGiftRegular.swift
[442/580] Compiling SwiftTelegramSdk TGOwnedGiftRegularType.swift
[443/580] Compiling SwiftTelegramSdk TGOwnedGiftUnique.swift
[444/580] Compiling SwiftTelegramSdk TGOwnedGiftUniqueType.swift
[445/580] Compiling SwiftTelegramSdk TGOwnedGifts.swift
[446/580] Compiling SwiftTelegramSdk TGPaidMedia.swift
[447/580] Compiling SwiftTelegramSdk TGPaidMediaInfo.swift
[448/580] Compiling SwiftTelegramSdk TGPaidMediaPhoto.swift
[449/580] Compiling SwiftTelegramSdk TGPaidMediaPhotoType.swift
[450/580] Compiling SwiftTelegramSdk TGPaidMediaPreview.swift
[451/580] Compiling SwiftTelegramSdk TGPaidMediaPreviewType.swift
[452/580] Compiling SwiftTelegramSdk TGPaidMediaPurchased.swift
[453/580] Compiling SwiftTelegramSdk TGPaidMediaVideo.swift
[454/580] Compiling SwiftTelegramSdk TGPaidMediaVideoType.swift
[455/580] Compiling SwiftTelegramSdk TGPaidMessagePriceChanged.swift
[456/580] Compiling SwiftTelegramSdk TGPassportData.swift
[457/580] Compiling SwiftTelegramSdk TGPassportElementError.swift
[458/580] Compiling SwiftTelegramSdk TGPassportElementErrorDataField.swift
[459/580] Compiling SwiftTelegramSdk TGPassportElementErrorDataFieldType.swift
[460/580] Compiling SwiftTelegramSdk TGPassportElementErrorFile.swift
[461/580] Compiling SwiftTelegramSdk TGReactionType.swift
[462/580] Compiling SwiftTelegramSdk TGReactionTypeCustomEmoji.swift
[463/580] Compiling SwiftTelegramSdk TGReactionTypeCustomEmojiType.swift
[464/580] Compiling SwiftTelegramSdk TGReactionTypeEmoji.swift
[465/580] Compiling SwiftTelegramSdk TGReactionTypeEmojiType.swift
[466/580] Compiling SwiftTelegramSdk TGReactionTypePaid.swift
[467/580] Compiling SwiftTelegramSdk TGReactionTypePaidType.swift
[468/580] Compiling SwiftTelegramSdk TGRefundedPayment.swift
[469/580] Compiling SwiftTelegramSdk TGReplyKeyboardMarkup.swift
[470/580] Compiling SwiftTelegramSdk TGReplyKeyboardRemove.swift
[471/580] Compiling SwiftTelegramSdk TGReplyParameters.swift
[472/580] Compiling SwiftTelegramSdk TGResponseParameters.swift
[473/580] Compiling SwiftTelegramSdk TGRevenueWithdrawalState.swift
[474/580] Compiling SwiftTelegramSdk TGRevenueWithdrawalStateFailed.swift
[475/580] Compiling SwiftTelegramSdk TGRevenueWithdrawalStateFailedType.swift
[476/580] Compiling SwiftTelegramSdk TGRevenueWithdrawalStatePending.swift
[477/580] Compiling SwiftTelegramSdk TGRevenueWithdrawalStatePendingType.swift
[478/580] Compiling SwiftTelegramSdk TGRevenueWithdrawalStateSucceeded.swift
[479/580] Compiling SwiftTelegramSdk TGRevenueWithdrawalStateSucceededType.swift
[480/580] Compiling SwiftTelegramSdk TGSentWebAppMessage.swift
[481/580] Compiling SwiftTelegramSdk TGSharedUser.swift
[482/580] Compiling SwiftTelegramSdk TGShippingAddress.swift
[483/580] Compiling SwiftTelegramSdk TGShippingOption.swift
[484/580] Compiling SwiftTelegramSdk TGShippingQuery.swift
[485/580] Compiling SwiftTelegramSdk TGPassportElementErrorFileType.swift
[486/580] Compiling SwiftTelegramSdk TGPassportElementErrorFiles.swift
[487/580] Compiling SwiftTelegramSdk TGPassportElementErrorFilesType.swift
[488/580] Compiling SwiftTelegramSdk TGPassportElementErrorFrontSide.swift
[489/580] Compiling SwiftTelegramSdk TGPassportElementErrorFrontSideType.swift
[490/580] Compiling SwiftTelegramSdk TGPassportElementErrorReverseSide.swift
[491/580] Compiling SwiftTelegramSdk TGPassportElementErrorReverseSideType.swift
[492/580] Compiling SwiftTelegramSdk TGPassportElementErrorSelfie.swift
[493/580] Compiling SwiftTelegramSdk TGPassportElementErrorSelfieType.swift
[494/580] Compiling SwiftTelegramSdk TGPassportElementErrorTranslationFile.swift
[495/580] Compiling SwiftTelegramSdk TGPassportElementErrorTranslationFileType.swift
[496/580] Compiling SwiftTelegramSdk TGPassportElementErrorTranslationFiles.swift
[497/580] Compiling SwiftTelegramSdk TGPassportElementErrorTranslationFilesType.swift
[498/580] Compiling SwiftTelegramSdk TGPassportElementErrorUnspecified.swift
[499/580] Compiling SwiftTelegramSdk TGPassportFile.swift
[500/580] Compiling SwiftTelegramSdk TGPhotoSize.swift
[501/580] Compiling SwiftTelegramSdk TGPoll.swift
[502/580] Compiling SwiftTelegramSdk TGPollAnswer.swift
[503/580] Compiling SwiftTelegramSdk TGPollOption.swift
[504/580] Compiling SwiftTelegramSdk TGPollType.swift
[505/580] Compiling SwiftTelegramSdk TGPreCheckoutQuery.swift
[506/580] Compiling SwiftTelegramSdk TGPreparedInlineMessage.swift
[507/580] Compiling SwiftTelegramSdk TGProximityAlertTriggered.swift
[508/580] Compiling SwiftTelegramSdk TGReactionCount.swift
[509/580] Compiling SwiftTelegramSdk TGTransactionPartnerAffiliateProgram.swift
[510/580] Compiling SwiftTelegramSdk TGTransactionPartnerAffiliateProgramType.swift
[511/580] Compiling SwiftTelegramSdk TGTransactionPartnerChat.swift
[512/580] Compiling SwiftTelegramSdk TGTransactionPartnerChatType.swift
[513/580] Compiling SwiftTelegramSdk TGTransactionPartnerFragment.swift
[514/580] Compiling SwiftTelegramSdk TGTransactionPartnerFragmentType.swift
[515/580] Compiling SwiftTelegramSdk TGTransactionPartnerOther.swift
[516/580] Compiling SwiftTelegramSdk TGTransactionPartnerOtherType.swift
[517/580] Compiling SwiftTelegramSdk TGTransactionPartnerTelegramAds.swift
[518/580] Compiling SwiftTelegramSdk TGTransactionPartnerTelegramAdsType.swift
[519/580] Compiling SwiftTelegramSdk TGTransactionPartnerTelegramApi.swift
[520/580] Compiling SwiftTelegramSdk TGTransactionPartnerTelegramApiType.swift
[521/580] Compiling SwiftTelegramSdk TGTransactionPartnerUser.swift
[522/580] Compiling SwiftTelegramSdk TGTransactionPartnerUserType.swift
[523/580] Compiling SwiftTelegramSdk TGUniqueGift.swift
[524/580] Compiling SwiftTelegramSdk TGUniqueGiftBackdrop.swift
[525/580] Compiling SwiftTelegramSdk TGUniqueGiftBackdropColors.swift
[526/580] Compiling SwiftTelegramSdk TGUniqueGiftInfo.swift
[527/580] Compiling SwiftTelegramSdk TGUniqueGiftModel.swift
[528/580] Compiling SwiftTelegramSdk TGUniqueGiftSymbol.swift
[529/580] Compiling SwiftTelegramSdk TGUpdate.swift
[530/580] Compiling SwiftTelegramSdk TGUser.swift
[531/580] Compiling SwiftTelegramSdk TGUserChatBoosts.swift
[532/580] Compiling SwiftTelegramSdk TGUserProfilePhotos.swift
[533/580] Compiling SwiftTelegramSdk TGStarAmount.swift
[534/580] Compiling SwiftTelegramSdk TGStarTransaction.swift
[535/580] Compiling SwiftTelegramSdk TGStarTransactions.swift
[536/580] Compiling SwiftTelegramSdk TGSticker.swift
[537/580] Compiling SwiftTelegramSdk TGStickerSet.swift
[538/580] Compiling SwiftTelegramSdk TGStickerType.swift
[539/580] Compiling SwiftTelegramSdk TGStory.swift
[540/580] Compiling SwiftTelegramSdk TGStoryArea.swift
[541/580] Compiling SwiftTelegramSdk TGStoryAreaPosition.swift
[542/580] Compiling SwiftTelegramSdk TGStoryAreaType.swift
[543/580] Compiling SwiftTelegramSdk TGStoryAreaTypeLink.swift
[544/580] Compiling SwiftTelegramSdk TGStoryAreaTypeLinkType.swift
[545/580] Compiling SwiftTelegramSdk TGStoryAreaTypeLocation.swift
[546/580] Compiling SwiftTelegramSdk TGStoryAreaTypeLocationType.swift
[547/580] Compiling SwiftTelegramSdk TGStoryAreaTypeSuggestedReaction.swift
[548/580] Compiling SwiftTelegramSdk TGStoryAreaTypeSuggestedReactionType.swift
[549/580] Compiling SwiftTelegramSdk TGStoryAreaTypeUniqueGift.swift
[550/580] Compiling SwiftTelegramSdk TGStoryAreaTypeUniqueGiftType.swift
[551/580] Compiling SwiftTelegramSdk TGStoryAreaTypeWeather.swift
[552/580] Compiling SwiftTelegramSdk TGStoryAreaTypeWeatherType.swift
[553/580] Compiling SwiftTelegramSdk TGSuccessfulPayment.swift
[554/580] Compiling SwiftTelegramSdk TGSwitchInlineQueryChosenChat.swift
[555/580] Compiling SwiftTelegramSdk TGTextQuote.swift
[556/580] Compiling SwiftTelegramSdk TGTransactionPartner.swift
[557/580] Compiling SwiftTelegramSdk TGUsersShared.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[558/580] Compiling SwiftTelegramSdk TGVenue.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[559/580] Compiling SwiftTelegramSdk TGVideo.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[560/580] Compiling SwiftTelegramSdk TGVideoChatEnded.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[561/580] Compiling SwiftTelegramSdk TGVideoChatParticipantsInvited.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[562/580] Compiling SwiftTelegramSdk TGVideoChatScheduled.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[563/580] Compiling SwiftTelegramSdk TGVideoChatStarted.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[564/580] Compiling SwiftTelegramSdk TGVideoNote.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[565/580] Compiling SwiftTelegramSdk TGVoice.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[566/580] Compiling SwiftTelegramSdk TGWebAppData.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[567/580] Compiling SwiftTelegramSdk TGWebAppInfo.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[568/580] Compiling SwiftTelegramSdk TGWebhookInfo.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[569/580] Compiling SwiftTelegramSdk TGWriteAccessAllowed.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[570/580] Compiling SwiftTelegramSdk BotError.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[571/580] Compiling SwiftTelegramSdk Error+Helpers.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[572/580] Compiling SwiftTelegramSdk String+Helper.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[573/580] Compiling SwiftTelegramSdk Message+Helpers.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[574/580] Compiling SwiftTelegramSdk ChatId.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[575/580] Compiling SwiftTelegramSdk FileInfo.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[576/580] Compiling SwiftTelegramSdk InputFile.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[577/580] Compiling SwiftTelegramSdk MessageOrBool.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[578/580] Compiling SwiftTelegramSdk ParseMode.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[579/580] Compiling SwiftTelegramSdk ReplyMarkup.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
[580/580] Compiling SwiftTelegramSdk TelegramContainer.swift
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:10:14: warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public class BotError: TGErrorCommon {
   |              `- warning: non-final class 'BotError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 |     public var title: String = ""
/host/spi-builder-workspace/Sources/SwiftTelegramSdk/Telegrammer/Errors/BotError.swift:12:16: warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
10 | public class BotError: TGErrorCommon {
11 |
12 |     public var title: String = ""
   |                `- warning: stored property 'title' of 'Sendable'-conforming class 'BotError' is mutable; this is an error in the Swift 6 language mode
13 |
14 |     public enum `Type`: String, Decodable {
Build complete! (31.12s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-regular-expression",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.4",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nerzh/swift-regular-expression"
    },
    {
      "identity" : "swift-custom-logger",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nerzh/swift-custom-logger"
    }
  ],
  "manifest_display_name" : "SwiftTelegramSdk",
  "name" : "SwiftTelegramSdk",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftTelegramSdk",
      "targets" : [
        "SwiftTelegramSdk"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftTelegramSdk",
      "module_type" : "SwiftTarget",
      "name" : "SwiftTelegramSdk",
      "path" : "Sources/SwiftTelegramSdk",
      "product_dependencies" : [
        "SwiftRegularExpression",
        "SwiftCustomLogger"
      ],
      "product_memberships" : [
        "SwiftTelegramSdk"
      ],
      "sources" : [
        "Bot/Extensions/Array+RemoveHandler.swift",
        "Bot/Extensions/HTTPMediaType.swift",
        "Bot/Extensions/TGErrorCommon.swift",
        "Bot/Filters/AllFilter.swift",
        "Bot/Filters/AudioFilter.swift",
        "Bot/Filters/CaptionEntityFilter.swift",
        "Bot/Filters/ChatFilter.swift",
        "Bot/Filters/CommandFilter.swift",
        "Bot/Filters/ContactFilter.swift",
        "Bot/Filters/DocumentFilter.swift",
        "Bot/Filters/EntityFilter.swift",
        "Bot/Filters/ForwarderFilter.swift",
        "Bot/Filters/GameFilter.swift",
        "Bot/Filters/GroupFilter.swift",
        "Bot/Filters/InvoiceFilter.swift",
        "Bot/Filters/LanguageFilter.swift",
        "Bot/Filters/LocationFilter.swift",
        "Bot/Filters/PhotoFilter.swift",
        "Bot/Filters/PrivateFilter.swift",
        "Bot/Filters/RegexpFilter.swift",
        "Bot/Filters/ReplyFilter.swift",
        "Bot/Filters/StatusUpdateFilters.swift",
        "Bot/Filters/StickerFilter.swift",
        "Bot/Filters/SuccesfulPaymentFilter.swift",
        "Bot/Filters/TGFilter.swift",
        "Bot/Filters/TextFilter.swift",
        "Bot/Filters/UserFilter.swift",
        "Bot/Filters/VenueFilter.swift",
        "Bot/Filters/VideoFilter.swift",
        "Bot/Filters/VideoNoteFilter.swift",
        "Bot/Filters/VoiceFilter.swift",
        "Bot/Handlers/BaseHandler.swift",
        "Bot/Handlers/CallbackQueryHandler.swift",
        "Bot/Handlers/CommandHandler.swift",
        "Bot/Handlers/LoggerHandler.swift",
        "Bot/Handlers/MessageHandler.swift",
        "Bot/Handlers/RegexpHandler.swift",
        "Bot/Handlers/TGHandlerPrtcl.swift",
        "Bot/TGBot.swift",
        "Bot/TGBotPrtcl.swift",
        "Bot/TGClientPrtcl.swift",
        "Bot/TGConnection.swift",
        "Bot/TGDispatcher.swift",
        "Bot/TGMultiPart.swift",
        "Bot/Telegram/Methods/AddStickerToSet.swift",
        "Bot/Telegram/Methods/AnswerCallbackQuery.swift",
        "Bot/Telegram/Methods/AnswerInlineQuery.swift",
        "Bot/Telegram/Methods/AnswerPreCheckoutQuery.swift",
        "Bot/Telegram/Methods/AnswerShippingQuery.swift",
        "Bot/Telegram/Methods/AnswerWebAppQuery.swift",
        "Bot/Telegram/Methods/ApproveChatJoinRequest.swift",
        "Bot/Telegram/Methods/BanChatMember.swift",
        "Bot/Telegram/Methods/BanChatSenderChat.swift",
        "Bot/Telegram/Methods/Close.swift",
        "Bot/Telegram/Methods/CloseForumTopic.swift",
        "Bot/Telegram/Methods/CloseGeneralForumTopic.swift",
        "Bot/Telegram/Methods/ConvertGiftToStars.swift",
        "Bot/Telegram/Methods/CopyMessage.swift",
        "Bot/Telegram/Methods/CopyMessages.swift",
        "Bot/Telegram/Methods/CreateChatInviteLink.swift",
        "Bot/Telegram/Methods/CreateChatSubscriptionInviteLink.swift",
        "Bot/Telegram/Methods/CreateForumTopic.swift",
        "Bot/Telegram/Methods/CreateInvoiceLink.swift",
        "Bot/Telegram/Methods/CreateNewStickerSet.swift",
        "Bot/Telegram/Methods/DeclineChatJoinRequest.swift",
        "Bot/Telegram/Methods/DeleteBusinessMessages.swift",
        "Bot/Telegram/Methods/DeleteChatPhoto.swift",
        "Bot/Telegram/Methods/DeleteChatStickerSet.swift",
        "Bot/Telegram/Methods/DeleteForumTopic.swift",
        "Bot/Telegram/Methods/DeleteMessage.swift",
        "Bot/Telegram/Methods/DeleteMessages.swift",
        "Bot/Telegram/Methods/DeleteMyCommands.swift",
        "Bot/Telegram/Methods/DeleteStickerFromSet.swift",
        "Bot/Telegram/Methods/DeleteStickerSet.swift",
        "Bot/Telegram/Methods/DeleteStory.swift",
        "Bot/Telegram/Methods/DeleteWebhook.swift",
        "Bot/Telegram/Methods/EditChatInviteLink.swift",
        "Bot/Telegram/Methods/EditChatSubscriptionInviteLink.swift",
        "Bot/Telegram/Methods/EditForumTopic.swift",
        "Bot/Telegram/Methods/EditGeneralForumTopic.swift",
        "Bot/Telegram/Methods/EditMessageCaption.swift",
        "Bot/Telegram/Methods/EditMessageLiveLocation.swift",
        "Bot/Telegram/Methods/EditMessageMedia.swift",
        "Bot/Telegram/Methods/EditMessageReplyMarkup.swift",
        "Bot/Telegram/Methods/EditMessageText.swift",
        "Bot/Telegram/Methods/EditStory.swift",
        "Bot/Telegram/Methods/EditUserStarSubscription.swift",
        "Bot/Telegram/Methods/ExportChatInviteLink.swift",
        "Bot/Telegram/Methods/ForwardMessage.swift",
        "Bot/Telegram/Methods/ForwardMessages.swift",
        "Bot/Telegram/Methods/GetAvailableGifts.swift",
        "Bot/Telegram/Methods/GetBusinessAccountGifts.swift",
        "Bot/Telegram/Methods/GetBusinessAccountStarBalance.swift",
        "Bot/Telegram/Methods/GetBusinessConnection.swift",
        "Bot/Telegram/Methods/GetChat.swift",
        "Bot/Telegram/Methods/GetChatAdministrators.swift",
        "Bot/Telegram/Methods/GetChatMember.swift",
        "Bot/Telegram/Methods/GetChatMemberCount.swift",
        "Bot/Telegram/Methods/GetChatMenuButton.swift",
        "Bot/Telegram/Methods/GetCustomEmojiStickers.swift",
        "Bot/Telegram/Methods/GetFile.swift",
        "Bot/Telegram/Methods/GetForumTopicIconStickers.swift",
        "Bot/Telegram/Methods/GetGameHighScores.swift",
        "Bot/Telegram/Methods/GetMe.swift",
        "Bot/Telegram/Methods/GetMyCommands.swift",
        "Bot/Telegram/Methods/GetMyDefaultAdministratorRights.swift",
        "Bot/Telegram/Methods/GetMyDescription.swift",
        "Bot/Telegram/Methods/GetMyName.swift",
        "Bot/Telegram/Methods/GetMyShortDescription.swift",
        "Bot/Telegram/Methods/GetStarTransactions.swift",
        "Bot/Telegram/Methods/GetStickerSet.swift",
        "Bot/Telegram/Methods/GetUpdates.swift",
        "Bot/Telegram/Methods/GetUserChatBoosts.swift",
        "Bot/Telegram/Methods/GetUserProfilePhotos.swift",
        "Bot/Telegram/Methods/GetWebhookInfo.swift",
        "Bot/Telegram/Methods/GiftPremiumSubscription.swift",
        "Bot/Telegram/Methods/HideGeneralForumTopic.swift",
        "Bot/Telegram/Methods/LeaveChat.swift",
        "Bot/Telegram/Methods/LogOut.swift",
        "Bot/Telegram/Methods/PinChatMessage.swift",
        "Bot/Telegram/Methods/PostStory.swift",
        "Bot/Telegram/Methods/PromoteChatMember.swift",
        "Bot/Telegram/Methods/ReadBusinessMessage.swift",
        "Bot/Telegram/Methods/RefundStarPayment.swift",
        "Bot/Telegram/Methods/RemoveBusinessAccountProfilePhoto.swift",
        "Bot/Telegram/Methods/RemoveChatVerification.swift",
        "Bot/Telegram/Methods/RemoveUserVerification.swift",
        "Bot/Telegram/Methods/ReopenForumTopic.swift",
        "Bot/Telegram/Methods/ReopenGeneralForumTopic.swift",
        "Bot/Telegram/Methods/ReplaceStickerInSet.swift",
        "Bot/Telegram/Methods/RestrictChatMember.swift",
        "Bot/Telegram/Methods/RevokeChatInviteLink.swift",
        "Bot/Telegram/Methods/SavePreparedInlineMessage.swift",
        "Bot/Telegram/Methods/SendAnimation.swift",
        "Bot/Telegram/Methods/SendAudio.swift",
        "Bot/Telegram/Methods/SendChatAction.swift",
        "Bot/Telegram/Methods/SendContact.swift",
        "Bot/Telegram/Methods/SendDice.swift",
        "Bot/Telegram/Methods/SendDocument.swift",
        "Bot/Telegram/Methods/SendGame.swift",
        "Bot/Telegram/Methods/SendGift.swift",
        "Bot/Telegram/Methods/SendInvoice.swift",
        "Bot/Telegram/Methods/SendLocation.swift",
        "Bot/Telegram/Methods/SendMediaGroup.swift",
        "Bot/Telegram/Methods/SendMessage.swift",
        "Bot/Telegram/Methods/SendPaidMedia.swift",
        "Bot/Telegram/Methods/SendPhoto.swift",
        "Bot/Telegram/Methods/SendPoll.swift",
        "Bot/Telegram/Methods/SendSticker.swift",
        "Bot/Telegram/Methods/SendVenue.swift",
        "Bot/Telegram/Methods/SendVideo.swift",
        "Bot/Telegram/Methods/SendVideoNote.swift",
        "Bot/Telegram/Methods/SendVoice.swift",
        "Bot/Telegram/Methods/SetBusinessAccountBio.swift",
        "Bot/Telegram/Methods/SetBusinessAccountGiftSettings.swift",
        "Bot/Telegram/Methods/SetBusinessAccountName.swift",
        "Bot/Telegram/Methods/SetBusinessAccountProfilePhoto.swift",
        "Bot/Telegram/Methods/SetBusinessAccountUsername.swift",
        "Bot/Telegram/Methods/SetChatAdministratorCustomTitle.swift",
        "Bot/Telegram/Methods/SetChatDescription.swift",
        "Bot/Telegram/Methods/SetChatMenuButton.swift",
        "Bot/Telegram/Methods/SetChatPermissions.swift",
        "Bot/Telegram/Methods/SetChatPhoto.swift",
        "Bot/Telegram/Methods/SetChatStickerSet.swift",
        "Bot/Telegram/Methods/SetChatTitle.swift",
        "Bot/Telegram/Methods/SetCustomEmojiStickerSetThumbnail.swift",
        "Bot/Telegram/Methods/SetGameScore.swift",
        "Bot/Telegram/Methods/SetMessageReaction.swift",
        "Bot/Telegram/Methods/SetMyCommands.swift",
        "Bot/Telegram/Methods/SetMyDefaultAdministratorRights.swift",
        "Bot/Telegram/Methods/SetMyDescription.swift",
        "Bot/Telegram/Methods/SetMyName.swift",
        "Bot/Telegram/Methods/SetMyShortDescription.swift",
        "Bot/Telegram/Methods/SetPassportDataErrors.swift",
        "Bot/Telegram/Methods/SetStickerEmojiList.swift",
        "Bot/Telegram/Methods/SetStickerKeywords.swift",
        "Bot/Telegram/Methods/SetStickerMaskPosition.swift",
        "Bot/Telegram/Methods/SetStickerPositionInSet.swift",
        "Bot/Telegram/Methods/SetStickerSetThumbnail.swift",
        "Bot/Telegram/Methods/SetStickerSetTitle.swift",
        "Bot/Telegram/Methods/SetUserEmojiStatus.swift",
        "Bot/Telegram/Methods/SetWebhook.swift",
        "Bot/Telegram/Methods/StopMessageLiveLocation.swift",
        "Bot/Telegram/Methods/StopPoll.swift",
        "Bot/Telegram/Methods/TransferBusinessAccountStars.swift",
        "Bot/Telegram/Methods/TransferGift.swift",
        "Bot/Telegram/Methods/UnbanChatMember.swift",
        "Bot/Telegram/Methods/UnbanChatSenderChat.swift",
        "Bot/Telegram/Methods/UnhideGeneralForumTopic.swift",
        "Bot/Telegram/Methods/UnpinAllChatMessages.swift",
        "Bot/Telegram/Methods/UnpinAllForumTopicMessages.swift",
        "Bot/Telegram/Methods/UnpinAllGeneralForumTopicMessages.swift",
        "Bot/Telegram/Methods/UnpinChatMessage.swift",
        "Bot/Telegram/Methods/UpgradeGift.swift",
        "Bot/Telegram/Methods/UploadStickerFile.swift",
        "Bot/Telegram/Methods/VerifyChat.swift",
        "Bot/Telegram/Methods/VerifyUser.swift",
        "Bot/Telegram/ModelExtensions/TGMaybeInaccessibleMessageExtensions.swift",
        "Bot/Telegram/Models/TGAcceptedGiftTypes.swift",
        "Bot/Telegram/Models/TGAffiliateInfo.swift",
        "Bot/Telegram/Models/TGAnimation.swift",
        "Bot/Telegram/Models/TGAudio.swift",
        "Bot/Telegram/Models/TGBackgroundFill.swift",
        "Bot/Telegram/Models/TGBackgroundFillFreeformGradient.swift",
        "Bot/Telegram/Models/TGBackgroundFillFreeformGradientType.swift",
        "Bot/Telegram/Models/TGBackgroundFillGradient.swift",
        "Bot/Telegram/Models/TGBackgroundFillGradientType.swift",
        "Bot/Telegram/Models/TGBackgroundFillSolid.swift",
        "Bot/Telegram/Models/TGBackgroundFillSolidType.swift",
        "Bot/Telegram/Models/TGBackgroundType.swift",
        "Bot/Telegram/Models/TGBackgroundTypeChatTheme.swift",
        "Bot/Telegram/Models/TGBackgroundTypeChatThemeType.swift",
        "Bot/Telegram/Models/TGBackgroundTypeFill.swift",
        "Bot/Telegram/Models/TGBackgroundTypeFillType.swift",
        "Bot/Telegram/Models/TGBackgroundTypePattern.swift",
        "Bot/Telegram/Models/TGBackgroundTypePatternType.swift",
        "Bot/Telegram/Models/TGBackgroundTypeWallpaper.swift",
        "Bot/Telegram/Models/TGBackgroundTypeWallpaperType.swift",
        "Bot/Telegram/Models/TGBirthdate.swift",
        "Bot/Telegram/Models/TGBotCommand.swift",
        "Bot/Telegram/Models/TGBotCommandScope.swift",
        "Bot/Telegram/Models/TGBotCommandScopeAllChatAdministrators.swift",
        "Bot/Telegram/Models/TGBotCommandScopeAllChatAdministratorsType.swift",
        "Bot/Telegram/Models/TGBotCommandScopeAllGroupChats.swift",
        "Bot/Telegram/Models/TGBotCommandScopeAllGroupChatsType.swift",
        "Bot/Telegram/Models/TGBotCommandScopeAllPrivateChats.swift",
        "Bot/Telegram/Models/TGBotCommandScopeAllPrivateChatsType.swift",
        "Bot/Telegram/Models/TGBotCommandScopeChat.swift",
        "Bot/Telegram/Models/TGBotCommandScopeChatAdministrators.swift",
        "Bot/Telegram/Models/TGBotCommandScopeChatAdministratorsType.swift",
        "Bot/Telegram/Models/TGBotCommandScopeChatMember.swift",
        "Bot/Telegram/Models/TGBotCommandScopeChatMemberType.swift",
        "Bot/Telegram/Models/TGBotCommandScopeChatType.swift",
        "Bot/Telegram/Models/TGBotCommandScopeDefault.swift",
        "Bot/Telegram/Models/TGBotCommandScopeDefaultType.swift",
        "Bot/Telegram/Models/TGBotDescription.swift",
        "Bot/Telegram/Models/TGBotName.swift",
        "Bot/Telegram/Models/TGBotShortDescription.swift",
        "Bot/Telegram/Models/TGBusinessBotRights.swift",
        "Bot/Telegram/Models/TGBusinessConnection.swift",
        "Bot/Telegram/Models/TGBusinessIntro.swift",
        "Bot/Telegram/Models/TGBusinessLocation.swift",
        "Bot/Telegram/Models/TGBusinessMessagesDeleted.swift",
        "Bot/Telegram/Models/TGBusinessOpeningHours.swift",
        "Bot/Telegram/Models/TGBusinessOpeningHoursInterval.swift",
        "Bot/Telegram/Models/TGCallbackGame.swift",
        "Bot/Telegram/Models/TGCallbackQuery.swift",
        "Bot/Telegram/Models/TGChat.swift",
        "Bot/Telegram/Models/TGChatAdministratorRights.swift",
        "Bot/Telegram/Models/TGChatBackground.swift",
        "Bot/Telegram/Models/TGChatBoost.swift",
        "Bot/Telegram/Models/TGChatBoostAdded.swift",
        "Bot/Telegram/Models/TGChatBoostRemoved.swift",
        "Bot/Telegram/Models/TGChatBoostSource.swift",
        "Bot/Telegram/Models/TGChatBoostSourceGiftCode.swift",
        "Bot/Telegram/Models/TGChatBoostSourceGiveaway.swift",
        "Bot/Telegram/Models/TGChatBoostSourcePremium.swift",
        "Bot/Telegram/Models/TGChatBoostUpdated.swift",
        "Bot/Telegram/Models/TGChatFullInfo.swift",
        "Bot/Telegram/Models/TGChatFullInfoType.swift",
        "Bot/Telegram/Models/TGChatInviteLink.swift",
        "Bot/Telegram/Models/TGChatJoinRequest.swift",
        "Bot/Telegram/Models/TGChatLocation.swift",
        "Bot/Telegram/Models/TGChatMember.swift",
        "Bot/Telegram/Models/TGChatMemberAdministrator.swift",
        "Bot/Telegram/Models/TGChatMemberBanned.swift",
        "Bot/Telegram/Models/TGChatMemberLeft.swift",
        "Bot/Telegram/Models/TGChatMemberMember.swift",
        "Bot/Telegram/Models/TGChatMemberOwner.swift",
        "Bot/Telegram/Models/TGChatMemberRestricted.swift",
        "Bot/Telegram/Models/TGChatMemberUpdated.swift",
        "Bot/Telegram/Models/TGChatPermissions.swift",
        "Bot/Telegram/Models/TGChatPhoto.swift",
        "Bot/Telegram/Models/TGChatShared.swift",
        "Bot/Telegram/Models/TGChatType.swift",
        "Bot/Telegram/Models/TGChosenInlineResult.swift",
        "Bot/Telegram/Models/TGContact.swift",
        "Bot/Telegram/Models/TGCopyTextButton.swift",
        "Bot/Telegram/Models/TGDice.swift",
        "Bot/Telegram/Models/TGDocument.swift",
        "Bot/Telegram/Models/TGEncryptedCredentials.swift",
        "Bot/Telegram/Models/TGEncryptedPassportElement.swift",
        "Bot/Telegram/Models/TGEncryptedPassportElementType.swift",
        "Bot/Telegram/Models/TGExternalReplyInfo.swift",
        "Bot/Telegram/Models/TGFile.swift",
        "Bot/Telegram/Models/TGForceReply.swift",
        "Bot/Telegram/Models/TGForumTopic.swift",
        "Bot/Telegram/Models/TGForumTopicClosed.swift",
        "Bot/Telegram/Models/TGForumTopicCreated.swift",
        "Bot/Telegram/Models/TGForumTopicEdited.swift",
        "Bot/Telegram/Models/TGForumTopicReopened.swift",
        "Bot/Telegram/Models/TGGame.swift",
        "Bot/Telegram/Models/TGGameHighScore.swift",
        "Bot/Telegram/Models/TGGeneralForumTopicHidden.swift",
        "Bot/Telegram/Models/TGGeneralForumTopicUnhidden.swift",
        "Bot/Telegram/Models/TGGift.swift",
        "Bot/Telegram/Models/TGGiftInfo.swift",
        "Bot/Telegram/Models/TGGifts.swift",
        "Bot/Telegram/Models/TGGiveaway.swift",
        "Bot/Telegram/Models/TGGiveawayCompleted.swift",
        "Bot/Telegram/Models/TGGiveawayCreated.swift",
        "Bot/Telegram/Models/TGGiveawayWinners.swift",
        "Bot/Telegram/Models/TGInaccessibleMessage.swift",
        "Bot/Telegram/Models/TGInlineKeyboardButton.swift",
        "Bot/Telegram/Models/TGInlineKeyboardMarkup.swift",
        "Bot/Telegram/Models/TGInlineQuery.swift",
        "Bot/Telegram/Models/TGInlineQueryResult.swift",
        "Bot/Telegram/Models/TGInlineQueryResultArticle.swift",
        "Bot/Telegram/Models/TGInlineQueryResultArticleType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultAudio.swift",
        "Bot/Telegram/Models/TGInlineQueryResultAudioType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedAudio.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedAudioType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedDocument.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedDocumentType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedGif.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedGifType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedMpeg4Gif.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedMpeg4GifType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedPhoto.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedPhotoType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedSticker.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedStickerType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedVideo.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedVideoType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedVoice.swift",
        "Bot/Telegram/Models/TGInlineQueryResultCachedVoiceType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultContact.swift",
        "Bot/Telegram/Models/TGInlineQueryResultContactType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultDocument.swift",
        "Bot/Telegram/Models/TGInlineQueryResultDocumentType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultGame.swift",
        "Bot/Telegram/Models/TGInlineQueryResultGameType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultGif.swift",
        "Bot/Telegram/Models/TGInlineQueryResultGifType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultLocation.swift",
        "Bot/Telegram/Models/TGInlineQueryResultLocationType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultMpeg4Gif.swift",
        "Bot/Telegram/Models/TGInlineQueryResultMpeg4GifType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultPhoto.swift",
        "Bot/Telegram/Models/TGInlineQueryResultPhotoType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultVenue.swift",
        "Bot/Telegram/Models/TGInlineQueryResultVenueType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultVideo.swift",
        "Bot/Telegram/Models/TGInlineQueryResultVideoType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultVoice.swift",
        "Bot/Telegram/Models/TGInlineQueryResultVoiceType.swift",
        "Bot/Telegram/Models/TGInlineQueryResultsButton.swift",
        "Bot/Telegram/Models/TGInputContactMessageContent.swift",
        "Bot/Telegram/Models/TGInputInvoiceMessageContent.swift",
        "Bot/Telegram/Models/TGInputLocationMessageContent.swift",
        "Bot/Telegram/Models/TGInputMedia.swift",
        "Bot/Telegram/Models/TGInputMediaAnimation.swift",
        "Bot/Telegram/Models/TGInputMediaAnimationType.swift",
        "Bot/Telegram/Models/TGInputMediaAudio.swift",
        "Bot/Telegram/Models/TGInputMediaAudioType.swift",
        "Bot/Telegram/Models/TGInputMediaDocument.swift",
        "Bot/Telegram/Models/TGInputMediaDocumentType.swift",
        "Bot/Telegram/Models/TGInputMediaPhoto.swift",
        "Bot/Telegram/Models/TGInputMediaPhotoType.swift",
        "Bot/Telegram/Models/TGInputMediaVideo.swift",
        "Bot/Telegram/Models/TGInputMediaVideoType.swift",
        "Bot/Telegram/Models/TGInputMessageContent.swift",
        "Bot/Telegram/Models/TGInputPaidMedia.swift",
        "Bot/Telegram/Models/TGInputPaidMediaPhoto.swift",
        "Bot/Telegram/Models/TGInputPaidMediaPhotoType.swift",
        "Bot/Telegram/Models/TGInputPaidMediaVideo.swift",
        "Bot/Telegram/Models/TGInputPaidMediaVideoType.swift",
        "Bot/Telegram/Models/TGInputPollOption.swift",
        "Bot/Telegram/Models/TGInputProfilePhoto.swift",
        "Bot/Telegram/Models/TGInputProfilePhotoAnimated.swift",
        "Bot/Telegram/Models/TGInputProfilePhotoAnimatedType.swift",
        "Bot/Telegram/Models/TGInputProfilePhotoStatic.swift",
        "Bot/Telegram/Models/TGInputProfilePhotoStaticType.swift",
        "Bot/Telegram/Models/TGInputSticker.swift",
        "Bot/Telegram/Models/TGInputStoryContent.swift",
        "Bot/Telegram/Models/TGInputStoryContentPhoto.swift",
        "Bot/Telegram/Models/TGInputStoryContentPhotoType.swift",
        "Bot/Telegram/Models/TGInputStoryContentVideo.swift",
        "Bot/Telegram/Models/TGInputStoryContentVideoType.swift",
        "Bot/Telegram/Models/TGInputTextMessageContent.swift",
        "Bot/Telegram/Models/TGInputVenueMessageContent.swift",
        "Bot/Telegram/Models/TGInvoice.swift",
        "Bot/Telegram/Models/TGKeyboardButton.swift",
        "Bot/Telegram/Models/TGKeyboardButtonPollType.swift",
        "Bot/Telegram/Models/TGKeyboardButtonRequestChat.swift",
        "Bot/Telegram/Models/TGKeyboardButtonRequestUsers.swift",
        "Bot/Telegram/Models/TGLabeledPrice.swift",
        "Bot/Telegram/Models/TGLinkPreviewOptions.swift",
        "Bot/Telegram/Models/TGLocation.swift",
        "Bot/Telegram/Models/TGLocationAddress.swift",
        "Bot/Telegram/Models/TGLoginUrl.swift",
        "Bot/Telegram/Models/TGMaskPosition.swift",
        "Bot/Telegram/Models/TGMaybeInaccessibleMessage.swift",
        "Bot/Telegram/Models/TGMenuButton.swift",
        "Bot/Telegram/Models/TGMenuButtonCommands.swift",
        "Bot/Telegram/Models/TGMenuButtonCommandsType.swift",
        "Bot/Telegram/Models/TGMenuButtonDefault.swift",
        "Bot/Telegram/Models/TGMenuButtonDefaultType.swift",
        "Bot/Telegram/Models/TGMenuButtonWebApp.swift",
        "Bot/Telegram/Models/TGMenuButtonWebAppType.swift",
        "Bot/Telegram/Models/TGMessage.swift",
        "Bot/Telegram/Models/TGMessageAutoDeleteTimerChanged.swift",
        "Bot/Telegram/Models/TGMessageEntity.swift",
        "Bot/Telegram/Models/TGMessageEntityType.swift",
        "Bot/Telegram/Models/TGMessageId.swift",
        "Bot/Telegram/Models/TGMessageOrigin.swift",
        "Bot/Telegram/Models/TGMessageOriginChannel.swift",
        "Bot/Telegram/Models/TGMessageOriginChannelType.swift",
        "Bot/Telegram/Models/TGMessageOriginChat.swift",
        "Bot/Telegram/Models/TGMessageOriginChatType.swift",
        "Bot/Telegram/Models/TGMessageOriginHiddenUser.swift",
        "Bot/Telegram/Models/TGMessageOriginHiddenUserType.swift",
        "Bot/Telegram/Models/TGMessageOriginUser.swift",
        "Bot/Telegram/Models/TGMessageOriginUserType.swift",
        "Bot/Telegram/Models/TGMessageReactionCountUpdated.swift",
        "Bot/Telegram/Models/TGMessageReactionUpdated.swift",
        "Bot/Telegram/Models/TGOrderInfo.swift",
        "Bot/Telegram/Models/TGOwnedGift.swift",
        "Bot/Telegram/Models/TGOwnedGiftRegular.swift",
        "Bot/Telegram/Models/TGOwnedGiftRegularType.swift",
        "Bot/Telegram/Models/TGOwnedGiftUnique.swift",
        "Bot/Telegram/Models/TGOwnedGiftUniqueType.swift",
        "Bot/Telegram/Models/TGOwnedGifts.swift",
        "Bot/Telegram/Models/TGPaidMedia.swift",
        "Bot/Telegram/Models/TGPaidMediaInfo.swift",
        "Bot/Telegram/Models/TGPaidMediaPhoto.swift",
        "Bot/Telegram/Models/TGPaidMediaPhotoType.swift",
        "Bot/Telegram/Models/TGPaidMediaPreview.swift",
        "Bot/Telegram/Models/TGPaidMediaPreviewType.swift",
        "Bot/Telegram/Models/TGPaidMediaPurchased.swift",
        "Bot/Telegram/Models/TGPaidMediaVideo.swift",
        "Bot/Telegram/Models/TGPaidMediaVideoType.swift",
        "Bot/Telegram/Models/TGPaidMessagePriceChanged.swift",
        "Bot/Telegram/Models/TGPassportData.swift",
        "Bot/Telegram/Models/TGPassportElementError.swift",
        "Bot/Telegram/Models/TGPassportElementErrorDataField.swift",
        "Bot/Telegram/Models/TGPassportElementErrorDataFieldType.swift",
        "Bot/Telegram/Models/TGPassportElementErrorFile.swift",
        "Bot/Telegram/Models/TGPassportElementErrorFileType.swift",
        "Bot/Telegram/Models/TGPassportElementErrorFiles.swift",
        "Bot/Telegram/Models/TGPassportElementErrorFilesType.swift",
        "Bot/Telegram/Models/TGPassportElementErrorFrontSide.swift",
        "Bot/Telegram/Models/TGPassportElementErrorFrontSideType.swift",
        "Bot/Telegram/Models/TGPassportElementErrorReverseSide.swift",
        "Bot/Telegram/Models/TGPassportElementErrorReverseSideType.swift",
        "Bot/Telegram/Models/TGPassportElementErrorSelfie.swift",
        "Bot/Telegram/Models/TGPassportElementErrorSelfieType.swift",
        "Bot/Telegram/Models/TGPassportElementErrorTranslationFile.swift",
        "Bot/Telegram/Models/TGPassportElementErrorTranslationFileType.swift",
        "Bot/Telegram/Models/TGPassportElementErrorTranslationFiles.swift",
        "Bot/Telegram/Models/TGPassportElementErrorTranslationFilesType.swift",
        "Bot/Telegram/Models/TGPassportElementErrorUnspecified.swift",
        "Bot/Telegram/Models/TGPassportFile.swift",
        "Bot/Telegram/Models/TGPhotoSize.swift",
        "Bot/Telegram/Models/TGPoll.swift",
        "Bot/Telegram/Models/TGPollAnswer.swift",
        "Bot/Telegram/Models/TGPollOption.swift",
        "Bot/Telegram/Models/TGPollType.swift",
        "Bot/Telegram/Models/TGPreCheckoutQuery.swift",
        "Bot/Telegram/Models/TGPreparedInlineMessage.swift",
        "Bot/Telegram/Models/TGProximityAlertTriggered.swift",
        "Bot/Telegram/Models/TGReactionCount.swift",
        "Bot/Telegram/Models/TGReactionType.swift",
        "Bot/Telegram/Models/TGReactionTypeCustomEmoji.swift",
        "Bot/Telegram/Models/TGReactionTypeCustomEmojiType.swift",
        "Bot/Telegram/Models/TGReactionTypeEmoji.swift",
        "Bot/Telegram/Models/TGReactionTypeEmojiType.swift",
        "Bot/Telegram/Models/TGReactionTypePaid.swift",
        "Bot/Telegram/Models/TGReactionTypePaidType.swift",
        "Bot/Telegram/Models/TGRefundedPayment.swift",
        "Bot/Telegram/Models/TGReplyKeyboardMarkup.swift",
        "Bot/Telegram/Models/TGReplyKeyboardRemove.swift",
        "Bot/Telegram/Models/TGReplyParameters.swift",
        "Bot/Telegram/Models/TGResponseParameters.swift",
        "Bot/Telegram/Models/TGRevenueWithdrawalState.swift",
        "Bot/Telegram/Models/TGRevenueWithdrawalStateFailed.swift",
        "Bot/Telegram/Models/TGRevenueWithdrawalStateFailedType.swift",
        "Bot/Telegram/Models/TGRevenueWithdrawalStatePending.swift",
        "Bot/Telegram/Models/TGRevenueWithdrawalStatePendingType.swift",
        "Bot/Telegram/Models/TGRevenueWithdrawalStateSucceeded.swift",
        "Bot/Telegram/Models/TGRevenueWithdrawalStateSucceededType.swift",
        "Bot/Telegram/Models/TGSentWebAppMessage.swift",
        "Bot/Telegram/Models/TGSharedUser.swift",
        "Bot/Telegram/Models/TGShippingAddress.swift",
        "Bot/Telegram/Models/TGShippingOption.swift",
        "Bot/Telegram/Models/TGShippingQuery.swift",
        "Bot/Telegram/Models/TGStarAmount.swift",
        "Bot/Telegram/Models/TGStarTransaction.swift",
        "Bot/Telegram/Models/TGStarTransactions.swift",
        "Bot/Telegram/Models/TGSticker.swift",
        "Bot/Telegram/Models/TGStickerSet.swift",
        "Bot/Telegram/Models/TGStickerType.swift",
        "Bot/Telegram/Models/TGStory.swift",
        "Bot/Telegram/Models/TGStoryArea.swift",
        "Bot/Telegram/Models/TGStoryAreaPosition.swift",
        "Bot/Telegram/Models/TGStoryAreaType.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeLink.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeLinkType.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeLocation.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeLocationType.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeSuggestedReaction.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeSuggestedReactionType.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeUniqueGift.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeUniqueGiftType.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeWeather.swift",
        "Bot/Telegram/Models/TGStoryAreaTypeWeatherType.swift",
        "Bot/Telegram/Models/TGSuccessfulPayment.swift",
        "Bot/Telegram/Models/TGSwitchInlineQueryChosenChat.swift",
        "Bot/Telegram/Models/TGTextQuote.swift",
        "Bot/Telegram/Models/TGTransactionPartner.swift",
        "Bot/Telegram/Models/TGTransactionPartnerAffiliateProgram.swift",
        "Bot/Telegram/Models/TGTransactionPartnerAffiliateProgramType.swift",
        "Bot/Telegram/Models/TGTransactionPartnerChat.swift",
        "Bot/Telegram/Models/TGTransactionPartnerChatType.swift",
        "Bot/Telegram/Models/TGTransactionPartnerFragment.swift",
        "Bot/Telegram/Models/TGTransactionPartnerFragmentType.swift",
        "Bot/Telegram/Models/TGTransactionPartnerOther.swift",
        "Bot/Telegram/Models/TGTransactionPartnerOtherType.swift",
        "Bot/Telegram/Models/TGTransactionPartnerTelegramAds.swift",
        "Bot/Telegram/Models/TGTransactionPartnerTelegramAdsType.swift",
        "Bot/Telegram/Models/TGTransactionPartnerTelegramApi.swift",
        "Bot/Telegram/Models/TGTransactionPartnerTelegramApiType.swift",
        "Bot/Telegram/Models/TGTransactionPartnerUser.swift",
        "Bot/Telegram/Models/TGTransactionPartnerUserType.swift",
        "Bot/Telegram/Models/TGUniqueGift.swift",
        "Bot/Telegram/Models/TGUniqueGiftBackdrop.swift",
        "Bot/Telegram/Models/TGUniqueGiftBackdropColors.swift",
        "Bot/Telegram/Models/TGUniqueGiftInfo.swift",
        "Bot/Telegram/Models/TGUniqueGiftModel.swift",
        "Bot/Telegram/Models/TGUniqueGiftSymbol.swift",
        "Bot/Telegram/Models/TGUpdate.swift",
        "Bot/Telegram/Models/TGUser.swift",
        "Bot/Telegram/Models/TGUserChatBoosts.swift",
        "Bot/Telegram/Models/TGUserProfilePhotos.swift",
        "Bot/Telegram/Models/TGUsersShared.swift",
        "Bot/Telegram/Models/TGVenue.swift",
        "Bot/Telegram/Models/TGVideo.swift",
        "Bot/Telegram/Models/TGVideoChatEnded.swift",
        "Bot/Telegram/Models/TGVideoChatParticipantsInvited.swift",
        "Bot/Telegram/Models/TGVideoChatScheduled.swift",
        "Bot/Telegram/Models/TGVideoChatStarted.swift",
        "Bot/Telegram/Models/TGVideoNote.swift",
        "Bot/Telegram/Models/TGVoice.swift",
        "Bot/Telegram/Models/TGWebAppData.swift",
        "Bot/Telegram/Models/TGWebAppInfo.swift",
        "Bot/Telegram/Models/TGWebhookInfo.swift",
        "Bot/Telegram/Models/TGWriteAccessAllowed.swift",
        "Telegrammer/Errors/BotError.swift",
        "Telegrammer/Helpers/Error+Helpers.swift",
        "Telegrammer/Helpers/String+Helper.swift",
        "Telegrammer/Telegram/Extensions/Message+Helpers.swift",
        "Telegrammer/Types/ChatId.swift",
        "Telegrammer/Types/FileInfo.swift",
        "Telegrammer/Types/InputFile.swift",
        "Telegrammer/Types/MessageOrBool.swift",
        "Telegrammer/Types/ParseMode.swift",
        "Telegrammer/Types/ReplyMarkup.swift",
        "Telegrammer/Types/TelegramContainer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:2b296aa7156f49efc57252cdf9ed4bb21d0f92fc98d88800e255491ba2db3116
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.