Build Information
Successful build of JellyfinAPI, reference main (e7bb3b), with Swift 6.1 for macOS (SPM) on 24 Oct 2025 00:27:47 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 InferSendableFromCapturesBuild Log
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 |
[411/639] 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 |
[412/639] 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 |
[413/639] 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 |
[414/639] 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 |
[415/664] Compiling JellyfinAPI GetDefaultTimerAPI.swift
[416/664] Compiling JellyfinAPI GetDescriptionXml2API.swift
[417/664] Compiling JellyfinAPI GetDescriptionXmlAPI.swift
[418/664] Compiling JellyfinAPI GetDeviceInfoAPI.swift
[419/664] Compiling JellyfinAPI GetDeviceOptionsAPI.swift
[420/664] Compiling JellyfinAPI GetDevicesAPI.swift
[421/664] Compiling JellyfinAPI GetDirectoryContentsAPI.swift
[422/664] Compiling JellyfinAPI GetDisplayPreferencesAPI.swift
[423/664] Compiling JellyfinAPI GetDownloadAPI.swift
[424/664] Compiling JellyfinAPI GetDrivesAPI.swift
[425/664] Compiling JellyfinAPI GetEnabledAPI.swift
[426/664] Compiling JellyfinAPI GetEndpointInfoAPI.swift
[427/664] Compiling JellyfinAPI GetEpisodesAPI.swift
[428/664] Compiling JellyfinAPI GetExternalIDInfosAPI.swift
[429/664] Compiling JellyfinAPI GetFallbackFontAPI.swift
[430/664] Compiling JellyfinAPI GetFallbackFontListAPI.swift
[431/664] Compiling JellyfinAPI GetFileAPI.swift
[432/664] Compiling JellyfinAPI GetFirstUser2API.swift
[433/664] Compiling JellyfinAPI GetFirstUserAPI.swift
[434/664] Compiling JellyfinAPI GetGeneralImageAPI.swift
[435/664] Compiling JellyfinAPI GetGeneralImagesAPI.swift
[436/664] Compiling JellyfinAPI GetGenreAPI.swift
[437/664] Compiling JellyfinAPI GetGenreImageAPI.swift
[438/664] Compiling JellyfinAPI GetGenreImageByIndexAPI.swift
[439/664] Compiling JellyfinAPI GetGenresAPI.swift
[440/689] Compiling JellyfinAPI DiscoverTunersAPI.swift
[441/689] Compiling JellyfinAPI DiscvoverTunersAPI.swift
[442/689] Compiling JellyfinAPI DisplayContentAPI.swift
[443/689] Compiling JellyfinAPI DownloadRemoteImageAPI.swift
[444/689] Compiling JellyfinAPI DownloadRemoteLyricsAPI.swift
[445/689] Compiling JellyfinAPI DownloadRemoteSubtitlesAPI.swift
[446/689] Compiling JellyfinAPI EnablePluginAPI.swift
[447/689] Compiling JellyfinAPI ForgotPasswordAPI.swift
[448/689] Compiling JellyfinAPI ForgotPasswordPinAPI.swift
[449/689] Compiling JellyfinAPI GetAPI.swift
[450/689] Compiling JellyfinAPI GetAdditionalPartAPI.swift
[451/689] Compiling JellyfinAPI GetAlbumArtistsAPI.swift
[452/689] Compiling JellyfinAPI GetAllChannelFeaturesAPI.swift
[453/689] Compiling JellyfinAPI GetAncestorsAPI.swift
[454/689] Compiling JellyfinAPI GetArtistByNameAPI.swift
[455/689] Compiling JellyfinAPI GetArtistImageAPI.swift
[456/689] Compiling JellyfinAPI GetArtistsAPI.swift
[457/689] Compiling JellyfinAPI GetAttachmentAPI.swift
[458/689] Compiling JellyfinAPI GetAudioStreamAPI.swift
[459/689] Compiling JellyfinAPI GetAudioStreamByContainerAPI.swift
[460/689] Compiling JellyfinAPI GetAuthProvidersAPI.swift
[461/689] Compiling JellyfinAPI GetBackupAPI.swift
[462/689] Compiling JellyfinAPI GetBitrateTestBytesAPI.swift
[463/689] Compiling JellyfinAPI GetBookRemoteSearchResultsAPI.swift
[464/689] Compiling JellyfinAPI GetBoxSetRemoteSearchResultsAPI.swift
[465/713] Compiling JellyfinAPI TonemappingAlgorithm.swift
[466/713] Compiling JellyfinAPI TonemappingMode.swift
[467/713] Compiling JellyfinAPI TonemappingRange.swift
[468/713] Compiling JellyfinAPI TrailerInfo.swift
[469/713] Compiling JellyfinAPI TrailerInfoRemoteSearchQuery.swift
[470/713] Compiling JellyfinAPI TranscodeReason.swift
[471/713] Compiling JellyfinAPI TranscodeSeekInfo.swift
[472/713] Compiling JellyfinAPI TranscodingInfo.swift
[473/713] Compiling JellyfinAPI TranscodingProfile.swift
[474/713] Compiling JellyfinAPI TransportStreamTimestamp.swift
[475/713] Compiling JellyfinAPI TrickplayInfo.swift
[476/713] Compiling JellyfinAPI TrickplayInfoDto.swift
[477/713] Compiling JellyfinAPI TrickplayOptions.swift
[478/713] Compiling JellyfinAPI TrickplayScanBehavior.swift
[479/713] Compiling JellyfinAPI TunerChannelMapping.swift
[480/713] Compiling JellyfinAPI TunerHostInfo.swift
[481/713] Compiling JellyfinAPI TypeOptions.swift
[482/713] Compiling JellyfinAPI UnratedItem.swift
[483/713] Compiling JellyfinAPI UpdateLibraryOptionsDto.swift
[484/713] Compiling JellyfinAPI UpdateMediaPathRequestDto.swift
[485/713] Compiling JellyfinAPI UpdatePlaylistDto.swift
[486/713] Compiling JellyfinAPI UpdatePlaylistUserDto.swift
[487/713] Compiling JellyfinAPI UpdateUserEasyPassword.swift
[488/713] Compiling JellyfinAPI UpdateUserItemDataDto.swift
[489/713] Compiling JellyfinAPI UpdateUserPassword.swift
[490/737] Compiling JellyfinAPI RestartRequiredMessage.swift
[491/737] Compiling JellyfinAPI ScheduledTaskEndedMessage.swift
[492/737] Compiling JellyfinAPI ScheduledTasksInfoMessage.swift
[493/737] Compiling JellyfinAPI ScheduledTasksInfoStartMessage.swift
[494/737] Compiling JellyfinAPI ScheduledTasksInfoStopMessage.swift
[495/737] Compiling JellyfinAPI ScrollDirection.swift
[496/737] Compiling JellyfinAPI SearchHint.swift
[497/737] Compiling JellyfinAPI SearchHintResult.swift
[498/737] Compiling JellyfinAPI SeekRequestDto.swift
[499/737] Compiling JellyfinAPI SendCommand.swift
[500/737] Compiling JellyfinAPI SendCommandType.swift
[501/737] Compiling JellyfinAPI SendToUserType.swift
[502/737] Compiling JellyfinAPI SeriesInfo.swift
[503/737] Compiling JellyfinAPI SeriesInfoRemoteSearchQuery.swift
[504/737] Compiling JellyfinAPI SeriesStatus.swift
[505/737] Compiling JellyfinAPI SeriesTimerCancelledMessage.swift
[506/737] Compiling JellyfinAPI SeriesTimerCreatedMessage.swift
[507/737] Compiling JellyfinAPI SeriesTimerInfoDto.swift
[508/737] Compiling JellyfinAPI SeriesTimerInfoDtoQueryResult.swift
[509/737] Compiling JellyfinAPI ServerConfiguration.swift
[510/737] Compiling JellyfinAPI ServerDiscoveryInfo.swift
[511/737] Compiling JellyfinAPI ServerRestartingMessage.swift
[512/737] Compiling JellyfinAPI ServerShuttingDownMessage.swift
[513/737] Compiling JellyfinAPI SessionInfo.swift
[514/737] Compiling JellyfinAPI SessionInfoDto.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 GetMediaReceiverRegistrar2API.swift
[541/785] Compiling JellyfinAPI GetMediaReceiverRegistrar3API.swift
[542/785] Compiling JellyfinAPI GetMediaReceiverRegistrarAPI.swift
[543/785] Compiling JellyfinAPI GetMetadataEditorInfoAPI.swift
[544/785] Compiling JellyfinAPI GetMovieRecommendationsAPI.swift
[545/785] Compiling JellyfinAPI GetMovieRemoteSearchResultsAPI.swift
[546/785] Compiling JellyfinAPI GetMusicAlbumRemoteSearchResultsAPI.swift
[547/785] Compiling JellyfinAPI GetMusicArtistRemoteSearchResultsAPI.swift
[548/785] Compiling JellyfinAPI GetMusicGenreAPI.swift
[549/785] Compiling JellyfinAPI GetMusicGenreImageAPI.swift
[550/785] Compiling JellyfinAPI GetMusicGenreImageByIndexAPI.swift
[551/785] Compiling JellyfinAPI GetMusicGenresAPI.swift
[552/785] Compiling JellyfinAPI GetMusicVideoRemoteSearchResultsAPI.swift
[553/785] Compiling JellyfinAPI GetNamedConfigurationAPI.swift
[554/785] Compiling JellyfinAPI GetNetworkSharesAPI.swift
[555/785] Compiling JellyfinAPI GetNextUpAPI.swift
[556/785] Compiling JellyfinAPI GetNotificationServicesAPI.swift
[557/785] Compiling JellyfinAPI GetNotificationTypesAPI.swift
[558/785] Compiling JellyfinAPI GetNotificationsAPI.swift
[559/785] Compiling JellyfinAPI GetNotificationsSummaryAPI.swift
[560/785] Compiling JellyfinAPI GetPackageInfoAPI.swift
[561/785] Compiling JellyfinAPI GetPackagesAPI.swift
[562/785] Compiling JellyfinAPI GetParentPathAPI.swift
[563/785] Compiling JellyfinAPI GetParentalRatingsAPI.swift
[564/785] Compiling JellyfinAPI GetPasswordResetProvidersAPI.swift
[565/809] Compiling JellyfinAPI GetPersonAPI.swift
[566/809] Compiling JellyfinAPI GetPersonImageAPI.swift
[567/809] Compiling JellyfinAPI GetPersonImageByIndexAPI.swift
[568/809] Compiling JellyfinAPI GetPersonRemoteSearchResultsAPI.swift
[569/809] Compiling JellyfinAPI GetPersonsAPI.swift
[570/809] Compiling JellyfinAPI GetPhysicalPathsAPI.swift
[571/809] Compiling JellyfinAPI GetPingSystemAPI.swift
[572/809] Compiling JellyfinAPI GetPlaybackInfoAPI.swift
[573/809] Compiling JellyfinAPI GetPlaylistAPI.swift
[574/809] Compiling JellyfinAPI GetPlaylistItemsAPI.swift
[575/809] Compiling JellyfinAPI GetPlaylistUserAPI.swift
[576/809] Compiling JellyfinAPI GetPlaylistUsersAPI.swift
[577/809] Compiling JellyfinAPI GetPluginConfigurationAPI.swift
[578/809] Compiling JellyfinAPI GetPluginImageAPI.swift
[579/809] Compiling JellyfinAPI GetPluginManifestAPI.swift
[580/809] Compiling JellyfinAPI GetPluginsAPI.swift
[581/809] Compiling JellyfinAPI GetPostedPlaybackInfoAPI.swift
[582/809] Compiling JellyfinAPI GetProfileAPI.swift
[583/809] Compiling JellyfinAPI GetProfileInfosAPI.swift
[584/809] Compiling JellyfinAPI GetProgramAPI.swift
[585/809] Compiling JellyfinAPI GetProgramsAPI.swift
[586/809] Compiling JellyfinAPI GetPublicSystemInfoAPI.swift
[587/809] Compiling JellyfinAPI GetPublicUsersAPI.swift
[588/809] Compiling JellyfinAPI GetQueryFiltersAPI.swift
[589/809] Compiling JellyfinAPI GetQueryFiltersLegacyAPI.swift
[590/833] Compiling JellyfinAPI GetQuickConnectEnabledAPI.swift
[591/833] Compiling JellyfinAPI GetQuickConnectStateAPI.swift
[592/833] Compiling JellyfinAPI GetRatingImageAPI.swift
[593/833] Compiling JellyfinAPI GetRatingImagesAPI.swift
[594/833] Compiling JellyfinAPI GetRecommendedProgramsAPI.swift
[595/833] Compiling JellyfinAPI GetRecordingAPI.swift
[596/833] Compiling JellyfinAPI GetRecordingFoldersAPI.swift
[597/833] Compiling JellyfinAPI GetRecordingGroupAPI.swift
[598/833] Compiling JellyfinAPI GetRecordingGroupsAPI.swift
[599/833] Compiling JellyfinAPI GetRecordingsAPI.swift
[600/833] Compiling JellyfinAPI GetRecordingsSeriesAPI.swift
[601/833] Compiling JellyfinAPI GetRemoteImageProvidersAPI.swift
[602/833] Compiling JellyfinAPI GetRemoteImagesAPI.swift
[603/833] Compiling JellyfinAPI GetRemoteLyricsAPI.swift
[604/833] Compiling JellyfinAPI GetRemoteSubtitlesAPI.swift
[605/833] Compiling JellyfinAPI GetRepositoriesAPI.swift
[606/833] Compiling JellyfinAPI GetResumeItemsAPI.swift
[607/833] Compiling JellyfinAPI GetRootFolderAPI.swift
[608/833] Compiling JellyfinAPI GetSchedulesDirectCountriesAPI.swift
[609/833] Compiling JellyfinAPI GetSearchHintsAPI.swift
[610/833] Compiling JellyfinAPI GetSeasonsAPI.swift
[611/833] Compiling JellyfinAPI GetSeriesRemoteSearchResultsAPI.swift
[612/833] Compiling JellyfinAPI GetSeriesTimerAPI.swift
[613/833] Compiling JellyfinAPI GetSeriesTimersAPI.swift
[614/833] Compiling JellyfinAPI GetServerLogsAPI.swift
[615/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
[616/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
[617/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
[618/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
[619/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
[620/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
[621/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
[622/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
[623/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
[624/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
[625/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
[626/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
[627/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
[628/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
[629/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
[630/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
[631/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
[632/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
[633/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
[634/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
[635/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
[636/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
[637/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
[638/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
[639/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
[640/857] Compiling JellyfinAPI GetSessionsAPI.swift
[641/857] Compiling JellyfinAPI GetSimilarAlbumsAPI.swift
[642/857] Compiling JellyfinAPI GetSimilarArtistsAPI.swift
[643/857] Compiling JellyfinAPI GetSimilarItemsAPI.swift
[644/857] Compiling JellyfinAPI GetSimilarMoviesAPI.swift
[645/857] Compiling JellyfinAPI GetSimilarShowsAPI.swift
[646/857] Compiling JellyfinAPI GetSimilarTrailersAPI.swift
[647/857] Compiling JellyfinAPI GetSpecialFeaturesAPI.swift
[648/857] Compiling JellyfinAPI GetSplashscreenAPI.swift
[649/857] Compiling JellyfinAPI GetStartupConfigurationAPI.swift
[650/857] Compiling JellyfinAPI GetStudioAPI.swift
[651/857] Compiling JellyfinAPI GetStudioImageAPI.swift
[652/857] Compiling JellyfinAPI GetStudioImageByIndexAPI.swift
[653/857] Compiling JellyfinAPI GetStudiosAPI.swift
[654/857] Compiling JellyfinAPI GetSubtitleAPI.swift
[655/857] Compiling JellyfinAPI GetSubtitlePlaylistAPI.swift
[656/857] Compiling JellyfinAPI GetSubtitleWithTicksAPI.swift
[657/857] Compiling JellyfinAPI GetSuggestionsAPI.swift
[658/857] Compiling JellyfinAPI GetSystemInfoAPI.swift
[659/857] Compiling JellyfinAPI GetSystemStorageAPI.swift
[660/857] Compiling JellyfinAPI GetTaskAPI.swift
[661/857] Compiling JellyfinAPI GetTasksAPI.swift
[662/857] Compiling JellyfinAPI GetThemeMediaAPI.swift
[663/857] Compiling JellyfinAPI GetThemeSongsAPI.swift
[664/857] Compiling JellyfinAPI GetThemeVideosAPI.swift
[665/857] Compiling JellyfinAPI ProcessMediaReceiverRegistrarControlRequestAPI.swift
[666/857] Compiling JellyfinAPI RefreshItemAPI.swift
[667/857] Compiling JellyfinAPI RefreshLibraryAPI.swift
[668/857] Compiling JellyfinAPI RemoveFromCollectionAPI.swift
[669/857] Compiling JellyfinAPI RemoveFromPlaylistAPI.swift
[670/857] Compiling JellyfinAPI RemoveItemFromPlaylistAPI.swift
[671/857] Compiling JellyfinAPI RemoveMediaPathAPI.swift
[672/857] Compiling JellyfinAPI RemoveUserFromPlaylistAPI.swift
[673/857] Compiling JellyfinAPI RemoveUserFromSessionAPI.swift
[674/857] Compiling JellyfinAPI RemoveVirtualFolderAPI.swift
[675/857] Compiling JellyfinAPI RenameVirtualFolderAPI.swift
[676/857] Compiling JellyfinAPI ReportPlaybackProgressAPI.swift
[677/857] Compiling JellyfinAPI ReportPlaybackStartAPI.swift
[678/857] Compiling JellyfinAPI ReportPlaybackStoppedAPI.swift
[679/857] Compiling JellyfinAPI ReportSessionEndedAPI.swift
[680/857] Compiling JellyfinAPI ReportViewingAPI.swift
[681/857] Compiling JellyfinAPI ResetTunerAPI.swift
[682/857] Compiling JellyfinAPI RestartApplicationAPI.swift
[683/857] Compiling JellyfinAPI RevokeKeyAPI.swift
[684/857] Compiling JellyfinAPI SearchRemoteLyricsAPI.swift
[685/857] Compiling JellyfinAPI SearchRemoteSubtitlesAPI.swift
[686/857] Compiling JellyfinAPI SendFullGeneralCommandAPI.swift
[687/857] Compiling JellyfinAPI SendGeneralCommandAPI.swift
[688/857] Compiling JellyfinAPI SendMessageCommandAPI.swift
[689/857] Compiling JellyfinAPI SendPlaystateCommandAPI.swift
[690/857] Compiling JellyfinAPI SendSystemCommandAPI.swift
[691/857] Compiling JellyfinAPI SetChannelMappingAPI.swift
[692/857] Compiling JellyfinAPI SetItemImageAPI.swift
[693/857] Compiling JellyfinAPI SetItemImageByIndexAPI.swift
[694/857] Compiling JellyfinAPI SetReadAPI.swift
[695/857] Compiling JellyfinAPI SetRemoteAccessAPI.swift
[696/857] Compiling JellyfinAPI SetRepositoriesAPI.swift
[697/857] Compiling JellyfinAPI SetUnreadAPI.swift
[698/857] Compiling JellyfinAPI ShutdownApplicationAPI.swift
[699/857] Compiling JellyfinAPI StartRestoreBackupAPI.swift
[700/857] Compiling JellyfinAPI StartTaskAPI.swift
[701/857] Compiling JellyfinAPI StopEncodingProcessAPI.swift
[702/857] Compiling JellyfinAPI StopTaskAPI.swift
[703/857] Compiling JellyfinAPI SyncPlayBufferingAPI.swift
[704/857] Compiling JellyfinAPI SyncPlayCreateGroupAPI.swift
[705/857] Compiling JellyfinAPI SyncPlayGetGroupAPI.swift
[706/857] Compiling JellyfinAPI SyncPlayGetGroupsAPI.swift
[707/857] Compiling JellyfinAPI SyncPlayJoinGroupAPI.swift
[708/857] Compiling JellyfinAPI SyncPlayLeaveGroupAPI.swift
[709/857] Compiling JellyfinAPI SyncPlayMovePlaylistItemAPI.swift
[710/857] Compiling JellyfinAPI SyncPlayNextItemAPI.swift
[711/857] Compiling JellyfinAPI SyncPlayPauseAPI.swift
[712/857] Compiling JellyfinAPI SyncPlayPingAPI.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! (16.50s)
Fetching https://github.com/CreateAPI/URLQueryEncoder
Fetching https://github.com/kean/Get
[1/2349] Fetching get
[119/2477] Fetching get, urlqueryencoder
Fetched https://github.com/CreateAPI/URLQueryEncoder from cache (1.02s)
Fetched https://github.com/kean/Get from cache (1.02s)
Computing version for https://github.com/CreateAPI/URLQueryEncoder
Computed https://github.com/CreateAPI/URLQueryEncoder at 0.2.1 (1.64s)
Computing version for https://github.com/kean/Get
Computed https://github.com/kean/Get at 2.2.1 (0.59s)
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
[16375/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.74s)
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.