The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build CareKit, reference 3.1.7 (659fbb), with Swift 6.2 (beta) for macOS (SPM) on 24 Jun 2025 01:50:13 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/CarePlans/OCKCarePlanStore.swift:169:20: warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
167 |
168 |         let plans = carePlans(matching: query)
169 |             .map { $0 as [OCKAnyCarePlan] }
    |                    `- warning: capture of non-sendable type 'Self.Plan.Type' in an isolated closure
170 |
171 |         let wrappedPlans = CareStoreQueryResults(wrapping: plans)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Contacts/OCKContactStore.swift:168:20: warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
166 |
167 |         let contacts = contacts(matching: query)
168 |             .map { $0 as [OCKAnyContact] }
    |                    `- warning: capture of non-sendable type 'Self.Contact.Type' in an isolated closure
169 |
170 |         let wrappedContacts = CareStoreQueryResults(wrapping: contacts)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:141:24: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
139 |         let events = events(matching: query)
140 |             .map { events in
141 |                 events.map { $0.anyEvent }
    |                        `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
142 |             }
143 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:166:48: warning: capture of non-sendable type 'Self.Type' in an isolated closure
164 |         guard let typedTask = task as? Self.Task else {
165 |             callbackQueue.async {
166 |                 let message = "Store of type \(type(of: self)) cannot fetch event with task type \(type(of: task))."
    |                                                `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
167 |                 completion(.failure(.fetchFailed(reason: message)))
168 |             }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:158:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
156 |     }
157 |
158 |     func fetchAnyEvent(
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
159 |         forTask task: OCKAnyTask,
160 |         occurrence: Int,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:22: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                      `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:196:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure
194 |         let events = combineLatest(partialEvents, outcomes)
195 |             .map { partialEvents, outcomes in
196 |                 self.join(partialEvents: partialEvents, outcomes: outcomes)
    |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
197 |             }
198 |             .removeDuplicates()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKEventStore.swift:186:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
184 | public extension OCKReadOnlyEventStore where Task: OCKAnyVersionableTask {
185 |
186 |     func events(matching query: OCKEventQuery) -> CareStoreQueryResults<Event> {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
187 |
188 |         let taskQuery = query.taskQuery
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:24: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                        `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:60:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 58 |         let taskVersionChains = latestTaskVersions.map { tasks in
 59 |
 60 |             return try await self.taskVersionChains(
    |                              `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 61 |                 backwardsFrom: tasks,
 62 |                 effectiveAfter: dateInterval.start
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:78:18: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 76 |                 }
 77 |                 // Guarantee a stable sort order in UIs with lists of events
 78 |                 .sorted { $0.isOrderedBefore(other: $1) }
    |                  `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
 79 |         }
 80 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:41:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
 39 |
 40 |     // Returns `some AsyncSequence where Element == [PartialEvent<Task>]`
 41 |     func partialEvents(matching query: OCKTaskQuery) -> PartialEvents {
    |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
 42 |
 43 |         let latestTaskVersionsQuery = makeLatestTaskVersionsQuery(from: query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:44: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                            `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:102:50: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                     // fetching *previous* versions of a task. If a task is updated, a
101 |                     // new version is created and the previous versions are unaffected.
102 |                     let versionChain = try await self.taskVersionChain(
    |                                                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |                         backwardsFrom: careTask,
104 |                         effectiveAfter: startDate
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift:84:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 82 |     }
 83 |
 84 |     private func taskVersionChains(
    |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |         backwardsFrom tasks: [Task],
 86 |         effectiveAfter startDate: Date
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:59:17: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |
58 |             continuation.onTermination = { _ in
59 |                 self.stopQuery()
   |                 `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/QueryMonitor.swift:45:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
43 | extension QueryMonitor {
44 |
45 |     func results() -> AsyncThrowingStream<QueryResult, Error> {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 |
47 |         // The stream needs to hold a strong reference to the monitor, or else
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:87:33: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 85 |
 86 |             let initialChanges = [SampleChange()].async
 87 |             let seededChanges = chain(initialChanges, changes(events))
    |                                 `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 88 |
 89 |             // Continuously update the outcomes for the events when new HealthKit
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift:68:25: warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 66 |     func events<SampleChanges: AsyncSequence>(
 67 |         matching query: OCKTaskQuery,
 68 |         applyingChanges changes: @escaping ([Event]) -> SampleChanges,
    |                         `- warning: capture of non-sendable type 'SampleChanges.Type' in an isolated closure
 69 |         updateCumulativeSumOfSamples: @escaping UpdateCumulativeSumOfSamples
 70 |     ) -> AsyncFlatMapSequence<AsyncMapSequence<AsyncMapSequence<
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Outcomes/OCKOutcomeStore.swift:153:20: warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
151 |
152 |         let outcomes = outcomes(matching: query)
153 |             .map { $0 as [OCKAnyOutcome] }
    |                    `- warning: capture of non-sendable type 'Self.Outcome.Type' in an isolated closure
154 |
155 |         let wrappedOutcomes = CareStoreQueryResults(wrapping: outcomes)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Patients/OCKPatientStore.swift:171:20: warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
169 |
170 |         let patients = patients(matching: query)
171 |             .map { $0 as [OCKAnyPatient] }
    |                    `- warning: capture of non-sendable type 'Self.Patient.Type' in an isolated closure
172 |
173 |         let wrappedPatients = CareStoreQueryResults(wrapping: patients)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Protocols/Tasks/OCKTaskStore.swift:168:20: warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
166 |
167 |         let tasks = tasks(matching: query)
168 |             .map { $0 as [OCKAnyTask] }
    |                    `- warning: capture of non-sendable type 'Self.Task.Type' in an isolated closure
169 |
170 |         let wrappedTasks = CareStoreQueryResults(wrapping: tasks)
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[820/1326] Emitting module CareKitUI
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
[840/1326] Compiling ModelsR4 CodeSystemConsentScopeCodes.swift
[841/1326] Compiling ModelsR4 CodeSystemConsentState.swift
[842/1326] Compiling ModelsR4 CodeSystemDeviceUseStatementStatus.swift
[843/1326] Compiling ModelsR4 CodeSystemDiagnosisRole.swift
[844/1326] Compiling ModelsR4 CodeSystemDiagnosticReportStatus.swift
[845/1326] Compiling ModelsR4 CodeSystemDiet.swift
[846/1326] Compiling ModelsR4 CodeSystemDischargeDisposition.swift
[847/1326] Compiling ModelsR4 CodeSystemDiscriminatorType.swift
[848/1326] Compiling ModelsR4 CodeSystemDocumentMode.swift
[849/1326] Compiling ModelsR4 CodeSystemDocumentReferenceStatus.swift
[850/1326] Compiling ModelsR4 CodeSystemDocumentRelationshipType.swift
[851/1326] Compiling ModelsR4 CodeSystemDoseAndRateType.swift
[852/1326] Compiling ModelsR4 CodeSystemEffectEstimateType.swift
[853/1326] Compiling ModelsR4 CodeSystemEligibilityRequestPurpose.swift
[854/1326] Compiling ModelsR4 CodeSystemEligibilityResponsePurpose.swift
[855/1326] Compiling ModelsR4 CodeSystemEnableWhenBehavior.swift
[856/1326] Compiling ModelsR4 CodeSystemEncounterLocationStatus.swift
[857/1326] Compiling ModelsR4 CodeSystemEncounterStatus.swift
[858/1326] Compiling ModelsR4 CodeSystemEncounterType.swift
[859/1326] Compiling ModelsR4 CodeSystemEndpointConnectionType.swift
[860/1326] Compiling ModelsR4 CodeSystemEndpointPayloadType.swift
[861/1326] Compiling ModelsR4 CodeSystemEndpointStatus.swift
[862/1326] Compiling ModelsR4 CodeSystemEnteralFormulaAdditiveTypeCode.swift
[863/1326] Compiling ModelsR4 CodeSystemEpisodeOfCareStatus.swift
[865/1326] Compiling ModelsR4 CodeSystemCommonTags.swift
[866/1326] Compiling ModelsR4 CodeSystemCommunicationCategory.swift
[867/1326] Compiling ModelsR4 CodeSystemCommunicationNotDoneReason.swift
[868/1326] Compiling ModelsR4 CodeSystemCommunicationTopic.swift
[869/1326] Compiling ModelsR4 CodeSystemCompartmentType.swift
[870/1326] Compiling ModelsR4 CodeSystemCompositeMeasureScoring.swift
[871/1326] Compiling ModelsR4 CodeSystemCompositionAttestationMode.swift
[872/1326] Compiling ModelsR4 CodeSystemCompositionStatus.swift
[873/1326] Compiling ModelsR4 CodeSystemConceptMapEquivalence.swift
[874/1326] Compiling ModelsR4 CodeSystemConceptMapGroupUnmappedMode.swift
[875/1326] Compiling ModelsR4 CodeSystemConceptSubsumptionOutcome.swift
[876/1326] Compiling ModelsR4 CodeSystemConditionCategoryCodes.swift
[877/1326] Compiling ModelsR4 CodeSystemConditionClinicalStatusCodes.swift
[878/1326] Compiling ModelsR4 CodeSystemConditionState.swift
[879/1326] Compiling ModelsR4 CodeSystemConditionVerificationStatus.swift
[880/1326] Compiling ModelsR4 CodeSystemConditionalDeleteStatus.swift
[881/1326] Compiling ModelsR4 CodeSystemConditionalReadStatus.swift
[882/1326] Compiling ModelsR4 CodeSystemConformanceExpectation.swift
[883/1326] Compiling ModelsR4 CodeSystemConsentActionCodes.swift
[884/1326] Compiling ModelsR4 CodeSystemConsentCategoryCodes.swift
[885/1326] Compiling ModelsR4 CodeSystemConsentDataMeaning.swift
[886/1326] Compiling ModelsR4 CodeSystemConsentPolicyRuleCodes.swift
[887/1326] Compiling ModelsR4 CodeSystemConsentProvisionType.swift
[888/1326] Emitting module ModelsDSTU2
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
[945/1374] Compiling ModelsR4 CodeSystemEpisodeOfCareType.swift
[946/1374] Compiling ModelsR4 CodeSystemEventCapabilityMode.swift
[947/1374] Compiling ModelsR4 CodeSystemEventResourceType.swift
[973/1374] Compiling ModelsR4 Claim.swift
[974/1374] Compiling ModelsR4 ClaimResponse.swift
[975/1374] Compiling ModelsR4 ClinicalImpression.swift
[976/1374] Compiling ModelsR4 CodeSystem.swift
[977/1374] Compiling ModelsR4 CodeSystemAbstractType.swift
[978/1374] Compiling ModelsR4 CodeSystemAccountStatus.swift
[979/1374] Compiling ModelsR4 CodeSystemActionCardinalityBehavior.swift
[980/1374] Compiling ModelsR4 CodeSystemActionConditionKind.swift
[981/1374] Compiling ModelsR4 CodeSystemActionGroupingBehavior.swift
[982/1374] Compiling ModelsR4 CodeSystemActionParticipantType.swift
[983/1374] Compiling ModelsR4 CodeSystemActionPrecheckBehavior.swift
[984/1374] Compiling ModelsR4 CodeSystemActionRelationshipType.swift
[985/1374] Compiling ModelsR4 CodeSystemActionRequiredBehavior.swift
[986/1374] Compiling ModelsR4 CodeSystemActionSelectionBehavior.swift
[987/1374] Compiling ModelsR4 CodeSystemActionType.swift
[988/1374] Compiling ModelsR4 CodeSystemActivityDefinitionCategory.swift
[989/1374] Compiling ModelsR4 CodeSystemAdditionalMaterialCodes.swift
[990/1374] Compiling ModelsR4 CodeSystemAddressType.swift
[991/1374] Compiling ModelsR4 CodeSystemAddressUse.swift
[992/1374] Compiling ModelsR4 CodeSystemAdjudicationReasonCodes.swift
[993/1374] Compiling ModelsR4 CodeSystemAdjudicationValueCodes.swift
[994/1374] Compiling ModelsR4 CodeSystemAdministrativeGender.swift
[1031/1446] Compiling CareKitUI OCKInstructionsTaskView.swift
[1032/1446] Compiling CareKitUI OCKLogTaskView.swift
[1033/1446] Compiling CareKitUI OCKSimpleTaskView.swift
[1034/1446] Compiling CareKitUI OCKTaskDisplayable.swift
[1035/1446] Compiling CareKitUI OCKHeaderView.swift
[1036/1446] Compiling CareKitUI OCKSeparatorView.swift
[1037/1446] Compiling CareKitUI OCKStackView.swift
[1038/1446] Compiling CareKitUI OCKView.swift
[1039/1446] Compiling CareKitUI resource_bundle_accessor.swift
[1097/1446] Emitting module ModelsR4
[1122/1446] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1123/1446] Compiling ModelsR4 CodeSystemUse.swift
[1124/1446] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1125/1446] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1126/1446] Compiling ModelsR4 CodeSystemValidationType.swift
[1127/1446] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1128/1446] Compiling ModelsR4 CodeSystemVisionBase.swift
[1129/1446] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1130/1446] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1131/1446] Compiling ModelsR4 CodeableConcept.swift
[1132/1446] Compiling ModelsR4 Coding.swift
[1133/1446] Compiling ModelsR4 Communication.swift
[1134/1446] Compiling ModelsR4 CommunicationRequest.swift
[1135/1446] Compiling ModelsR4 CompartmentDefinition.swift
[1136/1446] Compiling ModelsR4 Composition.swift
[1137/1446] Compiling ModelsR4 ConceptMap.swift
[1138/1446] Compiling ModelsR4 Condition.swift
[1139/1446] Compiling ModelsR4 Consent.swift
[1140/1446] Compiling ModelsR4 ContactDetail.swift
[1141/1446] Compiling ModelsR4 ContactPoint.swift
[1142/1446] Compiling ModelsR4 Contract.swift
[1143/1446] Compiling ModelsR4 Contributor.swift
[1144/1446] Compiling ModelsR4 Count.swift
[1145/1446] Compiling ModelsR4 Coverage.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
[1180/1446] Compiling ModelsR4 Endpoint.swift
[1181/1446] Compiling ModelsR4 EnrollmentRequest.swift
[1182/1446] Compiling ModelsR4 EnrollmentResponse.swift
[1183/1446] Compiling ModelsR4 EpisodeOfCare.swift
[1184/1446] Compiling ModelsR4 EventDefinition.swift
[1185/1446] Compiling ModelsR4 Evidence.swift
[1186/1446] Compiling ModelsR4 EvidenceVariable.swift
[1187/1446] Compiling ModelsR4 ExampleScenario.swift
[1188/1446] Compiling ModelsR4 ExplanationOfBenefit.swift
[1189/1446] Compiling ModelsR4 Expression.swift
[1190/1446] Compiling ModelsR4 Extension.swift
[1191/1446] Compiling ModelsR4 FHIRAbstractResource.swift
[1192/1446] Compiling ModelsR4 FHIRBool.swift
[1193/1446] Compiling ModelsR4 FHIRDate+NSDate.swift
[1194/1446] Compiling ModelsR4 FHIRDate.swift
[1195/1446] Compiling ModelsR4 FHIRDecimal.swift
[1196/1446] Compiling ModelsR4 FHIRInteger.swift
[1197/1446] Compiling ModelsR4 FHIRPositiveInteger.swift
[1198/1446] Compiling ModelsR4 FHIRPrimitive.swift
[1199/1446] Compiling ModelsR4 FHIRString.swift
[1200/1446] Compiling ModelsR4 FHIRTime+NSDate.swift
[1201/1446] Compiling ModelsR4 FHIRTime.swift
[1202/1446] Compiling ModelsR4 FHIRURI.swift
[1203/1446] Compiling ModelsR4 FHIRUnsignedInteger.swift
[1204/1446] Compiling ModelsDSTU2 Flag.swift
[1205/1446] Compiling ModelsDSTU2 Goal.swift
[1206/1446] Compiling ModelsDSTU2 Group.swift
[1207/1446] Compiling ModelsDSTU2 HealthcareService.swift
[1208/1446] Compiling ModelsDSTU2 HumanName.swift
[1209/1446] Compiling ModelsDSTU2 Identifier.swift
[1210/1446] Compiling ModelsDSTU2 ImagingObjectSelection.swift
[1211/1446] Compiling ModelsDSTU2 ImagingStudy.swift
[1212/1446] Compiling ModelsDSTU2 Immunization.swift
[1213/1446] Compiling ModelsDSTU2 ImmunizationRecommendation.swift
[1214/1446] Compiling ModelsDSTU2 ImplementationGuide.swift
[1215/1446] Compiling ModelsDSTU2 Instant+NSDate.swift
[1216/1446] Compiling ModelsDSTU2 Instant.swift
[1217/1446] Compiling ModelsDSTU2 InstantDate.swift
[1218/1446] Compiling ModelsDSTU2 List.swift
[1219/1446] Compiling ModelsDSTU2 Location.swift
[1220/1446] Compiling ModelsDSTU2 Media.swift
[1221/1446] Compiling ModelsDSTU2 Medication.swift
[1222/1446] Compiling ModelsDSTU2 MedicationAdministration.swift
[1223/1446] Compiling ModelsDSTU2 MedicationDispense.swift
[1224/1446] Compiling ModelsDSTU2 MedicationOrder.swift
[1225/1446] Compiling ModelsDSTU2 MedicationStatement.swift
[1226/1446] Compiling ModelsDSTU2 MessageHeader.swift
[1227/1446] Compiling ModelsDSTU2 Meta.swift
[1228/1446] Compiling ModelsR4 FamilyMemberHistory.swift
[1229/1446] Compiling ModelsR4 Flag.swift
[1230/1446] Compiling ModelsR4 Goal.swift
[1231/1446] Compiling ModelsR4 GraphDefinition.swift
[1232/1446] Compiling ModelsR4 Group.swift
[1233/1446] Compiling ModelsR4 GuidanceResponse.swift
[1234/1446] Compiling ModelsR4 HealthcareService.swift
[1235/1446] Compiling ModelsR4 HumanName.swift
[1236/1446] Compiling ModelsR4 Identifier.swift
[1237/1446] Compiling ModelsR4 ImagingStudy.swift
[1238/1446] Compiling ModelsR4 Immunization.swift
[1239/1446] Compiling ModelsR4 ImmunizationEvaluation.swift
[1240/1446] Compiling ModelsR4 ImmunizationRecommendation.swift
[1241/1446] Compiling ModelsR4 ImplementationGuide.swift
[1242/1446] Compiling ModelsR4 Instant+NSDate.swift
[1243/1446] Compiling ModelsR4 Instant.swift
[1244/1446] Compiling ModelsR4 InstantDate.swift
[1245/1446] Compiling ModelsR4 InsurancePlan.swift
[1246/1446] Compiling ModelsR4 Invoice.swift
[1247/1446] Compiling ModelsR4 Library.swift
[1248/1446] Compiling ModelsR4 Linkage.swift
[1249/1446] Compiling ModelsR4 List.swift
[1250/1446] Compiling ModelsR4 Location.swift
[1251/1446] Compiling ModelsR4 MarketingStatus.swift
[1252/1446] Compiling ModelsDSTU2 Money.swift
[1253/1446] Compiling ModelsDSTU2 NamingSystem.swift
[1254/1446] Compiling ModelsDSTU2 Narrative.swift
[1255/1446] Compiling ModelsDSTU2 NutritionOrder.swift
[1256/1446] Compiling ModelsDSTU2 Observation.swift
[1257/1446] Compiling ModelsDSTU2 OperationDefinition.swift
[1258/1446] Compiling ModelsDSTU2 OperationOutcome.swift
[1259/1446] Compiling ModelsDSTU2 Order.swift
[1260/1446] Compiling ModelsDSTU2 OrderResponse.swift
[1261/1446] Compiling ModelsDSTU2 Organization.swift
[1262/1446] Compiling ModelsDSTU2 Parameters.swift
[1263/1446] Compiling ModelsDSTU2 Patient.swift
[1264/1446] Compiling ModelsDSTU2 PaymentNotice.swift
[1265/1446] Compiling ModelsDSTU2 PaymentReconciliation.swift
[1266/1446] Compiling ModelsDSTU2 Period.swift
[1267/1446] Compiling ModelsDSTU2 Person.swift
[1268/1446] Compiling ModelsDSTU2 Practitioner.swift
[1269/1446] Compiling ModelsDSTU2 Procedure.swift
[1270/1446] Compiling ModelsDSTU2 ProcedureRequest.swift
[1271/1446] Compiling ModelsDSTU2 ProcessRequest.swift
[1272/1446] Compiling ModelsDSTU2 ProcessResponse.swift
[1273/1446] Compiling ModelsDSTU2 Provenance.swift
[1274/1446] Compiling ModelsDSTU2 Quantity.swift
[1275/1446] Compiling ModelsDSTU2 Questionnaire.swift
[1276/1446] Compiling ModelsDSTU2 QuestionnaireResponse.swift
[1277/1446] Compiling ModelsDSTU2 Range.swift
[1278/1446] Compiling ModelsDSTU2 Ratio.swift
[1279/1446] Compiling ModelsDSTU2 Reference.swift
[1280/1446] Compiling ModelsDSTU2 ReferralRequest.swift
[1281/1446] Compiling ModelsDSTU2 RelatedPerson.swift
[1282/1446] Compiling ModelsDSTU2 Resource.swift
[1283/1446] Compiling ModelsDSTU2 ResourceProxy.swift
[1284/1446] Compiling ModelsDSTU2 RiskAssessment.swift
[1285/1446] Compiling ModelsDSTU2 SampledData.swift
[1286/1446] Compiling ModelsDSTU2 Schedule.swift
[1287/1446] Compiling ModelsDSTU2 SearchParameter.swift
[1288/1446] Compiling ModelsDSTU2 Signature.swift
[1289/1446] Compiling ModelsDSTU2 Slot.swift
[1290/1446] Compiling ModelsDSTU2 Specimen.swift
[1291/1446] Compiling ModelsDSTU2 StructureDefinition.swift
[1292/1446] Compiling ModelsDSTU2 Subscription.swift
[1293/1446] Compiling ModelsDSTU2 Substance.swift
[1294/1446] Compiling ModelsDSTU2 SupplyDelivery.swift
[1295/1446] Compiling ModelsDSTU2 SupplyRequest.swift
[1296/1446] Compiling ModelsDSTU2 TestScript.swift
[1297/1446] Compiling ModelsDSTU2 Timing.swift
[1298/1446] Compiling ModelsDSTU2 ValueSet.swift
[1299/1446] Compiling ModelsDSTU2 VisionPrescription.swift
[1300/1446] Compiling ModelsR4 Measure.swift
[1301/1446] Compiling ModelsR4 MeasureReport.swift
[1302/1446] Compiling ModelsR4 Media.swift
[1303/1446] Compiling ModelsR4 Medication.swift
[1304/1446] Compiling ModelsR4 MedicationAdministration.swift
[1305/1446] Compiling ModelsR4 MedicationDispense.swift
[1306/1446] Compiling ModelsR4 MedicationKnowledge.swift
[1307/1446] Compiling ModelsR4 MedicationRequest.swift
[1308/1446] Compiling ModelsR4 MedicationStatement.swift
[1309/1446] Compiling ModelsR4 MedicinalProduct.swift
[1310/1446] Compiling ModelsR4 MedicinalProductAuthorization.swift
[1311/1446] Compiling ModelsR4 MedicinalProductContraindication.swift
[1312/1446] Compiling ModelsR4 MedicinalProductIndication.swift
[1313/1446] Compiling ModelsR4 MedicinalProductIngredient.swift
[1314/1446] Compiling ModelsR4 MedicinalProductInteraction.swift
[1315/1446] Compiling ModelsR4 MedicinalProductManufactured.swift
[1316/1446] Compiling ModelsR4 MedicinalProductPackaged.swift
[1317/1446] Compiling ModelsR4 MedicinalProductPharmaceutical.swift
[1318/1446] Compiling ModelsR4 MedicinalProductUndesirableEffect.swift
[1319/1446] Compiling ModelsR4 MessageDefinition.swift
[1320/1446] Compiling ModelsR4 MessageHeader.swift
[1321/1446] Compiling ModelsR4 Meta.swift
[1322/1446] Compiling ModelsR4 MolecularSequence.swift
[1323/1446] Compiling ModelsR4 Money.swift
[1324/1446] Compiling ModelsR4 CoverageEligibilityRequest.swift
[1325/1446] Compiling ModelsR4 CoverageEligibilityResponse.swift
[1326/1446] Compiling ModelsR4 DataRequirement.swift
[1327/1446] Compiling ModelsR4 DateTime+NSDate.swift
[1328/1446] Compiling ModelsR4 DateTime.swift
[1329/1446] Compiling ModelsR4 DetectedIssue.swift
[1330/1446] Compiling ModelsR4 Device.swift
[1331/1446] Compiling ModelsR4 DeviceDefinition.swift
[1332/1446] Compiling ModelsR4 DeviceMetric.swift
[1333/1446] Compiling ModelsR4 DeviceRequest.swift
[1334/1446] Compiling ModelsR4 DeviceUseStatement.swift
[1335/1446] Compiling ModelsR4 DiagnosticReport.swift
[1336/1446] Compiling ModelsR4 Distance.swift
[1337/1446] Compiling ModelsR4 DocumentManifest.swift
[1338/1446] Compiling ModelsR4 DocumentReference.swift
[1339/1446] Compiling ModelsR4 DomainResource+Extensions.swift
[1340/1446] Compiling ModelsR4 DomainResource.swift
[1341/1446] Compiling ModelsR4 Dosage.swift
[1342/1446] Compiling ModelsR4 Duration.swift
[1343/1446] Compiling ModelsR4 EffectEvidenceSynthesis.swift
[1344/1446] Compiling ModelsR4 Element+Extensions.swift
[1345/1446] Compiling ModelsR4 Element.swift
[1346/1446] Compiling ModelsR4 ElementDefinition.swift
[1347/1446] Compiling ModelsR4 Encounter.swift
[1348/1446] Compiling ModelsR4 NamingSystem.swift
[1349/1446] Compiling ModelsR4 Narrative.swift
[1350/1446] Compiling ModelsR4 NutritionOrder.swift
[1351/1446] Compiling ModelsR4 Observation.swift
[1352/1446] Compiling ModelsR4 ObservationDefinition.swift
[1353/1446] Compiling ModelsR4 OperationDefinition.swift
[1354/1446] Compiling ModelsR4 OperationOutcome.swift
[1355/1446] Compiling ModelsR4 Organization.swift
[1356/1446] Compiling ModelsR4 OrganizationAffiliation.swift
[1357/1446] Compiling ModelsR4 ParameterDefinition.swift
[1358/1446] Compiling ModelsR4 Parameters.swift
[1359/1446] Compiling ModelsR4 Patient.swift
[1360/1446] Compiling ModelsR4 PaymentNotice.swift
[1361/1446] Compiling ModelsR4 PaymentReconciliation.swift
[1362/1446] Compiling ModelsR4 Period.swift
[1363/1446] Compiling ModelsR4 Person.swift
[1364/1446] Compiling ModelsR4 PlanDefinition.swift
[1365/1446] Compiling ModelsR4 Population.swift
[1366/1446] Compiling ModelsR4 Practitioner.swift
[1367/1446] Compiling ModelsR4 PractitionerRole.swift
[1368/1446] Compiling ModelsR4 Procedure.swift
[1369/1446] Compiling ModelsR4 ProdCharacteristic.swift
[1370/1446] Compiling ModelsR4 ProductShelfLife.swift
[1371/1446] Compiling ModelsR4 Provenance.swift
[1372/1446] Compiling ModelsR4 Quantity.swift
[1373/1446] Compiling ModelsR4 Questionnaire.swift
[1374/1446] Compiling ModelsR4 QuestionnaireResponse.swift
[1375/1446] Compiling ModelsR4 Range.swift
[1376/1446] Compiling ModelsR4 Ratio.swift
[1377/1446] Compiling ModelsR4 Reference.swift
[1378/1446] Compiling ModelsR4 RelatedArtifact.swift
[1379/1446] Compiling ModelsR4 RelatedPerson.swift
[1380/1446] Compiling ModelsR4 RequestGroup.swift
[1381/1446] Compiling ModelsR4 ResearchDefinition.swift
[1382/1446] Compiling ModelsR4 ResearchElementDefinition.swift
[1383/1446] Compiling ModelsR4 ResearchStudy.swift
[1384/1446] Compiling ModelsR4 ResearchSubject.swift
[1385/1446] Compiling ModelsR4 Resource.swift
[1386/1446] Compiling ModelsR4 ResourceProxy.swift
[1387/1446] Compiling ModelsR4 RiskAssessment.swift
[1388/1446] Compiling ModelsR4 RiskEvidenceSynthesis.swift
[1389/1446] Compiling ModelsR4 SampledData.swift
[1390/1446] Compiling ModelsR4 Schedule.swift
[1391/1446] Compiling ModelsR4 SearchParameter.swift
[1392/1446] Compiling ModelsR4 ServiceRequest.swift
[1393/1446] Compiling ModelsR4 Signature.swift
[1394/1446] Compiling ModelsR4 Slot.swift
[1395/1446] Compiling ModelsR4 Specimen.swift
[1396/1446] Compiling ModelsR4 SpecimenDefinition.swift
[1397/1446] Compiling ModelsR4 StructureDefinition.swift
[1398/1446] Compiling ModelsR4 StructureMap.swift
[1399/1446] Compiling ModelsR4 Subscription.swift
[1400/1446] Compiling ModelsR4 Substance.swift
[1401/1446] Compiling ModelsR4 SubstanceAmount.swift
[1402/1446] Compiling ModelsR4 SubstanceNucleicAcid.swift
[1403/1446] Compiling ModelsR4 SubstancePolymer.swift
[1404/1446] Compiling ModelsR4 SubstanceProtein.swift
[1405/1446] Compiling ModelsR4 SubstanceReferenceInformation.swift
[1406/1446] Compiling ModelsR4 SubstanceSourceMaterial.swift
[1407/1446] Compiling ModelsR4 SubstanceSpecification.swift
[1408/1446] Compiling ModelsR4 SupplyDelivery.swift
[1409/1446] Compiling ModelsR4 SupplyRequest.swift
[1410/1446] Compiling ModelsR4 Task.swift
[1411/1446] Compiling ModelsR4 TerminologyCapabilities.swift
[1412/1446] Compiling ModelsR4 TestReport.swift
[1413/1446] Compiling ModelsR4 TestScript.swift
[1414/1446] Compiling ModelsR4 Timing.swift
[1415/1446] Compiling ModelsR4 TriggerDefinition.swift
[1416/1446] Compiling ModelsR4 UsageContext.swift
[1417/1446] Compiling ModelsR4 ValueSet.swift
[1418/1446] Compiling ModelsR4 VerificationResult.swift
[1419/1446] Compiling ModelsR4 VisionPrescription.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 |  */
30 |
31 | import UIKit
   |        `- error: no such module 'UIKit'
32 |
33 | extension Double {
Fetching https://github.com/apple/swift-async-algorithms
Fetching https://github.com/apple/FHIRModels.git
[1/4985] Fetching swift-async-algorithms
[151/11062] Fetching swift-async-algorithms, fhirmodels
Fetched https://github.com/apple/swift-async-algorithms from cache (1.01s)
[1034/6077] Fetching fhirmodels
Fetched https://github.com/apple/FHIRModels.git from cache (1.30s)
Computing version for https://github.com/apple/swift-async-algorithms
Computed https://github.com/apple/swift-async-algorithms at 1.0.1 (1.77s)
Fetching https://github.com/apple/swift-collections.git
[1/16640] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.69s)
Computing version for https://github.com/apple/FHIRModels.git
Computed https://github.com/apple/FHIRModels.git at 0.5.0 (2.22s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (0.52s)
Creating working copy for https://github.com/apple/FHIRModels.git
Working copy of https://github.com/apple/FHIRModels.git resolved at 0.5.0
Creating working copy for https://github.com/apple/swift-async-algorithms
Working copy of https://github.com/apple/swift-async-algorithms resolved at 1.0.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/CareKitStore.xcdatamodeld
BUILD FAILURE 6.2 macosSpm