The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CareKit, reference 4.1.0 (b1e5a3), with Swift 6.3 for macOS (SPM) on 19 Apr 2026 20:05:46 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

 35 |     @NSManaged var kind: String? // blood sugar, body weight, etc.
 36 |     @NSManaged var units: String?
    :
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
 85 |                 self.value,
    |                 `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
 86 |                 units: units,
 87 |                 createdDate: createdDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:84:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 82 |
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
    |             `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 85 |                 self.value,
 86 |                 units: units,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:36: warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDCarePlan)
34 | class OCKCDCarePlan: OCKCDVersionedObject {
   |       `- note: class 'OCKCDCarePlan' does not conform to the 'Sendable' protocol
35 |     @NSManaged var patient: OCKCDPatient?
36 |     @NSManaged var tasks: Set<OCKCDTask>
   :
56 |
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
   |                                    `- warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
59 |             plan.copyVersionedValues(from: self)
60 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
56 |
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
   |             `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
59 |             plan.copyVersionedValues(from: self)
60 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:59:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
59 |             plan.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
60 |         }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:98:21: warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDContact)
 35 | class OCKCDContact: OCKCDVersionedObject {
    |       `- note: class 'OCKCDContact' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var carePlan: OCKCDCarePlan?
 37 |     @NSManaged var name: OCKCDPersonName
    :
 96 |         self.managedObjectContext!.performAndWait {
 97 |             contact = OCKContact(
 98 |                 id: id,
    |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
 99 |                 name: name.makeValue(),
100 |                 carePlanUUID: carePlan?.uuid
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:97:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
 95 |
 96 |         self.managedObjectContext!.performAndWait {
 97 |             contact = OCKContact(
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
 98 |                 id: id,
 99 |                 name: name.makeValue(),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:103:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
101 |             )
102 |
103 |             contact.copyVersionedValues(from: self)
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:104:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
102 |
103 |             contact.copyVersionedValues(from: self)
104 |             contact.emailAddresses = emailAddresses
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:105:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
103 |             contact.copyVersionedValues(from: self)
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:106:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:107:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 |             contact.organization = organization
109 |             contact.title = title
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:108:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 |             contact.title = title
110 |             contact.role = role
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:109:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
109 |             contact.title = title
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:110:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 |             contact.organization = organization
109 |             contact.title = title
110 |             contact.role = role
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 |             contact.address = address?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:111:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 |             contact.title = title
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
112 |             contact.address = address?.makeValue()
113 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:112:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 |             contact.address = address?.makeValue()
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
113 |         }
114 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:61:27: warning: capture of 'self' with non-Sendable type 'OCKCDDevice' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDDevice)
35 | class OCKCDDevice: NSManagedObject {
   |       `- note: class 'OCKCDDevice' does not conform to the 'Sendable' protocol
36 |     @NSManaged var name: String?
37 |     @NSManaged var manufacturer: String?
   :
59 |         var device = OCKDevice()
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
   |                           `- warning: capture of 'self' with non-Sendable type 'OCKCDDevice' in a '@Sendable' closure [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:61:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
59 |         var device = OCKDevice()
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:62:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
62 |             device.manufacturer = manufacturer
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:63:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
61 |             device.name = name
62 |             device.manufacturer = manufacturer
63 |             device.model = model
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:64:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:65:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:66:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
67 |             device.localIdentifier = localIdentifier
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:67:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
69 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:68:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
69 |         }
70 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:55:67: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
34 |
35 | @objc(OCKCDHealthKitLinkage)
36 | class OCKCDHealthKitLinkage: NSManagedObject {
   |       `- note: class 'OCKCDHealthKitLinkage' does not conform to the 'Sendable' protocol
37 |     @NSManaged var sampleIdentifier: String
38 |     @NSManaged var quantityType: String?
   :
53 |         var healthKitLinkage: OCKHealthKitLinkage!
54 |         self.managedObjectContext!.performAndWait {
55 |             let quantityType: OCKHealthKitLinkage.QuantityType? = quantityType != nil ? OCKHealthKitLinkage.QuantityType(rawValue: quantityType!)! : nil
   |                                                                   `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
56 |             let unit: HKUnit? = unitString != nil ? HKUnit(from: unitString!) : nil
57 |             if let quantityType = quantityType,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:62:17: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
60 |                     rawValue: sampleIdentifier
61 |                 )
62 |                 healthKitLinkage = OCKHealthKitLinkage(
   |                 `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
63 |                     quantityIdentifier: quantityIdentifier,
64 |                     quantityType: quantityType,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:71:17: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
69 |                     rawValue: sampleIdentifier
70 |                 )
71 |                 healthKitLinkage = OCKHealthKitLinkage(
   |                 `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
72 |                     categoryIdentifier: categoryIdentifier
73 |                 )
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:67:21: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDHealthKitTask)
35 | class OCKCDHealthKitTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDHealthKitTask' does not conform to the 'Sendable' protocol
36 |
37 |     @NSManaged var healthKitLinkage: OCKCDHealthKitLinkage
   :
65 |         self.managedObjectContext!.performAndWait {
66 |             task = OCKHealthKitTask(
67 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
68 |                 title: title,
69 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:66:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 |         self.managedObjectContext!.performAndWait {
66 |             task = OCKHealthKitTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
67 |                 id: id,
68 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:74:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
72 |             )
73 |
74 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
75 |             task.instructions = instructions
76 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:75:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |
74 |             task.copyVersionedValues(from: self)
75 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
76 |             task.impactsAdherence = impactsAdherence
77 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:76:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
74 |             task.copyVersionedValues(from: self)
75 |             task.instructions = instructions
76 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |         }
78 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:36: warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDNote)
34 | class OCKCDNote: NSManagedObject {
   |       `- note: class 'OCKCDNote' does not conform to the 'Sendable' protocol
35 |     @NSManaged var author: String?
36 |     @NSManaged var title: String?
   :
52 |         var note: OCKNote!
53 |         self.managedObjectContext!.performAndWait {
54 |             note = OCKNote(author: author, title: title, content: content)
   |                                    `- warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
55 |         }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:13: warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
52 |         var note: OCKNote!
53 |         self.managedObjectContext!.performAndWait {
54 |             note = OCKNote(author: author, title: title, content: content)
   |             `- warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
55 |         }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:51:51: warning: capture of 'self' with non-Sendable type 'OCKCDOperatingSystemVersion' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDOperatingSystemVersion)
35 | class OCKCDOperatingSystemVersion: NSManagedObject {
   |       `- note: class 'OCKCDOperatingSystemVersion' does not conform to the 'Sendable' protocol
36 |     @NSManaged var majorVersion: Int
37 |     @NSManaged var minorVersion: Int
   :
49 |         var operatingSystemVersion = OperatingSystemVersion()
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
   |                                                   `- warning: capture of 'self' with non-Sendable type 'OCKCDOperatingSystemVersion' in a '@Sendable' closure [#SendableClosureCaptures]
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:51:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
49 |         var operatingSystemVersion = OperatingSystemVersion()
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:52:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
52 |             operatingSystemVersion.minorVersion = minorVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
53 |             operatingSystemVersion.patchVersion = patchVersion
54 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:53:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
51 |             operatingSystemVersion.majorVersion = majorVersion
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
54 |         }
55 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:69:27: warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDOutcome)
 35 | class OCKCDOutcome: OCKCDVersionedObject {
    |       `- note: class 'OCKCDOutcome' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var taskOccurrenceIndex: Int64
 37 |     @NSManaged var task: OCKCDTask
    :
 67 |         self.managedObjectContext!.performAndWait {
 68 |             outcome = OCKOutcome(
 69 |                 taskUUID: task.uuid,
    |                           `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
 70 |                 taskOccurrenceIndex: Int(taskOccurrenceIndex),
 71 |                 values: values.map { $0.makeValue() }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:68:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 66 |
 67 |         self.managedObjectContext!.performAndWait {
 68 |             outcome = OCKOutcome(
    |             `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 69 |                 taskUUID: task.uuid,
 70 |                 taskOccurrenceIndex: Int(taskOccurrenceIndex),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:74:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 72 |             )
 73 |
 74 |             outcome.copyVersionedValues(from: self)
    |             `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 75 |         }
 76 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:85:17: warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
 32 |
 33 | @objc(OCKCDOutcomeValue)
 34 | class OCKCDOutcomeValue: NSManagedObject {
    |       `- note: class 'OCKCDOutcomeValue' does not conform to the 'Sendable' protocol
 35 |     @NSManaged var kind: String? // blood sugar, body weight, etc.
 36 |     @NSManaged var units: String?
    :
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
 85 |                 self.value,
    |                 `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
 86 |                 units: units,
 87 |                 createdDate: createdDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:84:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 82 |
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
    |             `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 85 |                 self.value,
 86 |                 units: units,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:36: warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDCarePlan)
34 | class OCKCDCarePlan: OCKCDVersionedObject {
   |       `- note: class 'OCKCDCarePlan' does not conform to the 'Sendable' protocol
35 |     @NSManaged var patient: OCKCDPatient?
36 |     @NSManaged var tasks: Set<OCKCDTask>
   :
56 |
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
   |                                    `- warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
59 |             plan.copyVersionedValues(from: self)
60 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
56 |
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
   |             `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
59 |             plan.copyVersionedValues(from: self)
60 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:59:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
59 |             plan.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
60 |         }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:98:21: warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDContact)
 35 | class OCKCDContact: OCKCDVersionedObject {
    |       `- note: class 'OCKCDContact' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var carePlan: OCKCDCarePlan?
 37 |     @NSManaged var name: OCKCDPersonName
    :
 96 |         self.managedObjectContext!.performAndWait {
 97 |             contact = OCKContact(
 98 |                 id: id,
    |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
 99 |                 name: name.makeValue(),
100 |                 carePlanUUID: carePlan?.uuid
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:97:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
 95 |
 96 |         self.managedObjectContext!.performAndWait {
 97 |             contact = OCKContact(
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
 98 |                 id: id,
 99 |                 name: name.makeValue(),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:103:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
101 |             )
102 |
103 |             contact.copyVersionedValues(from: self)
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:104:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
102 |
103 |             contact.copyVersionedValues(from: self)
104 |             contact.emailAddresses = emailAddresses
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:105:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
103 |             contact.copyVersionedValues(from: self)
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:106:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:107:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 |             contact.organization = organization
109 |             contact.title = title
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:108:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 |             contact.title = title
110 |             contact.role = role
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:109:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
109 |             contact.title = title
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:110:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 |             contact.organization = organization
109 |             contact.title = title
110 |             contact.role = role
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 |             contact.address = address?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:111:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 |             contact.title = title
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
112 |             contact.address = address?.makeValue()
113 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:112:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 |             contact.address = address?.makeValue()
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
113 |         }
114 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:61:27: warning: capture of 'self' with non-Sendable type 'OCKCDDevice' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDDevice)
35 | class OCKCDDevice: NSManagedObject {
   |       `- note: class 'OCKCDDevice' does not conform to the 'Sendable' protocol
36 |     @NSManaged var name: String?
37 |     @NSManaged var manufacturer: String?
   :
59 |         var device = OCKDevice()
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
   |                           `- warning: capture of 'self' with non-Sendable type 'OCKCDDevice' in a '@Sendable' closure [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:61:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
59 |         var device = OCKDevice()
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:62:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
62 |             device.manufacturer = manufacturer
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:63:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
61 |             device.name = name
62 |             device.manufacturer = manufacturer
63 |             device.model = model
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:64:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:65:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:66:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
67 |             device.localIdentifier = localIdentifier
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:67:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
69 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:68:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
69 |         }
70 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:55:67: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
34 |
35 | @objc(OCKCDHealthKitLinkage)
36 | class OCKCDHealthKitLinkage: NSManagedObject {
   |       `- note: class 'OCKCDHealthKitLinkage' does not conform to the 'Sendable' protocol
37 |     @NSManaged var sampleIdentifier: String
38 |     @NSManaged var quantityType: String?
   :
53 |         var healthKitLinkage: OCKHealthKitLinkage!
54 |         self.managedObjectContext!.performAndWait {
55 |             let quantityType: OCKHealthKitLinkage.QuantityType? = quantityType != nil ? OCKHealthKitLinkage.QuantityType(rawValue: quantityType!)! : nil
   |                                                                   `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
56 |             let unit: HKUnit? = unitString != nil ? HKUnit(from: unitString!) : nil
57 |             if let quantityType = quantityType,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:62:17: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
60 |                     rawValue: sampleIdentifier
61 |                 )
62 |                 healthKitLinkage = OCKHealthKitLinkage(
   |                 `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
63 |                     quantityIdentifier: quantityIdentifier,
64 |                     quantityType: quantityType,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:71:17: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
69 |                     rawValue: sampleIdentifier
70 |                 )
71 |                 healthKitLinkage = OCKHealthKitLinkage(
   |                 `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
72 |                     categoryIdentifier: categoryIdentifier
73 |                 )
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:67:21: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDHealthKitTask)
35 | class OCKCDHealthKitTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDHealthKitTask' does not conform to the 'Sendable' protocol
36 |
37 |     @NSManaged var healthKitLinkage: OCKCDHealthKitLinkage
   :
65 |         self.managedObjectContext!.performAndWait {
66 |             task = OCKHealthKitTask(
67 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
68 |                 title: title,
69 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:66:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 |         self.managedObjectContext!.performAndWait {
66 |             task = OCKHealthKitTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
67 |                 id: id,
68 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:74:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
72 |             )
73 |
74 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
75 |             task.instructions = instructions
76 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:75:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |
74 |             task.copyVersionedValues(from: self)
75 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
76 |             task.impactsAdherence = impactsAdherence
77 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:76:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
74 |             task.copyVersionedValues(from: self)
75 |             task.instructions = instructions
76 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |         }
78 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:36: warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDNote)
34 | class OCKCDNote: NSManagedObject {
   |       `- note: class 'OCKCDNote' does not conform to the 'Sendable' protocol
35 |     @NSManaged var author: String?
36 |     @NSManaged var title: String?
   :
52 |         var note: OCKNote!
53 |         self.managedObjectContext!.performAndWait {
54 |             note = OCKNote(author: author, title: title, content: content)
   |                                    `- warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
55 |         }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:13: warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
52 |         var note: OCKNote!
53 |         self.managedObjectContext!.performAndWait {
54 |             note = OCKNote(author: author, title: title, content: content)
   |             `- warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
55 |         }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:51:51: warning: capture of 'self' with non-Sendable type 'OCKCDOperatingSystemVersion' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDOperatingSystemVersion)
35 | class OCKCDOperatingSystemVersion: NSManagedObject {
   |       `- note: class 'OCKCDOperatingSystemVersion' does not conform to the 'Sendable' protocol
36 |     @NSManaged var majorVersion: Int
37 |     @NSManaged var minorVersion: Int
   :
49 |         var operatingSystemVersion = OperatingSystemVersion()
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
   |                                                   `- warning: capture of 'self' with non-Sendable type 'OCKCDOperatingSystemVersion' in a '@Sendable' closure [#SendableClosureCaptures]
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:51:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
49 |         var operatingSystemVersion = OperatingSystemVersion()
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:52:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
52 |             operatingSystemVersion.minorVersion = minorVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
53 |             operatingSystemVersion.patchVersion = patchVersion
54 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:53:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
51 |             operatingSystemVersion.majorVersion = majorVersion
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
54 |         }
55 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:69:27: warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDOutcome)
 35 | class OCKCDOutcome: OCKCDVersionedObject {
    |       `- note: class 'OCKCDOutcome' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var taskOccurrenceIndex: Int64
 37 |     @NSManaged var task: OCKCDTask
    :
 67 |         self.managedObjectContext!.performAndWait {
 68 |             outcome = OCKOutcome(
 69 |                 taskUUID: task.uuid,
    |                           `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
 70 |                 taskOccurrenceIndex: Int(taskOccurrenceIndex),
 71 |                 values: values.map { $0.makeValue() }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:68:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 66 |
 67 |         self.managedObjectContext!.performAndWait {
 68 |             outcome = OCKOutcome(
    |             `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 69 |                 taskUUID: task.uuid,
 70 |                 taskOccurrenceIndex: Int(taskOccurrenceIndex),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:74:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 72 |             )
 73 |
 74 |             outcome.copyVersionedValues(from: self)
    |             `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 75 |         }
 76 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:85:17: warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
 32 |
 33 | @objc(OCKCDOutcomeValue)
 34 | class OCKCDOutcomeValue: NSManagedObject {
    |       `- note: class 'OCKCDOutcomeValue' does not conform to the 'Sendable' protocol
 35 |     @NSManaged var kind: String? // blood sugar, body weight, etc.
 36 |     @NSManaged var units: String?
    :
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
 85 |                 self.value,
    |                 `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
 86 |                 units: units,
 87 |                 createdDate: createdDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:84:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 82 |
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
    |             `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 85 |                 self.value,
 86 |                 units: units,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:36: warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDCarePlan)
34 | class OCKCDCarePlan: OCKCDVersionedObject {
   |       `- note: class 'OCKCDCarePlan' does not conform to the 'Sendable' protocol
35 |     @NSManaged var patient: OCKCDPatient?
36 |     @NSManaged var tasks: Set<OCKCDTask>
   :
56 |
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
   |                                    `- warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
59 |             plan.copyVersionedValues(from: self)
60 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
56 |
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
   |             `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
59 |             plan.copyVersionedValues(from: self)
60 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:59:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
59 |             plan.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
60 |         }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:98:21: warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDContact)
 35 | class OCKCDContact: OCKCDVersionedObject {
    |       `- note: class 'OCKCDContact' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var carePlan: OCKCDCarePlan?
 37 |     @NSManaged var name: OCKCDPersonName
    :
 96 |         self.managedObjectContext!.performAndWait {
 97 |             contact = OCKContact(
 98 |                 id: id,
    |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
 99 |                 name: name.makeValue(),
100 |                 carePlanUUID: carePlan?.uuid
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:97:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
 95 |
 96 |         self.managedObjectContext!.performAndWait {
 97 |             contact = OCKContact(
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
 98 |                 id: id,
 99 |                 name: name.makeValue(),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:103:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
101 |             )
102 |
103 |             contact.copyVersionedValues(from: self)
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:104:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
102 |
103 |             contact.copyVersionedValues(from: self)
104 |             contact.emailAddresses = emailAddresses
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:105:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
103 |             contact.copyVersionedValues(from: self)
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:106:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:107:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 |             contact.organization = organization
109 |             contact.title = title
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:108:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 |             contact.title = title
110 |             contact.role = role
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:109:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
109 |             contact.title = title
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:110:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 |             contact.organization = organization
109 |             contact.title = title
110 |             contact.role = role
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 |             contact.address = address?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:111:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 |             contact.title = title
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
112 |             contact.address = address?.makeValue()
113 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:112:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 |             contact.address = address?.makeValue()
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
113 |         }
114 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:61:27: warning: capture of 'self' with non-Sendable type 'OCKCDDevice' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDDevice)
35 | class OCKCDDevice: NSManagedObject {
   |       `- note: class 'OCKCDDevice' does not conform to the 'Sendable' protocol
36 |     @NSManaged var name: String?
37 |     @NSManaged var manufacturer: String?
   :
59 |         var device = OCKDevice()
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
   |                           `- warning: capture of 'self' with non-Sendable type 'OCKCDDevice' in a '@Sendable' closure [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:61:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
59 |         var device = OCKDevice()
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:62:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
62 |             device.manufacturer = manufacturer
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:63:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
61 |             device.name = name
62 |             device.manufacturer = manufacturer
63 |             device.model = model
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:64:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:65:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:66:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
67 |             device.localIdentifier = localIdentifier
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:67:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
69 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:68:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
69 |         }
70 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:55:67: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
34 |
35 | @objc(OCKCDHealthKitLinkage)
36 | class OCKCDHealthKitLinkage: NSManagedObject {
   |       `- note: class 'OCKCDHealthKitLinkage' does not conform to the 'Sendable' protocol
37 |     @NSManaged var sampleIdentifier: String
38 |     @NSManaged var quantityType: String?
   :
53 |         var healthKitLinkage: OCKHealthKitLinkage!
54 |         self.managedObjectContext!.performAndWait {
55 |             let quantityType: OCKHealthKitLinkage.QuantityType? = quantityType != nil ? OCKHealthKitLinkage.QuantityType(rawValue: quantityType!)! : nil
   |                                                                   `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
56 |             let unit: HKUnit? = unitString != nil ? HKUnit(from: unitString!) : nil
57 |             if let quantityType = quantityType,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:62:17: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
60 |                     rawValue: sampleIdentifier
61 |                 )
62 |                 healthKitLinkage = OCKHealthKitLinkage(
   |                 `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
63 |                     quantityIdentifier: quantityIdentifier,
64 |                     quantityType: quantityType,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:71:17: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
69 |                     rawValue: sampleIdentifier
70 |                 )
71 |                 healthKitLinkage = OCKHealthKitLinkage(
   |                 `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
72 |                     categoryIdentifier: categoryIdentifier
73 |                 )
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:67:21: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDHealthKitTask)
35 | class OCKCDHealthKitTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDHealthKitTask' does not conform to the 'Sendable' protocol
36 |
37 |     @NSManaged var healthKitLinkage: OCKCDHealthKitLinkage
   :
65 |         self.managedObjectContext!.performAndWait {
66 |             task = OCKHealthKitTask(
67 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
68 |                 title: title,
69 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:66:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 |         self.managedObjectContext!.performAndWait {
66 |             task = OCKHealthKitTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
67 |                 id: id,
68 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:74:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
72 |             )
73 |
74 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
75 |             task.instructions = instructions
76 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:75:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |
74 |             task.copyVersionedValues(from: self)
75 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
76 |             task.impactsAdherence = impactsAdherence
77 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:76:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
74 |             task.copyVersionedValues(from: self)
75 |             task.instructions = instructions
76 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |         }
78 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:36: warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDNote)
34 | class OCKCDNote: NSManagedObject {
   |       `- note: class 'OCKCDNote' does not conform to the 'Sendable' protocol
35 |     @NSManaged var author: String?
36 |     @NSManaged var title: String?
   :
52 |         var note: OCKNote!
53 |         self.managedObjectContext!.performAndWait {
54 |             note = OCKNote(author: author, title: title, content: content)
   |                                    `- warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
55 |         }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:13: warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
52 |         var note: OCKNote!
53 |         self.managedObjectContext!.performAndWait {
54 |             note = OCKNote(author: author, title: title, content: content)
   |             `- warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
55 |         }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:51:51: warning: capture of 'self' with non-Sendable type 'OCKCDOperatingSystemVersion' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDOperatingSystemVersion)
35 | class OCKCDOperatingSystemVersion: NSManagedObject {
   |       `- note: class 'OCKCDOperatingSystemVersion' does not conform to the 'Sendable' protocol
36 |     @NSManaged var majorVersion: Int
37 |     @NSManaged var minorVersion: Int
   :
49 |         var operatingSystemVersion = OperatingSystemVersion()
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
   |                                                   `- warning: capture of 'self' with non-Sendable type 'OCKCDOperatingSystemVersion' in a '@Sendable' closure [#SendableClosureCaptures]
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:51:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
49 |         var operatingSystemVersion = OperatingSystemVersion()
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:52:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
52 |             operatingSystemVersion.minorVersion = minorVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
53 |             operatingSystemVersion.patchVersion = patchVersion
54 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:53:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
51 |             operatingSystemVersion.majorVersion = majorVersion
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
54 |         }
55 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:69:27: warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDOutcome)
 35 | class OCKCDOutcome: OCKCDVersionedObject {
    |       `- note: class 'OCKCDOutcome' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var taskOccurrenceIndex: Int64
 37 |     @NSManaged var task: OCKCDTask
    :
 67 |         self.managedObjectContext!.performAndWait {
 68 |             outcome = OCKOutcome(
 69 |                 taskUUID: task.uuid,
    |                           `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
 70 |                 taskOccurrenceIndex: Int(taskOccurrenceIndex),
 71 |                 values: values.map { $0.makeValue() }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:68:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 66 |
 67 |         self.managedObjectContext!.performAndWait {
 68 |             outcome = OCKOutcome(
    |             `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 69 |                 taskUUID: task.uuid,
 70 |                 taskOccurrenceIndex: Int(taskOccurrenceIndex),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:74:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 72 |             )
 73 |
 74 |             outcome.copyVersionedValues(from: self)
    |             `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 75 |         }
 76 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:85:17: warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
 32 |
 33 | @objc(OCKCDOutcomeValue)
 34 | class OCKCDOutcomeValue: NSManagedObject {
    |       `- note: class 'OCKCDOutcomeValue' does not conform to the 'Sendable' protocol
 35 |     @NSManaged var kind: String? // blood sugar, body weight, etc.
 36 |     @NSManaged var units: String?
    :
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
 85 |                 self.value,
    |                 `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
 86 |                 units: units,
 87 |                 createdDate: createdDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:84:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 82 |
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
    |             `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 85 |                 self.value,
 86 |                 units: units,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:36: warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDCarePlan)
34 | class OCKCDCarePlan: OCKCDVersionedObject {
   |       `- note: class 'OCKCDCarePlan' does not conform to the 'Sendable' protocol
35 |     @NSManaged var patient: OCKCDPatient?
36 |     @NSManaged var tasks: Set<OCKCDTask>
   :
56 |
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
   |                                    `- warning: capture of 'self' with non-Sendable type 'OCKCDCarePlan' in a '@Sendable' closure [#SendableClosureCaptures]
59 |             plan.copyVersionedValues(from: self)
60 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:58:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
56 |
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
   |             `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
59 |             plan.copyVersionedValues(from: self)
60 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDCarePlan.swift:59:13: warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
57 |         self.managedObjectContext!.performAndWait {
58 |             plan = OCKCarePlan(id: id, title: title, patientUUID: patient?.uuid)
59 |             plan.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'plan' in concurrently-executing code [#SendableClosureCaptures]
60 |         }
61 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:98:21: warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDContact)
 35 | class OCKCDContact: OCKCDVersionedObject {
    |       `- note: class 'OCKCDContact' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var carePlan: OCKCDCarePlan?
 37 |     @NSManaged var name: OCKCDPersonName
    :
 96 |         self.managedObjectContext!.performAndWait {
 97 |             contact = OCKContact(
 98 |                 id: id,
    |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDContact' in a '@Sendable' closure [#SendableClosureCaptures]
 99 |                 name: name.makeValue(),
100 |                 carePlanUUID: carePlan?.uuid
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:97:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
 95 |
 96 |         self.managedObjectContext!.performAndWait {
 97 |             contact = OCKContact(
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
 98 |                 id: id,
 99 |                 name: name.makeValue(),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:103:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
101 |             )
102 |
103 |             contact.copyVersionedValues(from: self)
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:104:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
102 |
103 |             contact.copyVersionedValues(from: self)
104 |             contact.emailAddresses = emailAddresses
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:105:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
103 |             contact.copyVersionedValues(from: self)
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:106:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
104 |             contact.emailAddresses = emailAddresses
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:107:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
105 |             contact.messagingNumbers = messagingNumbers
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 |             contact.organization = organization
109 |             contact.title = title
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:108:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
106 |             contact.phoneNumbers = phoneNumbers
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 |             contact.title = title
110 |             contact.role = role
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:109:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
107 |             contact.otherContactInfo = otherContactInfo
108 |             contact.organization = organization
109 |             contact.title = title
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:110:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
108 |             contact.organization = organization
109 |             contact.title = title
110 |             contact.role = role
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 |             contact.address = address?.makeValue()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:111:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
109 |             contact.title = title
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
112 |             contact.address = address?.makeValue()
113 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDContact.swift:112:13: warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
110 |             contact.role = role
111 |             contact.category = category.map { OCKContactCategory(rawValue: $0)! }
112 |             contact.address = address?.makeValue()
    |             `- warning: mutation of captured var 'contact' in concurrently-executing code [#SendableClosureCaptures]
113 |         }
114 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:61:27: warning: capture of 'self' with non-Sendable type 'OCKCDDevice' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDDevice)
35 | class OCKCDDevice: NSManagedObject {
   |       `- note: class 'OCKCDDevice' does not conform to the 'Sendable' protocol
36 |     @NSManaged var name: String?
37 |     @NSManaged var manufacturer: String?
   :
59 |         var device = OCKDevice()
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
   |                           `- warning: capture of 'self' with non-Sendable type 'OCKCDDevice' in a '@Sendable' closure [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:61:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
59 |         var device = OCKDevice()
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:62:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
60 |         self.managedObjectContext!.performAndWait {
61 |             device.name = name
62 |             device.manufacturer = manufacturer
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:63:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
61 |             device.name = name
62 |             device.manufacturer = manufacturer
63 |             device.model = model
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:64:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
62 |             device.manufacturer = manufacturer
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:65:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
63 |             device.model = model
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:66:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
64 |             device.hardwareVersion = hardwareVersion
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
67 |             device.localIdentifier = localIdentifier
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:67:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
65 |             device.firmwareVersion = firmwareVersion
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
69 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDDevice.swift:68:13: warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
66 |             device.softwareVersion = softwareVersion
67 |             device.localIdentifier = localIdentifier
68 |             device.udiDeviceIdentifier = udiDeviceIdentifier
   |             `- warning: mutation of captured var 'device' in concurrently-executing code [#SendableClosureCaptures]
69 |         }
70 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:55:67: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
34 |
35 | @objc(OCKCDHealthKitLinkage)
36 | class OCKCDHealthKitLinkage: NSManagedObject {
   |       `- note: class 'OCKCDHealthKitLinkage' does not conform to the 'Sendable' protocol
37 |     @NSManaged var sampleIdentifier: String
38 |     @NSManaged var quantityType: String?
   :
53 |         var healthKitLinkage: OCKHealthKitLinkage!
54 |         self.managedObjectContext!.performAndWait {
55 |             let quantityType: OCKHealthKitLinkage.QuantityType? = quantityType != nil ? OCKHealthKitLinkage.QuantityType(rawValue: quantityType!)! : nil
   |                                                                   `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitLinkage' in a '@Sendable' closure [#SendableClosureCaptures]
56 |             let unit: HKUnit? = unitString != nil ? HKUnit(from: unitString!) : nil
57 |             if let quantityType = quantityType,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:62:17: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
60 |                     rawValue: sampleIdentifier
61 |                 )
62 |                 healthKitLinkage = OCKHealthKitLinkage(
   |                 `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
63 |                     quantityIdentifier: quantityIdentifier,
64 |                     quantityType: quantityType,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitLinkage.swift:71:17: warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
69 |                     rawValue: sampleIdentifier
70 |                 )
71 |                 healthKitLinkage = OCKHealthKitLinkage(
   |                 `- warning: mutation of captured var 'healthKitLinkage' in concurrently-executing code [#SendableClosureCaptures]
72 |                     categoryIdentifier: categoryIdentifier
73 |                 )
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:67:21: warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDHealthKitTask)
35 | class OCKCDHealthKitTask: OCKCDTaskBase {
   |       `- note: class 'OCKCDHealthKitTask' does not conform to the 'Sendable' protocol
36 |
37 |     @NSManaged var healthKitLinkage: OCKCDHealthKitLinkage
   :
65 |         self.managedObjectContext!.performAndWait {
66 |             task = OCKHealthKitTask(
67 |                 id: id,
   |                     `- warning: capture of 'self' with non-Sendable type 'OCKCDHealthKitTask' in a '@Sendable' closure [#SendableClosureCaptures]
68 |                 title: title,
69 |                 carePlanUUID: carePlan?.uuid,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:66:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
64 |
65 |         self.managedObjectContext!.performAndWait {
66 |             task = OCKHealthKitTask(
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
67 |                 id: id,
68 |                 title: title,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:74:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
72 |             )
73 |
74 |             task.copyVersionedValues(from: self)
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
75 |             task.instructions = instructions
76 |             task.impactsAdherence = impactsAdherence
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:75:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
73 |
74 |             task.copyVersionedValues(from: self)
75 |             task.instructions = instructions
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
76 |             task.impactsAdherence = impactsAdherence
77 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDHealthKitTask.swift:76:13: warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
74 |             task.copyVersionedValues(from: self)
75 |             task.instructions = instructions
76 |             task.impactsAdherence = impactsAdherence
   |             `- warning: mutation of captured var 'task' in concurrently-executing code [#SendableClosureCaptures]
77 |         }
78 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:36: warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
32 |
33 | @objc(OCKCDNote)
34 | class OCKCDNote: NSManagedObject {
   |       `- note: class 'OCKCDNote' does not conform to the 'Sendable' protocol
35 |     @NSManaged var author: String?
36 |     @NSManaged var title: String?
   :
52 |         var note: OCKNote!
53 |         self.managedObjectContext!.performAndWait {
54 |             note = OCKNote(author: author, title: title, content: content)
   |                                    `- warning: capture of 'self' with non-Sendable type 'OCKCDNote' in a '@Sendable' closure [#SendableClosureCaptures]
55 |         }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDNote.swift:54:13: warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
52 |         var note: OCKNote!
53 |         self.managedObjectContext!.performAndWait {
54 |             note = OCKNote(author: author, title: title, content: content)
   |             `- warning: mutation of captured var 'note' in concurrently-executing code [#SendableClosureCaptures]
55 |         }
56 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:51:51: warning: capture of 'self' with non-Sendable type 'OCKCDOperatingSystemVersion' in a '@Sendable' closure [#SendableClosureCaptures]
33 |
34 | @objc(OCKCDOperatingSystemVersion)
35 | class OCKCDOperatingSystemVersion: NSManagedObject {
   |       `- note: class 'OCKCDOperatingSystemVersion' does not conform to the 'Sendable' protocol
36 |     @NSManaged var majorVersion: Int
37 |     @NSManaged var minorVersion: Int
   :
49 |         var operatingSystemVersion = OperatingSystemVersion()
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
   |                                                   `- warning: capture of 'self' with non-Sendable type 'OCKCDOperatingSystemVersion' in a '@Sendable' closure [#SendableClosureCaptures]
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:51:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
49 |         var operatingSystemVersion = OperatingSystemVersion()
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:52:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
50 |         self.managedObjectContext!.performAndWait {
51 |             operatingSystemVersion.majorVersion = majorVersion
52 |             operatingSystemVersion.minorVersion = minorVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
53 |             operatingSystemVersion.patchVersion = patchVersion
54 |         }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOperatingSystemVersion.swift:53:13: warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
51 |             operatingSystemVersion.majorVersion = majorVersion
52 |             operatingSystemVersion.minorVersion = minorVersion
53 |             operatingSystemVersion.patchVersion = patchVersion
   |             `- warning: mutation of captured var 'operatingSystemVersion' in concurrently-executing code [#SendableClosureCaptures]
54 |         }
55 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:69:27: warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
 33 |
 34 | @objc(OCKCDOutcome)
 35 | class OCKCDOutcome: OCKCDVersionedObject {
    |       `- note: class 'OCKCDOutcome' does not conform to the 'Sendable' protocol
 36 |     @NSManaged var taskOccurrenceIndex: Int64
 37 |     @NSManaged var task: OCKCDTask
    :
 67 |         self.managedObjectContext!.performAndWait {
 68 |             outcome = OCKOutcome(
 69 |                 taskUUID: task.uuid,
    |                           `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcome' in a '@Sendable' closure [#SendableClosureCaptures]
 70 |                 taskOccurrenceIndex: Int(taskOccurrenceIndex),
 71 |                 values: values.map { $0.makeValue() }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:68:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 66 |
 67 |         self.managedObjectContext!.performAndWait {
 68 |             outcome = OCKOutcome(
    |             `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 69 |                 taskUUID: task.uuid,
 70 |                 taskOccurrenceIndex: Int(taskOccurrenceIndex),
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcome.swift:74:13: warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 72 |             )
 73 |
 74 |             outcome.copyVersionedValues(from: self)
    |             `- warning: mutation of captured var 'outcome' in concurrently-executing code [#SendableClosureCaptures]
 75 |         }
 76 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:85:17: warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
 32 |
 33 | @objc(OCKCDOutcomeValue)
 34 | class OCKCDOutcomeValue: NSManagedObject {
    |       `- note: class 'OCKCDOutcomeValue' does not conform to the 'Sendable' protocol
 35 |     @NSManaged var kind: String? // blood sugar, body weight, etc.
 36 |     @NSManaged var units: String?
    :
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
 85 |                 self.value,
    |                 `- warning: capture of 'self' with non-Sendable type 'OCKCDOutcomeValue' in a '@Sendable' closure [#SendableClosureCaptures]
 86 |                 units: units,
 87 |                 createdDate: createdDate,
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKCDOutcomeValue.swift:84:13: warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 82 |
 83 |         self.managedObjectContext!.performAndWait {
 84 |             value = OCKOutcomeValue(
    |             `- warning: mutation of captured var 'value' in concurrently-executing code [#SendableClosureCaptures]
 85 |                 self.value,
 86 |                 units: units,
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[424/990] Compiling ModelsR4 CodeSystemDeviceMetricOperationalStatus.swift
[425/990] Compiling ModelsR4 CodeSystemDeviceNameType.swift
[426/990] Compiling ModelsR4 CodeSystemEventStatus.swift
[427/990] Compiling ModelsR4 CodeSystemEventTiming.swift
[428/990] Compiling ModelsR4 CodeSystemEvidenceVariableType.swift
[429/990] Compiling ModelsR4 CodeSystemEvidenceVariantState.swift
[430/990] Compiling ModelsR4 CodeSystemExampleClaimSubTypeCodes.swift
[431/990] Compiling ModelsR4 CodeSystemExampleCoverageFinancialExceptionCodes.swift
[432/990] Compiling ModelsR4 CodeSystemExampleDiagnosisOnAdmissionCodes.swift
[433/990] Compiling ModelsR4 CodeSystemExampleDiagnosisTypeCodes.swift
[434/990] Compiling ModelsR4 CodeSystemExampleMessageReasonCodes.swift
[435/990] Compiling ModelsR4 CodeSystemExampleOnsetTypeReasonCodes.swift
[436/990] Compiling ModelsR4 CodeSystemExamplePaymentTypeCodes.swift
[437/990] Compiling ModelsR4 CodeSystemExamplePharmacyServiceCodes.swift
[438/990] Compiling ModelsR4 CodeSystemExampleProcedureTypeCodes.swift
[439/990] Compiling ModelsR4 CodeSystemExampleProgramReasonCodes.swift
[440/990] Compiling ModelsR4 CodeSystemExampleRelatedClaimRelationshipCodes.swift
[441/990] Compiling ModelsR4 CodeSystemExampleScenarioActorType.swift
[442/990] Compiling ModelsR4 CodeSystemExampleServiceModifierCodes.swift
[443/990] Compiling ModelsR4 CodeSystemExampleServiceProductCodes.swift
[444/990] Compiling ModelsR4 CodeSystemExampleUseCodesForList.swift
[445/990] Compiling ModelsR4 CodeSystemExampleVisionPrescriptionProductCodes.swift
[446/990] Compiling ModelsR4 CodeSystemExceptionCodes.swift
[447/990] Compiling ModelsR4 CodeSystemExpansionParameterSource.swift
[448/990] Emitting module ModelsDSTU2
[449/1000] Compiling ModelsR4 CodeSystemContactPointSystem.swift
[450/1000] Compiling ModelsR4 CodeSystemContactPointUse.swift
[451/1000] Compiling ModelsR4 CodeSystemContainerCap.swift
[452/1000] Compiling ModelsR4 CodeSystemContractActionCodes.swift
[453/1000] Compiling ModelsR4 CodeSystemContractActorRoleCodes.swift
[454/1000] Compiling ModelsR4 CodeSystemContractContentDerivationCodes.swift
[455/1000] Compiling ModelsR4 CodeSystemContractDataMeaning.swift
[456/1001] Compiling ModelsR4 CodeSystemContractResourceActionStatusCodes.swift
[457/1001] Compiling ModelsR4 CodeSystemContractResourceAssetAvailiabilityCodes.swift
[458/1001] Compiling ModelsR4 CodeSystemContractResourceAssetContextCodes.swift
[459/1001] Compiling ModelsR4 CodeSystemContractResourceAssetScopeCodes.swift
[460/1001] Compiling ModelsR4 CodeSystemContractResourceAssetSubTypeCodes.swift
[461/1001] Compiling ModelsR4 CodeSystemContractResourceAssetTypeCodes.swift
[462/1001] Compiling ModelsR4 CodeSystemContractResourceDecisionModeCodes.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/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/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 {
[466/1003] Compiling ModelsR4 CodeSystemClaimCareTeamRoleCodes.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 {
[467/1003] Compiling ModelsR4 CodeSystemClaimInformationCategoryCodes.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 {
[468/1003] Compiling ModelsR4 CodeSystemClaimItemTypeCodes.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 {
[469/1003] Compiling ModelsR4 CodeSystemClaimPayeeResourceType.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 {
[470/1003] Compiling ModelsR4 CodeSystemClaimProcessingCodes.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 {
[471/1003] Compiling ModelsR4 CodeSystemClaimTypeCodes.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 {
[472/1003] Compiling ModelsR4 CodeSystemCodeSearchSupport.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 {
[473/1003] Compiling ModelsR4 CodeSystemCodeSystemContentMode.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 {
[474/1004] Compiling ModelsR4 CodeSystemCodeSystemHierarchyMeaning.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 {
[475/1004] Compiling ModelsR4 CodeSystemConstraintSeverity.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 {
[476/1004] Compiling ModelsR4 CodeSystemContactEntityType.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 {
[477/1005] Compiling ModelsR4 CodeSystemContractResourceDefinitionSubtypeCodes.swift
[478/1005] Compiling ModelsR4 CodeSystemContractResourceDefinitionTypeCodes.swift
[479/1005] Compiling ModelsR4 CodeSystemContractResourceExpirationTypeCodes.swift
[480/1005] Compiling ModelsR4 CodeSystemContractResourceLegalStateCodes.swift
[481/1006] Compiling ModelsR4 CodeSystemContractResourcePartyRoleCodes.swift
[482/1006] Compiling ModelsR4 CodeSystemContractResourcePublicationStatusCodes.swift
[483/1006] Compiling ModelsR4 CodeSystemContractResourceSecurityControlCodes.swift
[484/1006] Compiling ModelsR4 CodeSystemContractResourceStatusCodes.swift
[485/1006] Compiling ModelsR4 CodeSystemContractSignerTypeCodes.swift
[486/1006] Compiling ModelsR4 Account.swift
[487/1006] Compiling ModelsR4 ActivityDefinition.swift
[488/1006] Compiling ModelsR4 Address.swift
[489/1006] Compiling ModelsR4 AdverseEvent.swift
[490/1006] Compiling ModelsR4 Age.swift
[491/1038] Compiling CareKitStore OCKContactQuery.swift
[492/1038] Compiling CareKitStore OCKEventQuery.swift
[493/1038] Compiling CareKitStore OCKOutcomeQuery.swift
[494/1038] Compiling CareKitStore OCKPatientQuery.swift
[495/1038] Compiling CareKitStore OCKQueryProtocol.swift
[496/1038] Compiling CareKitStore OCKTaskQuery.swift
[497/1038] Compiling CareKitStore AggregatedCareTaskProgress.swift
[498/1038] Compiling CareKitStore BinaryCareTaskProgress.swift
[499/1038] Compiling CareKitStore CareTaskProgress.swift
[500/1038] Compiling CareKitStore CareTaskProgressStrategy+CheckingOutcomesExist.swift
[501/1038] Compiling CareKitStore CareTaskProgressStrategy+SummingOutcomeValues.swift
[502/1038] Compiling CareKitStore CareTaskProgressStrategy.swift
[503/1038] Compiling CareKitStore LinearCareTaskProgress.swift
[504/1038] Compiling CareKitStore resource_bundle_accessor.swift
[644/1110] Emitting module CareKitUI
[645/1201] Compiling CareKit OCKDataSeriesConfiguration.swift
[646/1201] Compiling CareKit OCKDetailedContactViewSynchronizer.swift
[647/1201] Compiling CareKit OCKSimpleContactViewSynchronizer.swift
[648/1201] Compiling CareKit _OCKContactsListViewSynchronizer.swift
[649/1201] Compiling CareKit OCKContactViewController.swift
[650/1201] Compiling CareKit OCKContactViewResponder.swift
[651/1201] Compiling CareKit OCKContactsListViewController.swift
[652/1201] Compiling CareKit OCKDetailedContactViewController.swift
[653/1201] Compiling CareKit OCKSimpleContactViewController.swift
[654/1201] Compiling CareKit OCKDetailViewController.swift
[655/1210] Compiling ModelsR4 CodeSystemGoalPriority.swift
[656/1210] Compiling ModelsR4 CodeSystemGoalRelationshipType.swift
[657/1210] Compiling ModelsR4 CodeSystemGoalStatusReason.swift
[658/1210] Compiling ModelsR4 CodeSystemGraphCompartmentRule.swift
[659/1210] Compiling ModelsR4 CodeSystemGraphCompartmentUse.swift
[660/1210] Compiling ModelsR4 CodeSystemGroupMeasure.swift
[661/1210] Compiling ModelsR4 CodeSystemGroupType.swift
[662/1210] Compiling ModelsR4 CodeSystemGuidanceResponseStatus.swift
[663/1210] Compiling ModelsR4 CodeSystemGuidePageGeneration.swift
[664/1210] Compiling ModelsR4 CodeSystemGuideParameterCode.swift
[665/1210] Compiling ModelsR4 CodeSystemHL7Workgroup.swift
[666/1210] Compiling ModelsR4 CodeSystemHTTPVerb.swift
[667/1210] Compiling ModelsR4 CodeSystemHandlingConditionSet.swift
[668/1210] Compiling ModelsR4 CodeSystemHumanNameAssemblyOrder.swift
[669/1210] Compiling ModelsR4 CodeSystemISO210892017HealthRecordLifecycleEvents.swift
[670/1210] Compiling ModelsR4 CodeSystemIdentifierUse.swift
[671/1210] Compiling ModelsR4 CodeSystemIdentityAssuranceLevel.swift
[672/1210] Compiling ModelsR4 CodeSystemImagingStudyStatus.swift
[673/1210] Compiling ModelsR4 CodeSystemImmunizationEvaluationDoseStatusCodes.swift
[674/1210] Compiling ModelsR4 CodeSystemImmunizationEvaluationDoseStatusReasonCodes.swift
[675/1210] Compiling ModelsR4 CodeSystemImmunizationFundingSource.swift
[676/1210] Compiling ModelsR4 CodeSystemImmunizationOriginCodes.swift
[677/1210] Compiling ModelsR4 CodeSystemImmunizationProgramEligibility.swift
[678/1210] Compiling ModelsR4 CodeSystemImmunizationRecommendationStatusCodes.swift
[679/1234] Compiling ModelsR4 CodeSystemExpressionLanguage.swift
[680/1234] Compiling ModelsR4 CodeSystemExtensionContextType.swift
[681/1234] Compiling ModelsR4 CodeSystemFHIRDefinedConceptProperties.swift
[682/1234] Compiling ModelsR4 CodeSystemFHIRDeviceStatus.swift
[683/1234] Compiling ModelsR4 CodeSystemFHIRDeviceStatusReason.swift
[684/1234] Compiling ModelsR4 CodeSystemFHIRRestfulInteractions.swift
[685/1234] Compiling ModelsR4 CodeSystemFHIRSubstanceStatus.swift
[686/1234] Compiling ModelsR4 CodeSystemFailureAction.swift
[687/1234] Compiling ModelsR4 CodeSystemFamilyHistoryAbsentReason.swift
[688/1234] Compiling ModelsR4 CodeSystemFamilyHistoryStatus.swift
[689/1234] Compiling ModelsR4 CodeSystemFeedingDeviceCodes.swift
[690/1234] Compiling ModelsR4 CodeSystemFilterOperator.swift
[691/1234] Compiling ModelsR4 CodeSystemFinancialResourceStatusCodes.swift
[692/1234] Compiling ModelsR4 CodeSystemFinancialTaskCodes.swift
[693/1234] Compiling ModelsR4 CodeSystemFinancialTaskInputTypeCodes.swift
[694/1234] Compiling ModelsR4 CodeSystemFlagCategory.swift
[695/1234] Compiling ModelsR4 CodeSystemFlagPriorityCodes.swift
[696/1234] Compiling ModelsR4 CodeSystemFlagStatus.swift
[697/1234] Compiling ModelsR4 CodeSystemGenderIdentity.swift
[698/1234] Compiling ModelsR4 CodeSystemGenderStatus.swift
[699/1234] Compiling ModelsR4 CodeSystemGoalAcceptanceStatus.swift
[700/1234] Compiling ModelsR4 CodeSystemGoalAchievementStatus.swift
[701/1234] Compiling ModelsR4 CodeSystemGoalCategory.swift
[702/1234] Compiling ModelsR4 CodeSystemGoalLifecycleStatus.swift
[703/1258] Compiling ModelsR4 CodeSystemImmunizationSubpotentReason.swift
[704/1258] Compiling ModelsR4 CodeSystemImplantStatus.swift
[705/1258] Compiling ModelsR4 CodeSystemIndicator.swift
[706/1258] Compiling ModelsR4 CodeSystemInterventionCodes.swift
[707/1258] Compiling ModelsR4 CodeSystemInvoicePriceComponentType.swift
[708/1258] Compiling ModelsR4 CodeSystemInvoiceStatus.swift
[709/1258] Compiling ModelsR4 CodeSystemIssueSeverity.swift
[710/1258] Compiling ModelsR4 CodeSystemIssueType.swift
[711/1258] Compiling ModelsR4 CodeSystemKnowledgeResourceType.swift
[712/1258] Compiling ModelsR4 CodeSystemLanguagePreferenceType.swift
[713/1258] Compiling ModelsR4 CodeSystemLibraryType.swift
[714/1258] Compiling ModelsR4 CodeSystemLinkType.swift
[715/1258] Compiling ModelsR4 CodeSystemLinkageType.swift
[716/1258] Compiling ModelsR4 CodeSystemListEmptyReasons.swift
[717/1258] Compiling ModelsR4 CodeSystemListMode.swift
[718/1258] Compiling ModelsR4 CodeSystemListOrderCodes.swift
[719/1258] Compiling ModelsR4 CodeSystemListStatus.swift
[720/1258] Compiling ModelsR4 CodeSystemLocationMode.swift
[721/1258] Compiling ModelsR4 CodeSystemLocationStatus.swift
[722/1258] Compiling ModelsR4 CodeSystemLocationType.swift
[723/1258] Compiling ModelsR4 CodeSystemMatchGrade.swift
[724/1258] Compiling ModelsR4 CodeSystemMaxOccurs.swift
[725/1258] Compiling ModelsR4 CodeSystemMeasureDataUsage.swift
[726/1258] Compiling ModelsR4 CodeSystemMeasureImprovementNotation.swift
[727/1282] Emitting module CareKit
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[728/1282] Compiling CareKit SimpleTaskView+Init.swift
[729/1282] Compiling CareKit OCKScheduleUtility.swift
[730/1282] Compiling CareKit OCKButtonLogTaskController.swift
[731/1282] Compiling CareKit OCKCalendarController.swift
[732/1282] Compiling CareKit OCKCalendarViewSynchronizerProtocol.swift
[733/1282] Compiling CareKit OCKCartesianChartController.swift
[734/1282] Compiling CareKit OCKChartController.swift
[735/1282] Compiling CareKit OCKChartViewSynchronizerProtocol.swift
[736/1282] Compiling CareKit OCKChecklistTaskController.swift
[737/1282] Compiling CareKit OCKContactController.swift
[738/1282] Compiling CareKit NSLayoutConstraint+Extensions.swift
[739/1282] Compiling CareKit OCKContact+Extensions.swift
[740/1282] Compiling CareKit OCKOutcomeValue+Extension.swift
[741/1282] Compiling CareKit UIViewController+Extensions.swift
[742/1282] Compiling CareKit OCKHeaderBodyView.swift
[743/1282] Compiling CareKit OCKListView.swift
[744/1282] Compiling CareKit OCKDailyPageViewController.swift
[745/1282] Compiling CareKit OCKDailyTasksPageViewController.swift
[746/1282] Compiling CareKit OCKListViewController.swift
[747/1282] Compiling CareKit SynchronizedViewController.swift
[748/1282] Compiling CareKit OCKContactViewSynchronizerProtocol.swift
[749/1282] Compiling CareKit OCKDetailedContactController.swift
[750/1282] Compiling CareKit OCKGridTaskController.swift
[751/1282] Compiling CareKit OCKInstructionsTaskController.swift
[752/1282] Compiling CareKit OCKLabeledValueTaskController.swift
[753/1282] Compiling CareKit OCKNumericProgressTaskController.swift
[754/1282] Compiling CareKit OCKSimpleContactController.swift
[755/1282] Compiling CareKit OCKSimpleTaskController.swift
[756/1282] Compiling CareKit OCKStoreNotifications.swift
[757/1282] Compiling CareKit OCKSynchronizedStoreManager.swift
[758/1282] Compiling CareKit OCKChecklistTaskViewController.swift
[759/1282] Compiling CareKit OCKGridTaskViewController.swift
[760/1282] Compiling CareKit OCKInstructionsTaskViewController.swift
[761/1282] Compiling CareKit OCKSimpleTaskViewController.swift
[762/1282] Compiling CareKit OCKSurveyTaskViewController.swift
[763/1282] Compiling CareKit OCKTaskViewController.swift
[764/1282] Compiling CareKit OCKContactUtility.swift
[765/1282] Compiling CareKit OCKWeekCalendarView+Updatable.swift
[766/1282] Compiling CareKit OCKCartesianChartView+Updatable.swift
[767/1282] Compiling CareKit OCKDetailedContactView+Updatable.swift
[768/1282] Compiling CareKit OCKSimpleContactView+Updatable.swift
[769/1282] Compiling CareKit OCKHeaderView+Updatable.swift
[770/1282] Compiling CareKit OCKChecklistTaskView+Updatable.swift
[771/1282] Compiling CareKit OCKGridTaskView+Updatable.swift
[772/1282] Compiling CareKit OCKInstructionsTaskView+Updatable.swift
[773/1282] Compiling CareKit OCKLogTaskView+Updatable.swift
[774/1282] Compiling CareKit OCKSimpleTaskView+Updatable.swift
[775/1282] Compiling CareKit Updatable.swift
[776/1282] Compiling CareKit resource_bundle_accessor.swift
[777/1282] Compiling ModelsR4 CodeSystemExpansionProcessingRule.swift
[778/1282] Compiling ModelsR4 CodeSystemExplanationOfBenefitStatus.swift
[779/1282] Compiling ModelsR4 CodeSystemExposureState.swift
[780/1282] Compiling ModelsR4 CodeSystemAdverseEventCausalityAssessment.swift
[781/1282] Compiling ModelsR4 CodeSystemAdverseEventCausalityMethod.swift
[782/1282] Compiling ModelsR4 CodeSystemAdverseEventOutcome.swift
[783/1282] Compiling ModelsR4 CodeSystemAdverseEventSeriousness.swift
[784/1282] Compiling ModelsR4 CodeSystemAdverseEventSeverity.swift
[785/1282] Compiling ModelsR4 CodeSystemAggregationMode.swift
[786/1282] Compiling ModelsR4 CodeSystemAllergyIntoleranceCategory.swift
[787/1282] Compiling ModelsR4 CodeSystemAllergyIntoleranceCertainty.swift
[788/1282] Compiling ModelsR4 CodeSystemAllergyIntoleranceClinicalStatusCodes.swift
[789/1282] Compiling ModelsR4 CodeSystemAllergyIntoleranceCriticality.swift
[790/1282] Compiling ModelsR4 CodeSystemAllergyIntoleranceSeverity.swift
[791/1282] Compiling ModelsR4 CodeSystemAllergyIntoleranceSubstanceExposureRisk.swift
[792/1282] Compiling ModelsR4 CodeSystemAllergyIntoleranceType.swift
[793/1282] Compiling ModelsR4 CodeSystemAllergyIntoleranceVerificationStatusCodes.swift
[794/1282] Compiling ModelsR4 CodeSystemAnimalSpecies.swift
[795/1282] Compiling ModelsR4 CodeSystemAppointmentStatus.swift
[796/1282] Compiling ModelsR4 CodeSystemAssertionDirectionType.swift
[797/1282] Compiling ModelsR4 CodeSystemAssertionOperatorType.swift
[798/1282] Compiling ModelsR4 CodeSystemAssertionResponseTypes.swift
[799/1282] Compiling ModelsR4 CodeSystemAuditEventAction.swift
[800/1282] Compiling ModelsR4 CodeSystemAuditEventID.swift
[801/1282] Compiling ModelsR4 CodeSystemBasicResourceTypes.swift
[802/1282] Compiling CareKit OCKGridTaskViewSynchronizer.swift
[803/1282] Compiling CareKit OCKInstructionsTaskViewSynchronizer.swift
[804/1282] Compiling CareKit OCKSimpleTaskViewSynchronizer.swift
[805/1282] Compiling CareKit OCKSurveyTaskViewSynchronizer.swift
[806/1282] Compiling CareKit OCKButtonLogViewController.swift
[807/1282] Compiling CareKit CareStoreFetchRequestController.swift
[808/1282] Compiling CareKit CareStoreFetchedResult+Extension.swift
[809/1282] Compiling CareKit CareStoreFetchedResult.swift
[810/1282] Compiling CareKit CareStoreFetchedResults.swift
[811/1282] Compiling CareKit OCKAnyReadOnlyEventStore+Progress.swift
[812/1282] Compiling CareKit OCKSynchronizationContext.swift
[813/1282] Compiling CareKit TemporalProgress.swift
[814/1282] Compiling CareKit TemporalTaskProgress.swift
[815/1282] Compiling CareKit InstructionsTaskView+Init.swift
[816/1282] Compiling CareKit OCKTaskEvents.swift
[847/1282] Compiling ModelsR4 CapabilityStatement.swift
[848/1282] Compiling ModelsR4 CarePlan.swift
[849/1282] Compiling ModelsR4 CareTeam.swift
[850/1282] Compiling ModelsR4 CatalogEntry.swift
[875/1282] Compiling ModelsR4 ChargeItem.swift
[876/1282] Compiling ModelsR4 ChargeItemDefinition.swift
[877/1282] Compiling ModelsR4 CodeSystemContractSubtypeCodes.swift
[878/1282] Compiling ModelsR4 CodeSystemContractTermSubtypeCodes.swift
[879/1282] Compiling ModelsR4 CodeSystemContractTermTypeCodes.swift
[880/1282] Compiling ModelsR4 CodeSystemContractTypeCodes.swift
[881/1282] Compiling ModelsR4 CodeSystemContributorType.swift
[882/1282] Compiling ModelsR4 CodeSystemCopyNumberEvent.swift
[883/1282] Compiling ModelsR4 CodeSystemCoverageClassCodes.swift
[884/1282] Compiling ModelsR4 CodeSystemCoverageCopayTypeCodes.swift
[885/1282] Compiling ModelsR4 CodeSystemCoverageEligibilityResponseAuthSupportCodes.swift
[886/1282] Compiling ModelsR4 CodeSystemCoverageSelfPayCodes.swift
[887/1282] Compiling ModelsR4 CodeSystemDataAbsentReason.swift
[888/1282] Compiling ModelsR4 CodeSystemDataType.swift
[889/1282] Compiling ModelsR4 CodeSystemDaysOfWeek.swift
[890/1282] Compiling ModelsR4 CodeSystemDefinitionResourceType.swift
[891/1282] Compiling ModelsR4 CodeSystemDefinitionStatus.swift
[892/1282] Compiling ModelsR4 CodeSystemDefinitionTopic.swift
[893/1282] Compiling ModelsR4 CodeSystemDefinitionUseCodes.swift
[894/1282] Compiling ModelsR4 CodeSystemDetectedIssueSeverity.swift
[895/1282] Compiling ModelsR4 CodeSystemDeviceDefinitionParameterGroup.swift
[896/1282] Compiling ModelsR4 CodeSystemDeviceMetricCalibrationState.swift
[897/1282] Compiling ModelsR4 CodeSystemDeviceMetricCalibrationType.swift
[898/1282] Compiling ModelsR4 CodeSystemDeviceMetricCategory.swift
[899/1282] Compiling ModelsR4 CodeSystemDeviceMetricColor.swift
[900/1282] Compiling CareKit Calendar+Extensions.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[901/1282] Compiling CareKit LinearCareTaskProgress+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[902/1282] Compiling CareKit Number+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[903/1282] Compiling CareKit OCKAnyContact+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[904/1282] Compiling CareKit OCKAnyEvent+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[905/1282] Compiling CareKit OCKAnyEventStore+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[906/1282] Compiling CareKit OCKAnyStoreProtocol+Environment.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[907/1282] Compiling CareKit UIImage+Asset.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[908/1282] Compiling CareKit OCKLog.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[909/1282] Compiling CareKit CareStoreFetchRequest.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
[910/1282] Compiling CareKit ViewSynchronizing.swift
[911/1282] Compiling CareKit LabeledValueTaskView+Init.swift
[912/1282] Compiling CareKit NumericProgressTaskView+Init.swift
[913/1282] Compiling CareKit OCKButtonLogTaskViewSynchronizer.swift
[914/1282] Compiling CareKit OCKChecklistTaskViewSynchronizer.swift
[920/1282] Compiling CareKit OCKTaskController.swift
[921/1282] Compiling CareKit OCKTaskViewSynchronizerProtocol.swift
[922/1282] Compiling CareKit OCKWeekCalendarController.swift
[923/1282] Compiling CareKit OCKWeekCalendarPageViewController.swift
[924/1282] Compiling CareKit OCKWeekCalendarViewSynchronizer.swift
[925/1282] Compiling CareKit OCKCalendarViewController.swift
[926/1282] Compiling CareKit OCKWeekCalendarViewController.swift
[927/1282] Compiling CareKit OCKCartesianChartViewSynchronizer.swift
[928/1282] Compiling CareKit OCKCartesianChartViewController.swift
[929/1282] Compiling CareKit OCKChartViewController.swift
[940/1282] Compiling ModelsR4 CodeSystemOrientationType.swift
[941/1282] Compiling ModelsR4 CodeSystemParticipantRequired.swift
[942/1282] Compiling ModelsR4 CodeSystemParticipantType.swift
[943/1282] Compiling ModelsR4 CodeSystemParticipationStatus.swift
[944/1282] Compiling ModelsR4 CodeSystemPayeeResourceType.swift
[945/1282] Compiling ModelsR4 CodeSystemPaymentAdjustmentReasonCodes.swift
[946/1282] Compiling ModelsR4 CodeSystemPaymentStatusCodes.swift
[947/1282] Compiling ModelsR4 CodeSystemPaymentTypeCodes.swift
[948/1282] Compiling ModelsR4 CodeSystemPerformerRoleCodes.swift
[949/1282] Compiling ModelsR4 CodeSystemPlanDefinitionType.swift
[950/1282] Compiling ModelsR4 CodeSystemPractitionerRoleCodes.swift
[951/1282] Compiling ModelsR4 CodeSystemPractitionerSpecialty.swift
[952/1282] Compiling ModelsR4 CodeSystemPrecisionEstimateType.swift
[953/1282] Compiling ModelsR4 CodeSystemPrimarySourceType.swift
[954/1282] Compiling ModelsR4 CodeSystemProcedureDeviceActionCodes.swift
[955/1282] Compiling ModelsR4 CodeSystemProcedureProgressStatusCodes.swift
[956/1282] Compiling ModelsR4 CodeSystemProcessPriorityCodes.swift
[957/1282] Compiling ModelsR4 CodeSystemPropertyRepresentation.swift
[958/1282] Compiling ModelsR4 CodeSystemPropertyType.swift
[959/1282] Compiling ModelsR4 CodeSystemProvenanceEntityRole.swift
[960/1282] Compiling ModelsR4 CodeSystemProvenanceParticipantRole.swift
[961/1282] Compiling ModelsR4 CodeSystemProvenanceParticipantType.swift
[962/1282] Compiling ModelsR4 CodeSystemPublicationStatus.swift
[963/1282] Compiling ModelsR4 CodeSystemPushTypeAvailable.swift
[964/1282] Compiling ModelsR4 CodeSystemMeasurePopulationType.swift
[965/1282] Compiling ModelsR4 CodeSystemMeasureReportStatus.swift
[966/1282] Compiling ModelsR4 CodeSystemMeasureReportType.swift
[967/1282] Compiling ModelsR4 CodeSystemMeasureScoring.swift
[968/1282] Compiling ModelsR4 CodeSystemMeasureType.swift
[969/1282] Compiling ModelsR4 CodeSystemMediaModality.swift
[970/1282] Compiling ModelsR4 CodeSystemMediaType.swift
[971/1282] Compiling ModelsR4 CodeSystemMedicationAdministrationCategoryCodes.swift
[972/1282] Compiling ModelsR4 CodeSystemMedicationAdministrationPerformerFunctionCodes.swift
[973/1282] Compiling ModelsR4 CodeSystemMedicationAdministrationStatusCodes.swift
[974/1282] Compiling ModelsR4 CodeSystemMedicationDispenseCategoryCodes.swift
[975/1282] Compiling ModelsR4 CodeSystemMedicationDispensePerformerFunctionCodes.swift
[976/1282] Compiling ModelsR4 CodeSystemMedicationDispenseStatusCodes.swift
[977/1282] Compiling ModelsR4 CodeSystemMedicationDispenseStatusReasonCodes.swift
[978/1282] Compiling ModelsR4 CodeSystemMedicationKnowledgeCharacteristicCodes.swift
[979/1282] Compiling ModelsR4 CodeSystemMedicationKnowledgePackageTypeCodes.swift
[980/1282] Compiling ModelsR4 CodeSystemMedicationKnowledgeStatusCodes.swift
[981/1282] Compiling ModelsR4 CodeSystemMedicationRequestCategoryCodes.swift
[982/1282] Compiling ModelsR4 CodeSystemMedicationRequestCourseOfTherapyCodes.swift
[983/1282] Compiling ModelsR4 CodeSystemMedicationRequestIntent.swift
[984/1282] Compiling ModelsR4 CodeSystemMedicationRequestStatusReasonCodes.swift
[985/1282] Compiling ModelsR4 CodeSystemMedicationStatementCategoryCodes.swift
[986/1282] Compiling ModelsR4 CodeSystemMedicationStatementStatusCodes.swift
[987/1282] Compiling ModelsR4 CodeSystemMedicationStatusCodes.swift
[988/1330] Compiling ModelsR4 CodeSystemMedicationrequestStatus.swift
[989/1330] Compiling ModelsR4 CodeSystemMessageSignificanceCategory.swift
[990/1330] Compiling ModelsR4 CodeSystemMessageTransport.swift
[991/1330] Compiling ModelsR4 CodeSystemMessageheaderResponseRequest.swift
[992/1330] Compiling ModelsR4 CodeSystemMissingToothReasonCodes.swift
[993/1330] Compiling ModelsR4 CodeSystemModifierTypeCodes.swift
[994/1330] Compiling ModelsR4 CodeSystemNHINPurposeOfUse.swift
[995/1330] Compiling ModelsR4 CodeSystemNameUse.swift
[996/1330] Compiling ModelsR4 CodeSystemNamingSystemIdentifierType.swift
[997/1330] Compiling ModelsR4 CodeSystemNamingSystemType.swift
[998/1330] Compiling ModelsR4 CodeSystemNarrativeStatus.swift
[999/1330] Compiling ModelsR4 CodeSystemNeed.swift
[1000/1330] Compiling ModelsR4 CodeSystemNetworkTypeCodes.swift
[1001/1330] Compiling ModelsR4 CodeSystemNoteType.swift
[1002/1330] Compiling ModelsR4 CodeSystemObservationCategoryCodes.swift
[1003/1330] Compiling ModelsR4 CodeSystemObservationDataType.swift
[1004/1330] Compiling ModelsR4 CodeSystemObservationRangeCategory.swift
[1005/1330] Compiling ModelsR4 CodeSystemObservationReferenceRangeMeaningCodes.swift
[1006/1330] Compiling ModelsR4 CodeSystemObservationStatus.swift
[1007/1330] Compiling ModelsR4 CodeSystemOperationKind.swift
[1008/1330] Compiling ModelsR4 CodeSystemOperationOutcomeCodes.swift
[1009/1330] Compiling ModelsR4 CodeSystemOperationParameterUse.swift
[1010/1330] Compiling ModelsR4 CodeSystemOrganizationAffiliationRole.swift
[1011/1330] Compiling ModelsR4 CodeSystemOrganizationType.swift
[1012/1354] Compiling ModelsR4 CodeSystemSpecialArrangements.swift
[1013/1354] Compiling ModelsR4 CodeSystemSpecialValues.swift
[1014/1354] Compiling ModelsR4 CodeSystemSpecimenContainedPreference.swift
[1015/1354] Compiling ModelsR4 CodeSystemSpecimenStatus.swift
[1016/1354] Compiling ModelsR4 CodeSystemStandardsStatus.swift
[1017/1354] Compiling ModelsR4 CodeSystemStatus.swift
[1018/1354] Compiling ModelsR4 CodeSystemStrandType.swift
[1019/1354] Compiling ModelsR4 CodeSystemStrengthOfRecommendationRating.swift
[1020/1354] Compiling ModelsR4 CodeSystemStructureDefinitionKind.swift
[1021/1354] Compiling ModelsR4 CodeSystemStructureMapContextType.swift
[1022/1354] Compiling ModelsR4 CodeSystemStructureMapGroupTypeMode.swift
[1023/1354] Compiling ModelsR4 CodeSystemStructureMapInputMode.swift
[1024/1354] Compiling ModelsR4 CodeSystemStructureMapModelMode.swift
[1025/1354] Compiling ModelsR4 CodeSystemStructureMapSourceListMode.swift
[1026/1354] Compiling ModelsR4 CodeSystemStructureMapTargetListMode.swift
[1027/1354] Compiling ModelsR4 CodeSystemStructureMapTransform.swift
[1028/1354] Compiling ModelsR4 CodeSystemStudyType.swift
[1029/1354] Compiling ModelsR4 CodeSystemSubscriberRelationshipCodes.swift
[1030/1354] Compiling ModelsR4 CodeSystemSubscriptionChannelType.swift
[1031/1354] Compiling ModelsR4 CodeSystemSubscriptionStatus.swift
[1032/1354] Compiling ModelsR4 CodeSystemSubscriptionTag.swift
[1033/1354] Compiling ModelsR4 CodeSystemSubstanceCategoryCodes.swift
[1034/1354] Compiling ModelsR4 CodeSystemSupplyDeliveryStatus.swift
[1035/1354] Compiling ModelsR4 CodeSystemSupplyItemType.swift
[1036/1378] Compiling ModelsR4 CodeSystemQualityOfEvidenceRating.swift
[1037/1378] Compiling ModelsR4 CodeSystemQualityType.swift
[1038/1378] Compiling ModelsR4 CodeSystemQuantityComparator.swift
[1039/1378] Compiling ModelsR4 CodeSystemQuestionnaireItemOperator.swift
[1040/1378] Compiling ModelsR4 CodeSystemQuestionnaireItemType.swift
[1041/1378] Compiling ModelsR4 CodeSystemQuestionnaireItemUIControlCodes.swift
[1042/1378] Compiling ModelsR4 CodeSystemQuestionnaireItemUsageMode.swift
[1043/1378] Compiling ModelsR4 CodeSystemQuestionnaireResponseStatus.swift
[1044/1378] Compiling ModelsR4 CodeSystemQuestionnaireTextCategories.swift
[1045/1378] Compiling ModelsR4 CodeSystemReasonMedicationGivenCodes.swift
[1046/1378] Compiling ModelsR4 CodeSystemReferenceHandlingPolicy.swift
[1047/1378] Compiling ModelsR4 CodeSystemReferenceVersionRules.swift
[1048/1378] Compiling ModelsR4 CodeSystemReferralMethod.swift
[1049/1378] Compiling ModelsR4 CodeSystemRejectionCriterion.swift
[1050/1378] Compiling ModelsR4 CodeSystemRelatedArtifactType.swift
[1051/1378] Compiling ModelsR4 CodeSystemRepositoryType.swift
[1052/1378] Compiling ModelsR4 CodeSystemRequestIntent.swift
[1053/1378] Compiling ModelsR4 CodeSystemRequestPriority.swift
[1054/1378] Compiling ModelsR4 CodeSystemRequestResourceType.swift
[1055/1378] Compiling ModelsR4 CodeSystemRequestStatus.swift
[1056/1378] Compiling ModelsR4 CodeSystemResearchElementType.swift
[1057/1378] Compiling ModelsR4 CodeSystemResearchStudyObjectiveType.swift
[1058/1378] Compiling ModelsR4 CodeSystemResearchStudyPhase.swift
[1059/1378] Compiling ModelsR4 CodeSystemResearchStudyPrimaryPurposeType.swift
[1084/1402] Compiling ModelsR4 CodeSystemResearchStudyReasonStopped.swift
[1085/1402] Compiling ModelsR4 CodeSystemResearchStudyStatus.swift
[1086/1402] Compiling ModelsR4 CodeSystemResearchSubjectStatus.swift
[1087/1402] Compiling ModelsR4 CodeSystemResourceSecurityCategory.swift
[1088/1402] Compiling ModelsR4 CodeSystemResourceType.swift
[1089/1402] Compiling ModelsR4 CodeSystemResourceValidationMode.swift
[1090/1402] Compiling ModelsR4 CodeSystemResourceVersionPolicy.swift
[1091/1402] Compiling ModelsR4 CodeSystemResponseType.swift
[1092/1402] Compiling ModelsR4 CodeSystemRestfulCapabilityMode.swift
[1093/1402] Compiling ModelsR4 CodeSystemRestfulSecurityService.swift
[1094/1402] Compiling ModelsR4 CodeSystemRiskEstimateType.swift
[1095/1402] Compiling ModelsR4 CodeSystemRiskProbability.swift
[1096/1402] Compiling ModelsR4 CodeSystemSNOMEDCTReasonMedicationNotGivenCodes.swift
[1097/1402] Compiling ModelsR4 CodeSystemSearchComparator.swift
[1098/1402] Compiling ModelsR4 CodeSystemSearchEntryMode.swift
[1099/1402] Compiling ModelsR4 CodeSystemSearchModifierCode.swift
[1100/1402] Compiling ModelsR4 CodeSystemSearchParamType.swift
[1101/1402] Compiling ModelsR4 CodeSystemSequenceStatus.swift
[1102/1402] Compiling ModelsR4 CodeSystemSequenceType.swift
[1103/1402] Compiling ModelsR4 CodeSystemServiceProvisionConditions.swift
[1104/1402] Compiling ModelsR4 CodeSystemSlicingRules.swift
[1105/1402] Compiling ModelsR4 CodeSystemSlotStatus.swift
[1106/1402] Compiling ModelsR4 CodeSystemSmartCapabilities.swift
[1107/1402] Compiling ModelsR4 CodeSystemSortDirection.swift
[1108/1426] Compiling ModelsR4 CodeSystemSupplyRequestReason.swift
[1109/1426] Compiling ModelsR4 CodeSystemSupplyRequestStatus.swift
[1110/1426] Compiling ModelsR4 CodeSystemSupplyType.swift
[1111/1426] Compiling ModelsR4 CodeSystemSurfaceCodes.swift
[1112/1426] Compiling ModelsR4 CodeSystemSynthesisType.swift
[1113/1426] Compiling ModelsR4 CodeSystemTaskCode.swift
[1114/1426] Compiling ModelsR4 CodeSystemTaskIntent.swift
[1115/1426] Compiling ModelsR4 CodeSystemTaskStatus.swift
[1116/1426] Compiling ModelsR4 CodeSystemTemplateStatusCodeLifeCycle.swift
[1117/1426] Compiling ModelsR4 CodeSystemTestReportActionResult.swift
[1118/1426] Compiling ModelsR4 CodeSystemTestReportParticipantType.swift
[1119/1426] Compiling ModelsR4 CodeSystemTestReportResult.swift
[1120/1426] Compiling ModelsR4 CodeSystemTestReportStatus.swift
[1121/1426] Compiling ModelsR4 CodeSystemTestScriptOperationCode.swift
[1122/1426] Compiling ModelsR4 CodeSystemTestScriptProfileDestinationType.swift
[1123/1426] Compiling ModelsR4 CodeSystemTestScriptProfileOriginType.swift
[1124/1426] Compiling ModelsR4 CodeSystemTestScriptRequestMethodCode.swift
[1125/1426] Compiling ModelsR4 CodeSystemTransactionMode.swift
[1126/1426] Compiling ModelsR4 CodeSystemTriggerType.swift
[1127/1426] Compiling ModelsR4 CodeSystemTypeDerivationRule.swift
[1128/1426] Compiling ModelsR4 CodeSystemUDICodes.swift
[1129/1426] Compiling ModelsR4 CodeSystemUDIEntryType.swift
[1130/1426] Compiling ModelsR4 CodeSystemUnitTypeCodes.swift
[1131/1426] Compiling ModelsR4 CodeSystemUnknownContentCode.swift
[1181/1450] Emitting module ModelsR4
[1379/1570] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1380/1570] Compiling ModelsR4 CodeSystemUse.swift
[1381/1570] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1382/1570] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1383/1570] Compiling ModelsR4 CodeSystemValidationType.swift
[1384/1570] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1385/1570] Compiling ModelsR4 CodeSystemVisionBase.swift
[1386/1570] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1387/1570] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1388/1570] Compiling ModelsR4 CodeableConcept.swift
[1389/1570] Compiling ModelsR4 Coding.swift
[1390/1570] Compiling ModelsR4 Communication.swift
[1391/1570] Compiling ModelsR4 CommunicationRequest.swift
[1392/1570] Compiling ModelsR4 CompartmentDefinition.swift
[1393/1570] Compiling ModelsR4 Composition.swift
[1394/1570] Compiling ModelsR4 ConceptMap.swift
[1395/1570] Compiling ModelsR4 Condition.swift
[1396/1570] Compiling ModelsR4 Consent.swift
[1397/1570] Compiling ModelsR4 ContactDetail.swift
[1398/1570] Compiling ModelsR4 ContactPoint.swift
[1399/1570] Compiling ModelsR4 Contract.swift
[1400/1570] Compiling ModelsR4 Contributor.swift
[1401/1570] Compiling ModelsR4 Count.swift
[1402/1570] Compiling ModelsR4 Coverage.swift
[1403/1570] Compiling ModelsR4 Endpoint.swift
[1404/1570] Compiling ModelsR4 EnrollmentRequest.swift
[1405/1570] Compiling ModelsR4 EnrollmentResponse.swift
[1406/1570] Compiling ModelsR4 EpisodeOfCare.swift
[1407/1570] Compiling ModelsR4 EventDefinition.swift
[1408/1570] Compiling ModelsR4 Evidence.swift
[1409/1570] Compiling ModelsR4 EvidenceVariable.swift
[1410/1570] Compiling ModelsR4 ExampleScenario.swift
[1411/1570] Compiling ModelsR4 ExplanationOfBenefit.swift
[1412/1570] Compiling ModelsR4 Expression.swift
[1413/1570] Compiling ModelsR4 Extension.swift
[1414/1570] Compiling ModelsR4 FHIRAbstractResource.swift
[1415/1570] Compiling ModelsR4 FHIRBool.swift
[1416/1570] Compiling ModelsR4 FHIRDate+NSDate.swift
[1417/1570] Compiling ModelsR4 FHIRDate.swift
[1418/1570] Compiling ModelsR4 FHIRDecimal.swift
[1419/1570] Compiling ModelsR4 FHIRInteger.swift
[1420/1570] Compiling ModelsR4 FHIRPositiveInteger.swift
[1421/1570] Compiling ModelsR4 FHIRPrimitive.swift
[1422/1570] Compiling ModelsR4 FHIRString.swift
[1423/1570] Compiling ModelsR4 FHIRTime+NSDate.swift
[1424/1570] Compiling ModelsR4 FHIRTime.swift
[1425/1570] Compiling ModelsR4 FHIRURI.swift
[1426/1570] Compiling ModelsR4 FHIRUnsignedInteger.swift
[1427/1570] Compiling ModelsR4 NamingSystem.swift
[1428/1570] Compiling ModelsR4 Narrative.swift
[1429/1570] Compiling ModelsR4 NutritionOrder.swift
[1430/1570] Compiling ModelsR4 Observation.swift
[1431/1570] Compiling ModelsR4 ObservationDefinition.swift
[1432/1570] Compiling ModelsR4 OperationDefinition.swift
[1433/1570] Compiling ModelsR4 OperationOutcome.swift
[1434/1570] Compiling ModelsR4 Organization.swift
[1435/1570] Compiling ModelsR4 OrganizationAffiliation.swift
[1436/1570] Compiling ModelsR4 ParameterDefinition.swift
[1437/1570] Compiling ModelsR4 Parameters.swift
[1438/1570] Compiling ModelsR4 Patient.swift
[1439/1570] Compiling ModelsR4 PaymentNotice.swift
[1440/1570] Compiling ModelsR4 PaymentReconciliation.swift
[1441/1570] Compiling ModelsR4 Period.swift
[1442/1570] Compiling ModelsR4 Person.swift
[1443/1570] Compiling ModelsR4 PlanDefinition.swift
[1444/1570] Compiling ModelsR4 Population.swift
[1445/1570] Compiling ModelsR4 Practitioner.swift
[1446/1570] Compiling ModelsR4 PractitionerRole.swift
[1447/1570] Compiling ModelsR4 Procedure.swift
[1448/1570] Compiling ModelsR4 ProdCharacteristic.swift
[1449/1570] Compiling ModelsR4 ProductShelfLife.swift
[1450/1570] Compiling ModelsR4 Provenance.swift
[1451/1570] Compiling ModelsR4 Quantity.swift
[1452/1570] Compiling ModelsR4 Questionnaire.swift
[1453/1570] Compiling ModelsR4 QuestionnaireResponse.swift
[1454/1570] Compiling ModelsR4 Range.swift
[1455/1570] Compiling ModelsR4 Ratio.swift
[1456/1570] Compiling ModelsR4 Reference.swift
[1457/1570] Compiling ModelsR4 RelatedArtifact.swift
[1458/1570] Compiling ModelsR4 RelatedPerson.swift
[1459/1570] Compiling ModelsR4 RequestGroup.swift
[1460/1570] Compiling ModelsR4 ResearchDefinition.swift
[1461/1570] Compiling ModelsR4 ResearchElementDefinition.swift
[1462/1570] Compiling ModelsR4 ResearchStudy.swift
[1463/1570] Compiling ModelsR4 ResearchSubject.swift
[1464/1570] Compiling ModelsR4 Resource.swift
[1465/1570] Compiling ModelsR4 ResourceProxy.swift
[1466/1570] Compiling ModelsR4 RiskAssessment.swift
[1467/1570] Compiling ModelsR4 RiskEvidenceSynthesis.swift
[1468/1570] Compiling ModelsR4 SampledData.swift
[1469/1570] Compiling ModelsR4 Schedule.swift
[1470/1570] Compiling ModelsR4 SearchParameter.swift
[1471/1570] Compiling ModelsR4 ServiceRequest.swift
[1472/1570] Compiling ModelsR4 Signature.swift
[1473/1570] Compiling ModelsR4 Slot.swift
[1474/1570] Compiling ModelsR4 Specimen.swift
[1475/1570] Compiling ModelsR4 CoverageEligibilityRequest.swift
[1476/1570] Compiling ModelsR4 CoverageEligibilityResponse.swift
[1477/1570] Compiling ModelsR4 DataRequirement.swift
[1478/1570] Compiling ModelsR4 DateTime+NSDate.swift
[1479/1570] Compiling ModelsR4 DateTime.swift
[1480/1570] Compiling ModelsR4 DetectedIssue.swift
[1481/1570] Compiling ModelsR4 Device.swift
[1482/1570] Compiling ModelsR4 DeviceDefinition.swift
[1483/1570] Compiling ModelsR4 DeviceMetric.swift
[1484/1570] Compiling ModelsR4 DeviceRequest.swift
[1485/1570] Compiling ModelsR4 DeviceUseStatement.swift
[1486/1570] Compiling ModelsR4 DiagnosticReport.swift
[1487/1570] Compiling ModelsR4 Distance.swift
[1488/1570] Compiling ModelsR4 DocumentManifest.swift
[1489/1570] Compiling ModelsR4 DocumentReference.swift
[1490/1570] Compiling ModelsR4 DomainResource+Extensions.swift
[1491/1570] Compiling ModelsR4 DomainResource.swift
[1492/1570] Compiling ModelsR4 Dosage.swift
[1493/1570] Compiling ModelsR4 Duration.swift
[1494/1570] Compiling ModelsR4 EffectEvidenceSynthesis.swift
[1495/1570] Compiling ModelsR4 Element+Extensions.swift
[1496/1570] Compiling ModelsR4 Element.swift
[1497/1570] Compiling ModelsR4 ElementDefinition.swift
[1498/1570] Compiling ModelsR4 Encounter.swift
[1499/1570] Compiling ModelsR4 FamilyMemberHistory.swift
[1500/1570] Compiling ModelsR4 Flag.swift
[1501/1570] Compiling ModelsR4 Goal.swift
[1502/1570] Compiling ModelsR4 GraphDefinition.swift
[1503/1570] Compiling ModelsR4 Group.swift
[1504/1570] Compiling ModelsR4 GuidanceResponse.swift
[1505/1570] Compiling ModelsR4 HealthcareService.swift
[1506/1570] Compiling ModelsR4 HumanName.swift
[1507/1570] Compiling ModelsR4 Identifier.swift
[1508/1570] Compiling ModelsR4 ImagingStudy.swift
[1509/1570] Compiling ModelsR4 Immunization.swift
[1510/1570] Compiling ModelsR4 ImmunizationEvaluation.swift
[1511/1570] Compiling ModelsR4 ImmunizationRecommendation.swift
[1512/1570] Compiling ModelsR4 ImplementationGuide.swift
[1513/1570] Compiling ModelsR4 Instant+NSDate.swift
[1514/1570] Compiling ModelsR4 Instant.swift
[1515/1570] Compiling ModelsR4 InstantDate.swift
[1516/1570] Compiling ModelsR4 InsurancePlan.swift
[1517/1570] Compiling ModelsR4 Invoice.swift
[1518/1570] Compiling ModelsR4 Library.swift
[1519/1570] Compiling ModelsR4 Linkage.swift
[1520/1570] Compiling ModelsR4 List.swift
[1521/1570] Compiling ModelsR4 Location.swift
[1522/1570] Compiling ModelsR4 MarketingStatus.swift
[1523/1570] Compiling ModelsR4 Measure.swift
[1524/1570] Compiling ModelsR4 MeasureReport.swift
[1525/1570] Compiling ModelsR4 Media.swift
[1526/1570] Compiling ModelsR4 Medication.swift
[1527/1570] Compiling ModelsR4 MedicationAdministration.swift
[1528/1570] Compiling ModelsR4 MedicationDispense.swift
[1529/1570] Compiling ModelsR4 MedicationKnowledge.swift
[1530/1570] Compiling ModelsR4 MedicationRequest.swift
[1531/1570] Compiling ModelsR4 MedicationStatement.swift
[1532/1570] Compiling ModelsR4 MedicinalProduct.swift
[1533/1570] Compiling ModelsR4 MedicinalProductAuthorization.swift
[1534/1570] Compiling ModelsR4 MedicinalProductContraindication.swift
[1535/1570] Compiling ModelsR4 MedicinalProductIndication.swift
[1536/1570] Compiling ModelsR4 MedicinalProductIngredient.swift
[1537/1570] Compiling ModelsR4 MedicinalProductInteraction.swift
[1538/1570] Compiling ModelsR4 MedicinalProductManufactured.swift
[1539/1570] Compiling ModelsR4 MedicinalProductPackaged.swift
[1540/1570] Compiling ModelsR4 MedicinalProductPharmaceutical.swift
[1541/1570] Compiling ModelsR4 MedicinalProductUndesirableEffect.swift
[1542/1570] Compiling ModelsR4 MessageDefinition.swift
[1543/1570] Compiling ModelsR4 MessageHeader.swift
[1544/1570] Compiling ModelsR4 Meta.swift
[1545/1570] Compiling ModelsR4 MolecularSequence.swift
[1546/1570] Compiling ModelsR4 Money.swift
[1547/1570] Compiling ModelsR4 SpecimenDefinition.swift
[1548/1570] Compiling ModelsR4 StructureDefinition.swift
[1549/1570] Compiling ModelsR4 StructureMap.swift
[1550/1570] Compiling ModelsR4 Subscription.swift
[1551/1570] Compiling ModelsR4 Substance.swift
[1552/1570] Compiling ModelsR4 SubstanceAmount.swift
[1553/1570] Compiling ModelsR4 SubstanceNucleicAcid.swift
[1554/1570] Compiling ModelsR4 SubstancePolymer.swift
[1555/1570] Compiling ModelsR4 SubstanceProtein.swift
[1556/1570] Compiling ModelsR4 SubstanceReferenceInformation.swift
[1557/1570] Compiling ModelsR4 SubstanceSourceMaterial.swift
[1558/1570] Compiling ModelsR4 SubstanceSpecification.swift
[1559/1570] Compiling ModelsR4 SupplyDelivery.swift
[1560/1570] Compiling ModelsR4 SupplyRequest.swift
[1561/1570] Compiling ModelsR4 Task.swift
[1562/1570] Compiling ModelsR4 TerminologyCapabilities.swift
[1563/1570] Compiling ModelsR4 TestReport.swift
[1564/1570] Compiling ModelsR4 TestScript.swift
[1565/1570] Compiling ModelsR4 Timing.swift
[1566/1570] Compiling ModelsR4 TriggerDefinition.swift
[1567/1570] Compiling ModelsR4 UsageContext.swift
[1568/1570] Compiling ModelsR4 ValueSet.swift
[1569/1570] Compiling ModelsR4 VerificationResult.swift
[1570/1570] Compiling ModelsR4 VisionPrescription.swift
[1571/1585] Compiling CareKitFHIR OCKDSTU2MedicationOrderCoder.swift
[1572/1585] Compiling CareKitFHIR OCKDSTU2CarePlanActivityCoder.swift
[1573/1585] Compiling CareKitFHIR OCKDSTU2ScheduleCoder.swift
[1574/1586] Compiling CareKitFHIR OCKR4PatientCoder.swift
[1575/1586] Compiling CareKitFHIR OCKFHIRResourceCoder.swift
[1576/1586] Compiling CareKitFHIR OCKFHIRResourceData.swift
[1577/1586] Compiling CareKitFHIR OCKFHIRRelease.swift
[1578/1586] Compiling CareKitFHIR OCKFHIRResource.swift
[1579/1586] Compiling CareKitFHIR OCKDSTU2PatientCoder.swift
[1580/1586] Compiling CareKitFHIR OCKPatientConverterTraits.swift
[1581/1586] Compiling CareKitFHIR OCKFHIRCodingError.swift
[1582/1586] Compiling CareKitFHIR OCKFHIRContentType.swift
[1583/1586] Emitting module CareKitFHIR
[1584/1586] Compiling CareKitFHIR FHIRModels+Extensions.swift
[1585/1586] Compiling CareKitFHIR OCK+FHIRExtensions.swift
[1586/1586] Compiling CareKitFHIR OCKTaskConverterTraits.swift
Build complete! (28.88s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "fhirmodels",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.7.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/FHIRModels.git"
    },
    {
      "identity" : "swift-async-algorithms",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.4",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-async-algorithms"
    }
  ],
  "manifest_display_name" : "CareKit",
  "name" : "CareKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "18.0"
    },
    {
      "name" : "macos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "CareKit",
      "targets" : [
        "CareKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CareKitUI",
      "targets" : [
        "CareKitUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CareKitStore",
      "targets" : [
        "CareKitStore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CareKitFHIR",
      "targets" : [
        "CareKitFHIR"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CareKitUITests",
      "module_type" : "SwiftTarget",
      "name" : "CareKitUITests",
      "path" : "CareKitUI/CareKitUITests",
      "sources" : [
        "Link/TestLinkType.swift",
        "Link/TestLinkView.swift",
        "OCKResponsiveLayoutTests.swift",
        "Task/TestGridTaskView.swift",
        "Task/TestNumericProgressTaskView.swift",
        "TestColorExtension.swift",
        "TestStylableView.swift"
      ],
      "target_dependencies" : [
        "CareKitUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CareKitUI",
      "module_type" : "SwiftTarget",
      "name" : "CareKitUI",
      "path" : "CareKitUI/CareKitUI",
      "product_memberships" : [
        "CareKit",
        "CareKitUI"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Localization/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Localization/en.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "Shared/AccessibleStack.swift",
        "Shared/BackwardsCompatibility.swift",
        "Shared/Components/CardView.swift",
        "Shared/Components/CircularCompletionView.swift",
        "Shared/Components/HeaderView.swift",
        "Shared/Components/RectangularCompletionView.swift",
        "Shared/Extensions/Number+Extensions.swift",
        "Shared/Extensions/OCKStyler+Extension.swift",
        "Shared/Extensions/Text+Extension.swift",
        "Shared/Extensions/UIColor+Extension.swift",
        "Shared/Extensions/View+Extension.swift",
        "Shared/Localization/OCKLocalization.swift",
        "Shared/NoHighlightStyle.swift",
        "Shared/OCKLog.swift",
        "Shared/OSValue.swift",
        "Shared/Style/OCKAnimationStyler.swift",
        "Shared/Style/OCKAppearanceStyler.swift",
        "Shared/Style/OCKColorStyler.swift",
        "Shared/Style/OCKDimensionStyler.swift",
        "Shared/Style/OCKStyler.swift",
        "Shared/Task/InstructionsTaskView.swift",
        "Shared/Task/SimpleTaskView.swift",
        "iOS/Calendar/OCKCalendarDisplayable.swift",
        "iOS/Calendar/OCKWeekCalendarView.swift",
        "iOS/Calendar/Ring/OCKCompletionRingButton.swift",
        "iOS/Calendar/Ring/OCKCompletionRingView.swift",
        "iOS/Calendar/Ring/OCKCompletionState.swift",
        "iOS/Calendar/Ring/OCKRingView.swift",
        "iOS/Charts/Gradient Plots/OCKBarPlotView.swift",
        "iOS/Charts/Gradient Plots/OCKGradientPlotView.swift",
        "iOS/Charts/Gradient Plots/OCKLinePlotView.swift",
        "iOS/Charts/Gradient Plots/OCKScatterPlotView.swift",
        "iOS/Charts/Layers/OCKBarLayer.swift",
        "iOS/Charts/Layers/OCKCartesianCoordinatesLayer.swift",
        "iOS/Charts/Layers/OCKGridLayer.swift",
        "iOS/Charts/Layers/OCKLineLayer.swift",
        "iOS/Charts/Layers/OCKScatterLayer.swift",
        "iOS/Charts/OCKCartesianChartView.swift",
        "iOS/Charts/OCKCartesianGraphView.swift",
        "iOS/Charts/OCKDataSeries.swift",
        "iOS/Charts/OCKGraphAxisView.swift",
        "iOS/Charts/OCKGraphLegendView.swift",
        "iOS/Charts/OCKGridView.swift",
        "iOS/Charts/Protocols/OCKChartDisplayable.swift",
        "iOS/Charts/Protocols/OCKGraphable.swift",
        "iOS/Contact/OCKAddressButton.swift",
        "iOS/Contact/OCKContactButton.swift",
        "iOS/Contact/OCKContactDisplayable.swift",
        "iOS/Contact/OCKDetailedContactView.swift",
        "iOS/Contact/OCKSimpleContactView.swift",
        "iOS/Controls/OCKAnimatedButton.swift",
        "iOS/Controls/OCKCheckmarkButton.swift",
        "iOS/Controls/OCKLabeledButton.swift",
        "iOS/Detail View/OCKDetailView.swift",
        "iOS/Detail View/OCKDetailedImageView.swift",
        "iOS/Extensions/CATransaction+Extension.swift",
        "iOS/Extensions/Calendar+Extensions.swift",
        "iOS/Extensions/NSLayoutConstraint+Extensions.swift",
        "iOS/Extensions/UIFont+Extensions.swift",
        "iOS/Featured Content/OCKFeaturedContentView.swift",
        "iOS/Labels/OCKCappedSizeLabel.swift",
        "iOS/Labels/OCKLabel.swift",
        "iOS/Link/LinkButton.swift",
        "iOS/Link/LinkItem.swift",
        "iOS/Link/LinkLabel.swift",
        "iOS/Link/LinkView.swift",
        "iOS/Link/SafariView.swift",
        "iOS/OCKAccessibleValue.swift",
        "iOS/OCKCardable.swift",
        "iOS/OCKResponsiveLayout.swift",
        "iOS/Style/OCKStylable.swift",
        "iOS/Task/Buttons/OCKChecklistItemButton.swift",
        "iOS/Task/Buttons/OCKLabeledCheckmarkButton.swift",
        "iOS/Task/Buttons/OCKLogItemButton.swift",
        "iOS/Task/Collection/OCKGridTaskCell.swift",
        "iOS/Task/Collection/OCKLogButtonCell.swift",
        "iOS/Task/Collection/OCKSelfSizingCollectionView.swift",
        "iOS/Task/LabeledValueTaskView.swift",
        "iOS/Task/NumericProgressTaskView.swift",
        "iOS/Task/OCKButtonLogTaskView.swift",
        "iOS/Task/OCKChecklistTaskView.swift",
        "iOS/Task/OCKGridTaskView.swift",
        "iOS/Task/OCKInstructionsTaskView.swift",
        "iOS/Task/OCKLogTaskView.swift",
        "iOS/Task/OCKSimpleTaskView.swift",
        "iOS/Task/OCKTaskDisplayable.swift",
        "iOS/Views/OCKHeaderView.swift",
        "iOS/Views/OCKSeparatorView.swift",
        "iOS/Views/OCKStackView.swift",
        "iOS/Views/OCKView.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CareKitTests",
      "module_type" : "SwiftTarget",
      "name" : "CareKitTests",
      "path" : "CareKit/CareKitTests",
      "sources" : [
        "Calendar/TestCustomCalendarViewSynchronizer.swift",
        "Calendar/TestDailyProgress.swift",
        "Calendar/TestWeekCalendarViewSynchronizer.swift",
        "Chart/TestCartesianChartViewSynchronizer.swift",
        "Chart/TestCustomChartViewSynchronizer.swift",
        "Contact/TestContactListViewSynchronizer.swift",
        "Contact/TestCustomContactViewSynchronizer.swift",
        "Contact/TestDetailedContactViewSynchronizer.swift",
        "Contact/TestSimpleContactViewSynchronizer.swift",
        "Extensions/Array+Extension.swift",
        "Extensions/OCKSchedule+Extension.swift",
        "Extensions/XCTestCase+Extension.swift",
        "Higher Order/TestDailyTasksPageViewController.swift",
        "Higher Order/TestListView.swift",
        "Higher Order/TestWeekCalendarPageViewController.swift",
        "MockStore.swift",
        "Synchronization/TestCareStoreFetchRequestController.swift",
        "Synchronization/TestSynchronizedViewController.swift",
        "Task/OCKTask+Extension.swift",
        "Task/TestAnyEventExtensions.swift",
        "Task/TestButtonLogTaskViewSynchronizer.swift",
        "Task/TestChecklistViewSynchronizer.swift",
        "Task/TestCustomTaskViewSynchronizer.swift",
        "Task/TestGridTaskViewSynchronizer.swift",
        "Task/TestInstructionsTaskViewSynchronizer.swift",
        "Task/TestMockTaskEvents.swift",
        "Task/TestSimpleTaskViewSynchronizer.swift",
        "Task/TestTaskEvents.swift",
        "TestAnyEventStoreExtensions.swift",
        "TestContactExtension.swift",
        "TestScheduleUtility.swift"
      ],
      "target_dependencies" : [
        "CareKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CareKitStoreTests",
      "module_type" : "SwiftTarget",
      "name" : "CareKitStoreTests",
      "path" : "CareKitStore/CareKitStoreTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.0.sqlite",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.0.sqlite-shm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.0.sqlite-wal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.1.sqlite",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.1.sqlite-shm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.1.sqlite-wal",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CoreDataSchema/TestCoreDataSchema+Migrations.swift",
        "OCKHealthKitStore/TestHealthKitPassthroughStore+Events.swift",
        "OCKHealthKitStore/TestHealthKitPassthroughStore+Outcomes.swift",
        "OCKHealthKitStore/TestHealthKitStore+Tasks.swift",
        "OCKStore/TestStore+BuildRevisions.swift",
        "OCKStore/TestStore+CRDT.swift",
        "OCKStore/TestStore+CarePlans.swift",
        "OCKStore/TestStore+ConsumeRevisions.swift",
        "OCKStore/TestStore+Contacts.swift",
        "OCKStore/TestStore+EventsStream.swift",
        "OCKStore/TestStore+Notes.swift",
        "OCKStore/TestStore+Outcomes.swift",
        "OCKStore/TestStore+Patients.swift",
        "OCKStore/TestStore+ResolveConflicts.swift",
        "OCKStore/TestStore+Sync.swift",
        "OCKStore/TestStore+Tasks.swift",
        "OCKStore/TestStore+TasksStream.swift",
        "OCKStore/TestStore.swift",
        "OCKStoreCoordinator/TestPersistentStoreCoordinator.swift",
        "OCKStoreCoordinator/TestStoreCoordinator+EventStream.swift",
        "OCKUtilitiesTests.swift",
        "Shared/Extensions/Collection+Extension.swift",
        "Shared/Extensions/XCTestCase+Utilities.swift",
        "Streaming/TestCoreDataQueryMonitor.swift",
        "Structs/TestCarePlan.swift",
        "Structs/TestContact.swift",
        "Structs/TestEvent.swift",
        "Structs/TestHealthKitLinkage.swift",
        "Structs/TestKnowledgeVector.swift",
        "Structs/TestOutcome.swift",
        "Structs/TestOutcomeValue.swift",
        "Structs/TestPatient.swift",
        "Structs/TestPostalAddress.swift",
        "Structs/TestSchedule.swift",
        "Structs/TestScheduleElement.swift",
        "Structs/TestScheduleEvent.swift",
        "Structs/TestSemanticVersion.swift",
        "Structs/TestTask.swift",
        "TaskProgress/CareTaskProgressTestUtils.swift",
        "TaskProgress/TestAggregatedCareTaskProgress.swift",
        "TaskProgress/TestBinaryCareTaskProgress.swift",
        "TaskProgress/TestCareTaskProgress.swift",
        "TaskProgress/TestCheckingOutcomeExistsProgressStrategy.swift",
        "TaskProgress/TestCustomCareTaskProgressStrategy.swift",
        "TaskProgress/TestLinearCareTaskProgress.swift",
        "TaskProgress/TestSummingOutcomeValuesProgressStrategy.swift",
        "TestPartialEvents.swift",
        "TestStoreProtocolExtensions.swift",
        "TestWatchConnectivityPeer.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "CareKitStore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CareKitStore",
      "module_type" : "SwiftTarget",
      "name" : "CareKitStore",
      "path" : "CareKitStore/CareKitStore",
      "product_dependencies" : [
        "AsyncAlgorithms"
      ],
      "product_memberships" : [
        "CareKit",
        "CareKitStore",
        "CareKitFHIR"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/CareKitStore.xcdatamodeld",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/Migrations/2_0To2_1/2.0_2.1_Mapping.xcmappingmodel",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/Migrations/2_0To3_0/2.0_3.0_Mapping.xcmappingmodel",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/Migrations/2_1To3_0/2.1_3.0_Mapping.xcmappingmodel",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CoreData/Migrations/2_0To2_1/OCKStoreMigration2_0To2_1Policy.swift",
        "CoreData/Migrations/2_0To3_0/OCKStoreMigration2_0To3_0Policy.swift",
        "CoreData/Migrations/2_1To3_0/OCKStoreMigration2_1To3_0Policy.swift",
        "CoreData/OCKCDCarePlan.swift",
        "CoreData/OCKCDClock.swift",
        "CoreData/OCKCDContact.swift",
        "CoreData/OCKCDDevice.swift",
        "CoreData/OCKCDHealthKitLinkage.swift",
        "CoreData/OCKCDHealthKitTask.swift",
        "CoreData/OCKCDKnowledgeElement.swift",
        "CoreData/OCKCDNote.swift",
        "CoreData/OCKCDObject.swift",
        "CoreData/OCKCDOperatingSystemVersion.swift",
        "CoreData/OCKCDOutcome.swift",
        "CoreData/OCKCDOutcomeValue.swift",
        "CoreData/OCKCDPatient.swift",
        "CoreData/OCKCDPersonName.swift",
        "CoreData/OCKCDPostalAddress.swift",
        "CoreData/OCKCDScheduleElement.swift",
        "CoreData/OCKCDSource.swift",
        "CoreData/OCKCDSourceRevision.swift",
        "CoreData/OCKCDTag.swift",
        "CoreData/OCKCDTask.swift",
        "CoreData/OCKCDVersionedObject.swift",
        "CoreData/OCKStore+CarePlans.swift",
        "CoreData/OCKStore+Contacts.swift",
        "CoreData/OCKStore+HealthKit.swift",
        "CoreData/OCKStore+Outcomes.swift",
        "CoreData/OCKStore+Patients.swift",
        "CoreData/OCKStore+Tasks.swift",
        "CoreData/OCKStore+Transactions.swift",
        "CoreData/OCKStore.swift",
        "CoreData/Synchronization/OCKRemoteSynchronizable.swift",
        "CoreData/Synchronization/OCKRevisionRecord.swift",
        "CoreData/Synchronization/OCKStore+Synchronization.swift",
        "CoreData/Synchronization/OCKWatchConnectivityPeer.swift",
        "HealthKit/OCKDevice.swift",
        "HealthKit/OCKHealthKitOutcome.swift",
        "HealthKit/OCKHealthKitPassthroughStore+EventUtilities.swift",
        "HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift",
        "HealthKit/OCKHealthKitPassthroughStore+FetchEvents.swift",
        "HealthKit/OCKHealthKitPassthroughStore+FetchOutcomes.swift",
        "HealthKit/OCKHealthKitPassthroughStore+OutcomesStream.swift",
        "HealthKit/OCKHealthKitPassthroughStore.swift",
        "HealthKit/OCKHealthKitProxy.swift",
        "HealthKit/OCKHealthKitStore+Outcomes.swift",
        "HealthKit/OCKHealthKitStore+Tasks.swift",
        "HealthKit/OCKHealthKitTask.swift",
        "HealthKit/OCKSource.swift",
        "HealthKit/OCKSourceRevision.swift",
        "HealthKit/OperatingSystemVersion+Codable.swift",
        "HealthKit/OperatingSystemVersion+Hashable.swift",
        "HealthKit/Sample/CategorySample.swift",
        "HealthKit/Sample/QuantitySample.swift",
        "HealthKit/Sample/Sample.swift",
        "HealthKit/Sample/SampleChange.swift",
        "Logging/LogCategory.swift",
        "Logging/Logger+Init.swift",
        "Logging/OCKLog.swift",
        "Logging/OSLog+Init.swift",
        "OCKResultClosure.swift",
        "OCKStoreError.swift",
        "OCKUtilities.swift",
        "Protocols/CarePlans/OCKAnyCarePlan.swift",
        "Protocols/CarePlans/OCKAnyCarePlanStore.swift",
        "Protocols/CarePlans/OCKCarePlanStore.swift",
        "Protocols/Contacts/OCKAnyContact.swift",
        "Protocols/Contacts/OCKAnyContactStore.swift",
        "Protocols/Contacts/OCKContactStore.swift",
        "Protocols/Events/OCKAnyEvent.swift",
        "Protocols/Events/OCKAnyEventStore.swift",
        "Protocols/Events/OCKEventStore.swift",
        "Protocols/Events/OCKReadOnlyEventStore+FetchPartialEvents.swift",
        "Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift",
        "Protocols/Events/OCKReadOnlyEventStore+Utilities.swift",
        "Protocols/Events/OCKReadOnlyEventStore+VersioningUtilities.swift",
        "Protocols/Events/PartialEvent.swift",
        "Protocols/OCKObjectCompatible.swift",
        "Protocols/OCKStoreProtocol.swift",
        "Protocols/Outcomes/OCKAnyOutcome.swift",
        "Protocols/Outcomes/OCKAnyOutcomeStore.swift",
        "Protocols/Outcomes/OCKOutcomeStore.swift",
        "Protocols/Patients/OCKAnyPatient.swift",
        "Protocols/Patients/OCKAnyPatientStore.swift",
        "Protocols/Patients/OCKPatientStore.swift",
        "Protocols/Tasks/OCKAnyTask.swift",
        "Protocols/Tasks/OCKAnyTaskStore.swift",
        "Protocols/Tasks/OCKAnyVersionableTask.swift",
        "Protocols/Tasks/OCKTaskStore.swift",
        "Shared/Extensions/Mutex+Extension.swift",
        "Stale/OCKAdherenceAggregator.swift",
        "Stale/OCKCarePlanStoreDelegate.swift",
        "Stale/OCKContactStoreDelegate.swift",
        "Stale/OCKEventAggregator.swift",
        "Stale/OCKOutcomeStoreDelegate.swift",
        "Stale/OCKPatientStoreDelegate.swift",
        "Stale/OCKTaskStoreDelegate.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+CarePlans.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Contacts.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Events.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Outcomes.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Patients.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift",
        "StoreCoordinator/OCKStoreCoordinator.swift",
        "StoreCoordinator/OCKStoreCoordinatorDelegate.swift",
        "Streaming/AsyncStreamFactory.swift",
        "Streaming/CareStoreQueryResults.swift",
        "Streaming/CoreDataQueryMonitor.swift",
        "Streaming/HealthKitQueryMonitor+QueryResult.swift",
        "Streaming/HealthKitQueryMonitor.swift",
        "Structs/OCKAdherence.swift",
        "Structs/OCKBiologicalSex.swift",
        "Structs/OCKCarePlan.swift",
        "Structs/OCKContact.swift",
        "Structs/OCKEntity.swift",
        "Structs/OCKEvent.swift",
        "Structs/OCKHealthKitLinkage.swift",
        "Structs/OCKLabeledValue.swift",
        "Structs/OCKNote.swift",
        "Structs/OCKOutcome.swift",
        "Structs/OCKOutcomeValue.swift",
        "Structs/OCKPatient.swift",
        "Structs/OCKPostalAddress.swift",
        "Structs/OCKSchedule.swift",
        "Structs/OCKScheduleElement.swift",
        "Structs/OCKScheduleEvent.swift",
        "Structs/OCKSemanticVersion.swift",
        "Structs/OCKTask.swift",
        "Structs/Queries/OCKAdherenceQuery.swift",
        "Structs/Queries/OCKCarePlanQuery.swift",
        "Structs/Queries/OCKContactQuery.swift",
        "Structs/Queries/OCKEventQuery.swift",
        "Structs/Queries/OCKOutcomeQuery.swift",
        "Structs/Queries/OCKPatientQuery.swift",
        "Structs/Queries/OCKQueryProtocol.swift",
        "Structs/Queries/OCKTaskQuery.swift",
        "TaskProgress/AggregatedCareTaskProgress.swift",
        "TaskProgress/BinaryCareTaskProgress.swift",
        "TaskProgress/CareTaskProgress.swift",
        "TaskProgress/CareTaskProgressStrategy+CheckingOutcomesExist.swift",
        "TaskProgress/CareTaskProgressStrategy+SummingOutcomeValues.swift",
        "TaskProgress/CareTaskProgressStrategy.swift",
        "TaskProgress/LinearCareTaskProgress.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CareKitFHIRTests",
      "module_type" : "SwiftTarget",
      "name" : "CareKitFHIRTests",
      "path" : "CareKitFHIR/CareKitFHIRTests",
      "sources" : [
        "Integration Tests/CareKitFHIRTests.swift",
        "Unit Tests/DSTU2MedicationOrderConverterTests.swift",
        "Unit Tests/DSTU2PatientConverterTests.swift",
        "Unit Tests/DSTU2TaskConverterTests.swift",
        "Unit Tests/FHIRResourceDataTests.swift",
        "Unit Tests/R4PatientConverterTests.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "CareKitFHIR"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CareKitFHIR",
      "module_type" : "SwiftTarget",
      "name" : "CareKitFHIR",
      "path" : "CareKitFHIR/CareKitFHIR",
      "product_dependencies" : [
        "ModelsR4",
        "ModelsDSTU2"
      ],
      "product_memberships" : [
        "CareKitFHIR"
      ],
      "sources" : [
        "FHIRModels+Extensions.swift",
        "OCK+FHIRExtensions.swift",
        "OCKFHIRCodingError.swift",
        "OCKFHIRContentType.swift",
        "OCKFHIRRelease.swift",
        "OCKFHIRResource.swift",
        "OCKFHIRResourceCoder.swift",
        "OCKFHIRResourceData.swift",
        "Patients/OCKDSTU2PatientCoder.swift",
        "Patients/OCKPatientConverterTraits.swift",
        "Patients/OCKR4PatientCoder.swift",
        "Tasks/OCKDSTU2CarePlanActivityCoder.swift",
        "Tasks/OCKDSTU2MedicationOrderCoder.swift",
        "Tasks/OCKDSTU2ScheduleCoder.swift",
        "Tasks/OCKTaskConverterTraits.swift"
      ],
      "target_dependencies" : [
        "CareKitStore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CareKit",
      "module_type" : "SwiftTarget",
      "name" : "CareKit",
      "path" : "CareKit/CareKit",
      "product_memberships" : [
        "CareKit"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/iOS/Localization/en.lproj/locversion.plist",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "Shared/Extensions/Calendar+Extensions.swift",
        "Shared/Extensions/LinearCareTaskProgress+Extension.swift",
        "Shared/Extensions/Number+Extension.swift",
        "Shared/Extensions/OCKAnyContact+Extension.swift",
        "Shared/Extensions/OCKAnyEvent+Extension.swift",
        "Shared/Extensions/OCKAnyEventStore+Extension.swift",
        "Shared/Extensions/OCKAnyStoreProtocol+Environment.swift",
        "Shared/Extensions/UIImage+Asset.swift",
        "Shared/OCKLog.swift",
        "Shared/Synchronization/CareStoreFetchRequest.swift",
        "Shared/Synchronization/CareStoreFetchRequestController.swift",
        "Shared/Synchronization/CareStoreFetchedResult+Extension.swift",
        "Shared/Synchronization/CareStoreFetchedResult.swift",
        "Shared/Synchronization/CareStoreFetchedResults.swift",
        "Shared/Synchronization/OCKAnyReadOnlyEventStore+Progress.swift",
        "Shared/Synchronization/OCKSynchronizationContext.swift",
        "Shared/Synchronization/TemporalProgress.swift",
        "Shared/Synchronization/TemporalTaskProgress.swift",
        "Shared/Task/InstructionsTaskView+Init.swift",
        "Shared/Task/OCKTaskEvents.swift",
        "Shared/Task/SimpleTaskView+Init.swift",
        "Shared/Utilities/OCKScheduleUtility.swift",
        "Stale/OCKButtonLogTaskController.swift",
        "Stale/OCKCalendarController.swift",
        "Stale/OCKCalendarViewSynchronizerProtocol.swift",
        "Stale/OCKCartesianChartController.swift",
        "Stale/OCKChartController.swift",
        "Stale/OCKChartViewSynchronizerProtocol.swift",
        "Stale/OCKChecklistTaskController.swift",
        "Stale/OCKContactController.swift",
        "Stale/OCKContactViewSynchronizerProtocol.swift",
        "Stale/OCKDetailedContactController.swift",
        "Stale/OCKGridTaskController.swift",
        "Stale/OCKInstructionsTaskController.swift",
        "Stale/OCKLabeledValueTaskController.swift",
        "Stale/OCKNumericProgressTaskController.swift",
        "Stale/OCKSimpleContactController.swift",
        "Stale/OCKSimpleTaskController.swift",
        "Stale/OCKStoreNotifications.swift",
        "Stale/OCKSynchronizedStoreManager.swift",
        "Stale/OCKTaskController.swift",
        "Stale/OCKTaskViewSynchronizerProtocol.swift",
        "Stale/OCKWeekCalendarController.swift",
        "iOS/Calendar/Paging/OCKWeekCalendarPageViewController.swift",
        "iOS/Calendar/Synchronizers/OCKWeekCalendarViewSynchronizer.swift",
        "iOS/Calendar/View Controllers/OCKCalendarViewController.swift",
        "iOS/Calendar/View Controllers/OCKWeekCalendarViewController.swift",
        "iOS/Chart/Synchronizers/OCKCartesianChartViewSynchronizer.swift",
        "iOS/Chart/View Controllers/OCKCartesianChartViewController.swift",
        "iOS/Chart/View Controllers/OCKChartViewController.swift",
        "iOS/Chart/View Controllers/OCKDataSeriesConfiguration.swift",
        "iOS/Contact/Synchronizers/OCKDetailedContactViewSynchronizer.swift",
        "iOS/Contact/Synchronizers/OCKSimpleContactViewSynchronizer.swift",
        "iOS/Contact/Synchronizers/_OCKContactsListViewSynchronizer.swift",
        "iOS/Contact/View Controllers/OCKContactViewController.swift",
        "iOS/Contact/View Controllers/OCKContactViewResponder.swift",
        "iOS/Contact/View Controllers/OCKContactsListViewController.swift",
        "iOS/Contact/View Controllers/OCKDetailedContactViewController.swift",
        "iOS/Contact/View Controllers/OCKSimpleContactViewController.swift",
        "iOS/Details/OCKDetailViewController.swift",
        "iOS/Extensions/NSLayoutConstraint+Extensions.swift",
        "iOS/Extensions/OCKContact+Extensions.swift",
        "iOS/Extensions/OCKOutcomeValue+Extension.swift",
        "iOS/Extensions/UIViewController+Extensions.swift",
        "iOS/Higher Order/View/OCKHeaderBodyView.swift",
        "iOS/Higher Order/View/OCKListView.swift",
        "iOS/Higher Order/ViewController/OCKDailyPageViewController.swift",
        "iOS/Higher Order/ViewController/OCKDailyTasksPageViewController.swift",
        "iOS/Higher Order/ViewController/OCKListViewController.swift",
        "iOS/Synchronization/SynchronizedViewController.swift",
        "iOS/Synchronization/ViewSynchronizing.swift",
        "iOS/Task/LabeledValueTaskView+Init.swift",
        "iOS/Task/NumericProgressTaskView+Init.swift",
        "iOS/Task/Synchronizers/OCKButtonLogTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKChecklistTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKGridTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKInstructionsTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKSimpleTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKSurveyTaskViewSynchronizer.swift",
        "iOS/Task/View Controllers/OCKButtonLogViewController.swift",
        "iOS/Task/View Controllers/OCKChecklistTaskViewController.swift",
        "iOS/Task/View Controllers/OCKGridTaskViewController.swift",
        "iOS/Task/View Controllers/OCKInstructionsTaskViewController.swift",
        "iOS/Task/View Controllers/OCKSimpleTaskViewController.swift",
        "iOS/Task/View Controllers/OCKSurveyTaskViewController.swift",
        "iOS/Task/View Controllers/OCKTaskViewController.swift",
        "iOS/Utilities/OCKContactUtility.swift",
        "iOS/View Updaters/Calendar/OCKWeekCalendarView+Updatable.swift",
        "iOS/View Updaters/Chart/OCKCartesianChartView+Updatable.swift",
        "iOS/View Updaters/Contact/OCKDetailedContactView+Updatable.swift",
        "iOS/View Updaters/Contact/OCKSimpleContactView+Updatable.swift",
        "iOS/View Updaters/OCKHeaderView+Updatable.swift",
        "iOS/View Updaters/Task/OCKChecklistTaskView+Updatable.swift",
        "iOS/View Updaters/Task/OCKGridTaskView+Updatable.swift",
        "iOS/View Updaters/Task/OCKInstructionsTaskView+Updatable.swift",
        "iOS/View Updaters/Task/OCKLogTaskView+Updatable.swift",
        "iOS/View Updaters/Task/OCKSimpleTaskView+Updatable.swift",
        "iOS/View Updaters/Updatable.swift"
      ],
      "target_dependencies" : [
        "CareKitUI",
        "CareKitStore"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
Done.