The Swift Package Index logo.Swift Package Index

Build Information

Failed to build CareKit, reference main (348a5e), with Swift 6.2 for macOS (SPM) on 7 Apr 2026 10:27:40 UTC.

Build Command

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

Build Log

81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[541/1132] Compiling ModelsR4 CodeSystemContractActorRoleCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[542/1132] Compiling ModelsR4 CodeSystemContractContentDerivationCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[543/1132] Compiling ModelsR4 CodeSystemContractDataMeaning.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[544/1132] Compiling ModelsR4 CodeSystemContractResourceActionStatusCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[545/1132] Compiling ModelsR4 CodeSystemContractResourceAssetAvailiabilityCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[546/1132] Compiling ModelsR4 CodeSystemContractResourceAssetContextCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[547/1132] Compiling ModelsR4 CodeSystemContractResourceAssetScopeCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[548/1132] Compiling ModelsR4 CodeSystemContractResourceAssetSubTypeCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[549/1132] Compiling ModelsR4 CodeSystemContractResourceAssetTypeCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[550/1132] Compiling ModelsR4 CodeSystemContractResourceDecisionModeCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[551/1132] Compiling ModelsR4 CodeSystemContractResourceDefinitionSubtypeCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:74:24: warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDScheduleElement)
 35 | class OCKCDScheduleElement: NSManagedObject {
    |       `- note: class 'OCKCDScheduleElement' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var text: String?
 37 |     @NSManaged var task: OCKCDTask?
    :
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
 74 |                 start: startDate,
    |                        `- warning: capture of 'self' with non-Sendable type 'OCKCDScheduleElement' in a '@Sendable' closure [#SendableClosureCaptures]
 75 |                 end: endDate,
 76 |                 interval: interval,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDScheduleElement.swift:73:13: warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 71 |
 72 |         self.managedObjectContext!.performAndWait {
 73 |             scheduleElement = OCKScheduleElement(
    |             `- warning: mutation of captured var 'scheduleElement' in concurrently-executing code [#SendableClosureCaptures]
 74 |                 start: startDate,
 75 |                 end: endDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:73:21: warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
43 |
44 | @objc(OCKCDTask)
45 | class OCKCDTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDTask' does not conform to the 'Sendable' protocol
46 |
47 |     convenience init(task: OCKTask, context: NSManagedObjectContext) {
   :
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
73 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDTask' in a '@Sendable' closure [#SendableClosureCaptures]
74 |                 title: title,
75 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:72:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
70 |
71 |         self.managedObjectContext!.performAndWait {
72 |             task = OCKTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |                 id: id,
74 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:79:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |             )
78 |
79 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:80:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
78 |
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
81 |             task.impactsAdherence = impactsAdherence
82 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDTask.swift:81:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
79 |             task.copyVersionedValues(from: self)
80 |             task.instructions = instructions
81 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
82 |         }
83 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:71:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 69 |                     .filtered(dateInterval: query.dateInterval, excludeTasksWithNoEvents: query.excludesTasksWithNoEvents)
 70 |
 71 |                 result = .success(tasks)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 72 |             } catch {
 73 |                 result = .failure(error)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:73:17: warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 71 |                 result = .success(tasks)
 72 |             } catch {
 73 |                 result = .failure(error)
    |                 `- warning: mutation of captured var 'result' in concurrently-executing code [#SendableClosureCaptures]
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:54:37: warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 52 |                 let request = NSFetchRequest<OCKCDVersionedObject>(
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
    |                                     `- warning: capture of 'predicate' with non-Sendable type 'NSPredicate' in a '@Sendable' closure [#SendableClosureCaptures]
 55 |                 request.sortDescriptors = sortDescriptors
 56 |                 request.fetchLimit = limit ?? 0
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:17:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
15 |
16 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
17 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
   |            `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
18 |     struct _predicateFlags {
19 |         unsigned int _evaluationBlocked:1;
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:55:43: warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 53 |                     entityName: T.entity().name!)
 54 |                 request.predicate = predicate
 55 |                 request.sortDescriptors = sortDescriptors
    |                                           `- warning: capture of 'sortDescriptors' with non-Sendable type '[NSSortDescriptor]' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                 request.fetchLimit = limit ?? 0
 57 |                 request.fetchOffset = offset
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:82:21: warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 80 |         context.perform {
 81 |             do {
 82 |                 try preInsertValidate()
    |                     |- warning: capture of 'preInsertValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |                 var result = TransactionResult<T>()
 84 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:94:21: warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
 92 |
 93 |                 // Perform updates
 94 |                 try preUpdateValidate()
    |                     |- warning: capture of 'preUpdateValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 95 |
 96 |                 if !updates.isEmpty {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:113:21: warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
111 |                 }
112 |
113 |                 try preSaveValidate()
    |                     |- warning: capture of 'preSaveValidate' with non-Sendable type '() throws -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
114 |                 try self.context.save()
115 |                 completion(.success(result))
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:180:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
178 |
179 |         let existing = try context.performAndWait {
180 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
181 |         }
182 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:31:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 29 |  */
 30 |
 31 | import CoreData
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreData' as warnings
 32 | import Foundation
 33 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:206:36: warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
204 |
205 |         let deletes = try context.performAndWait {
206 |             try context.count(for: request)
    |                                    `- warning: capture of 'request' with non-Sendable type 'NSFetchRequest<OCKCDVersionedObject>' in a '@Sendable' closure [#SendableClosureCaptures]
207 |         }
208 |
/Applications/Xcode-26.0.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSFetchRequest.h:47:12: note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 45 |
 46 | API_AVAILABLE(macosx(10.4),ios(3.0))
 47 | @interface NSFetchRequest<__covariant ResultType:id<NSFetchRequestResult>> : NSPersistentStoreRequest <NSCoding, NSCopying> {
    |            `- note: generic class 'NSFetchRequest' does not conform to the 'Sendable' protocol
 48 | }
 49 |
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[552/1132] Compiling ModelsR4 CodeSystemExampleCoverageFinancialExceptionCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[553/1132] Compiling ModelsR4 CodeSystemExampleDiagnosisOnAdmissionCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[554/1132] Compiling ModelsR4 CodeSystemExampleDiagnosisTypeCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[555/1132] Compiling ModelsR4 CodeSystemExampleMessageReasonCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[556/1132] Compiling ModelsR4 CodeSystemExampleOnsetTypeReasonCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[557/1132] Compiling ModelsR4 CodeSystemExamplePaymentTypeCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[558/1132] Compiling ModelsR4 CodeSystemExamplePharmacyServiceCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[559/1132] Compiling ModelsR4 CodeSystemExampleProcedureTypeCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[560/1132] Compiling ModelsR4 CodeSystemExampleProgramReasonCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[561/1132] Compiling ModelsR4 CodeSystemExampleRelatedClaimRelationshipCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[562/1132] Compiling ModelsR4 CodeSystemExampleScenarioActorType.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[563/1132] Compiling ModelsR4 CodeSystemExampleServiceModifierCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[564/1132] Compiling ModelsR4 CodeSystemExampleServiceProductCodes.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKHealthKitLinkage.swift:34:1: warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
32 | import HealthKit
33 |
34 | extension HKQuantityTypeIdentifier: Codable {}
   | |- warning: extension declares a conformance of imported type 'HKQuantityTypeIdentifier' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'HealthKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
35 |
36 | /// Describes how a task outcome values should be retrieved from HealthKit.
[565/1132] Compiling ModelsR4 CodeSystemContractResourceDefinitionTypeCodes.swift
[566/1132] Compiling ModelsR4 CodeSystemContractResourceExpirationTypeCodes.swift
[567/1132] Compiling ModelsR4 CodeSystemContractResourceLegalStateCodes.swift
[568/1132] Compiling ModelsR4 CodeSystemContractResourcePartyRoleCodes.swift
[569/1132] Compiling ModelsR4 CodeSystemContractResourcePublicationStatusCodes.swift
[570/1132] Compiling ModelsR4 CodeSystemContractResourceSecurityControlCodes.swift
[571/1132] Compiling ModelsR4 CodeSystemContractResourceStatusCodes.swift
[572/1132] Compiling ModelsR4 CodeSystemContractSignerTypeCodes.swift
[573/1132] Compiling ModelsR4 CodeSystemEventStatus.swift
[574/1132] Compiling ModelsR4 CodeSystemEventTiming.swift
[575/1132] Compiling ModelsR4 CodeSystemEvidenceVariableType.swift
[576/1132] Compiling ModelsR4 CodeSystemEvidenceVariantState.swift
[577/1132] Compiling ModelsR4 CodeSystemExampleClaimSubTypeCodes.swift
[578/1132] Compiling ModelsR4 CodeSystemSupplyRequestReason.swift
[579/1132] Compiling ModelsR4 CodeSystemSupplyRequestStatus.swift
[580/1132] Compiling ModelsR4 CodeSystemSupplyType.swift
[581/1132] Compiling ModelsR4 CodeSystemSurfaceCodes.swift
[582/1132] Compiling ModelsR4 CodeSystemSynthesisType.swift
[583/1132] Compiling ModelsR4 CodeSystemTaskCode.swift
[584/1132] Compiling ModelsR4 CodeSystemTaskIntent.swift
[585/1132] Compiling ModelsR4 CodeSystemTaskStatus.swift
[586/1132] Compiling ModelsR4 CodeSystemTemplateStatusCodeLifeCycle.swift
[587/1132] Compiling ModelsR4 CodeSystemTestReportActionResult.swift
[588/1132] Compiling ModelsR4 CodeSystemTestReportParticipantType.swift
[589/1132] Compiling ModelsR4 CodeSystemTestReportResult.swift
[590/1132] Compiling ModelsR4 CodeSystemTestReportStatus.swift
[591/1132] Compiling ModelsR4 CodeSystemTestScriptOperationCode.swift
[592/1132] Compiling ModelsR4 CodeSystemTestScriptProfileDestinationType.swift
[593/1132] Compiling ModelsR4 CodeSystemTestScriptProfileOriginType.swift
[594/1132] Compiling ModelsR4 CodeSystemTestScriptRequestMethodCode.swift
[595/1132] Compiling ModelsR4 CodeSystemTransactionMode.swift
[596/1132] Compiling ModelsR4 CodeSystemTriggerType.swift
[597/1132] Compiling ModelsR4 CodeSystemTypeDerivationRule.swift
[598/1132] Compiling ModelsR4 CodeSystemUDICodes.swift
[599/1132] Compiling ModelsR4 CodeSystemUDIEntryType.swift
[600/1132] Compiling ModelsR4 CodeSystemUnitTypeCodes.swift
[601/1132] Compiling ModelsR4 CodeSystemUnknownContentCode.swift
[602/1156] Compiling ModelsR4 CodeSystemBindingStrength.swift
[603/1156] Compiling ModelsR4 CodeSystemBiologicallyDerivedProductCategory.swift
[604/1156] Compiling ModelsR4 CodeSystemBiologicallyDerivedProductStatus.swift
[605/1156] Compiling ModelsR4 CodeSystemBiologicallyDerivedProductStorageScale.swift
[606/1156] Compiling ModelsR4 CodeSystemBundleType.swift
[607/1156] Compiling ModelsR4 CodeSystemCanPushUpdates.swift
[608/1156] Compiling ModelsR4 CodeSystemCanonicalStatusCodesForFHIRResources.swift
[609/1156] Compiling ModelsR4 CodeSystemCapabilityStatementKind.swift
[610/1156] Compiling ModelsR4 CodeSystemCarePlanActivityStatus.swift
[611/1156] Compiling ModelsR4 CodeSystemCareTeamStatus.swift
[612/1156] Compiling ModelsR4 CodeSystemCatalogEntryRelationType.swift
[613/1156] Compiling ModelsR4 CodeSystemCatalogType.swift
[614/1156] Compiling ModelsR4 CodeSystemCertaintySubcomponentRating.swift
[615/1156] Compiling CareKitStore OCKEventQuery.swift
[616/1156] Compiling CareKitStore OCKOutcomeQuery.swift
[617/1156] Compiling CareKitStore OCKPatientQuery.swift
[618/1156] Compiling CareKitStore OCKQueryProtocol.swift
[619/1156] Compiling CareKitStore OCKTaskQuery.swift
[620/1156] Compiling CareKitStore AggregatedCareTaskProgress.swift
[621/1156] Compiling CareKitStore BinaryCareTaskProgress.swift
[622/1156] Compiling CareKitStore CareTaskProgress.swift
[623/1156] Compiling CareKitStore CareTaskProgressStrategy+CheckingOutcomesExist.swift
[624/1156] Compiling CareKitStore CareTaskProgressStrategy+SummingOutcomeValues.swift
[625/1156] Compiling CareKitStore CareTaskProgressStrategy.swift
[626/1156] Compiling CareKitStore LinearCareTaskProgress.swift
[627/1156] Compiling CareKitStore resource_bundle_accessor.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[628/1156] 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 {
[664/1165] Compiling ModelsR4 CatalogEntry.swift
[665/1165] Compiling ModelsR4 ChargeItem.swift
[666/1165] Compiling ModelsR4 ChargeItemDefinition.swift
[722/1165] Compiling ModelsR4 Annotation.swift
[723/1165] Compiling ModelsR4 Appointment.swift
[724/1165] Compiling ModelsR4 AppointmentResponse.swift
[725/1165] Compiling ModelsR4 Attachment.swift
[726/1165] Compiling ModelsR4 AuditEvent.swift
[727/1165] Compiling ModelsR4 BackboneElement.swift
[728/1165] Compiling ModelsR4 Base64Binary.swift
[729/1165] Compiling ModelsR4 Basic.swift
[730/1165] Compiling ModelsR4 Binary.swift
[731/1165] Compiling ModelsR4 BiologicallyDerivedProduct.swift
[732/1165] Compiling ModelsR4 BodyStructure.swift
[733/1165] Compiling ModelsR4 Bundle.swift
[734/1165] Compiling ModelsR4 Canonical.swift
[735/1165] Compiling ModelsR4 CapabilityStatement.swift
[736/1165] Compiling ModelsR4 CarePlan.swift
[737/1165] Compiling ModelsR4 CareTeam.swift
[812/1165] 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 {
[822/1333] Compiling ModelsDSTU2 CodeSystemResourceType.swift
[823/1333] Compiling ModelsDSTU2 CodeSystemResourceValidationMode.swift
[824/1333] Compiling ModelsDSTU2 CodeSystemResourceVersionPolicy.swift
[825/1333] Compiling ModelsDSTU2 CodeSystemResponseType.swift
[826/1333] Compiling ModelsDSTU2 CodeSystemRestfulConformanceMode.swift
[827/1333] Compiling ModelsDSTU2 CodeSystemRestfulSecurityService.swift
[828/1333] Compiling ModelsDSTU2 CodeSystemRiskProbability.swift
[829/1333] Compiling ModelsDSTU2 CodeSystemRulesetCodes.swift
[830/1333] Compiling ModelsDSTU2 CodeSystemSearchEntryMode.swift
[831/1333] Compiling ModelsDSTU2 CodeSystemSearchModifierCode.swift
[832/1333] Compiling ModelsDSTU2 CodeSystemSearchParamType.swift
[833/1333] Compiling ModelsDSTU2 CodeSystemServiceProvisionConditions.swift
[834/1333] Compiling ModelsDSTU2 CodeSystemSlicingRules.swift
[835/1333] Compiling ModelsDSTU2 CodeSystemSlotStatus.swift
[836/1333] Compiling ModelsDSTU2 CodeSystemSpecialArrangements.swift
[837/1333] Compiling ModelsDSTU2 CodeSystemSpecialValues.swift
[838/1333] Compiling ModelsDSTU2 CodeSystemSpecimenStatus.swift
[839/1333] Compiling ModelsDSTU2 CodeSystemStructureDefinitionKind.swift
[840/1333] Compiling ModelsDSTU2 CodeSystemSubscriptionChannelType.swift
[841/1333] Compiling ModelsDSTU2 CodeSystemSubscriptionStatus.swift
[842/1333] Compiling ModelsDSTU2 CodeSystemSubscriptionTag.swift
[843/1333] Compiling ModelsDSTU2 CodeSystemSubstanceCategoryCodes.swift
[844/1333] Compiling ModelsDSTU2 CodeSystemSupplyDeliveryStatus.swift
[845/1333] Compiling ModelsDSTU2 CodeSystemSupplyItemType.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 {
[889/1357] Compiling ModelsDSTU2 CodeSystemSupplyRequestReason.swift
[890/1357] Compiling ModelsDSTU2 CodeSystemSupplyRequestStatus.swift
[891/1357] Compiling ModelsDSTU2 CodeSystemSupplyType.swift
[892/1357] Compiling ModelsDSTU2 CodeSystemSurfaceCodes.swift
[893/1357] Compiling ModelsDSTU2 CodeSystemTestScriptOperationCodes.swift
[894/1357] Compiling ModelsDSTU2 CodeSystemTimingAbbreviation.swift
[895/1357] Compiling ModelsDSTU2 CodeSystemTransactionMode.swift
[896/1357] Compiling ModelsDSTU2 CodeSystemUDICodes.swift
[897/1357] Compiling ModelsDSTU2 CodeSystemUSLABDiagnosticOrderEventCodes.swift
[898/1357] Compiling ModelsDSTU2 CodeSystemUnknownContentCode.swift
[899/1357] Compiling ModelsDSTU2 CodeSystemUse.swift
[900/1357] Compiling ModelsDSTU2 CodeSystemUslabObservationkind.swift
[901/1357] Compiling ModelsDSTU2 CodeSystemVaccinationProtocolDoseStatusCodes.swift
[902/1357] Compiling ModelsDSTU2 CodeSystemVaccinationProtocolDoseStatusReasonCodes.swift
[903/1357] Compiling ModelsDSTU2 CodeSystemVisionBase.swift
[904/1357] Compiling ModelsDSTU2 CodeSystemVisionEyes.swift
[905/1357] Compiling ModelsDSTU2 CodeSystemXDSRelationshipType.swift
[906/1357] Compiling ModelsDSTU2 CodeSystemXPathUsageType.swift
[907/1357] Compiling ModelsDSTU2 CodeableConcept.swift
[908/1357] Compiling ModelsDSTU2 Coding.swift
[909/1357] Compiling ModelsDSTU2 Communication.swift
[910/1357] Compiling ModelsDSTU2 CommunicationRequest.swift
[911/1357] Compiling ModelsDSTU2 Composition.swift
[912/1357] Compiling ModelsDSTU2 ConceptMap.swift
[946/1357] Compiling CareKitUI OCKInstructionsTaskView.swift
[947/1357] Compiling CareKitUI OCKLogTaskView.swift
[948/1357] Compiling CareKitUI OCKSimpleTaskView.swift
[949/1357] Compiling CareKitUI OCKTaskDisplayable.swift
[950/1357] Compiling CareKitUI OCKHeaderView.swift
[951/1357] Compiling CareKitUI OCKSeparatorView.swift
[952/1357] Compiling CareKitUI OCKStackView.swift
[953/1357] Compiling CareKitUI OCKView.swift
[954/1357] Compiling CareKitUI resource_bundle_accessor.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 {
/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 {
[1007/1357] Emitting module ModelsR4
[1133/1453] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1134/1453] Compiling ModelsR4 CodeSystemUse.swift
[1135/1453] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1136/1453] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1137/1453] Compiling ModelsR4 CodeSystemValidationType.swift
[1138/1453] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1139/1453] Compiling ModelsR4 CodeSystemVisionBase.swift
[1140/1453] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1141/1453] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1142/1453] Compiling ModelsR4 CodeableConcept.swift
[1143/1453] Compiling ModelsR4 Coding.swift
[1144/1453] Compiling ModelsR4 Communication.swift
[1145/1453] Compiling ModelsR4 CommunicationRequest.swift
[1146/1453] Compiling ModelsR4 CompartmentDefinition.swift
[1147/1453] Compiling ModelsR4 Composition.swift
[1148/1453] Compiling ModelsR4 ConceptMap.swift
[1149/1453] Compiling ModelsR4 Condition.swift
[1150/1453] Compiling ModelsR4 Consent.swift
[1151/1453] Compiling ModelsR4 ContactDetail.swift
[1152/1453] Compiling ModelsR4 ContactPoint.swift
[1153/1453] Compiling ModelsR4 Contract.swift
[1154/1453] Compiling ModelsR4 Contributor.swift
[1155/1453] Compiling ModelsR4 Count.swift
[1156/1453] Compiling ModelsR4 Coverage.swift
[1157/1453] Compiling ModelsDSTU2 Element.swift
[1158/1453] Compiling ModelsDSTU2 ElementDefinition.swift
[1159/1453] Compiling ModelsDSTU2 EligibilityRequest.swift
[1160/1453] Compiling ModelsDSTU2 EligibilityResponse.swift
[1161/1453] Compiling ModelsDSTU2 Encounter.swift
[1162/1453] Compiling ModelsDSTU2 EnrollmentRequest.swift
[1163/1453] Compiling ModelsDSTU2 EnrollmentResponse.swift
[1164/1453] Compiling ModelsDSTU2 EpisodeOfCare.swift
[1165/1453] Compiling ModelsDSTU2 ExplanationOfBenefit.swift
[1166/1453] Compiling ModelsDSTU2 Extension.swift
[1167/1453] Compiling ModelsDSTU2 FHIRAbstractResource.swift
[1168/1453] Compiling ModelsDSTU2 FHIRBool.swift
[1169/1453] Compiling ModelsDSTU2 FHIRDate+NSDate.swift
[1170/1453] Compiling ModelsDSTU2 FHIRDate.swift
[1171/1453] Compiling ModelsDSTU2 FHIRDecimal.swift
[1172/1453] Compiling ModelsDSTU2 FHIRInteger.swift
[1173/1453] Compiling ModelsDSTU2 FHIRPositiveInteger.swift
[1174/1453] Compiling ModelsDSTU2 FHIRPrimitive.swift
[1175/1453] Compiling ModelsDSTU2 FHIRString.swift
[1176/1453] Compiling ModelsDSTU2 FHIRTime+NSDate.swift
[1177/1453] Compiling ModelsDSTU2 FHIRTime.swift
[1178/1453] Compiling ModelsDSTU2 FHIRURI.swift
[1179/1453] Compiling ModelsDSTU2 FHIRUnsignedInteger.swift
[1180/1453] Compiling ModelsDSTU2 FamilyMemberHistory.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 {
BUILD FAILURE 6.2 macosSpm