Build Information
Failed to build CareKit, reference 4.1.0 (348a5e), with Swift 6.3 for macOS (SPM) on 19 Apr 2026 18:21:57 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
/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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
/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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
/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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
/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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
/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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
/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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
/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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
/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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
[415/1021] Compiling ModelsR4 CodeSystemConsentState.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
[416/1021] Compiling ModelsR4 CodeSystemAdverseEventCausalityAssessment.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h:18:12: note: class 'NSPredicate' does not conform to the 'Sendable' protocol
16 |
17 | API_AVAILABLE(macos(10.4), ios(3.0), watchos(2.0), tvos(9.0))
18 | @interface NSPredicate : NSObject <NSSecureCoding, NSCopying> {
| `- note: class 'NSPredicate' does not conform to the 'Sendable' protocol
19 | struct _predicateFlags {
20 | 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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.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>
[417/1021] Compiling ModelsR4 CodeSystemContactPointSystem.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.
[418/1021] Compiling ModelsR4 CodeSystemContactPointUse.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.
[419/1021] Compiling ModelsR4 CodeSystemContainerCap.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.
[420/1021] Compiling ModelsR4 CodeSystemContractActionCodes.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.
[421/1021] Compiling ModelsR4 CodeSystemContractActorRoleCodes.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.
[422/1021] Compiling ModelsR4 CodeSystemContractContentDerivationCodes.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.
[423/1021] Compiling ModelsR4 CodeSystemContractDataMeaning.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.
[424/1021] Compiling ModelsR4 CodeSystemContractResourceActionStatusCodes.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.
[425/1021] Compiling ModelsR4 CodeSystemContractResourceAssetAvailiabilityCodes.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.
[426/1021] Compiling ModelsR4 CodeSystemContractResourceAssetContextCodes.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.
[427/1021] Compiling ModelsR4 CodeSystemContractResourceAssetScopeCodes.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.
[428/1021] Compiling ModelsR4 CodeSystemContractResourceAssetSubTypeCodes.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.
[429/1021] Compiling ModelsR4 CodeSystemContractResourceAssetTypeCodes.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.
[430/1021] Compiling ModelsR4 CodeSystemAdverseEventCausalityMethod.swift
[431/1021] Compiling ModelsR4 CodeSystemAdverseEventOutcome.swift
[432/1021] Compiling ModelsR4 CodeSystemAdverseEventSeriousness.swift
[433/1021] Compiling ModelsR4 CodeSystemAdverseEventSeverity.swift
[434/1021] Compiling ModelsR4 CodeSystemAggregationMode.swift
[435/1021] Compiling ModelsR4 CodeSystemAllergyIntoleranceCategory.swift
[436/1021] Compiling ModelsR4 CodeSystemAllergyIntoleranceCertainty.swift
[437/1021] Compiling ModelsR4 CodeSystemAllergyIntoleranceClinicalStatusCodes.swift
[438/1021] Compiling ModelsR4 CodeSystemAllergyIntoleranceCriticality.swift
[439/1021] Compiling ModelsR4 CodeSystemAllergyIntoleranceSeverity.swift
[440/1021] Compiling ModelsR4 CodeSystemAllergyIntoleranceSubstanceExposureRisk.swift
[441/1021] Compiling ModelsR4 CodeSystemAllergyIntoleranceType.swift
[442/1021] Compiling ModelsR4 CodeSystemAllergyIntoleranceVerificationStatusCodes.swift
[443/1021] Compiling ModelsR4 CodeSystemAnimalSpecies.swift
[444/1021] Compiling ModelsR4 CodeSystemAppointmentStatus.swift
[445/1021] Compiling ModelsR4 CodeSystemAssertionDirectionType.swift
[446/1021] Compiling ModelsR4 CodeSystemAssertionOperatorType.swift
[447/1021] Compiling ModelsR4 CodeSystemAssertionResponseTypes.swift
[448/1021] Compiling ModelsR4 CodeSystemAuditEventAction.swift
[449/1021] Compiling ModelsR4 CodeSystemAuditEventID.swift
[450/1021] Compiling ModelsR4 CodeSystemBasicResourceTypes.swift
[451/1021] Compiling ModelsR4 CodeSystemBenefitCostApplicability.swift
[452/1021] Compiling ModelsR4 CodeSystemBenefitTermCodes.swift
[453/1021] Compiling ModelsR4 CodeSystemBenefitTypeCodes.swift
[454/1021] Compiling ModelsR4 CodeSystemConstraintSeverity.swift
[455/1021] Compiling ModelsR4 CodeSystemContactEntityType.swift
[456/1021] Compiling CareKitStore OCKEventQuery.swift
[457/1021] Compiling CareKitStore OCKOutcomeQuery.swift
[458/1021] Compiling CareKitStore OCKPatientQuery.swift
[459/1021] Compiling CareKitStore OCKQueryProtocol.swift
[460/1021] Compiling CareKitStore OCKTaskQuery.swift
[461/1021] Compiling CareKitStore AggregatedCareTaskProgress.swift
[462/1021] Compiling CareKitStore BinaryCareTaskProgress.swift
[463/1021] Compiling CareKitStore CareTaskProgress.swift
[464/1021] Compiling CareKitStore CareTaskProgressStrategy+CheckingOutcomesExist.swift
[465/1021] Compiling CareKitStore CareTaskProgressStrategy+SummingOutcomeValues.swift
[466/1021] Compiling CareKitStore CareTaskProgressStrategy.swift
[467/1021] Compiling CareKitStore LinearCareTaskProgress.swift
[468/1021] Compiling CareKitStore resource_bundle_accessor.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[469/1021] Emitting module CareKitUI
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[497/1021] Compiling ModelsR4 CodeSystemCanonicalStatusCodesForFHIRResources.swift
[498/1021] Compiling ModelsR4 CodeSystemCapabilityStatementKind.swift
[499/1021] Compiling ModelsR4 CodeSystemCarePlanActivityStatus.swift
[500/1021] Compiling ModelsR4 CodeSystemCareTeamStatus.swift
[501/1021] Compiling ModelsR4 CodeSystemCatalogEntryRelationType.swift
[502/1021] Compiling ModelsR4 CodeSystemCatalogType.swift
[503/1021] Compiling ModelsR4 CodeSystemCertaintySubcomponentRating.swift
[504/1021] Compiling ModelsR4 CodeSystemCertaintySubcomponentType.swift
[505/1021] Compiling ModelsR4 CodeSystemChargeItemStatus.swift
[506/1021] Compiling ModelsR4 CodeSystemChoiceListOrientation.swift
[507/1021] Compiling ModelsR4 CodeSystemClaimCareTeamRoleCodes.swift
[508/1021] Compiling ModelsR4 CodeSystemClaimInformationCategoryCodes.swift
[509/1021] Compiling ModelsR4 CodeSystemClaimItemTypeCodes.swift
[510/1021] Compiling ModelsR4 CodeSystemClaimPayeeResourceType.swift
[511/1021] Compiling ModelsR4 CodeSystemClaimProcessingCodes.swift
[512/1021] Compiling ModelsR4 CodeSystemClaimTypeCodes.swift
[513/1021] Compiling ModelsR4 CodeSystemCodeSearchSupport.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 {
[831/1021] Emitting module ModelsR4
/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 {
[875/1261] Compiling ModelsR4 CodeSystemExpressionLanguage.swift
[876/1261] Compiling ModelsR4 CodeSystemExtensionContextType.swift
[877/1261] Compiling ModelsR4 CodeSystemFHIRDefinedConceptProperties.swift
[878/1261] Compiling ModelsR4 CodeSystemFHIRDeviceStatus.swift
[879/1261] Compiling ModelsR4 CodeSystemFHIRDeviceStatusReason.swift
[880/1261] Compiling ModelsR4 CodeSystemFHIRRestfulInteractions.swift
[881/1261] Compiling ModelsR4 CodeSystemFHIRSubstanceStatus.swift
[882/1261] Compiling ModelsR4 CodeSystemFailureAction.swift
[883/1261] Compiling ModelsR4 CodeSystemFamilyHistoryAbsentReason.swift
[884/1261] Compiling ModelsR4 CodeSystemFamilyHistoryStatus.swift
[885/1261] Compiling ModelsR4 CodeSystemFeedingDeviceCodes.swift
[886/1261] Compiling ModelsR4 CodeSystemFilterOperator.swift
[887/1261] Compiling ModelsR4 CodeSystemFinancialResourceStatusCodes.swift
[888/1261] Compiling ModelsR4 CodeSystemFinancialTaskCodes.swift
[889/1261] Compiling ModelsR4 CodeSystemFinancialTaskInputTypeCodes.swift
[890/1261] Compiling ModelsR4 CodeSystemFlagCategory.swift
[891/1261] Compiling ModelsR4 CodeSystemFlagPriorityCodes.swift
[892/1261] Compiling ModelsR4 CodeSystemFlagStatus.swift
[893/1261] Compiling ModelsR4 CodeSystemGenderIdentity.swift
[894/1261] Compiling ModelsR4 CodeSystemGenderStatus.swift
[895/1261] Compiling ModelsR4 CodeSystemGoalAcceptanceStatus.swift
[896/1261] Compiling ModelsR4 CodeSystemGoalAchievementStatus.swift
[897/1261] Compiling ModelsR4 CodeSystemGoalCategory.swift
[898/1261] Compiling ModelsR4 CodeSystemGoalLifecycleStatus.swift
[899/1285] Compiling ModelsR4 CodeSystemGoalPriority.swift
[900/1285] Compiling ModelsR4 CodeSystemGoalRelationshipType.swift
[901/1285] Compiling ModelsR4 CodeSystemGoalStatusReason.swift
[902/1285] Compiling ModelsR4 CodeSystemGraphCompartmentRule.swift
[903/1285] Compiling ModelsR4 CodeSystemGraphCompartmentUse.swift
[904/1285] Compiling ModelsR4 CodeSystemGroupMeasure.swift
[905/1285] Compiling ModelsR4 CodeSystemGroupType.swift
[906/1285] Compiling ModelsR4 CodeSystemGuidanceResponseStatus.swift
[907/1285] Compiling ModelsR4 CodeSystemGuidePageGeneration.swift
[908/1285] Compiling ModelsR4 CodeSystemGuideParameterCode.swift
[909/1285] Compiling ModelsR4 CodeSystemHL7Workgroup.swift
[910/1285] Compiling ModelsR4 CodeSystemHTTPVerb.swift
[911/1285] Compiling ModelsR4 CodeSystemHandlingConditionSet.swift
[912/1285] Compiling ModelsR4 CodeSystemHumanNameAssemblyOrder.swift
[913/1285] Compiling ModelsR4 CodeSystemISO210892017HealthRecordLifecycleEvents.swift
[914/1285] Compiling ModelsR4 CodeSystemIdentifierUse.swift
[915/1285] Compiling ModelsR4 CodeSystemIdentityAssuranceLevel.swift
[916/1285] Compiling ModelsR4 CodeSystemImagingStudyStatus.swift
[917/1285] Compiling ModelsR4 CodeSystemImmunizationEvaluationDoseStatusCodes.swift
[918/1285] Compiling ModelsR4 CodeSystemImmunizationEvaluationDoseStatusReasonCodes.swift
[919/1285] Compiling ModelsR4 CodeSystemImmunizationFundingSource.swift
[920/1285] Compiling ModelsR4 CodeSystemImmunizationOriginCodes.swift
[921/1285] Compiling ModelsR4 CodeSystemImmunizationProgramEligibility.swift
[922/1285] Compiling ModelsR4 CodeSystemImmunizationRecommendationStatusCodes.swift
[923/1309] Compiling ModelsR4 CodeSystemImmunizationSubpotentReason.swift
[924/1309] Compiling ModelsR4 CodeSystemImplantStatus.swift
[925/1309] Compiling ModelsR4 CodeSystemIndicator.swift
[926/1309] Compiling ModelsR4 CodeSystemInterventionCodes.swift
[927/1309] Compiling ModelsR4 CodeSystemInvoicePriceComponentType.swift
[928/1309] Compiling ModelsR4 CodeSystemInvoiceStatus.swift
[929/1309] Compiling ModelsR4 CodeSystemIssueSeverity.swift
[930/1309] Compiling ModelsR4 CodeSystemIssueType.swift
[931/1309] Compiling ModelsR4 CodeSystemKnowledgeResourceType.swift
[932/1309] Compiling ModelsR4 CodeSystemLanguagePreferenceType.swift
[933/1309] Compiling ModelsR4 CodeSystemLibraryType.swift
[934/1309] Compiling ModelsR4 CodeSystemLinkType.swift
[935/1309] Compiling ModelsR4 CodeSystemLinkageType.swift
[936/1309] Compiling ModelsR4 CodeSystemListEmptyReasons.swift
[937/1309] Compiling ModelsR4 CodeSystemListMode.swift
[938/1309] Compiling ModelsR4 CodeSystemListOrderCodes.swift
[939/1309] Compiling ModelsR4 CodeSystemListStatus.swift
[940/1309] Compiling ModelsR4 CodeSystemLocationMode.swift
[941/1309] Compiling ModelsR4 CodeSystemLocationStatus.swift
[942/1309] Compiling ModelsR4 CodeSystemLocationType.swift
[943/1309] Compiling ModelsR4 CodeSystemMatchGrade.swift
[944/1309] Compiling ModelsR4 CodeSystemMaxOccurs.swift
[945/1309] Compiling ModelsR4 CodeSystemMeasureDataUsage.swift
[946/1309] Compiling ModelsR4 CodeSystemMeasureImprovementNotation.swift
[947/1333] Compiling ModelsR4 CodeSystemOrientationType.swift
[948/1333] Compiling ModelsR4 CodeSystemParticipantRequired.swift
[949/1333] Compiling ModelsR4 CodeSystemParticipantType.swift
[950/1333] Compiling ModelsR4 CodeSystemParticipationStatus.swift
[951/1333] Compiling ModelsR4 CodeSystemPayeeResourceType.swift
[952/1333] Compiling ModelsR4 CodeSystemPaymentAdjustmentReasonCodes.swift
[953/1333] Compiling ModelsR4 CodeSystemPaymentStatusCodes.swift
[954/1333] Compiling ModelsR4 CodeSystemPaymentTypeCodes.swift
[955/1333] Compiling ModelsR4 CodeSystemPerformerRoleCodes.swift
[956/1333] Compiling ModelsR4 CodeSystemPlanDefinitionType.swift
[957/1333] Compiling ModelsR4 CodeSystemPractitionerRoleCodes.swift
[958/1333] Compiling ModelsR4 CodeSystemPractitionerSpecialty.swift
[959/1333] Compiling ModelsR4 CodeSystemPrecisionEstimateType.swift
[960/1333] Compiling ModelsR4 CodeSystemPrimarySourceType.swift
[961/1333] Compiling ModelsR4 CodeSystemProcedureDeviceActionCodes.swift
[962/1333] Compiling ModelsR4 CodeSystemProcedureProgressStatusCodes.swift
[963/1333] Compiling ModelsR4 CodeSystemProcessPriorityCodes.swift
[964/1333] Compiling ModelsR4 CodeSystemPropertyRepresentation.swift
[965/1333] Compiling ModelsR4 CodeSystemPropertyType.swift
[966/1333] Compiling ModelsR4 CodeSystemProvenanceEntityRole.swift
[967/1333] Compiling ModelsR4 CodeSystemProvenanceParticipantRole.swift
[968/1333] Compiling ModelsR4 CodeSystemProvenanceParticipantType.swift
[969/1333] Compiling ModelsR4 CodeSystemPublicationStatus.swift
[970/1333] Compiling ModelsR4 CodeSystemPushTypeAvailable.swift
[971/1357] Compiling ModelsR4 CodeSystemMeasurePopulationType.swift
[972/1357] Compiling ModelsR4 CodeSystemMeasureReportStatus.swift
[973/1357] Compiling ModelsR4 CodeSystemMeasureReportType.swift
[974/1357] Compiling ModelsR4 CodeSystemMeasureScoring.swift
[975/1357] Compiling ModelsR4 CodeSystemMeasureType.swift
[976/1357] Compiling ModelsR4 CodeSystemMediaModality.swift
[977/1357] Compiling ModelsR4 CodeSystemMediaType.swift
[978/1357] Compiling ModelsR4 CodeSystemMedicationAdministrationCategoryCodes.swift
[979/1357] Compiling ModelsR4 CodeSystemMedicationAdministrationPerformerFunctionCodes.swift
[980/1357] Compiling ModelsR4 CodeSystemMedicationAdministrationStatusCodes.swift
[981/1357] Compiling ModelsR4 CodeSystemMedicationDispenseCategoryCodes.swift
[982/1357] Compiling ModelsR4 CodeSystemMedicationDispensePerformerFunctionCodes.swift
[983/1357] Compiling ModelsR4 CodeSystemMedicationDispenseStatusCodes.swift
[984/1357] Compiling ModelsR4 CodeSystemMedicationDispenseStatusReasonCodes.swift
[985/1357] Compiling ModelsR4 CodeSystemMedicationKnowledgeCharacteristicCodes.swift
[986/1357] Compiling ModelsR4 CodeSystemMedicationKnowledgePackageTypeCodes.swift
[987/1357] Compiling ModelsR4 CodeSystemMedicationKnowledgeStatusCodes.swift
[988/1357] Compiling ModelsR4 CodeSystemMedicationRequestCategoryCodes.swift
[989/1357] Compiling ModelsR4 CodeSystemMedicationRequestCourseOfTherapyCodes.swift
[990/1357] Compiling ModelsR4 CodeSystemMedicationRequestIntent.swift
[991/1357] Compiling ModelsR4 CodeSystemMedicationRequestStatusReasonCodes.swift
[992/1357] Compiling ModelsR4 CodeSystemMedicationStatementCategoryCodes.swift
[993/1357] Compiling ModelsR4 CodeSystemMedicationStatementStatusCodes.swift
[994/1357] Compiling ModelsR4 CodeSystemMedicationStatusCodes.swift
[995/1381] Compiling ModelsR4 CodeSystemSupplyRequestReason.swift
[996/1381] Compiling ModelsR4 CodeSystemSupplyRequestStatus.swift
[997/1381] Compiling ModelsR4 CodeSystemSupplyType.swift
[998/1381] Compiling ModelsR4 CodeSystemSurfaceCodes.swift
[999/1381] Compiling ModelsR4 CodeSystemSynthesisType.swift
[1000/1381] Compiling ModelsR4 CodeSystemTaskCode.swift
[1001/1381] Compiling ModelsR4 CodeSystemTaskIntent.swift
[1002/1381] Compiling ModelsR4 CodeSystemTaskStatus.swift
[1003/1381] Compiling ModelsR4 CodeSystemTemplateStatusCodeLifeCycle.swift
[1004/1381] Compiling ModelsR4 CodeSystemTestReportActionResult.swift
[1005/1381] Compiling ModelsR4 CodeSystemTestReportParticipantType.swift
[1006/1381] Compiling ModelsR4 CodeSystemTestReportResult.swift
[1007/1381] Compiling ModelsR4 CodeSystemTestReportStatus.swift
[1008/1381] Compiling ModelsR4 CodeSystemTestScriptOperationCode.swift
[1009/1381] Compiling ModelsR4 CodeSystemTestScriptProfileDestinationType.swift
[1010/1381] Compiling ModelsR4 CodeSystemTestScriptProfileOriginType.swift
[1011/1381] Compiling ModelsR4 CodeSystemTestScriptRequestMethodCode.swift
[1012/1381] Compiling ModelsR4 CodeSystemTransactionMode.swift
[1013/1381] Compiling ModelsR4 CodeSystemTriggerType.swift
[1014/1381] Compiling ModelsR4 CodeSystemTypeDerivationRule.swift
[1015/1381] Compiling ModelsR4 CodeSystemUDICodes.swift
[1016/1381] Compiling ModelsR4 CodeSystemUDIEntryType.swift
[1017/1381] Compiling ModelsR4 CodeSystemUnitTypeCodes.swift
[1018/1381] Compiling ModelsR4 CodeSystemUnknownContentCode.swift
[1019/1405] Compiling ModelsR4 CodeSystemMedicationrequestStatus.swift
[1020/1405] Compiling ModelsR4 CodeSystemMessageSignificanceCategory.swift
[1021/1405] Compiling ModelsR4 CodeSystemMessageTransport.swift
[1022/1405] Compiling ModelsR4 CodeSystemMessageheaderResponseRequest.swift
[1023/1405] Compiling ModelsR4 CodeSystemMissingToothReasonCodes.swift
[1024/1405] Compiling ModelsR4 CodeSystemModifierTypeCodes.swift
[1025/1405] Compiling ModelsR4 CodeSystemNHINPurposeOfUse.swift
[1026/1405] Compiling ModelsR4 CodeSystemNameUse.swift
[1027/1405] Compiling ModelsR4 CodeSystemNamingSystemIdentifierType.swift
[1028/1405] Compiling ModelsR4 CodeSystemNamingSystemType.swift
[1029/1405] Compiling ModelsR4 CodeSystemNarrativeStatus.swift
[1030/1405] Compiling ModelsR4 CodeSystemNeed.swift
[1031/1405] Compiling ModelsR4 CodeSystemNetworkTypeCodes.swift
[1032/1405] Compiling ModelsR4 CodeSystemNoteType.swift
[1033/1405] Compiling ModelsR4 CodeSystemObservationCategoryCodes.swift
[1034/1405] Compiling ModelsR4 CodeSystemObservationDataType.swift
[1035/1405] Compiling ModelsR4 CodeSystemObservationRangeCategory.swift
[1036/1405] Compiling ModelsR4 CodeSystemObservationReferenceRangeMeaningCodes.swift
[1037/1405] Compiling ModelsR4 CodeSystemObservationStatus.swift
[1038/1405] Compiling ModelsR4 CodeSystemOperationKind.swift
[1039/1405] Compiling ModelsR4 CodeSystemOperationOutcomeCodes.swift
[1040/1405] Compiling ModelsR4 CodeSystemOperationParameterUse.swift
[1041/1405] Compiling ModelsR4 CodeSystemOrganizationAffiliationRole.swift
[1042/1405] Compiling ModelsR4 CodeSystemOrganizationType.swift
[1043/1429] Compiling ModelsR4 CodeSystemSpecialArrangements.swift
[1044/1429] Compiling ModelsR4 CodeSystemSpecialValues.swift
[1045/1429] Compiling ModelsR4 CodeSystemSpecimenContainedPreference.swift
[1046/1429] Compiling ModelsR4 CodeSystemSpecimenStatus.swift
[1047/1429] Compiling ModelsR4 CodeSystemStandardsStatus.swift
[1048/1429] Compiling ModelsR4 CodeSystemStatus.swift
[1049/1429] Compiling ModelsR4 CodeSystemStrandType.swift
[1050/1429] Compiling ModelsR4 CodeSystemStrengthOfRecommendationRating.swift
[1051/1429] Compiling ModelsR4 CodeSystemStructureDefinitionKind.swift
[1052/1429] Compiling ModelsR4 CodeSystemStructureMapContextType.swift
[1053/1429] Compiling ModelsR4 CodeSystemStructureMapGroupTypeMode.swift
[1054/1429] Compiling ModelsR4 CodeSystemStructureMapInputMode.swift
[1055/1429] Compiling ModelsR4 CodeSystemStructureMapModelMode.swift
[1056/1429] Compiling ModelsR4 CodeSystemStructureMapSourceListMode.swift
[1057/1429] Compiling ModelsR4 CodeSystemStructureMapTargetListMode.swift
[1058/1429] Compiling ModelsR4 CodeSystemStructureMapTransform.swift
[1059/1429] Compiling ModelsR4 CodeSystemStudyType.swift
[1060/1429] Compiling ModelsR4 CodeSystemSubscriberRelationshipCodes.swift
[1061/1429] Compiling ModelsR4 CodeSystemSubscriptionChannelType.swift
[1062/1429] Compiling ModelsR4 CodeSystemSubscriptionStatus.swift
[1063/1429] Compiling ModelsR4 CodeSystemSubscriptionTag.swift
[1064/1429] Compiling ModelsR4 CodeSystemSubstanceCategoryCodes.swift
[1065/1429] Compiling ModelsR4 CodeSystemSupplyDeliveryStatus.swift
[1066/1429] Compiling ModelsR4 CodeSystemSupplyItemType.swift
[1067/1453] Compiling ModelsR4 CodeSystemQualityOfEvidenceRating.swift
[1068/1453] Compiling ModelsR4 CodeSystemQualityType.swift
[1069/1453] Compiling ModelsR4 CodeSystemQuantityComparator.swift
[1070/1453] Compiling ModelsR4 CodeSystemQuestionnaireItemOperator.swift
[1071/1453] Compiling ModelsR4 CodeSystemQuestionnaireItemType.swift
[1072/1453] Compiling ModelsR4 CodeSystemQuestionnaireItemUIControlCodes.swift
[1073/1453] Compiling ModelsR4 CodeSystemQuestionnaireItemUsageMode.swift
[1074/1453] Compiling ModelsR4 CodeSystemQuestionnaireResponseStatus.swift
[1075/1453] Compiling ModelsR4 CodeSystemQuestionnaireTextCategories.swift
[1076/1453] Compiling ModelsR4 CodeSystemReasonMedicationGivenCodes.swift
[1077/1453] Compiling ModelsR4 CodeSystemReferenceHandlingPolicy.swift
[1078/1453] Compiling ModelsR4 CodeSystemReferenceVersionRules.swift
[1079/1453] Compiling ModelsR4 CodeSystemReferralMethod.swift
[1080/1453] Compiling ModelsR4 CodeSystemRejectionCriterion.swift
[1081/1453] Compiling ModelsR4 CodeSystemRelatedArtifactType.swift
[1082/1453] Compiling ModelsR4 CodeSystemRepositoryType.swift
[1083/1453] Compiling ModelsR4 CodeSystemRequestIntent.swift
[1084/1453] Compiling ModelsR4 CodeSystemRequestPriority.swift
[1085/1453] Compiling ModelsR4 CodeSystemRequestResourceType.swift
[1086/1453] Compiling ModelsR4 CodeSystemRequestStatus.swift
[1087/1453] Compiling ModelsR4 CodeSystemResearchElementType.swift
[1088/1453] Compiling ModelsR4 CodeSystemResearchStudyObjectiveType.swift
[1089/1453] Compiling ModelsR4 CodeSystemResearchStudyPhase.swift
[1090/1453] Compiling ModelsR4 CodeSystemResearchStudyPrimaryPurposeType.swift
[1091/1453] Compiling ModelsR4 CodeSystemResearchStudyReasonStopped.swift
[1092/1453] Compiling ModelsR4 CodeSystemResearchStudyStatus.swift
[1093/1453] Compiling ModelsR4 CodeSystemResearchSubjectStatus.swift
[1094/1453] Compiling ModelsR4 CodeSystemResourceSecurityCategory.swift
[1095/1453] Compiling ModelsR4 CodeSystemResourceType.swift
[1096/1453] Compiling ModelsR4 CodeSystemResourceValidationMode.swift
[1097/1453] Compiling ModelsR4 CodeSystemResourceVersionPolicy.swift
[1098/1453] Compiling ModelsR4 CodeSystemResponseType.swift
[1099/1453] Compiling ModelsR4 CodeSystemRestfulCapabilityMode.swift
[1100/1453] Compiling ModelsR4 CodeSystemRestfulSecurityService.swift
[1101/1453] Compiling ModelsR4 CodeSystemRiskEstimateType.swift
[1102/1453] Compiling ModelsR4 CodeSystemRiskProbability.swift
[1103/1453] Compiling ModelsR4 CodeSystemSNOMEDCTReasonMedicationNotGivenCodes.swift
[1104/1453] Compiling ModelsR4 CodeSystemSearchComparator.swift
[1105/1453] Compiling ModelsR4 CodeSystemSearchEntryMode.swift
[1106/1453] Compiling ModelsR4 CodeSystemSearchModifierCode.swift
[1107/1453] Compiling ModelsR4 CodeSystemSearchParamType.swift
[1108/1453] Compiling ModelsR4 CodeSystemSequenceStatus.swift
[1109/1453] Compiling ModelsR4 CodeSystemSequenceType.swift
[1110/1453] Compiling ModelsR4 CodeSystemServiceProvisionConditions.swift
[1111/1453] Compiling ModelsR4 CodeSystemSlicingRules.swift
[1112/1453] Compiling ModelsR4 CodeSystemSlotStatus.swift
[1113/1453] Compiling ModelsR4 CodeSystemSmartCapabilities.swift
[1114/1453] Compiling ModelsR4 CodeSystemSortDirection.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 {
[1244/1453] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1245/1453] Compiling ModelsR4 CodeSystemUse.swift
[1246/1453] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1247/1453] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1248/1453] Compiling ModelsR4 CodeSystemValidationType.swift
[1249/1453] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1250/1453] Compiling ModelsR4 CodeSystemVisionBase.swift
[1251/1453] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1252/1453] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1253/1453] Compiling ModelsR4 CodeableConcept.swift
[1254/1453] Compiling ModelsR4 Coding.swift
[1255/1453] Compiling ModelsR4 Communication.swift
[1256/1453] Compiling ModelsR4 CommunicationRequest.swift
[1257/1453] Compiling ModelsR4 CompartmentDefinition.swift
[1258/1453] Compiling ModelsR4 Composition.swift
[1259/1453] Compiling ModelsR4 ConceptMap.swift
[1260/1453] Compiling ModelsR4 Condition.swift
[1261/1453] Compiling ModelsR4 Consent.swift
[1262/1453] Compiling ModelsR4 ContactDetail.swift
[1263/1453] Compiling ModelsR4 ContactPoint.swift
[1264/1453] Compiling ModelsR4 Contract.swift
[1265/1453] Compiling ModelsR4 Contributor.swift
[1266/1453] Compiling ModelsR4 Count.swift
[1267/1453] Compiling ModelsR4 Coverage.swift
[1268/1453] Compiling ModelsR4 Endpoint.swift
[1269/1453] Compiling ModelsR4 EnrollmentRequest.swift
[1270/1453] Compiling ModelsR4 EnrollmentResponse.swift
[1271/1453] Compiling ModelsR4 EpisodeOfCare.swift
[1272/1453] Compiling ModelsR4 EventDefinition.swift
[1273/1453] Compiling ModelsR4 Evidence.swift
[1274/1453] Compiling ModelsR4 EvidenceVariable.swift
[1275/1453] Compiling ModelsR4 ExampleScenario.swift
[1276/1453] Compiling ModelsR4 ExplanationOfBenefit.swift
[1277/1453] Compiling ModelsR4 Expression.swift
[1278/1453] Compiling ModelsR4 Extension.swift
[1279/1453] Compiling ModelsR4 FHIRAbstractResource.swift
[1280/1453] Compiling ModelsR4 FHIRBool.swift
[1281/1453] Compiling ModelsR4 FHIRDate+NSDate.swift
[1282/1453] Compiling ModelsR4 FHIRDate.swift
[1283/1453] Compiling ModelsR4 FHIRDecimal.swift
[1284/1453] Compiling ModelsR4 FHIRInteger.swift
[1285/1453] Compiling ModelsR4 FHIRPositiveInteger.swift
[1286/1453] Compiling ModelsR4 FHIRPrimitive.swift
[1287/1453] Compiling ModelsR4 FHIRString.swift
[1288/1453] Compiling ModelsR4 FHIRTime+NSDate.swift
[1289/1453] Compiling ModelsR4 FHIRTime.swift
[1290/1453] Compiling ModelsR4 FHIRURI.swift
[1291/1453] Compiling ModelsR4 FHIRUnsignedInteger.swift
[1292/1453] Compiling ModelsR4 FamilyMemberHistory.swift
[1293/1453] Compiling ModelsR4 Flag.swift
[1294/1453] Compiling ModelsR4 Goal.swift
[1295/1453] Compiling ModelsR4 GraphDefinition.swift
[1296/1453] Compiling ModelsR4 Group.swift
[1297/1453] Compiling ModelsR4 GuidanceResponse.swift
[1298/1453] Compiling ModelsR4 HealthcareService.swift
[1299/1453] Compiling ModelsR4 HumanName.swift
[1300/1453] Compiling ModelsR4 Identifier.swift
[1301/1453] Compiling ModelsR4 ImagingStudy.swift
[1302/1453] Compiling ModelsR4 Immunization.swift
[1303/1453] Compiling ModelsR4 ImmunizationEvaluation.swift
[1304/1453] Compiling ModelsR4 ImmunizationRecommendation.swift
[1305/1453] Compiling ModelsR4 ImplementationGuide.swift
[1306/1453] Compiling ModelsR4 Instant+NSDate.swift
[1307/1453] Compiling ModelsR4 Instant.swift
[1308/1453] Compiling ModelsR4 InstantDate.swift
[1309/1453] Compiling ModelsR4 InsurancePlan.swift
[1310/1453] Compiling ModelsR4 Invoice.swift
[1311/1453] Compiling ModelsR4 Library.swift
[1312/1453] Compiling ModelsR4 Linkage.swift
[1313/1453] Compiling ModelsR4 List.swift
[1314/1453] Compiling ModelsR4 Location.swift
[1315/1453] Compiling ModelsR4 MarketingStatus.swift
[1316/1453] Compiling ModelsR4 NamingSystem.swift
[1317/1453] Compiling ModelsR4 Narrative.swift
[1318/1453] Compiling ModelsR4 NutritionOrder.swift
[1319/1453] Compiling ModelsR4 Observation.swift
[1320/1453] Compiling ModelsR4 ObservationDefinition.swift
[1321/1453] Compiling ModelsR4 OperationDefinition.swift
[1322/1453] Compiling ModelsR4 OperationOutcome.swift
[1323/1453] Compiling ModelsR4 Organization.swift
[1324/1453] Compiling ModelsR4 OrganizationAffiliation.swift
[1325/1453] Compiling ModelsR4 ParameterDefinition.swift
[1326/1453] Compiling ModelsR4 Parameters.swift
[1327/1453] Compiling ModelsR4 Patient.swift
[1328/1453] Compiling ModelsR4 PaymentNotice.swift
[1329/1453] Compiling ModelsR4 PaymentReconciliation.swift
[1330/1453] Compiling ModelsR4 Period.swift
[1331/1453] Compiling ModelsR4 Person.swift
[1332/1453] Compiling ModelsR4 PlanDefinition.swift
[1333/1453] Compiling ModelsR4 Population.swift
[1334/1453] Compiling ModelsR4 Practitioner.swift
[1335/1453] Compiling ModelsR4 PractitionerRole.swift
[1336/1453] Compiling ModelsR4 Procedure.swift
[1337/1453] Compiling ModelsR4 ProdCharacteristic.swift
[1338/1453] Compiling ModelsR4 ProductShelfLife.swift
[1339/1453] Compiling ModelsR4 Provenance.swift
[1340/1453] Compiling ModelsR4 Quantity.swift
[1341/1453] Compiling ModelsR4 Questionnaire.swift
[1342/1453] Compiling ModelsR4 QuestionnaireResponse.swift
[1343/1453] Compiling ModelsR4 Range.swift
[1344/1453] Compiling ModelsR4 Ratio.swift
[1345/1453] Compiling ModelsR4 Reference.swift
[1346/1453] Compiling ModelsR4 RelatedArtifact.swift
[1347/1453] Compiling ModelsR4 RelatedPerson.swift
[1348/1453] Compiling ModelsR4 RequestGroup.swift
[1349/1453] Compiling ModelsR4 ResearchDefinition.swift
[1350/1453] Compiling ModelsR4 ResearchElementDefinition.swift
[1351/1453] Compiling ModelsR4 ResearchStudy.swift
[1352/1453] Compiling ModelsR4 ResearchSubject.swift
[1353/1453] Compiling ModelsR4 Resource.swift
[1354/1453] Compiling ModelsR4 ResourceProxy.swift
[1355/1453] Compiling ModelsR4 RiskAssessment.swift
[1356/1453] Compiling ModelsR4 RiskEvidenceSynthesis.swift
[1357/1453] Compiling ModelsR4 SampledData.swift
[1358/1453] Compiling ModelsR4 Schedule.swift
[1359/1453] Compiling ModelsR4 SearchParameter.swift
[1360/1453] Compiling ModelsR4 ServiceRequest.swift
[1361/1453] Compiling ModelsR4 Signature.swift
[1362/1453] Compiling ModelsR4 Slot.swift
[1363/1453] Compiling ModelsR4 Specimen.swift
[1364/1453] Compiling ModelsR4 Measure.swift
[1365/1453] Compiling ModelsR4 MeasureReport.swift
[1366/1453] Compiling ModelsR4 Media.swift
[1367/1453] Compiling ModelsR4 Medication.swift
[1368/1453] Compiling ModelsR4 MedicationAdministration.swift
[1369/1453] Compiling ModelsR4 MedicationDispense.swift
[1370/1453] Compiling ModelsR4 MedicationKnowledge.swift
[1371/1453] Compiling ModelsR4 MedicationRequest.swift
[1372/1453] Compiling ModelsR4 MedicationStatement.swift
[1373/1453] Compiling ModelsR4 MedicinalProduct.swift
[1374/1453] Compiling ModelsR4 MedicinalProductAuthorization.swift
[1375/1453] Compiling ModelsR4 MedicinalProductContraindication.swift
[1376/1453] Compiling ModelsR4 MedicinalProductIndication.swift
[1377/1453] Compiling ModelsR4 MedicinalProductIngredient.swift
[1378/1453] Compiling ModelsR4 MedicinalProductInteraction.swift
[1379/1453] Compiling ModelsR4 MedicinalProductManufactured.swift
[1380/1453] Compiling ModelsR4 MedicinalProductPackaged.swift
[1381/1453] Compiling ModelsR4 MedicinalProductPharmaceutical.swift
[1382/1453] Compiling ModelsR4 MedicinalProductUndesirableEffect.swift
[1383/1453] Compiling ModelsR4 MessageDefinition.swift
[1384/1453] Compiling ModelsR4 MessageHeader.swift
[1385/1453] Compiling ModelsR4 Meta.swift
[1386/1453] Compiling ModelsR4 MolecularSequence.swift
[1387/1453] Compiling ModelsR4 Money.swift
[1388/1453] Compiling ModelsR4 CoverageEligibilityRequest.swift
[1389/1453] Compiling ModelsR4 CoverageEligibilityResponse.swift
[1390/1453] Compiling ModelsR4 DataRequirement.swift
[1391/1453] Compiling ModelsR4 DateTime+NSDate.swift
[1392/1453] Compiling ModelsR4 DateTime.swift
[1393/1453] Compiling ModelsR4 DetectedIssue.swift
[1394/1453] Compiling ModelsR4 Device.swift
[1395/1453] Compiling ModelsR4 DeviceDefinition.swift
[1396/1453] Compiling ModelsR4 DeviceMetric.swift
[1397/1453] Compiling ModelsR4 DeviceRequest.swift
[1398/1453] Compiling ModelsR4 DeviceUseStatement.swift
[1399/1453] Compiling ModelsR4 DiagnosticReport.swift
[1400/1453] Compiling ModelsR4 Distance.swift
[1401/1453] Compiling ModelsR4 DocumentManifest.swift
[1402/1453] Compiling ModelsR4 DocumentReference.swift
[1403/1453] Compiling ModelsR4 DomainResource+Extensions.swift
[1404/1453] Compiling ModelsR4 DomainResource.swift
[1405/1453] Compiling ModelsR4 Dosage.swift
[1406/1453] Compiling ModelsR4 Duration.swift
[1407/1453] Compiling ModelsR4 EffectEvidenceSynthesis.swift
[1408/1453] Compiling ModelsR4 Element+Extensions.swift
[1409/1453] Compiling ModelsR4 Element.swift
[1410/1453] Compiling ModelsR4 ElementDefinition.swift
[1411/1453] Compiling ModelsR4 Encounter.swift
[1412/1453] Compiling ModelsR4 SpecimenDefinition.swift
[1413/1453] Compiling ModelsR4 StructureDefinition.swift
[1414/1453] Compiling ModelsR4 StructureMap.swift
[1415/1453] Compiling ModelsR4 Subscription.swift
[1416/1453] Compiling ModelsR4 Substance.swift
[1417/1453] Compiling ModelsR4 SubstanceAmount.swift
[1418/1453] Compiling ModelsR4 SubstanceNucleicAcid.swift
[1419/1453] Compiling ModelsR4 SubstancePolymer.swift
[1420/1453] Compiling ModelsR4 SubstanceProtein.swift
[1421/1453] Compiling ModelsR4 SubstanceReferenceInformation.swift
[1422/1453] Compiling ModelsR4 SubstanceSourceMaterial.swift
[1423/1453] Compiling ModelsR4 SubstanceSpecification.swift
[1424/1453] Compiling ModelsR4 SupplyDelivery.swift
[1425/1453] Compiling ModelsR4 SupplyRequest.swift
[1426/1453] Compiling ModelsR4 Task.swift
[1427/1453] Compiling ModelsR4 TerminologyCapabilities.swift
[1428/1453] Compiling ModelsR4 TestReport.swift
[1429/1453] Compiling ModelsR4 TestScript.swift
[1430/1453] Compiling ModelsR4 Timing.swift
[1431/1453] Compiling ModelsR4 TriggerDefinition.swift
[1432/1453] Compiling ModelsR4 UsageContext.swift
[1433/1453] Compiling ModelsR4 ValueSet.swift
[1434/1453] Compiling ModelsR4 VerificationResult.swift
[1435/1453] Compiling ModelsR4 VisionPrescription.swift
[1436/1468] Compiling CareKitFHIR OCKR4PatientCoder.swift
[1437/1468] Compiling CareKitFHIR OCKDSTU2ScheduleCoder.swift
[1438/1468] Compiling CareKitFHIR OCKDSTU2MedicationOrderCoder.swift
[1439/1468] Compiling CareKitFHIR OCKDSTU2PatientCoder.swift
[1440/1468] Compiling CareKitFHIR OCKPatientConverterTraits.swift
[1441/1468] Compiling CareKitFHIR OCKFHIRRelease.swift
[1442/1468] Compiling CareKitFHIR OCKFHIRResource.swift
[1443/1468] Compiling CareKitFHIR OCKFHIRCodingError.swift
[1444/1468] Compiling CareKitFHIR OCKFHIRContentType.swift
[1445/1468] Compiling CareKitFHIR OCKDSTU2CarePlanActivityCoder.swift
[1446/1468] Compiling CareKitFHIR OCKFHIRResourceCoder.swift
[1447/1468] Compiling CareKitFHIR OCKFHIRResourceData.swift
[1448/1469] Emitting module CareKitFHIR
[1449/1469] Compiling CareKitFHIR FHIRModels+Extensions.swift
[1450/1469] Compiling CareKitFHIR OCK+FHIRExtensions.swift
[1451/1469] Compiling CareKitFHIR OCKTaskConverterTraits.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 {
BUILD FAILURE 6.3 macosSpm