The Swift Package Index logo.Swift Package Index

Build Information

Successful build of JellyfinAPI, reference 0.6.0 (e7bb3b), with Swift 6.1 for macOS (SPM) on 24 Oct 2025 00:26:05 UTC.

Swift 6 data race errors: 1

Build Command

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

Build Log

156 |     }
157 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:163:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
161 |         configure: ((inout URLRequest) throws -> Void)? = nil
162 |     ) async throws -> Response<Data> {
163 |         try await _apiClient.data(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'data(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
164 |     }
165 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:171:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
169 |         configure: ((inout URLRequest) throws -> Void)? = nil
170 |     ) async throws -> Response<URL> {
171 |         try await _apiClient.download(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'download(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
172 |     }
173 |
[361/589] Compiling JellyfinAPI CompleteWizardAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:65:38: warning: capture of 'self' with non-sendable type 'JellyfinClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 12 | /// Basic wrapper of `Get.APIClient` with helper methods for interfacing with the `JellyfinAPI` package,
 13 | /// like injecting required headers for API calls with the current access token.
 14 | public final class JellyfinClient {
    |                    `- note: class 'JellyfinClient' does not conform to the 'Sendable' protocol
 15 |
 16 |     /// Current user access token
    :
 63 |
 64 |         self._apiClient = APIClient(baseURL: configuration.url) { configuration in
 65 |             configuration.delegate = passthroughDelegate
    |                                      `- warning: capture of 'self' with non-sendable type 'JellyfinClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |             configuration.sessionConfiguration = sessionConfiguration
 67 |             configuration.sessionDelegate = sessionDelegate
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:146:30: warning: non-sendable result type 'Response<T>' cannot be sent from actor-isolated context in call to instance method 'send(_:delegate:configure:)'; this is an error in the Swift 6 language mode
139 |     }
140 |
141 |     public func send<T>(
    |                      `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
142 |         _ request: Request<T>,
143 |         delegate: URLSessionDataDelegate? = nil,
144 |         configure: ((inout URLRequest) throws -> Void)? = nil
145 |     ) async throws -> Response<T> where T: Decodable {
146 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              `- warning: non-sendable result type 'Response<T>' cannot be sent from actor-isolated context in call to instance method 'send(_:delegate:configure:)'; this is an error in the Swift 6 language mode
147 |     }
148 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenISO8601Formatter.swift:12:14: warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
10 |
11 | // https://stackoverflow.com/a/50281094/976628
12 | public class OpenISO8601DateFormatter: DateFormatter {
   |              `- warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
13 |     static let withoutSeconds: DateFormatter = {
14 |         let formatter = DateFormatter()
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:146:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
144 |         configure: ((inout URLRequest) throws -> Void)? = nil
145 |     ) async throws -> Response<T> where T: Decodable {
146 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'send(_:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
147 |     }
148 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:155:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
153 |         configure: ((inout URLRequest) throws -> Void)? = nil
154 |     ) async throws -> Response<Void> {
155 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'send(_:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
156 |     }
157 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:163:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
161 |         configure: ((inout URLRequest) throws -> Void)? = nil
162 |     ) async throws -> Response<Data> {
163 |         try await _apiClient.data(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'data(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
164 |     }
165 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:171:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
169 |         configure: ((inout URLRequest) throws -> Void)? = nil
170 |     ) async throws -> Response<URL> {
171 |         try await _apiClient.download(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'download(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
172 |     }
173 |
[362/589] Compiling JellyfinAPI ConnectAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:65:38: warning: capture of 'self' with non-sendable type 'JellyfinClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 12 | /// Basic wrapper of `Get.APIClient` with helper methods for interfacing with the `JellyfinAPI` package,
 13 | /// like injecting required headers for API calls with the current access token.
 14 | public final class JellyfinClient {
    |                    `- note: class 'JellyfinClient' does not conform to the 'Sendable' protocol
 15 |
 16 |     /// Current user access token
    :
 63 |
 64 |         self._apiClient = APIClient(baseURL: configuration.url) { configuration in
 65 |             configuration.delegate = passthroughDelegate
    |                                      `- warning: capture of 'self' with non-sendable type 'JellyfinClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |             configuration.sessionConfiguration = sessionConfiguration
 67 |             configuration.sessionDelegate = sessionDelegate
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:146:30: warning: non-sendable result type 'Response<T>' cannot be sent from actor-isolated context in call to instance method 'send(_:delegate:configure:)'; this is an error in the Swift 6 language mode
139 |     }
140 |
141 |     public func send<T>(
    |                      `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
142 |         _ request: Request<T>,
143 |         delegate: URLSessionDataDelegate? = nil,
144 |         configure: ((inout URLRequest) throws -> Void)? = nil
145 |     ) async throws -> Response<T> where T: Decodable {
146 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              `- warning: non-sendable result type 'Response<T>' cannot be sent from actor-isolated context in call to instance method 'send(_:delegate:configure:)'; this is an error in the Swift 6 language mode
147 |     }
148 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenISO8601Formatter.swift:12:14: warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
10 |
11 | // https://stackoverflow.com/a/50281094/976628
12 | public class OpenISO8601DateFormatter: DateFormatter {
   |              `- warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
13 |     static let withoutSeconds: DateFormatter = {
14 |         let formatter = DateFormatter()
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:146:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
144 |         configure: ((inout URLRequest) throws -> Void)? = nil
145 |     ) async throws -> Response<T> where T: Decodable {
146 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'send(_:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
147 |     }
148 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:155:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
153 |         configure: ((inout URLRequest) throws -> Void)? = nil
154 |     ) async throws -> Response<Void> {
155 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'send(_:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
156 |     }
157 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:163:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
161 |         configure: ((inout URLRequest) throws -> Void)? = nil
162 |     ) async throws -> Response<Data> {
163 |         try await _apiClient.data(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'data(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
164 |     }
165 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:171:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
169 |         configure: ((inout URLRequest) throws -> Void)? = nil
170 |     ) async throws -> Response<URL> {
171 |         try await _apiClient.download(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'download(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
172 |     }
173 |
[363/589] Compiling JellyfinAPI CreateAdminNotificationAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:65:38: warning: capture of 'self' with non-sendable type 'JellyfinClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 12 | /// Basic wrapper of `Get.APIClient` with helper methods for interfacing with the `JellyfinAPI` package,
 13 | /// like injecting required headers for API calls with the current access token.
 14 | public final class JellyfinClient {
    |                    `- note: class 'JellyfinClient' does not conform to the 'Sendable' protocol
 15 |
 16 |     /// Current user access token
    :
 63 |
 64 |         self._apiClient = APIClient(baseURL: configuration.url) { configuration in
 65 |             configuration.delegate = passthroughDelegate
    |                                      `- warning: capture of 'self' with non-sendable type 'JellyfinClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |             configuration.sessionConfiguration = sessionConfiguration
 67 |             configuration.sessionDelegate = sessionDelegate
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:146:30: warning: non-sendable result type 'Response<T>' cannot be sent from actor-isolated context in call to instance method 'send(_:delegate:configure:)'; this is an error in the Swift 6 language mode
139 |     }
140 |
141 |     public func send<T>(
    |                      `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
142 |         _ request: Request<T>,
143 |         delegate: URLSessionDataDelegate? = nil,
144 |         configure: ((inout URLRequest) throws -> Void)? = nil
145 |     ) async throws -> Response<T> where T: Decodable {
146 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              `- warning: non-sendable result type 'Response<T>' cannot be sent from actor-isolated context in call to instance method 'send(_:delegate:configure:)'; this is an error in the Swift 6 language mode
147 |     }
148 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenISO8601Formatter.swift:12:14: warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
10 |
11 | // https://stackoverflow.com/a/50281094/976628
12 | public class OpenISO8601DateFormatter: DateFormatter {
   |              `- warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
13 |     static let withoutSeconds: DateFormatter = {
14 |         let formatter = DateFormatter()
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:146:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
144 |         configure: ((inout URLRequest) throws -> Void)? = nil
145 |     ) async throws -> Response<T> where T: Decodable {
146 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'send(_:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
147 |     }
148 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:155:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
153 |         configure: ((inout URLRequest) throws -> Void)? = nil
154 |     ) async throws -> Response<Void> {
155 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'send(_:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
156 |     }
157 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:163:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
161 |         configure: ((inout URLRequest) throws -> Void)? = nil
162 |     ) async throws -> Response<Data> {
163 |         try await _apiClient.data(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'data(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
164 |     }
165 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:171:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
169 |         configure: ((inout URLRequest) throws -> Void)? = nil
170 |     ) async throws -> Response<URL> {
171 |         try await _apiClient.download(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'download(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
172 |     }
173 |
[364/589] Compiling JellyfinAPI CreateBackupAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:65:38: warning: capture of 'self' with non-sendable type 'JellyfinClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 12 | /// Basic wrapper of `Get.APIClient` with helper methods for interfacing with the `JellyfinAPI` package,
 13 | /// like injecting required headers for API calls with the current access token.
 14 | public final class JellyfinClient {
    |                    `- note: class 'JellyfinClient' does not conform to the 'Sendable' protocol
 15 |
 16 |     /// Current user access token
    :
 63 |
 64 |         self._apiClient = APIClient(baseURL: configuration.url) { configuration in
 65 |             configuration.delegate = passthroughDelegate
    |                                      `- warning: capture of 'self' with non-sendable type 'JellyfinClient' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 66 |             configuration.sessionConfiguration = sessionConfiguration
 67 |             configuration.sessionDelegate = sessionDelegate
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:146:30: warning: non-sendable result type 'Response<T>' cannot be sent from actor-isolated context in call to instance method 'send(_:delegate:configure:)'; this is an error in the Swift 6 language mode
139 |     }
140 |
141 |     public func send<T>(
    |                      `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
142 |         _ request: Request<T>,
143 |         delegate: URLSessionDataDelegate? = nil,
144 |         configure: ((inout URLRequest) throws -> Void)? = nil
145 |     ) async throws -> Response<T> where T: Decodable {
146 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              `- warning: non-sendable result type 'Response<T>' cannot be sent from actor-isolated context in call to instance method 'send(_:delegate:configure:)'; this is an error in the Swift 6 language mode
147 |     }
148 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenISO8601Formatter.swift:12:14: warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
10 |
11 | // https://stackoverflow.com/a/50281094/976628
12 | public class OpenISO8601DateFormatter: DateFormatter {
   |              `- warning: class 'OpenISO8601DateFormatter' must restate inherited '@unchecked Sendable' conformance
13 |     static let withoutSeconds: DateFormatter = {
14 |         let formatter = DateFormatter()
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:146:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
144 |         configure: ((inout URLRequest) throws -> Void)? = nil
145 |     ) async throws -> Response<T> where T: Decodable {
146 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'send(_:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
147 |     }
148 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:155:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
153 |         configure: ((inout URLRequest) throws -> Void)? = nil
154 |     ) async throws -> Response<Void> {
155 |         try await _apiClient.send(request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'send(_:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
156 |     }
157 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:163:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
161 |         configure: ((inout URLRequest) throws -> Void)? = nil
162 |     ) async throws -> Response<Data> {
163 |         try await _apiClient.data(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'data(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
164 |     }
165 |
/Users/admin/builder/spi-builder-workspace/Sources/JellyfinClient.swift:171:30: warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
169 |         configure: ((inout URLRequest) throws -> Void)? = nil
170 |     ) async throws -> Response<URL> {
171 |         try await _apiClient.download(for: request, delegate: delegate, configure: configure)
    |                              |- warning: sending 'configure' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated 'configure' to actor-isolated instance method 'download(for:delegate:configure:)' risks causing data races between actor-isolated and task-isolated uses
172 |     }
173 |
[365/614] Compiling JellyfinAPI SessionMessageType.swift
[366/614] Compiling JellyfinAPI SessionUserInfo.swift
[367/614] Compiling JellyfinAPI SessionsMessage.swift
[368/614] Compiling JellyfinAPI SessionsStartMessage.swift
[369/614] Compiling JellyfinAPI SessionsStopMessage.swift
[370/614] Compiling JellyfinAPI SetChannelMappingDto.swift
[371/614] Compiling JellyfinAPI SetPlaylistItemRequestDto.swift
[372/614] Compiling JellyfinAPI SetRepeatModeRequestDto.swift
[373/614] Compiling JellyfinAPI SetShuffleModeRequestDto.swift
[374/614] Compiling JellyfinAPI SongInfo.swift
[375/614] Compiling JellyfinAPI SortOrder.swift
[376/614] Compiling JellyfinAPI SpecialFeatureType.swift
[377/614] Compiling JellyfinAPI SpecialViewOptionDto.swift
[378/614] Compiling JellyfinAPI StartupConfigurationDto.swift
[379/614] Compiling JellyfinAPI StartupRemoteAccessDto.swift
[380/614] Compiling JellyfinAPI StartupUserDto.swift
[381/614] Compiling JellyfinAPI StringGroupUpdate.swift
[382/614] Compiling JellyfinAPI SubtitleDeliveryMethod.swift
[383/614] Compiling JellyfinAPI SubtitleOptions.swift
[384/614] Compiling JellyfinAPI SubtitlePlaybackMode.swift
[385/614] Compiling JellyfinAPI SubtitleProfile.swift
[386/614] Compiling JellyfinAPI SyncPlayCommandMessage.swift
[387/614] Compiling JellyfinAPI SyncPlayGroupDoesNotExistUpdate.swift
[388/614] Compiling JellyfinAPI SyncPlayGroupJoinedUpdate.swift
[389/614] Compiling JellyfinAPI SyncPlayGroupLeftUpdate.swift
[390/639] Compiling JellyfinAPI GetDefaultTimerAPI.swift
[391/639] Compiling JellyfinAPI GetDescriptionXml2API.swift
[392/639] Compiling JellyfinAPI GetDescriptionXmlAPI.swift
[393/639] Compiling JellyfinAPI GetDeviceInfoAPI.swift
[394/639] Compiling JellyfinAPI GetDeviceOptionsAPI.swift
[395/639] Compiling JellyfinAPI GetDevicesAPI.swift
[396/639] Compiling JellyfinAPI GetDirectoryContentsAPI.swift
[397/639] Compiling JellyfinAPI GetDisplayPreferencesAPI.swift
[398/639] Compiling JellyfinAPI GetDownloadAPI.swift
[399/639] Compiling JellyfinAPI GetDrivesAPI.swift
[400/639] Compiling JellyfinAPI GetEnabledAPI.swift
[401/639] Compiling JellyfinAPI GetEndpointInfoAPI.swift
[402/639] Compiling JellyfinAPI GetEpisodesAPI.swift
[403/639] Compiling JellyfinAPI GetExternalIDInfosAPI.swift
[404/639] Compiling JellyfinAPI GetFallbackFontAPI.swift
[405/639] Compiling JellyfinAPI GetFallbackFontListAPI.swift
[406/639] Compiling JellyfinAPI GetFileAPI.swift
[407/639] Compiling JellyfinAPI GetFirstUser2API.swift
[408/639] Compiling JellyfinAPI GetFirstUserAPI.swift
[409/639] Compiling JellyfinAPI GetGeneralImageAPI.swift
[410/639] Compiling JellyfinAPI GetGeneralImagesAPI.swift
[411/639] Compiling JellyfinAPI GetGenreAPI.swift
[412/639] Compiling JellyfinAPI GetGenreImageAPI.swift
[413/639] Compiling JellyfinAPI GetGenreImageByIndexAPI.swift
[414/639] Compiling JellyfinAPI GetGenresAPI.swift
[415/664] Compiling JellyfinAPI DiscoverTunersAPI.swift
[416/664] Compiling JellyfinAPI DiscvoverTunersAPI.swift
[417/664] Compiling JellyfinAPI DisplayContentAPI.swift
[418/664] Compiling JellyfinAPI DownloadRemoteImageAPI.swift
[419/664] Compiling JellyfinAPI DownloadRemoteLyricsAPI.swift
[420/664] Compiling JellyfinAPI DownloadRemoteSubtitlesAPI.swift
[421/664] Compiling JellyfinAPI EnablePluginAPI.swift
[422/664] Compiling JellyfinAPI ForgotPasswordAPI.swift
[423/664] Compiling JellyfinAPI ForgotPasswordPinAPI.swift
[424/664] Compiling JellyfinAPI GetAPI.swift
[425/664] Compiling JellyfinAPI GetAdditionalPartAPI.swift
[426/664] Compiling JellyfinAPI GetAlbumArtistsAPI.swift
[427/664] Compiling JellyfinAPI GetAllChannelFeaturesAPI.swift
[428/664] Compiling JellyfinAPI GetAncestorsAPI.swift
[429/664] Compiling JellyfinAPI GetArtistByNameAPI.swift
[430/664] Compiling JellyfinAPI GetArtistImageAPI.swift
[431/664] Compiling JellyfinAPI GetArtistsAPI.swift
[432/664] Compiling JellyfinAPI GetAttachmentAPI.swift
[433/664] Compiling JellyfinAPI GetAudioStreamAPI.swift
[434/664] Compiling JellyfinAPI GetAudioStreamByContainerAPI.swift
[435/664] Compiling JellyfinAPI GetAuthProvidersAPI.swift
[436/664] Compiling JellyfinAPI GetBackupAPI.swift
[437/664] Compiling JellyfinAPI GetBitrateTestBytesAPI.swift
[438/664] Compiling JellyfinAPI GetBookRemoteSearchResultsAPI.swift
[439/664] Compiling JellyfinAPI GetBoxSetRemoteSearchResultsAPI.swift
[440/689] Compiling JellyfinAPI RestartRequiredMessage.swift
[441/689] Compiling JellyfinAPI ScheduledTaskEndedMessage.swift
[442/689] Compiling JellyfinAPI ScheduledTasksInfoMessage.swift
[443/689] Compiling JellyfinAPI ScheduledTasksInfoStartMessage.swift
[444/689] Compiling JellyfinAPI ScheduledTasksInfoStopMessage.swift
[445/689] Compiling JellyfinAPI ScrollDirection.swift
[446/689] Compiling JellyfinAPI SearchHint.swift
[447/689] Compiling JellyfinAPI SearchHintResult.swift
[448/689] Compiling JellyfinAPI SeekRequestDto.swift
[449/689] Compiling JellyfinAPI SendCommand.swift
[450/689] Compiling JellyfinAPI SendCommandType.swift
[451/689] Compiling JellyfinAPI SendToUserType.swift
[452/689] Compiling JellyfinAPI SeriesInfo.swift
[453/689] Compiling JellyfinAPI SeriesInfoRemoteSearchQuery.swift
[454/689] Compiling JellyfinAPI SeriesStatus.swift
[455/689] Compiling JellyfinAPI SeriesTimerCancelledMessage.swift
[456/689] Compiling JellyfinAPI SeriesTimerCreatedMessage.swift
[457/689] Compiling JellyfinAPI SeriesTimerInfoDto.swift
[458/689] Compiling JellyfinAPI SeriesTimerInfoDtoQueryResult.swift
[459/689] Compiling JellyfinAPI ServerConfiguration.swift
[460/689] Compiling JellyfinAPI ServerDiscoveryInfo.swift
[461/689] Compiling JellyfinAPI ServerRestartingMessage.swift
[462/689] Compiling JellyfinAPI ServerShuttingDownMessage.swift
[463/689] Compiling JellyfinAPI SessionInfo.swift
[464/689] Compiling JellyfinAPI SessionInfoDto.swift
[465/713] Compiling JellyfinAPI GetMediaReceiverRegistrar2API.swift
[466/713] Compiling JellyfinAPI GetMediaReceiverRegistrar3API.swift
[467/713] Compiling JellyfinAPI GetMediaReceiverRegistrarAPI.swift
[468/713] Compiling JellyfinAPI GetMetadataEditorInfoAPI.swift
[469/713] Compiling JellyfinAPI GetMovieRecommendationsAPI.swift
[470/713] Compiling JellyfinAPI GetMovieRemoteSearchResultsAPI.swift
[471/713] Compiling JellyfinAPI GetMusicAlbumRemoteSearchResultsAPI.swift
[472/713] Compiling JellyfinAPI GetMusicArtistRemoteSearchResultsAPI.swift
[473/713] Compiling JellyfinAPI GetMusicGenreAPI.swift
[474/713] Compiling JellyfinAPI GetMusicGenreImageAPI.swift
[475/713] Compiling JellyfinAPI GetMusicGenreImageByIndexAPI.swift
[476/713] Compiling JellyfinAPI GetMusicGenresAPI.swift
[477/713] Compiling JellyfinAPI GetMusicVideoRemoteSearchResultsAPI.swift
[478/713] Compiling JellyfinAPI GetNamedConfigurationAPI.swift
[479/713] Compiling JellyfinAPI GetNetworkSharesAPI.swift
[480/713] Compiling JellyfinAPI GetNextUpAPI.swift
[481/713] Compiling JellyfinAPI GetNotificationServicesAPI.swift
[482/713] Compiling JellyfinAPI GetNotificationTypesAPI.swift
[483/713] Compiling JellyfinAPI GetNotificationsAPI.swift
[484/713] Compiling JellyfinAPI GetNotificationsSummaryAPI.swift
[485/713] Compiling JellyfinAPI GetPackageInfoAPI.swift
[486/713] Compiling JellyfinAPI GetPackagesAPI.swift
[487/713] Compiling JellyfinAPI GetParentPathAPI.swift
[488/713] Compiling JellyfinAPI GetParentalRatingsAPI.swift
[489/713] Compiling JellyfinAPI GetPasswordResetProvidersAPI.swift
[490/737] Compiling JellyfinAPI GetPersonAPI.swift
[491/737] Compiling JellyfinAPI GetPersonImageAPI.swift
[492/737] Compiling JellyfinAPI GetPersonImageByIndexAPI.swift
[493/737] Compiling JellyfinAPI GetPersonRemoteSearchResultsAPI.swift
[494/737] Compiling JellyfinAPI GetPersonsAPI.swift
[495/737] Compiling JellyfinAPI GetPhysicalPathsAPI.swift
[496/737] Compiling JellyfinAPI GetPingSystemAPI.swift
[497/737] Compiling JellyfinAPI GetPlaybackInfoAPI.swift
[498/737] Compiling JellyfinAPI GetPlaylistAPI.swift
[499/737] Compiling JellyfinAPI GetPlaylistItemsAPI.swift
[500/737] Compiling JellyfinAPI GetPlaylistUserAPI.swift
[501/737] Compiling JellyfinAPI GetPlaylistUsersAPI.swift
[502/737] Compiling JellyfinAPI GetPluginConfigurationAPI.swift
[503/737] Compiling JellyfinAPI GetPluginImageAPI.swift
[504/737] Compiling JellyfinAPI GetPluginManifestAPI.swift
[505/737] Compiling JellyfinAPI GetPluginsAPI.swift
[506/737] Compiling JellyfinAPI GetPostedPlaybackInfoAPI.swift
[507/737] Compiling JellyfinAPI GetProfileAPI.swift
[508/737] Compiling JellyfinAPI GetProfileInfosAPI.swift
[509/737] Compiling JellyfinAPI GetProgramAPI.swift
[510/737] Compiling JellyfinAPI GetProgramsAPI.swift
[511/737] Compiling JellyfinAPI GetPublicSystemInfoAPI.swift
[512/737] Compiling JellyfinAPI GetPublicUsersAPI.swift
[513/737] Compiling JellyfinAPI GetQueryFiltersAPI.swift
[514/737] Compiling JellyfinAPI GetQueryFiltersLegacyAPI.swift
[515/761] Compiling JellyfinAPI GetGroupingOptionsAPI.swift
[516/761] Compiling JellyfinAPI GetGuideInfoAPI.swift
[517/761] Compiling JellyfinAPI GetHlsAudioSegmentAPI.swift
[518/761] Compiling JellyfinAPI GetHlsAudioSegmentLegacyAacAPI.swift
[519/761] Compiling JellyfinAPI GetHlsAudioSegmentLegacyMp3API.swift
[520/761] Compiling JellyfinAPI GetHlsPlaylistLegacyAPI.swift
[521/761] Compiling JellyfinAPI GetHlsVideoSegmentAPI.swift
[522/761] Compiling JellyfinAPI GetHlsVideoSegmentLegacyAPI.swift
[523/761] Compiling JellyfinAPI GetIconAPI.swift
[524/761] Compiling JellyfinAPI GetIconIDAPI.swift
[525/761] Compiling JellyfinAPI GetInstantMixFromAlbumAPI.swift
[526/761] Compiling JellyfinAPI GetInstantMixFromArtists2API.swift
[527/761] Compiling JellyfinAPI GetInstantMixFromArtistsAPI.swift
[528/761] Compiling JellyfinAPI GetInstantMixFromItemAPI.swift
[529/761] Compiling JellyfinAPI GetInstantMixFromMusicGenreByIDAPI.swift
[530/761] Compiling JellyfinAPI GetInstantMixFromMusicGenreByNameAPI.swift
[531/761] Compiling JellyfinAPI GetInstantMixFromPlaylistAPI.swift
[532/761] Compiling JellyfinAPI GetInstantMixFromSongAPI.swift
[533/761] Compiling JellyfinAPI GetIntrosAPI.swift
[534/761] Compiling JellyfinAPI GetItemAPI.swift
[535/761] Compiling JellyfinAPI GetItemCountsAPI.swift
[536/761] Compiling JellyfinAPI GetItemImage2API.swift
[537/761] Compiling JellyfinAPI GetItemImageAPI.swift
[538/761] Compiling JellyfinAPI GetItemImageByIndexAPI.swift
[539/761] Compiling JellyfinAPI GetItemImageInfosAPI.swift
[540/785] Compiling JellyfinAPI GetQuickConnectEnabledAPI.swift
[541/785] Compiling JellyfinAPI GetQuickConnectStateAPI.swift
[542/785] Compiling JellyfinAPI GetRatingImageAPI.swift
[543/785] Compiling JellyfinAPI GetRatingImagesAPI.swift
[544/785] Compiling JellyfinAPI GetRecommendedProgramsAPI.swift
[545/785] Compiling JellyfinAPI GetRecordingAPI.swift
[546/785] Compiling JellyfinAPI GetRecordingFoldersAPI.swift
[547/785] Compiling JellyfinAPI GetRecordingGroupAPI.swift
[548/785] Compiling JellyfinAPI GetRecordingGroupsAPI.swift
[549/785] Compiling JellyfinAPI GetRecordingsAPI.swift
[550/785] Compiling JellyfinAPI GetRecordingsSeriesAPI.swift
[551/785] Compiling JellyfinAPI GetRemoteImageProvidersAPI.swift
[552/785] Compiling JellyfinAPI GetRemoteImagesAPI.swift
[553/785] Compiling JellyfinAPI GetRemoteLyricsAPI.swift
[554/785] Compiling JellyfinAPI GetRemoteSubtitlesAPI.swift
[555/785] Compiling JellyfinAPI GetRepositoriesAPI.swift
[556/785] Compiling JellyfinAPI GetResumeItemsAPI.swift
[557/785] Compiling JellyfinAPI GetRootFolderAPI.swift
[558/785] Compiling JellyfinAPI GetSchedulesDirectCountriesAPI.swift
[559/785] Compiling JellyfinAPI GetSearchHintsAPI.swift
[560/785] Compiling JellyfinAPI GetSeasonsAPI.swift
[561/785] Compiling JellyfinAPI GetSeriesRemoteSearchResultsAPI.swift
[562/785] Compiling JellyfinAPI GetSeriesTimerAPI.swift
[563/785] Compiling JellyfinAPI GetSeriesTimersAPI.swift
[564/785] Compiling JellyfinAPI GetServerLogsAPI.swift
[565/809] Compiling JellyfinAPI TonemappingAlgorithm.swift
[566/809] Compiling JellyfinAPI TonemappingMode.swift
[567/809] Compiling JellyfinAPI TonemappingRange.swift
[568/809] Compiling JellyfinAPI TrailerInfo.swift
[569/809] Compiling JellyfinAPI TrailerInfoRemoteSearchQuery.swift
[570/809] Compiling JellyfinAPI TranscodeReason.swift
[571/809] Compiling JellyfinAPI TranscodeSeekInfo.swift
[572/809] Compiling JellyfinAPI TranscodingInfo.swift
[573/809] Compiling JellyfinAPI TranscodingProfile.swift
[574/809] Compiling JellyfinAPI TransportStreamTimestamp.swift
[575/809] Compiling JellyfinAPI TrickplayInfo.swift
[576/809] Compiling JellyfinAPI TrickplayInfoDto.swift
[577/809] Compiling JellyfinAPI TrickplayOptions.swift
[578/809] Compiling JellyfinAPI TrickplayScanBehavior.swift
[579/809] Compiling JellyfinAPI TunerChannelMapping.swift
[580/809] Compiling JellyfinAPI TunerHostInfo.swift
[581/809] Compiling JellyfinAPI TypeOptions.swift
[582/809] Compiling JellyfinAPI UnratedItem.swift
[583/809] Compiling JellyfinAPI UpdateLibraryOptionsDto.swift
[584/809] Compiling JellyfinAPI UpdateMediaPathRequestDto.swift
[585/809] Compiling JellyfinAPI UpdatePlaylistDto.swift
[586/809] Compiling JellyfinAPI UpdatePlaylistUserDto.swift
[587/809] Compiling JellyfinAPI UpdateUserEasyPassword.swift
[588/809] Compiling JellyfinAPI UpdateUserItemDataDto.swift
[589/809] Compiling JellyfinAPI UpdateUserPassword.swift
[590/833] Compiling JellyfinAPI GetSessionsAPI.swift
[591/833] Compiling JellyfinAPI GetSimilarAlbumsAPI.swift
[592/833] Compiling JellyfinAPI GetSimilarArtistsAPI.swift
[593/833] Compiling JellyfinAPI GetSimilarItemsAPI.swift
[594/833] Compiling JellyfinAPI GetSimilarMoviesAPI.swift
[595/833] Compiling JellyfinAPI GetSimilarShowsAPI.swift
[596/833] Compiling JellyfinAPI GetSimilarTrailersAPI.swift
[597/833] Compiling JellyfinAPI GetSpecialFeaturesAPI.swift
[598/833] Compiling JellyfinAPI GetSplashscreenAPI.swift
[599/833] Compiling JellyfinAPI GetStartupConfigurationAPI.swift
[600/833] Compiling JellyfinAPI GetStudioAPI.swift
[601/833] Compiling JellyfinAPI GetStudioImageAPI.swift
[602/833] Compiling JellyfinAPI GetStudioImageByIndexAPI.swift
[603/833] Compiling JellyfinAPI GetStudiosAPI.swift
[604/833] Compiling JellyfinAPI GetSubtitleAPI.swift
[605/833] Compiling JellyfinAPI GetSubtitlePlaylistAPI.swift
[606/833] Compiling JellyfinAPI GetSubtitleWithTicksAPI.swift
[607/833] Compiling JellyfinAPI GetSuggestionsAPI.swift
[608/833] Compiling JellyfinAPI GetSystemInfoAPI.swift
[609/833] Compiling JellyfinAPI GetSystemStorageAPI.swift
[610/833] Compiling JellyfinAPI GetTaskAPI.swift
[611/833] Compiling JellyfinAPI GetTasksAPI.swift
[612/833] Compiling JellyfinAPI GetThemeMediaAPI.swift
[613/833] Compiling JellyfinAPI GetThemeSongsAPI.swift
[614/833] Compiling JellyfinAPI GetThemeVideosAPI.swift
[615/857] Compiling JellyfinAPI SyncPlayGroupUpdateCommandMessage.swift
[616/857] Compiling JellyfinAPI SyncPlayGroupUpdateMessage.swift
[617/857] Compiling JellyfinAPI SyncPlayLibraryAccessDeniedUpdate.swift
[618/857] Compiling JellyfinAPI SyncPlayNotInGroupUpdate.swift
[619/857] Compiling JellyfinAPI SyncPlayPlayQueueUpdate.swift
[620/857] Compiling JellyfinAPI SyncPlayQueueItem.swift
[621/857] Compiling JellyfinAPI SyncPlayStateUpdate.swift
[622/857] Compiling JellyfinAPI SyncPlayUserAccessType.swift
[623/857] Compiling JellyfinAPI SyncPlayUserJoinedUpdate.swift
[624/857] Compiling JellyfinAPI SyncPlayUserLeftUpdate.swift
[625/857] Compiling JellyfinAPI SystemInfo.swift
[626/857] Compiling JellyfinAPI SystemStorageDto.swift
[627/857] Compiling JellyfinAPI TaskCompletionStatus.swift
[628/857] Compiling JellyfinAPI TaskInfo.swift
[629/857] Compiling JellyfinAPI TaskResult.swift
[630/857] Compiling JellyfinAPI TaskState.swift
[631/857] Compiling JellyfinAPI TaskTriggerInfo.swift
[632/857] Compiling JellyfinAPI TaskTriggerInfoType.swift
[633/857] Compiling JellyfinAPI TaskTriggerType.swift
[634/857] Compiling JellyfinAPI ThemeMediaResult.swift
[635/857] Compiling JellyfinAPI TimerCancelledMessage.swift
[636/857] Compiling JellyfinAPI TimerCreatedMessage.swift
[637/857] Compiling JellyfinAPI TimerEventInfo.swift
[638/857] Compiling JellyfinAPI TimerInfoDto.swift
[639/857] Compiling JellyfinAPI TimerInfoDtoQueryResult.swift
[640/857] Compiling JellyfinAPI SendPlaystateCommandAPI.swift
[641/857] Compiling JellyfinAPI SendSystemCommandAPI.swift
[642/857] Compiling JellyfinAPI SetChannelMappingAPI.swift
[643/857] Compiling JellyfinAPI SetItemImageAPI.swift
[644/857] Compiling JellyfinAPI SetItemImageByIndexAPI.swift
[645/857] Compiling JellyfinAPI SetReadAPI.swift
[646/857] Compiling JellyfinAPI SetRemoteAccessAPI.swift
[647/857] Compiling JellyfinAPI SetRepositoriesAPI.swift
[648/857] Compiling JellyfinAPI SetUnreadAPI.swift
[649/857] Compiling JellyfinAPI ShutdownApplicationAPI.swift
[650/857] Compiling JellyfinAPI StartRestoreBackupAPI.swift
[651/857] Compiling JellyfinAPI StartTaskAPI.swift
[652/857] Compiling JellyfinAPI StopEncodingProcessAPI.swift
[653/857] Compiling JellyfinAPI StopTaskAPI.swift
[654/857] Compiling JellyfinAPI SyncPlayBufferingAPI.swift
[655/857] Compiling JellyfinAPI SyncPlayCreateGroupAPI.swift
[656/857] Compiling JellyfinAPI SyncPlayGetGroupAPI.swift
[657/857] Compiling JellyfinAPI SyncPlayGetGroupsAPI.swift
[658/857] Compiling JellyfinAPI SyncPlayJoinGroupAPI.swift
[659/857] Compiling JellyfinAPI SyncPlayLeaveGroupAPI.swift
[660/857] Compiling JellyfinAPI SyncPlayMovePlaylistItemAPI.swift
[661/857] Compiling JellyfinAPI SyncPlayNextItemAPI.swift
[662/857] Compiling JellyfinAPI SyncPlayPauseAPI.swift
[663/857] Compiling JellyfinAPI SyncPlayPingAPI.swift
[664/857] Compiling JellyfinAPI UploadSubtitleDto.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[665/857] Compiling JellyfinAPI UserConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[666/857] Compiling JellyfinAPI UserDataChangeInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[667/857] Compiling JellyfinAPI UserDataChangedMessage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[668/857] Compiling JellyfinAPI UserDeletedMessage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[669/857] Compiling JellyfinAPI UserDto.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[670/857] Compiling JellyfinAPI UserItemDataDto.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[671/857] Compiling JellyfinAPI UserPolicy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[672/857] Compiling JellyfinAPI UserUpdatedMessage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[673/857] Compiling JellyfinAPI UtcTimeResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[674/857] Compiling JellyfinAPI ValidatePathDto.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[675/857] Compiling JellyfinAPI VersionInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[676/857] Compiling JellyfinAPI Video3DFormat.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[677/857] Compiling JellyfinAPI VideoRange.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[678/857] Compiling JellyfinAPI VideoRangeType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[679/857] Compiling JellyfinAPI VideoType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[680/857] Compiling JellyfinAPI VirtualFolderInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[681/857] Compiling JellyfinAPI WakeOnLanInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[682/857] Compiling JellyfinAPI WebSocketMessage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[683/857] Compiling JellyfinAPI XbmcMetadataOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[684/857] Compiling JellyfinAPI XmlAttribute.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[685/857] Compiling JellyfinAPI AnyJSON.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[686/857] Compiling JellyfinAPI JellyfinClient+Version.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[687/857] Compiling JellyfinAPI Paths.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[688/857] Compiling JellyfinAPI StringCodingKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/JellyfinClient+Version.swift:11:16: warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | public extension JellyfinClient {
10 |     /// Version of Jellyfin used to generate the SDK
11 |     static let sdkVersion: Version = "10.11.0"
   |                |- warning: static property 'sdkVersion' is not concurrency-safe because non-'Sendable' type 'JellyfinClient.Version' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'sdkVersion' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | }
13 |
14 | public extension JellyfinClient {
15 |
16 |     struct Version: Comparable, CustomStringConvertible, ExpressibleByStringLiteral {
   |            `- note: consider making struct 'Version' conform to the 'Sendable' protocol
17 |
18 |         public let major: Int
[689/857] Compiling JellyfinAPI ProcessMediaReceiverRegistrarControlRequestAPI.swift
[690/857] Compiling JellyfinAPI RefreshItemAPI.swift
[691/857] Compiling JellyfinAPI RefreshLibraryAPI.swift
[692/857] Compiling JellyfinAPI RemoveFromCollectionAPI.swift
[693/857] Compiling JellyfinAPI RemoveFromPlaylistAPI.swift
[694/857] Compiling JellyfinAPI RemoveItemFromPlaylistAPI.swift
[695/857] Compiling JellyfinAPI RemoveMediaPathAPI.swift
[696/857] Compiling JellyfinAPI RemoveUserFromPlaylistAPI.swift
[697/857] Compiling JellyfinAPI RemoveUserFromSessionAPI.swift
[698/857] Compiling JellyfinAPI RemoveVirtualFolderAPI.swift
[699/857] Compiling JellyfinAPI RenameVirtualFolderAPI.swift
[700/857] Compiling JellyfinAPI ReportPlaybackProgressAPI.swift
[701/857] Compiling JellyfinAPI ReportPlaybackStartAPI.swift
[702/857] Compiling JellyfinAPI ReportPlaybackStoppedAPI.swift
[703/857] Compiling JellyfinAPI ReportSessionEndedAPI.swift
[704/857] Compiling JellyfinAPI ReportViewingAPI.swift
[705/857] Compiling JellyfinAPI ResetTunerAPI.swift
[706/857] Compiling JellyfinAPI RestartApplicationAPI.swift
[707/857] Compiling JellyfinAPI RevokeKeyAPI.swift
[708/857] Compiling JellyfinAPI SearchRemoteLyricsAPI.swift
[709/857] Compiling JellyfinAPI SearchRemoteSubtitlesAPI.swift
[710/857] Compiling JellyfinAPI SendFullGeneralCommandAPI.swift
[711/857] Compiling JellyfinAPI SendGeneralCommandAPI.swift
[712/857] Compiling JellyfinAPI SendMessageCommandAPI.swift
[713/857] Compiling JellyfinAPI LogFileAPI.swift
[714/857] Compiling JellyfinAPI MarkFavoriteItemAPI.swift
[715/857] Compiling JellyfinAPI MarkPlayedItemAPI.swift
[716/857] Compiling JellyfinAPI MarkUnplayedItemAPI.swift
[717/857] Compiling JellyfinAPI MergeVersionsAPI.swift
[718/857] Compiling JellyfinAPI MoveItemAPI.swift
[719/857] Compiling JellyfinAPI OnPlaybackProgressAPI.swift
[720/857] Compiling JellyfinAPI OnPlaybackStartAPI.swift
[721/857] Compiling JellyfinAPI OnPlaybackStoppedAPI.swift
[722/857] Compiling JellyfinAPI OpenLiveStreamAPI.swift
[723/857] Compiling JellyfinAPI PingPlaybackSessionAPI.swift
[724/857] Compiling JellyfinAPI PlayAPI.swift
[725/857] Compiling JellyfinAPI PostAddedMoviesAPI.swift
[726/857] Compiling JellyfinAPI PostAddedSeriesAPI.swift
[727/857] Compiling JellyfinAPI PostCapabilitiesAPI.swift
[728/857] Compiling JellyfinAPI PostFullCapabilitiesAPI.swift
[729/857] Compiling JellyfinAPI PostPingSystemAPI.swift
[730/857] Compiling JellyfinAPI PostUpdatedMediaAPI.swift
[731/857] Compiling JellyfinAPI PostUpdatedMoviesAPI.swift
[732/857] Compiling JellyfinAPI PostUpdatedSeriesAPI.swift
[733/857] Compiling JellyfinAPI PostUserImageAPI.swift
[734/857] Compiling JellyfinAPI PostUserImageByIndexAPI.swift
[735/857] Compiling JellyfinAPI ProcessConnectionManagerControlRequestAPI.swift
[736/857] Compiling JellyfinAPI ProcessContentDirectoryControlRequestAPI.swift
[737/857] Compiling JellyfinAPI SyncPlayPreviousItemAPI.swift
[738/857] Compiling JellyfinAPI SyncPlayQueueAPI.swift
[739/857] Compiling JellyfinAPI SyncPlayReadyAPI.swift
[740/857] Compiling JellyfinAPI SyncPlayRemoveFromPlaylistAPI.swift
[741/857] Compiling JellyfinAPI SyncPlaySeekAPI.swift
[742/857] Compiling JellyfinAPI SyncPlaySetIgnoreWaitAPI.swift
[743/857] Compiling JellyfinAPI SyncPlaySetNewQueueAPI.swift
[744/857] Compiling JellyfinAPI SyncPlaySetPlaylistItemAPI.swift
[745/857] Compiling JellyfinAPI SyncPlaySetRepeatModeAPI.swift
[746/857] Compiling JellyfinAPI SyncPlaySetShuffleModeAPI.swift
[747/857] Compiling JellyfinAPI SyncPlayStopAPI.swift
[748/857] Compiling JellyfinAPI SyncPlayUnpauseAPI.swift
[749/857] Compiling JellyfinAPI TmdbClientConfigurationAPI.swift
[750/857] Compiling JellyfinAPI UninstallPluginAPI.swift
[751/857] Compiling JellyfinAPI UninstallPluginByVersionAPI.swift
[752/857] Compiling JellyfinAPI UnmarkFavoriteItemAPI.swift
[753/857] Compiling JellyfinAPI UpdateBrandingConfigurationAPI.swift
[754/857] Compiling JellyfinAPI UpdateConfigurationAPI.swift
[755/857] Compiling JellyfinAPI UpdateDeviceOptionsAPI.swift
[756/857] Compiling JellyfinAPI UpdateDisplayPreferencesAPI.swift
[757/857] Compiling JellyfinAPI UpdateInitialConfigurationAPI.swift
[758/857] Compiling JellyfinAPI UpdateItemAPI.swift
[759/857] Compiling JellyfinAPI UpdateItemContentTypeAPI.swift
[760/857] Compiling JellyfinAPI UpdateItemImageIndexAPI.swift
[761/857] Compiling JellyfinAPI GetItemSegmentsAPI.swift
[762/857] Compiling JellyfinAPI GetItemUserDataAPI.swift
[763/857] Compiling JellyfinAPI GetItemsAPI.swift
[764/857] Compiling JellyfinAPI GetItemsByUserIDAPI.swift
[765/857] Compiling JellyfinAPI GetKeysAPI.swift
[766/857] Compiling JellyfinAPI GetLatestChannelItemsAPI.swift
[767/857] Compiling JellyfinAPI GetLatestMediaAPI.swift
[768/857] Compiling JellyfinAPI GetLibraryOptionsInfoAPI.swift
[769/857] Compiling JellyfinAPI GetLineupsAPI.swift
[770/857] Compiling JellyfinAPI GetLiveHlsStreamAPI.swift
[771/857] Compiling JellyfinAPI GetLiveRecordingFileAPI.swift
[772/857] Compiling JellyfinAPI GetLiveStreamFileAPI.swift
[773/857] Compiling JellyfinAPI GetLiveTvChannelsAPI.swift
[774/857] Compiling JellyfinAPI GetLiveTvInfoAPI.swift
[775/857] Compiling JellyfinAPI GetLiveTvProgramsAPI.swift
[776/857] Compiling JellyfinAPI GetLocalTrailersAPI.swift
[777/857] Compiling JellyfinAPI GetLocalizationOptionsAPI.swift
[778/857] Compiling JellyfinAPI GetLogEntriesAPI.swift
[779/857] Compiling JellyfinAPI GetLogFileAPI.swift
[780/857] Compiling JellyfinAPI GetLyricsAPI.swift
[781/857] Compiling JellyfinAPI GetMasterHlsAudioPlaylistAPI.swift
[782/857] Compiling JellyfinAPI GetMasterHlsVideoPlaylistAPI.swift
[783/857] Compiling JellyfinAPI GetMediaFoldersAPI.swift
[784/857] Compiling JellyfinAPI GetMediaInfoImageAPI.swift
[785/857] Compiling JellyfinAPI GetMediaInfoImagesAPI.swift
[786/857] Compiling JellyfinAPI UpdateItemUserDataAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[787/857] Compiling JellyfinAPI UpdateLibraryOptionsAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[788/857] Compiling JellyfinAPI UpdateMediaEncoderPathAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[789/857] Compiling JellyfinAPI UpdateMediaPathAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[790/857] Compiling JellyfinAPI UpdateNamedConfigurationAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[791/857] Compiling JellyfinAPI UpdatePlaylistAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[792/857] Compiling JellyfinAPI UpdatePlaylistUserAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[793/857] Compiling JellyfinAPI UpdatePluginConfigurationAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[794/857] Compiling JellyfinAPI UpdateProfileAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[795/857] Compiling JellyfinAPI UpdateSeriesTimerAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[796/857] Compiling JellyfinAPI UpdateStartupUserAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[797/857] Compiling JellyfinAPI UpdateTaskAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[798/857] Compiling JellyfinAPI UpdateTimerAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[799/857] Compiling JellyfinAPI UpdateUserAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[800/857] Compiling JellyfinAPI UpdateUserConfigurationAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[801/857] Compiling JellyfinAPI UpdateUserEasyPasswordAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[802/857] Compiling JellyfinAPI UpdateUserItemRatingAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[803/857] Compiling JellyfinAPI UpdateUserPasswordAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[804/857] Compiling JellyfinAPI UpdateUserPolicyAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[805/857] Compiling JellyfinAPI UploadCustomSplashscreenAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[806/857] Compiling JellyfinAPI UploadLyricsAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[807/857] Compiling JellyfinAPI UploadSubtitleAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[808/857] Compiling JellyfinAPI ValidatePathAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[809/857] Compiling JellyfinAPI QuickConnect.swift
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:124:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
122 |         do {
123 |             await MainActor.run {
124 |                 state = .retrievingCode
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
125 |             }
126 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:130:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
128 |
129 |             await MainActor.run {
130 |                 self.state = .polling(code: code)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
131 |             }
132 |
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:136:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
134 |
135 |             await MainActor.run {
136 |                 state = .authenticated(secret: authorizedSecret)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
137 |             }
138 |         } catch let error as QuickConnectError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:140:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
138 |         } catch let error as QuickConnectError {
139 |             await MainActor.run {
140 |                 state = .error(error)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
141 |             }
142 |         } catch is CancellationError {
/Users/admin/builder/spi-builder-workspace/Sources/QuickConnect.swift:146:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
144 |         } catch {
145 |             await MainActor.run {
146 |                 state = .error(.other(error.localizedDescription))
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
147 |             }
148 |         }
[810/857] Compiling JellyfinAPI GetTimerAPI.swift
[811/857] Compiling JellyfinAPI GetTimersAPI.swift
[812/857] Compiling JellyfinAPI GetTrailerRemoteSearchResultsAPI.swift
[813/857] Compiling JellyfinAPI GetTrailersAPI.swift
[814/857] Compiling JellyfinAPI GetTrickplayHlsPlaylistAPI.swift
[815/857] Compiling JellyfinAPI GetTrickplayTileImageAPI.swift
[816/857] Compiling JellyfinAPI GetTunerHostTypesAPI.swift
[817/857] Compiling JellyfinAPI GetUniversalAudioStreamAPI.swift
[818/857] Compiling JellyfinAPI GetUpcomingEpisodesAPI.swift
[819/857] Compiling JellyfinAPI GetUserByIDAPI.swift
[820/857] Compiling JellyfinAPI GetUserImageAPI.swift
[821/857] Compiling JellyfinAPI GetUserImageByIndexAPI.swift
[822/857] Compiling JellyfinAPI GetUserViewsAPI.swift
[823/857] Compiling JellyfinAPI GetUsersAPI.swift
[824/857] Compiling JellyfinAPI GetUtcTimeAPI.swift
[825/857] Compiling JellyfinAPI GetVariantHlsAudioPlaylistAPI.swift
[826/857] Compiling JellyfinAPI GetVariantHlsVideoPlaylistAPI.swift
[827/857] Compiling JellyfinAPI GetVideoStreamAPI.swift
[828/857] Compiling JellyfinAPI GetVideoStreamByContainerAPI.swift
[829/857] Compiling JellyfinAPI GetVirtualFoldersAPI.swift
[830/857] Compiling JellyfinAPI GetWakeOnLanInfoAPI.swift
[831/857] Compiling JellyfinAPI GetYearAPI.swift
[832/857] Compiling JellyfinAPI GetYearsAPI.swift
[833/857] Compiling JellyfinAPI HeadArtistImageAPI.swift
[834/857] Compiling JellyfinAPI HeadAudioStreamAPI.swift
[835/857] Compiling JellyfinAPI HeadAudioStreamByContainerAPI.swift
[836/857] Compiling JellyfinAPI HeadGenreImageAPI.swift
[837/857] Compiling JellyfinAPI HeadGenreImageByIndexAPI.swift
[838/857] Compiling JellyfinAPI HeadItemImage2API.swift
[839/857] Compiling JellyfinAPI HeadItemImageAPI.swift
[840/857] Compiling JellyfinAPI HeadItemImageByIndexAPI.swift
[841/857] Compiling JellyfinAPI HeadMasterHlsAudioPlaylistAPI.swift
[842/857] Compiling JellyfinAPI HeadMasterHlsVideoPlaylistAPI.swift
[843/857] Compiling JellyfinAPI HeadMusicGenreImageAPI.swift
[844/857] Compiling JellyfinAPI HeadMusicGenreImageByIndexAPI.swift
[845/857] Compiling JellyfinAPI HeadPersonImageAPI.swift
[846/857] Compiling JellyfinAPI HeadPersonImageByIndexAPI.swift
[847/857] Compiling JellyfinAPI HeadStudioImageAPI.swift
[848/857] Compiling JellyfinAPI HeadStudioImageByIndexAPI.swift
[849/857] Compiling JellyfinAPI HeadUniversalAudioStreamAPI.swift
[850/857] Compiling JellyfinAPI HeadUserImageAPI.swift
[851/857] Compiling JellyfinAPI HeadUserImageByIndexAPI.swift
[852/857] Compiling JellyfinAPI HeadVideoStreamAPI.swift
[853/857] Compiling JellyfinAPI HeadVideoStreamByContainerAPI.swift
[854/857] Compiling JellyfinAPI InitiateAPI.swift
[855/857] Compiling JellyfinAPI InitiateQuickConnectAPI.swift
[856/857] Compiling JellyfinAPI InstallPackageAPI.swift
[857/857] Compiling JellyfinAPI ListBackupsAPI.swift
Build complete! (17.49s)
Fetching https://github.com/CreateAPI/URLQueryEncoder
Fetching https://github.com/kean/Get
[3/128] Fetching urlqueryencoder
[8/2477] Fetching urlqueryencoder, get
Fetched https://github.com/kean/Get from cache (1.11s)
Fetched https://github.com/CreateAPI/URLQueryEncoder from cache (1.11s)
Computing version for https://github.com/CreateAPI/URLQueryEncoder
Computed https://github.com/CreateAPI/URLQueryEncoder at 0.2.1 (1.72s)
Computing version for https://github.com/kean/Get
Computed https://github.com/kean/Get at 2.2.1 (0.58s)
Creating working copy for https://github.com/kean/Get
Working copy of https://github.com/kean/Get resolved at 2.2.1
Creating working copy for https://github.com/CreateAPI/URLQueryEncoder
Working copy of https://github.com/CreateAPI/URLQueryEncoder resolved at 0.2.1
Downloading binary artifact https://github.com/CreateAPI/CreateAPI/releases/download/0.2.0/create-api.artifactbundle.zip
[32750/5323848] Downloading https://github.com/CreateAPI/CreateAPI/releases/download/0.2.0/create-api.artifactbundle.zip
Downloaded https://github.com/CreateAPI/CreateAPI/releases/download/0.2.0/create-api.artifactbundle.zip (0.76s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "get",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.1.6",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kean/Get"
    },
    {
      "identity" : "urlqueryencoder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/CreateAPI/URLQueryEncoder"
    }
  ],
  "manifest_display_name" : "JellyfinAPI",
  "name" : "JellyfinAPI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "JellyfinAPI",
      "targets" : [
        "JellyfinAPI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "create_api",
      "module_type" : "BinaryTarget",
      "name" : "create-api",
      "path" : "remote/archive/create-api.artifactbundle.zip",
      "sources" : [
      ],
      "type" : "binary"
    },
    {
      "c99name" : "JellyfinAPI",
      "module_type" : "SwiftTarget",
      "name" : "JellyfinAPI",
      "path" : "Sources",
      "product_dependencies" : [
        "Get",
        "URLQueryEncoder"
      ],
      "product_memberships" : [
        "JellyfinAPI"
      ],
      "sources" : [
        "Entities/AccessSchedule.swift",
        "Entities/ActivityLogEntry.swift",
        "Entities/ActivityLogEntryMessage.swift",
        "Entities/ActivityLogEntryQueryResult.swift",
        "Entities/ActivityLogEntryStartMessage.swift",
        "Entities/ActivityLogEntryStopMessage.swift",
        "Entities/AddVirtualFolderDto.swift",
        "Entities/AdminNotificationDto.swift",
        "Entities/AlbumInfo.swift",
        "Entities/AlbumInfoRemoteSearchQuery.swift",
        "Entities/AllThemeMediaResult.swift",
        "Entities/Architecture.swift",
        "Entities/ArtistInfo.swift",
        "Entities/ArtistInfoRemoteSearchQuery.swift",
        "Entities/AudioSpatialFormat.swift",
        "Entities/AuthenticateUserByName.swift",
        "Entities/AuthenticationInfo.swift",
        "Entities/AuthenticationInfoQueryResult.swift",
        "Entities/AuthenticationResult.swift",
        "Entities/BackupManifestDto.swift",
        "Entities/BackupOptionsDto.swift",
        "Entities/BackupRestoreRequestDto.swift",
        "Entities/BaseItem.swift",
        "Entities/BaseItemDto.swift",
        "Entities/BaseItemDtoQueryResult.swift",
        "Entities/BaseItemKind.swift",
        "Entities/BaseItemPerson.swift",
        "Entities/BookInfo.swift",
        "Entities/BookInfoRemoteSearchQuery.swift",
        "Entities/BoxSetInfo.swift",
        "Entities/BoxSetInfoRemoteSearchQuery.swift",
        "Entities/BrandingOptions.swift",
        "Entities/BrandingOptionsDto.swift",
        "Entities/BufferRequestDto.swift",
        "Entities/CastReceiverApplication.swift",
        "Entities/ChannelFeatures.swift",
        "Entities/ChannelItemSortField.swift",
        "Entities/ChannelMappingOptionsDto.swift",
        "Entities/ChannelMediaContentType.swift",
        "Entities/ChannelMediaType.swift",
        "Entities/ChannelType.swift",
        "Entities/ChapterInfo.swift",
        "Entities/ClientCapabilities.swift",
        "Entities/ClientCapabilitiesDto.swift",
        "Entities/ClientLogDocumentResponseDto.swift",
        "Entities/CodecProfile.swift",
        "Entities/CodecType.swift",
        "Entities/CollectionCreationResult.swift",
        "Entities/CollectionType.swift",
        "Entities/CollectionTypeOptions.swift",
        "Entities/ConfigImageTypes.swift",
        "Entities/ConfigurationPageInfo.swift",
        "Entities/ContainerProfile.swift",
        "Entities/ControlResponse.swift",
        "Entities/CountryInfo.swift",
        "Entities/CreatePlaylistDto.swift",
        "Entities/CreateUserByName.swift",
        "Entities/CultureDto.swift",
        "Entities/CustomDatabaseOption.swift",
        "Entities/CustomDatabaseOptions.swift",
        "Entities/DatabaseConfigurationOptions.swift",
        "Entities/DatabaseLockingBehaviorTypes.swift",
        "Entities/DayOfWeek.swift",
        "Entities/DayPattern.swift",
        "Entities/DefaultDirectoryBrowserInfoDto.swift",
        "Entities/DeinterlaceMethod.swift",
        "Entities/DeviceIdentification.swift",
        "Entities/DeviceInfo.swift",
        "Entities/DeviceInfoDto.swift",
        "Entities/DeviceInfoDtoQueryResult.swift",
        "Entities/DeviceInfoQueryResult.swift",
        "Entities/DeviceOptions.swift",
        "Entities/DeviceOptionsDto.swift",
        "Entities/DeviceProfile.swift",
        "Entities/DeviceProfileInfo.swift",
        "Entities/DeviceProfileType.swift",
        "Entities/DirectPlayProfile.swift",
        "Entities/DisplayPreferencesDto.swift",
        "Entities/DlnaOptions.swift",
        "Entities/DlnaProfileType.swift",
        "Entities/DownMixStereoAlgorithms.swift",
        "Entities/DynamicDayOfWeek.swift",
        "Entities/EmbeddedSubtitleOptions.swift",
        "Entities/EncoderPreset.swift",
        "Entities/EncodingContext.swift",
        "Entities/EncodingOptions.swift",
        "Entities/EndPointInfo.swift",
        "Entities/ExternalIDInfo.swift",
        "Entities/ExternalIDMediaType.swift",
        "Entities/ExternalURL.swift",
        "Entities/ExtraType.swift",
        "Entities/FFmpegLocation.swift",
        "Entities/FileSystemEntryInfo.swift",
        "Entities/FileSystemEntryType.swift",
        "Entities/FolderStorageDto.swift",
        "Entities/FontFile.swift",
        "Entities/ForceKeepAliveMessage.swift",
        "Entities/ForgotPasswordAction.swift",
        "Entities/ForgotPasswordDto.swift",
        "Entities/ForgotPasswordPinDto.swift",
        "Entities/ForgotPasswordResult.swift",
        "Entities/GeneralCommand.swift",
        "Entities/GeneralCommandMessage.swift",
        "Entities/GeneralCommandType.swift",
        "Entities/GetProgramsDto.swift",
        "Entities/GroupInfoDto.swift",
        "Entities/GroupInfoDtoGroupUpdate.swift",
        "Entities/GroupQueueMode.swift",
        "Entities/GroupRepeatMode.swift",
        "Entities/GroupShuffleMode.swift",
        "Entities/GroupStateType.swift",
        "Entities/GroupStateUpdate.swift",
        "Entities/GroupStateUpdateGroupUpdate.swift",
        "Entities/GroupUpdate.swift",
        "Entities/GroupUpdateType.swift",
        "Entities/GuideInfo.swift",
        "Entities/HTTPHeaderInfo.swift",
        "Entities/HardwareAccelerationType.swift",
        "Entities/HardwareEncodingType.swift",
        "Entities/HeaderMatchType.swift",
        "Entities/IPlugin.swift",
        "Entities/IgnoreWaitRequestDto.swift",
        "Entities/ImageByNameInfo.swift",
        "Entities/ImageFormat.swift",
        "Entities/ImageInfo.swift",
        "Entities/ImageOption.swift",
        "Entities/ImageOrientation.swift",
        "Entities/ImageProviderInfo.swift",
        "Entities/ImageResolution.swift",
        "Entities/ImageSavingConvention.swift",
        "Entities/ImageType.swift",
        "Entities/InboundKeepAliveMessage.swift",
        "Entities/InboundWebSocketMessage.swift",
        "Entities/InstallationInfo.swift",
        "Entities/IsoType.swift",
        "Entities/ItemCounts.swift",
        "Entities/ItemFields.swift",
        "Entities/ItemFilter.swift",
        "Entities/ItemSortBy.swift",
        "Entities/JoinGroupRequestDto.swift",
        "Entities/KeepUntil.swift",
        "Entities/LibraryChangedMessage.swift",
        "Entities/LibraryOptionInfoDto.swift",
        "Entities/LibraryOptions.swift",
        "Entities/LibraryOptionsResultDto.swift",
        "Entities/LibraryStorageDto.swift",
        "Entities/LibraryTypeOptionsDto.swift",
        "Entities/LibraryUpdateInfo.swift",
        "Entities/ListingsProviderInfo.swift",
        "Entities/LiveStreamResponse.swift",
        "Entities/LiveTvInfo.swift",
        "Entities/LiveTvOptions.swift",
        "Entities/LiveTvServiceInfo.swift",
        "Entities/LiveTvServiceStatus.swift",
        "Entities/LocalizationOption.swift",
        "Entities/LocationType.swift",
        "Entities/LogFile.swift",
        "Entities/LogLevel.swift",
        "Entities/LyricDto.swift",
        "Entities/LyricLine.swift",
        "Entities/LyricLineCue.swift",
        "Entities/LyricMetadata.swift",
        "Entities/MediaAttachment.swift",
        "Entities/MediaEncoderPathDto.swift",
        "Entities/MediaPathDto.swift",
        "Entities/MediaPathInfo.swift",
        "Entities/MediaProtocol.swift",
        "Entities/MediaSegmentDto.swift",
        "Entities/MediaSegmentDtoQueryResult.swift",
        "Entities/MediaSegmentType.swift",
        "Entities/MediaSourceInfo.swift",
        "Entities/MediaSourceType.swift",
        "Entities/MediaStream.swift",
        "Entities/MediaStreamProtocol.swift",
        "Entities/MediaStreamType.swift",
        "Entities/MediaType.swift",
        "Entities/MediaURL.swift",
        "Entities/MediaUpdateInfoDto.swift",
        "Entities/MediaUpdateInfoPathDto.swift",
        "Entities/MessageCommand.swift",
        "Entities/MetadataConfiguration.swift",
        "Entities/MetadataEditorInfo.swift",
        "Entities/MetadataField.swift",
        "Entities/MetadataOptions.swift",
        "Entities/MetadataRefreshMode.swift",
        "Entities/MovePlaylistItemRequestDto.swift",
        "Entities/MovieInfo.swift",
        "Entities/MovieInfoRemoteSearchQuery.swift",
        "Entities/MusicVideoInfo.swift",
        "Entities/MusicVideoInfoRemoteSearchQuery.swift",
        "Entities/NameGuidPair.swift",
        "Entities/NameIDPair.swift",
        "Entities/NameValuePair.swift",
        "Entities/NetworkConfiguration.swift",
        "Entities/NewGroupRequestDto.swift",
        "Entities/NextItemRequestDto.swift",
        "Entities/NotificationDto.swift",
        "Entities/NotificationLevel.swift",
        "Entities/NotificationOption.swift",
        "Entities/NotificationOptions.swift",
        "Entities/NotificationResultDto.swift",
        "Entities/NotificationTypeInfo.swift",
        "Entities/NotificationsSummaryDto.swift",
        "Entities/ObjectGroupUpdate.swift",
        "Entities/OpenLiveStreamDto.swift",
        "Entities/OutboundKeepAliveMessage.swift",
        "Entities/OutboundWebSocketMessage.swift",
        "Entities/PackageInfo.swift",
        "Entities/ParentalRating.swift",
        "Entities/ParentalRatingScore.swift",
        "Entities/PathSubstitution.swift",
        "Entities/PersonKind.swift",
        "Entities/PersonLookupInfo.swift",
        "Entities/PersonLookupInfoRemoteSearchQuery.swift",
        "Entities/PinRedeemResult.swift",
        "Entities/PingRequestDto.swift",
        "Entities/PlayAccess.swift",
        "Entities/PlayCommand.swift",
        "Entities/PlayMessage.swift",
        "Entities/PlayMethod.swift",
        "Entities/PlayQueueUpdate.swift",
        "Entities/PlayQueueUpdateGroupUpdate.swift",
        "Entities/PlayQueueUpdateReason.swift",
        "Entities/PlayRequest.swift",
        "Entities/PlayRequestDto.swift",
        "Entities/PlaybackErrorCode.swift",
        "Entities/PlaybackInfoDto.swift",
        "Entities/PlaybackInfoResponse.swift",
        "Entities/PlaybackOrder.swift",
        "Entities/PlaybackProgressInfo.swift",
        "Entities/PlaybackRequestType.swift",
        "Entities/PlaybackStartInfo.swift",
        "Entities/PlaybackStopInfo.swift",
        "Entities/PlayerStateInfo.swift",
        "Entities/PlaylistCreationResult.swift",
        "Entities/PlaylistDto.swift",
        "Entities/PlaylistUserPermissions.swift",
        "Entities/PlaystateCommand.swift",
        "Entities/PlaystateMessage.swift",
        "Entities/PlaystateRequest.swift",
        "Entities/PluginInfo.swift",
        "Entities/PluginInstallationCancelledMessage.swift",
        "Entities/PluginInstallationCompletedMessage.swift",
        "Entities/PluginInstallationFailedMessage.swift",
        "Entities/PluginInstallingMessage.swift",
        "Entities/PluginStatus.swift",
        "Entities/PluginUninstalledMessage.swift",
        "Entities/PreviousItemRequestDto.swift",
        "Entities/ProcessPriorityClass.swift",
        "Entities/ProfileCondition.swift",
        "Entities/ProfileConditionType.swift",
        "Entities/ProfileConditionValue.swift",
        "Entities/ProgramAudio.swift",
        "Entities/PublicSystemInfo.swift",
        "Entities/QueryFilters.swift",
        "Entities/QueryFiltersLegacy.swift",
        "Entities/QueueItem.swift",
        "Entities/QueueRequestDto.swift",
        "Entities/QuickConnectDto.swift",
        "Entities/QuickConnectResult.swift",
        "Entities/RatingType.swift",
        "Entities/ReadyRequestDto.swift",
        "Entities/RecommendationDto.swift",
        "Entities/RecommendationType.swift",
        "Entities/RecordingStatus.swift",
        "Entities/RefreshProgressMessage.swift",
        "Entities/RemoteImageInfo.swift",
        "Entities/RemoteImageResult.swift",
        "Entities/RemoteLyricInfoDto.swift",
        "Entities/RemoteSearchResult.swift",
        "Entities/RemoteSubtitleInfo.swift",
        "Entities/RemoveFromPlaylistRequestDto.swift",
        "Entities/RepeatMode.swift",
        "Entities/RepositoryInfo.swift",
        "Entities/ResponseProfile.swift",
        "Entities/RestartRequiredMessage.swift",
        "Entities/ScheduledTaskEndedMessage.swift",
        "Entities/ScheduledTasksInfoMessage.swift",
        "Entities/ScheduledTasksInfoStartMessage.swift",
        "Entities/ScheduledTasksInfoStopMessage.swift",
        "Entities/ScrollDirection.swift",
        "Entities/SearchHint.swift",
        "Entities/SearchHintResult.swift",
        "Entities/SeekRequestDto.swift",
        "Entities/SendCommand.swift",
        "Entities/SendCommandType.swift",
        "Entities/SendToUserType.swift",
        "Entities/SeriesInfo.swift",
        "Entities/SeriesInfoRemoteSearchQuery.swift",
        "Entities/SeriesStatus.swift",
        "Entities/SeriesTimerCancelledMessage.swift",
        "Entities/SeriesTimerCreatedMessage.swift",
        "Entities/SeriesTimerInfoDto.swift",
        "Entities/SeriesTimerInfoDtoQueryResult.swift",
        "Entities/ServerConfiguration.swift",
        "Entities/ServerDiscoveryInfo.swift",
        "Entities/ServerRestartingMessage.swift",
        "Entities/ServerShuttingDownMessage.swift",
        "Entities/SessionInfo.swift",
        "Entities/SessionInfoDto.swift",
        "Entities/SessionMessageType.swift",
        "Entities/SessionUserInfo.swift",
        "Entities/SessionsMessage.swift",
        "Entities/SessionsStartMessage.swift",
        "Entities/SessionsStopMessage.swift",
        "Entities/SetChannelMappingDto.swift",
        "Entities/SetPlaylistItemRequestDto.swift",
        "Entities/SetRepeatModeRequestDto.swift",
        "Entities/SetShuffleModeRequestDto.swift",
        "Entities/SongInfo.swift",
        "Entities/SortOrder.swift",
        "Entities/SpecialFeatureType.swift",
        "Entities/SpecialViewOptionDto.swift",
        "Entities/StartupConfigurationDto.swift",
        "Entities/StartupRemoteAccessDto.swift",
        "Entities/StartupUserDto.swift",
        "Entities/StringGroupUpdate.swift",
        "Entities/SubtitleDeliveryMethod.swift",
        "Entities/SubtitleOptions.swift",
        "Entities/SubtitlePlaybackMode.swift",
        "Entities/SubtitleProfile.swift",
        "Entities/SyncPlayCommandMessage.swift",
        "Entities/SyncPlayGroupDoesNotExistUpdate.swift",
        "Entities/SyncPlayGroupJoinedUpdate.swift",
        "Entities/SyncPlayGroupLeftUpdate.swift",
        "Entities/SyncPlayGroupUpdateCommandMessage.swift",
        "Entities/SyncPlayGroupUpdateMessage.swift",
        "Entities/SyncPlayLibraryAccessDeniedUpdate.swift",
        "Entities/SyncPlayNotInGroupUpdate.swift",
        "Entities/SyncPlayPlayQueueUpdate.swift",
        "Entities/SyncPlayQueueItem.swift",
        "Entities/SyncPlayStateUpdate.swift",
        "Entities/SyncPlayUserAccessType.swift",
        "Entities/SyncPlayUserJoinedUpdate.swift",
        "Entities/SyncPlayUserLeftUpdate.swift",
        "Entities/SystemInfo.swift",
        "Entities/SystemStorageDto.swift",
        "Entities/TaskCompletionStatus.swift",
        "Entities/TaskInfo.swift",
        "Entities/TaskResult.swift",
        "Entities/TaskState.swift",
        "Entities/TaskTriggerInfo.swift",
        "Entities/TaskTriggerInfoType.swift",
        "Entities/TaskTriggerType.swift",
        "Entities/ThemeMediaResult.swift",
        "Entities/TimerCancelledMessage.swift",
        "Entities/TimerCreatedMessage.swift",
        "Entities/TimerEventInfo.swift",
        "Entities/TimerInfoDto.swift",
        "Entities/TimerInfoDtoQueryResult.swift",
        "Entities/TonemappingAlgorithm.swift",
        "Entities/TonemappingMode.swift",
        "Entities/TonemappingRange.swift",
        "Entities/TrailerInfo.swift",
        "Entities/TrailerInfoRemoteSearchQuery.swift",
        "Entities/TranscodeReason.swift",
        "Entities/TranscodeSeekInfo.swift",
        "Entities/TranscodingInfo.swift",
        "Entities/TranscodingProfile.swift",
        "Entities/TransportStreamTimestamp.swift",
        "Entities/TrickplayInfo.swift",
        "Entities/TrickplayInfoDto.swift",
        "Entities/TrickplayOptions.swift",
        "Entities/TrickplayScanBehavior.swift",
        "Entities/TunerChannelMapping.swift",
        "Entities/TunerHostInfo.swift",
        "Entities/TypeOptions.swift",
        "Entities/UnratedItem.swift",
        "Entities/UpdateLibraryOptionsDto.swift",
        "Entities/UpdateMediaPathRequestDto.swift",
        "Entities/UpdatePlaylistDto.swift",
        "Entities/UpdatePlaylistUserDto.swift",
        "Entities/UpdateUserEasyPassword.swift",
        "Entities/UpdateUserItemDataDto.swift",
        "Entities/UpdateUserPassword.swift",
        "Entities/UploadSubtitleDto.swift",
        "Entities/UserConfiguration.swift",
        "Entities/UserDataChangeInfo.swift",
        "Entities/UserDataChangedMessage.swift",
        "Entities/UserDeletedMessage.swift",
        "Entities/UserDto.swift",
        "Entities/UserItemDataDto.swift",
        "Entities/UserPolicy.swift",
        "Entities/UserUpdatedMessage.swift",
        "Entities/UtcTimeResponse.swift",
        "Entities/ValidatePathDto.swift",
        "Entities/VersionInfo.swift",
        "Entities/Video3DFormat.swift",
        "Entities/VideoRange.swift",
        "Entities/VideoRangeType.swift",
        "Entities/VideoType.swift",
        "Entities/VirtualFolderInfo.swift",
        "Entities/WakeOnLanInfo.swift",
        "Entities/WebSocketMessage.swift",
        "Entities/XbmcMetadataOptions.swift",
        "Entities/XmlAttribute.swift",
        "Extensions/AnyJSON.swift",
        "Extensions/JellyfinClient+Version.swift",
        "Extensions/Paths.swift",
        "Extensions/StringCodingKey.swift",
        "JellyfinClient.swift",
        "OpenISO8601Formatter.swift",
        "PassthroughAPIClientDelegate.swift",
        "Paths/AddItemToPlaylistAPI.swift",
        "Paths/AddListingProviderAPI.swift",
        "Paths/AddMediaPathAPI.swift",
        "Paths/AddToCollectionAPI.swift",
        "Paths/AddToPlaylistAPI.swift",
        "Paths/AddTunerHostAPI.swift",
        "Paths/AddUserToSessionAPI.swift",
        "Paths/AddVirtualFolderAPI.swift",
        "Paths/ApplySearchCriteriaAPI.swift",
        "Paths/AuthenticateUserAPI.swift",
        "Paths/AuthenticateUserByNameAPI.swift",
        "Paths/AuthenticateWithQuickConnectAPI.swift",
        "Paths/AuthorizeAPI.swift",
        "Paths/AuthorizeQuickConnectAPI.swift",
        "Paths/CancelPackageInstallationAPI.swift",
        "Paths/CancelSeriesTimerAPI.swift",
        "Paths/CancelTimerAPI.swift",
        "Paths/CloseLiveStreamAPI.swift",
        "Paths/CompleteWizardAPI.swift",
        "Paths/ConnectAPI.swift",
        "Paths/CreateAdminNotificationAPI.swift",
        "Paths/CreateBackupAPI.swift",
        "Paths/CreateCollectionAPI.swift",
        "Paths/CreateKeyAPI.swift",
        "Paths/CreatePlaylistAPI.swift",
        "Paths/CreateProfileAPI.swift",
        "Paths/CreateSeriesTimerAPI.swift",
        "Paths/CreateTimerAPI.swift",
        "Paths/CreateUserByNameAPI.swift",
        "Paths/DeleteAlternateSourcesAPI.swift",
        "Paths/DeleteCustomSplashscreenAPI.swift",
        "Paths/DeleteDeviceAPI.swift",
        "Paths/DeleteItemAPI.swift",
        "Paths/DeleteItemImageAPI.swift",
        "Paths/DeleteItemImageByIndexAPI.swift",
        "Paths/DeleteItemsAPI.swift",
        "Paths/DeleteListingProviderAPI.swift",
        "Paths/DeleteLyricsAPI.swift",
        "Paths/DeleteProfileAPI.swift",
        "Paths/DeleteRecordingAPI.swift",
        "Paths/DeleteSubtitleAPI.swift",
        "Paths/DeleteTunerHostAPI.swift",
        "Paths/DeleteUserAPI.swift",
        "Paths/DeleteUserImageAPI.swift",
        "Paths/DeleteUserImageByIndexAPI.swift",
        "Paths/DeleteUserItemRatingAPI.swift",
        "Paths/DisablePluginAPI.swift",
        "Paths/DiscoverTunersAPI.swift",
        "Paths/DiscvoverTunersAPI.swift",
        "Paths/DisplayContentAPI.swift",
        "Paths/DownloadRemoteImageAPI.swift",
        "Paths/DownloadRemoteLyricsAPI.swift",
        "Paths/DownloadRemoteSubtitlesAPI.swift",
        "Paths/EnablePluginAPI.swift",
        "Paths/ForgotPasswordAPI.swift",
        "Paths/ForgotPasswordPinAPI.swift",
        "Paths/GetAPI.swift",
        "Paths/GetAdditionalPartAPI.swift",
        "Paths/GetAlbumArtistsAPI.swift",
        "Paths/GetAllChannelFeaturesAPI.swift",
        "Paths/GetAncestorsAPI.swift",
        "Paths/GetArtistByNameAPI.swift",
        "Paths/GetArtistImageAPI.swift",
        "Paths/GetArtistsAPI.swift",
        "Paths/GetAttachmentAPI.swift",
        "Paths/GetAudioStreamAPI.swift",
        "Paths/GetAudioStreamByContainerAPI.swift",
        "Paths/GetAuthProvidersAPI.swift",
        "Paths/GetBackupAPI.swift",
        "Paths/GetBitrateTestBytesAPI.swift",
        "Paths/GetBookRemoteSearchResultsAPI.swift",
        "Paths/GetBoxSetRemoteSearchResultsAPI.swift",
        "Paths/GetBrandingCss2API.swift",
        "Paths/GetBrandingCssAPI.swift",
        "Paths/GetBrandingOptionsAPI.swift",
        "Paths/GetChannelAPI.swift",
        "Paths/GetChannelFeaturesAPI.swift",
        "Paths/GetChannelItemsAPI.swift",
        "Paths/GetChannelMappingOptionsAPI.swift",
        "Paths/GetChannelsAPI.swift",
        "Paths/GetConfigurationAPI.swift",
        "Paths/GetConfigurationPagesAPI.swift",
        "Paths/GetConnectionManager2API.swift",
        "Paths/GetConnectionManager3API.swift",
        "Paths/GetConnectionManagerAPI.swift",
        "Paths/GetContentDirectory2API.swift",
        "Paths/GetContentDirectory3API.swift",
        "Paths/GetContentDirectoryAPI.swift",
        "Paths/GetCountriesAPI.swift",
        "Paths/GetCriticReviewsAPI.swift",
        "Paths/GetCulturesAPI.swift",
        "Paths/GetCurrentUserAPI.swift",
        "Paths/GetDashboardConfigurationPageAPI.swift",
        "Paths/GetDefaultDirectoryBrowserAPI.swift",
        "Paths/GetDefaultListingProviderAPI.swift",
        "Paths/GetDefaultMetadataOptionsAPI.swift",
        "Paths/GetDefaultProfileAPI.swift",
        "Paths/GetDefaultTimerAPI.swift",
        "Paths/GetDescriptionXml2API.swift",
        "Paths/GetDescriptionXmlAPI.swift",
        "Paths/GetDeviceInfoAPI.swift",
        "Paths/GetDeviceOptionsAPI.swift",
        "Paths/GetDevicesAPI.swift",
        "Paths/GetDirectoryContentsAPI.swift",
        "Paths/GetDisplayPreferencesAPI.swift",
        "Paths/GetDownloadAPI.swift",
        "Paths/GetDrivesAPI.swift",
        "Paths/GetEnabledAPI.swift",
        "Paths/GetEndpointInfoAPI.swift",
        "Paths/GetEpisodesAPI.swift",
        "Paths/GetExternalIDInfosAPI.swift",
        "Paths/GetFallbackFontAPI.swift",
        "Paths/GetFallbackFontListAPI.swift",
        "Paths/GetFileAPI.swift",
        "Paths/GetFirstUser2API.swift",
        "Paths/GetFirstUserAPI.swift",
        "Paths/GetGeneralImageAPI.swift",
        "Paths/GetGeneralImagesAPI.swift",
        "Paths/GetGenreAPI.swift",
        "Paths/GetGenreImageAPI.swift",
        "Paths/GetGenreImageByIndexAPI.swift",
        "Paths/GetGenresAPI.swift",
        "Paths/GetGroupingOptionsAPI.swift",
        "Paths/GetGuideInfoAPI.swift",
        "Paths/GetHlsAudioSegmentAPI.swift",
        "Paths/GetHlsAudioSegmentLegacyAacAPI.swift",
        "Paths/GetHlsAudioSegmentLegacyMp3API.swift",
        "Paths/GetHlsPlaylistLegacyAPI.swift",
        "Paths/GetHlsVideoSegmentAPI.swift",
        "Paths/GetHlsVideoSegmentLegacyAPI.swift",
        "Paths/GetIconAPI.swift",
        "Paths/GetIconIDAPI.swift",
        "Paths/GetInstantMixFromAlbumAPI.swift",
        "Paths/GetInstantMixFromArtists2API.swift",
        "Paths/GetInstantMixFromArtistsAPI.swift",
        "Paths/GetInstantMixFromItemAPI.swift",
        "Paths/GetInstantMixFromMusicGenreByIDAPI.swift",
        "Paths/GetInstantMixFromMusicGenreByNameAPI.swift",
        "Paths/GetInstantMixFromPlaylistAPI.swift",
        "Paths/GetInstantMixFromSongAPI.swift",
        "Paths/GetIntrosAPI.swift",
        "Paths/GetItemAPI.swift",
        "Paths/GetItemCountsAPI.swift",
        "Paths/GetItemImage2API.swift",
        "Paths/GetItemImageAPI.swift",
        "Paths/GetItemImageByIndexAPI.swift",
        "Paths/GetItemImageInfosAPI.swift",
        "Paths/GetItemSegmentsAPI.swift",
        "Paths/GetItemUserDataAPI.swift",
        "Paths/GetItemsAPI.swift",
        "Paths/GetItemsByUserIDAPI.swift",
        "Paths/GetKeysAPI.swift",
        "Paths/GetLatestChannelItemsAPI.swift",
        "Paths/GetLatestMediaAPI.swift",
        "Paths/GetLibraryOptionsInfoAPI.swift",
        "Paths/GetLineupsAPI.swift",
        "Paths/GetLiveHlsStreamAPI.swift",
        "Paths/GetLiveRecordingFileAPI.swift",
        "Paths/GetLiveStreamFileAPI.swift",
        "Paths/GetLiveTvChannelsAPI.swift",
        "Paths/GetLiveTvInfoAPI.swift",
        "Paths/GetLiveTvProgramsAPI.swift",
        "Paths/GetLocalTrailersAPI.swift",
        "Paths/GetLocalizationOptionsAPI.swift",
        "Paths/GetLogEntriesAPI.swift",
        "Paths/GetLogFileAPI.swift",
        "Paths/GetLyricsAPI.swift",
        "Paths/GetMasterHlsAudioPlaylistAPI.swift",
        "Paths/GetMasterHlsVideoPlaylistAPI.swift",
        "Paths/GetMediaFoldersAPI.swift",
        "Paths/GetMediaInfoImageAPI.swift",
        "Paths/GetMediaInfoImagesAPI.swift",
        "Paths/GetMediaReceiverRegistrar2API.swift",
        "Paths/GetMediaReceiverRegistrar3API.swift",
        "Paths/GetMediaReceiverRegistrarAPI.swift",
        "Paths/GetMetadataEditorInfoAPI.swift",
        "Paths/GetMovieRecommendationsAPI.swift",
        "Paths/GetMovieRemoteSearchResultsAPI.swift",
        "Paths/GetMusicAlbumRemoteSearchResultsAPI.swift",
        "Paths/GetMusicArtistRemoteSearchResultsAPI.swift",
        "Paths/GetMusicGenreAPI.swift",
        "Paths/GetMusicGenreImageAPI.swift",
        "Paths/GetMusicGenreImageByIndexAPI.swift",
        "Paths/GetMusicGenresAPI.swift",
        "Paths/GetMusicVideoRemoteSearchResultsAPI.swift",
        "Paths/GetNamedConfigurationAPI.swift",
        "Paths/GetNetworkSharesAPI.swift",
        "Paths/GetNextUpAPI.swift",
        "Paths/GetNotificationServicesAPI.swift",
        "Paths/GetNotificationTypesAPI.swift",
        "Paths/GetNotificationsAPI.swift",
        "Paths/GetNotificationsSummaryAPI.swift",
        "Paths/GetPackageInfoAPI.swift",
        "Paths/GetPackagesAPI.swift",
        "Paths/GetParentPathAPI.swift",
        "Paths/GetParentalRatingsAPI.swift",
        "Paths/GetPasswordResetProvidersAPI.swift",
        "Paths/GetPersonAPI.swift",
        "Paths/GetPersonImageAPI.swift",
        "Paths/GetPersonImageByIndexAPI.swift",
        "Paths/GetPersonRemoteSearchResultsAPI.swift",
        "Paths/GetPersonsAPI.swift",
        "Paths/GetPhysicalPathsAPI.swift",
        "Paths/GetPingSystemAPI.swift",
        "Paths/GetPlaybackInfoAPI.swift",
        "Paths/GetPlaylistAPI.swift",
        "Paths/GetPlaylistItemsAPI.swift",
        "Paths/GetPlaylistUserAPI.swift",
        "Paths/GetPlaylistUsersAPI.swift",
        "Paths/GetPluginConfigurationAPI.swift",
        "Paths/GetPluginImageAPI.swift",
        "Paths/GetPluginManifestAPI.swift",
        "Paths/GetPluginsAPI.swift",
        "Paths/GetPostedPlaybackInfoAPI.swift",
        "Paths/GetProfileAPI.swift",
        "Paths/GetProfileInfosAPI.swift",
        "Paths/GetProgramAPI.swift",
        "Paths/GetProgramsAPI.swift",
        "Paths/GetPublicSystemInfoAPI.swift",
        "Paths/GetPublicUsersAPI.swift",
        "Paths/GetQueryFiltersAPI.swift",
        "Paths/GetQueryFiltersLegacyAPI.swift",
        "Paths/GetQuickConnectEnabledAPI.swift",
        "Paths/GetQuickConnectStateAPI.swift",
        "Paths/GetRatingImageAPI.swift",
        "Paths/GetRatingImagesAPI.swift",
        "Paths/GetRecommendedProgramsAPI.swift",
        "Paths/GetRecordingAPI.swift",
        "Paths/GetRecordingFoldersAPI.swift",
        "Paths/GetRecordingGroupAPI.swift",
        "Paths/GetRecordingGroupsAPI.swift",
        "Paths/GetRecordingsAPI.swift",
        "Paths/GetRecordingsSeriesAPI.swift",
        "Paths/GetRemoteImageProvidersAPI.swift",
        "Paths/GetRemoteImagesAPI.swift",
        "Paths/GetRemoteLyricsAPI.swift",
        "Paths/GetRemoteSubtitlesAPI.swift",
        "Paths/GetRepositoriesAPI.swift",
        "Paths/GetResumeItemsAPI.swift",
        "Paths/GetRootFolderAPI.swift",
        "Paths/GetSchedulesDirectCountriesAPI.swift",
        "Paths/GetSearchHintsAPI.swift",
        "Paths/GetSeasonsAPI.swift",
        "Paths/GetSeriesRemoteSearchResultsAPI.swift",
        "Paths/GetSeriesTimerAPI.swift",
        "Paths/GetSeriesTimersAPI.swift",
        "Paths/GetServerLogsAPI.swift",
        "Paths/GetSessionsAPI.swift",
        "Paths/GetSimilarAlbumsAPI.swift",
        "Paths/GetSimilarArtistsAPI.swift",
        "Paths/GetSimilarItemsAPI.swift",
        "Paths/GetSimilarMoviesAPI.swift",
        "Paths/GetSimilarShowsAPI.swift",
        "Paths/GetSimilarTrailersAPI.swift",
        "Paths/GetSpecialFeaturesAPI.swift",
        "Paths/GetSplashscreenAPI.swift",
        "Paths/GetStartupConfigurationAPI.swift",
        "Paths/GetStudioAPI.swift",
        "Paths/GetStudioImageAPI.swift",
        "Paths/GetStudioImageByIndexAPI.swift",
        "Paths/GetStudiosAPI.swift",
        "Paths/GetSubtitleAPI.swift",
        "Paths/GetSubtitlePlaylistAPI.swift",
        "Paths/GetSubtitleWithTicksAPI.swift",
        "Paths/GetSuggestionsAPI.swift",
        "Paths/GetSystemInfoAPI.swift",
        "Paths/GetSystemStorageAPI.swift",
        "Paths/GetTaskAPI.swift",
        "Paths/GetTasksAPI.swift",
        "Paths/GetThemeMediaAPI.swift",
        "Paths/GetThemeSongsAPI.swift",
        "Paths/GetThemeVideosAPI.swift",
        "Paths/GetTimerAPI.swift",
        "Paths/GetTimersAPI.swift",
        "Paths/GetTrailerRemoteSearchResultsAPI.swift",
        "Paths/GetTrailersAPI.swift",
        "Paths/GetTrickplayHlsPlaylistAPI.swift",
        "Paths/GetTrickplayTileImageAPI.swift",
        "Paths/GetTunerHostTypesAPI.swift",
        "Paths/GetUniversalAudioStreamAPI.swift",
        "Paths/GetUpcomingEpisodesAPI.swift",
        "Paths/GetUserByIDAPI.swift",
        "Paths/GetUserImageAPI.swift",
        "Paths/GetUserImageByIndexAPI.swift",
        "Paths/GetUserViewsAPI.swift",
        "Paths/GetUsersAPI.swift",
        "Paths/GetUtcTimeAPI.swift",
        "Paths/GetVariantHlsAudioPlaylistAPI.swift",
        "Paths/GetVariantHlsVideoPlaylistAPI.swift",
        "Paths/GetVideoStreamAPI.swift",
        "Paths/GetVideoStreamByContainerAPI.swift",
        "Paths/GetVirtualFoldersAPI.swift",
        "Paths/GetWakeOnLanInfoAPI.swift",
        "Paths/GetYearAPI.swift",
        "Paths/GetYearsAPI.swift",
        "Paths/HeadArtistImageAPI.swift",
        "Paths/HeadAudioStreamAPI.swift",
        "Paths/HeadAudioStreamByContainerAPI.swift",
        "Paths/HeadGenreImageAPI.swift",
        "Paths/HeadGenreImageByIndexAPI.swift",
        "Paths/HeadItemImage2API.swift",
        "Paths/HeadItemImageAPI.swift",
        "Paths/HeadItemImageByIndexAPI.swift",
        "Paths/HeadMasterHlsAudioPlaylistAPI.swift",
        "Paths/HeadMasterHlsVideoPlaylistAPI.swift",
        "Paths/HeadMusicGenreImageAPI.swift",
        "Paths/HeadMusicGenreImageByIndexAPI.swift",
        "Paths/HeadPersonImageAPI.swift",
        "Paths/HeadPersonImageByIndexAPI.swift",
        "Paths/HeadStudioImageAPI.swift",
        "Paths/HeadStudioImageByIndexAPI.swift",
        "Paths/HeadUniversalAudioStreamAPI.swift",
        "Paths/HeadUserImageAPI.swift",
        "Paths/HeadUserImageByIndexAPI.swift",
        "Paths/HeadVideoStreamAPI.swift",
        "Paths/HeadVideoStreamByContainerAPI.swift",
        "Paths/InitiateAPI.swift",
        "Paths/InitiateQuickConnectAPI.swift",
        "Paths/InstallPackageAPI.swift",
        "Paths/ListBackupsAPI.swift",
        "Paths/LogFileAPI.swift",
        "Paths/MarkFavoriteItemAPI.swift",
        "Paths/MarkPlayedItemAPI.swift",
        "Paths/MarkUnplayedItemAPI.swift",
        "Paths/MergeVersionsAPI.swift",
        "Paths/MoveItemAPI.swift",
        "Paths/OnPlaybackProgressAPI.swift",
        "Paths/OnPlaybackStartAPI.swift",
        "Paths/OnPlaybackStoppedAPI.swift",
        "Paths/OpenLiveStreamAPI.swift",
        "Paths/PingPlaybackSessionAPI.swift",
        "Paths/PlayAPI.swift",
        "Paths/PostAddedMoviesAPI.swift",
        "Paths/PostAddedSeriesAPI.swift",
        "Paths/PostCapabilitiesAPI.swift",
        "Paths/PostFullCapabilitiesAPI.swift",
        "Paths/PostPingSystemAPI.swift",
        "Paths/PostUpdatedMediaAPI.swift",
        "Paths/PostUpdatedMoviesAPI.swift",
        "Paths/PostUpdatedSeriesAPI.swift",
        "Paths/PostUserImageAPI.swift",
        "Paths/PostUserImageByIndexAPI.swift",
        "Paths/ProcessConnectionManagerControlRequestAPI.swift",
        "Paths/ProcessContentDirectoryControlRequestAPI.swift",
        "Paths/ProcessMediaReceiverRegistrarControlRequestAPI.swift",
        "Paths/RefreshItemAPI.swift",
        "Paths/RefreshLibraryAPI.swift",
        "Paths/RemoveFromCollectionAPI.swift",
        "Paths/RemoveFromPlaylistAPI.swift",
        "Paths/RemoveItemFromPlaylistAPI.swift",
        "Paths/RemoveMediaPathAPI.swift",
        "Paths/RemoveUserFromPlaylistAPI.swift",
        "Paths/RemoveUserFromSessionAPI.swift",
        "Paths/RemoveVirtualFolderAPI.swift",
        "Paths/RenameVirtualFolderAPI.swift",
        "Paths/ReportPlaybackProgressAPI.swift",
        "Paths/ReportPlaybackStartAPI.swift",
        "Paths/ReportPlaybackStoppedAPI.swift",
        "Paths/ReportSessionEndedAPI.swift",
        "Paths/ReportViewingAPI.swift",
        "Paths/ResetTunerAPI.swift",
        "Paths/RestartApplicationAPI.swift",
        "Paths/RevokeKeyAPI.swift",
        "Paths/SearchRemoteLyricsAPI.swift",
        "Paths/SearchRemoteSubtitlesAPI.swift",
        "Paths/SendFullGeneralCommandAPI.swift",
        "Paths/SendGeneralCommandAPI.swift",
        "Paths/SendMessageCommandAPI.swift",
        "Paths/SendPlaystateCommandAPI.swift",
        "Paths/SendSystemCommandAPI.swift",
        "Paths/SetChannelMappingAPI.swift",
        "Paths/SetItemImageAPI.swift",
        "Paths/SetItemImageByIndexAPI.swift",
        "Paths/SetReadAPI.swift",
        "Paths/SetRemoteAccessAPI.swift",
        "Paths/SetRepositoriesAPI.swift",
        "Paths/SetUnreadAPI.swift",
        "Paths/ShutdownApplicationAPI.swift",
        "Paths/StartRestoreBackupAPI.swift",
        "Paths/StartTaskAPI.swift",
        "Paths/StopEncodingProcessAPI.swift",
        "Paths/StopTaskAPI.swift",
        "Paths/SyncPlayBufferingAPI.swift",
        "Paths/SyncPlayCreateGroupAPI.swift",
        "Paths/SyncPlayGetGroupAPI.swift",
        "Paths/SyncPlayGetGroupsAPI.swift",
        "Paths/SyncPlayJoinGroupAPI.swift",
        "Paths/SyncPlayLeaveGroupAPI.swift",
        "Paths/SyncPlayMovePlaylistItemAPI.swift",
        "Paths/SyncPlayNextItemAPI.swift",
        "Paths/SyncPlayPauseAPI.swift",
        "Paths/SyncPlayPingAPI.swift",
        "Paths/SyncPlayPreviousItemAPI.swift",
        "Paths/SyncPlayQueueAPI.swift",
        "Paths/SyncPlayReadyAPI.swift",
        "Paths/SyncPlayRemoveFromPlaylistAPI.swift",
        "Paths/SyncPlaySeekAPI.swift",
        "Paths/SyncPlaySetIgnoreWaitAPI.swift",
        "Paths/SyncPlaySetNewQueueAPI.swift",
        "Paths/SyncPlaySetPlaylistItemAPI.swift",
        "Paths/SyncPlaySetRepeatModeAPI.swift",
        "Paths/SyncPlaySetShuffleModeAPI.swift",
        "Paths/SyncPlayStopAPI.swift",
        "Paths/SyncPlayUnpauseAPI.swift",
        "Paths/TmdbClientConfigurationAPI.swift",
        "Paths/UninstallPluginAPI.swift",
        "Paths/UninstallPluginByVersionAPI.swift",
        "Paths/UnmarkFavoriteItemAPI.swift",
        "Paths/UpdateBrandingConfigurationAPI.swift",
        "Paths/UpdateConfigurationAPI.swift",
        "Paths/UpdateDeviceOptionsAPI.swift",
        "Paths/UpdateDisplayPreferencesAPI.swift",
        "Paths/UpdateInitialConfigurationAPI.swift",
        "Paths/UpdateItemAPI.swift",
        "Paths/UpdateItemContentTypeAPI.swift",
        "Paths/UpdateItemImageIndexAPI.swift",
        "Paths/UpdateItemUserDataAPI.swift",
        "Paths/UpdateLibraryOptionsAPI.swift",
        "Paths/UpdateMediaEncoderPathAPI.swift",
        "Paths/UpdateMediaPathAPI.swift",
        "Paths/UpdateNamedConfigurationAPI.swift",
        "Paths/UpdatePlaylistAPI.swift",
        "Paths/UpdatePlaylistUserAPI.swift",
        "Paths/UpdatePluginConfigurationAPI.swift",
        "Paths/UpdateProfileAPI.swift",
        "Paths/UpdateSeriesTimerAPI.swift",
        "Paths/UpdateStartupUserAPI.swift",
        "Paths/UpdateTaskAPI.swift",
        "Paths/UpdateTimerAPI.swift",
        "Paths/UpdateUserAPI.swift",
        "Paths/UpdateUserConfigurationAPI.swift",
        "Paths/UpdateUserEasyPasswordAPI.swift",
        "Paths/UpdateUserItemRatingAPI.swift",
        "Paths/UpdateUserPasswordAPI.swift",
        "Paths/UpdateUserPolicyAPI.swift",
        "Paths/UploadCustomSplashscreenAPI.swift",
        "Paths/UploadLyricsAPI.swift",
        "Paths/UploadSubtitleAPI.swift",
        "Paths/ValidatePathAPI.swift",
        "QuickConnect.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CreateAPI",
      "module_type" : "PluginTarget",
      "name" : "CreateAPI",
      "path" : "Plugins/CreateAPI",
      "plugin_capability" : {
        "intent" : {
          "description" : "Generates the OpenAPI entities and paths using CreateAPI",
          "type" : "custom",
          "verb" : "generate-api"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "To output the generated source code",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "sources" : [
        "AnyJSON.swift",
        "GeneratePlugin.swift",
        "PatchFiles/JellyfinClient+Version.swift"
      ],
      "target_dependencies" : [
        "create-api"
      ],
      "type" : "plugin"
    }
  ],
  "tools_version" : "5.6"
}
Done.