Build Information
Failed to build CareKit, reference main (659fbb
), with Swift 6.1 for macOS (SPM) on 13 May 2025 22:29:32 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKPatient], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
108 | }
109 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:107:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
105 | transaction(inserts: [], updates: patients, deletes: []) { result in
106 | callbackQueue.async {
107 | completion?(result.map(\.updates))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
108 | }
109 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:119:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKPatient], OCKStoreError>) -> Void)?' in a '@Sendable' closure
117 | transaction(inserts: [], updates: [], deletes: patients) { result in
118 | callbackQueue.async {
119 | completion?(result.map(\.deletes))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKPatient], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
120 | }
121 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:119:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
117 | transaction(inserts: [], updates: [], deletes: patients) { result in
118 | callbackQueue.async {
119 | completion?(result.map(\.deletes))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
120 | }
121 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:88:17: warning: capture of 'completion' with non-sendable type '(Result<[OCKTask], OCKStoreError>) -> Void' in a '@Sendable' closure
86 |
87 | callbackQueue.async {
88 | completion(filtered)
| |- warning: capture of 'completion' with non-sendable type '(Result<[OCKTask], OCKStoreError>) -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
89 | }
90 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:88:28: warning: capture of 'filtered' with non-sendable type 'Result<[OCKTask], OCKStoreError>' in a '@Sendable' closure
86 |
87 | callbackQueue.async {
88 | completion(filtered)
| `- warning: capture of 'filtered' with non-sendable type 'Result<[OCKTask], OCKStoreError>' in a '@Sendable' closure
89 | }
90 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKTask.swift:37:15: note: consider making struct 'OCKTask' conform to the 'Sendable' protocol
35 | /// and must have a unique id and schedule. The schedule determines when and how often the task should be performed, and the
36 | /// `impactsAdherence` flag may be used to specify whether or not the patients adherence to this task will affect their daily completion rings.
37 | public struct OCKTask: Codable, Equatable, OCKAnyVersionableTask, OCKAnyMutableTask {
| `- note: consider making struct 'OCKTask' conform to the 'Sendable' protocol
38 |
39 | /// The UUID of the care plan to which this task belongs.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:100:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
98 | transaction(inserts: tasks, updates: [], deletes: []) { result in
99 | callbackQueue.async {
100 | completion?(result.map(\.inserts))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:100:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
98 | transaction(inserts: tasks, updates: [], deletes: []) { result in
99 | callbackQueue.async {
100 | completion?(result.map(\.inserts))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:115:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
113 |
114 | callbackQueue.async {
115 | completion?(result.map(\.updates))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
116 | }
117 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:115:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
113 |
114 | callbackQueue.async {
115 | completion?(result.map(\.updates))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
116 | }
117 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:127:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
125 | transaction(inserts: [], updates: [], deletes: tasks) { result in
126 | callbackQueue.async {
127 | completion?(result.map(\.deletes))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:127:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
125 | transaction(inserts: [], updates: [], deletes: tasks) { result in
126 | callbackQueue.async {
127 | completion?(result.map(\.deletes))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore.swift:58:5: warning: let 'sharedManagedObjectModel' is not concurrency-safe because non-'Sendable' type 'NSManagedObjectModel' may have shared mutable state; this is an error in the Swift 6 language mode
56 | // per app invocation, so we load it here and reuse
57 | // the shared MoM each time a store is instantiated.
58 | let sharedManagedObjectModel: NSManagedObjectModel = {
| `- warning: let 'sharedManagedObjectModel' is not concurrency-safe because non-'Sendable' type 'NSManagedObjectModel' may have shared mutable state; this is an error in the Swift 6 language mode
59 | #if SWIFT_PACKAGE
60 | let bundle = Bundle.module // Use the SPM package's module
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h:23:12: note: class 'NSManagedObjectModel' does not conform to the 'Sendable' protocol
21 | // Models describe object graphs to be managed. Models (and their entities/properties/fetch request templates) are editable until they are used by a persistent store coordinator, allowing developers to create/modify them dynamically. However, once a model is being used, it MUST NOT be changed. When the persistent store coordinator first fetches data using a model, it will become uneditable. Any attempt to mutate a model or any of its subobjects after that point will cause an exception to be thrown. If you need to modify a model that is in use, create a copy, modify the copy, and then discard the objects with the old model.
22 | API_AVAILABLE(macosx(10.4),ios(3.0))
23 | @interface NSManagedObjectModel : NSObject <NSCoding, NSCopying, NSFastEnumeration> {
| `- note: class 'NSManagedObjectModel' does not conform to the 'Sendable' protocol
24 | }
25 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore.swift:31:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
29 | */
30 |
31 | import CoreData
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
32 | import Foundation
33 | import os.log
:
56 | // per app invocation, so we load it here and reuse
57 | // the shared MoM each time a store is instantiated.
58 | let sharedManagedObjectModel: NSManagedObjectModel = {
| |- note: add '@MainActor' to make let 'sharedManagedObjectModel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 | #if SWIFT_PACKAGE
60 | let bundle = Bundle.module // Use the SPM package's module
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+CarePlans.swift:81:17: warning: capture of 'completion' with non-sendable type '(Result<[OCKCarePlan], OCKStoreError>) -> Void' in a '@Sendable' closure
79 |
80 | callbackQueue.async {
81 | completion(result)
| |- warning: capture of 'completion' with non-sendable type '(Result<[OCKCarePlan], OCKStoreError>) -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
82 | }
83 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+CarePlans.swift:81:28: warning: capture of 'result' with non-sendable type 'Result<[OCKCarePlan], OCKStoreError>' in a '@Sendable' closure
79 |
80 | callbackQueue.async {
81 | completion(result)
| `- warning: capture of 'result' with non-sendable type 'Result<[OCKCarePlan], OCKStoreError>' in a '@Sendable' closure
82 | }
83 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKCarePlan.swift:38:15: note: consider making struct 'OCKCarePlan' conform to the 'Sendable' protocol
36 | /// weight, and log meals. As the care plan evolves with the patient's progress, the care provider may modify the exercises and include notes each
37 | /// time about why the changes were made.
38 | public struct OCKCarePlan: Codable, Equatable, Identifiable, OCKAnyCarePlan {
| `- note: consider making struct 'OCKCarePlan' conform to the 'Sendable' protocol
39 |
40 | /// The UUID of the patient to whom this care plan belongs.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+CarePlans.swift:93:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKCarePlan], OCKStoreError>) -> Void)?' in a '@Sendable' closure
91 | transaction(inserts: plans, updates: [], deletes: []) { result in
92 | callbackQueue.async {
93 | completion?(result.map(\.inserts))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKCarePlan], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
94 | }
95 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+CarePlans.swift:93:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKCarePlan>, OCKStoreError>' in a '@Sendable' closure
91 | transaction(inserts: plans, updates: [], deletes: []) { result in
92 | callbackQueue.async {
93 | completion?(result.map(\.inserts))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKCarePlan>, OCKStoreError>' in a '@Sendable' closure
94 | }
95 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+CarePlans.swift:105:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKCarePlan], OCKStoreError>) -> Void)?' in a '@Sendable' closure
103 | transaction(inserts: [], updates: plans, deletes: []) { result in
104 | callbackQueue.async {
105 | completion?(result.map(\.updates))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKCarePlan], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
106 | }
107 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+CarePlans.swift:105:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKCarePlan>, OCKStoreError>' in a '@Sendable' closure
103 | transaction(inserts: [], updates: plans, deletes: []) { result in
104 | callbackQueue.async {
105 | completion?(result.map(\.updates))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKCarePlan>, OCKStoreError>' in a '@Sendable' closure
106 | }
107 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+CarePlans.swift:116:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKCarePlan], OCKStoreError>) -> Void)?' in a '@Sendable' closure
114 | transaction(inserts: [], updates: [], deletes: plans) { result in
115 | callbackQueue.async {
116 | completion?(result.map(\.deletes))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKCarePlan], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
117 | }
118 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+CarePlans.swift:116:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKCarePlan>, OCKStoreError>' in a '@Sendable' closure
114 | transaction(inserts: [], updates: [], deletes: plans) { result in
115 | callbackQueue.async {
116 | completion?(result.map(\.deletes))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKCarePlan>, OCKStoreError>' in a '@Sendable' closure
117 | }
118 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Contacts.swift:80:17: warning: capture of 'completion' with non-sendable type '(Result<[OCKContact], OCKStoreError>) -> Void' in a '@Sendable' closure
78 |
79 | callbackQueue.async {
80 | completion(result)
| |- warning: capture of 'completion' with non-sendable type '(Result<[OCKContact], OCKStoreError>) -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
81 | }
82 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Contacts.swift:80:28: warning: capture of 'result' with non-sendable type 'Result<[OCKContact], OCKStoreError>' in a '@Sendable' closure
78 |
79 | callbackQueue.async {
80 | completion(result)
| `- warning: capture of 'result' with non-sendable type 'Result<[OCKContact], OCKStoreError>' in a '@Sendable' closure
81 | }
82 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKContact.swift:36:15: note: consider making struct 'OCKContact' conform to the 'Sendable' protocol
34 | /// An `OCKContact` represents a contact that a user may want to get in touch with. A contact may be a care provider, a friend, or a family
35 | /// member. Contacts must have at least a name, and may optionally have numerous other addresses at which to be contacted.
36 | public struct OCKContact: Codable, Equatable, Identifiable, OCKAnyContact {
| `- note: consider making struct 'OCKContact' conform to the 'Sendable' protocol
37 |
38 | /// The version id in the local database for the care plan associated with this contact.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Contacts.swift:92:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKContact], OCKStoreError>) -> Void)?' in a '@Sendable' closure
90 | transaction(inserts: contacts, updates: [], deletes: []) { result in
91 | callbackQueue.async {
92 | completion?(result.map(\.inserts))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKContact], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
93 | }
94 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Contacts.swift:92:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKContact>, OCKStoreError>' in a '@Sendable' closure
90 | transaction(inserts: contacts, updates: [], deletes: []) { result in
91 | callbackQueue.async {
92 | completion?(result.map(\.inserts))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKContact>, OCKStoreError>' in a '@Sendable' closure
93 | }
94 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Contacts.swift:104:17: warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[OCKContact]>?' (aka 'Optional<(Result<Array<OCKContact>, OCKStoreError>) -> ()>') in a '@Sendable' closure
102 | transaction(inserts: [], updates: contacts, deletes: []) { result in
103 | callbackQueue.async {
104 | completion?(result.map(\.updates))
| |- warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[OCKContact]>?' (aka 'Optional<(Result<Array<OCKContact>, OCKStoreError>) -> ()>') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
105 | }
106 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Contacts.swift:104:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKContact>, OCKStoreError>' in a '@Sendable' closure
102 | transaction(inserts: [], updates: contacts, deletes: []) { result in
103 | callbackQueue.async {
104 | completion?(result.map(\.updates))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKContact>, OCKStoreError>' in a '@Sendable' closure
105 | }
106 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Contacts.swift:116:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKContact], OCKStoreError>) -> Void)?' in a '@Sendable' closure
114 | transaction(inserts: [], updates: [], deletes: contacts) { result in
115 | callbackQueue.async {
116 | completion?(result.map(\.deletes))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKContact], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
117 | }
118 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Contacts.swift:116:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKContact>, OCKStoreError>' in a '@Sendable' closure
114 | transaction(inserts: [], updates: [], deletes: contacts) { result in
115 | callbackQueue.async {
116 | completion?(result.map(\.deletes))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKContact>, OCKStoreError>' in a '@Sendable' closure
117 | }
118 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:104:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKHealthKitTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
102 | transaction(inserts: tasks, updates: [], deletes: []) { result in
103 | callbackQueue.async {
104 | completion?(result.map(\.inserts))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKHealthKitTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
105 | }
106 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:104:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKHealthKitTask>, OCKStoreError>' in a '@Sendable' closure
102 | transaction(inserts: tasks, updates: [], deletes: []) { result in
103 | callbackQueue.async {
104 | completion?(result.map(\.inserts))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKHealthKitTask>, OCKStoreError>' in a '@Sendable' closure
105 | }
106 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:116:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKHealthKitTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
114 | transaction(inserts: [], updates: tasks, deletes: []) { result in
115 | callbackQueue.async {
116 | completion?(result.map(\.updates))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKHealthKitTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
117 | }
118 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:116:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKHealthKitTask>, OCKStoreError>' in a '@Sendable' closure
114 | transaction(inserts: [], updates: tasks, deletes: []) { result in
115 | callbackQueue.async {
116 | completion?(result.map(\.updates))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKHealthKitTask>, OCKStoreError>' in a '@Sendable' closure
117 | }
118 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:128:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKHealthKitTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
126 | transaction(inserts: [], updates: [], deletes: tasks) { result in
127 | callbackQueue.async {
128 | completion?(result.map(\.deletes))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKHealthKitTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
129 | }
130 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+HealthKit.swift:128:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKHealthKitTask>, OCKStoreError>' in a '@Sendable' closure
126 | transaction(inserts: [], updates: [], deletes: tasks) { result in
127 | callbackQueue.async {
128 | completion?(result.map(\.deletes))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKHealthKitTask>, OCKStoreError>' in a '@Sendable' closure
129 | }
130 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Outcomes.swift:86:39: warning: capture of 'completion' with non-sendable type '(Result<[OCKOutcome], OCKStoreError>) -> Void' in a '@Sendable' closure
84 | let outcomes = notTombstoned.map { $0.makeOutcome() }
85 |
86 | callbackQueue.async { completion(.success(outcomes)) }
| |- warning: capture of 'completion' with non-sendable type '(Result<[OCKOutcome], OCKStoreError>) -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
87 | } catch {
88 | self.context.rollback()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Outcomes.swift:86:59: warning: capture of 'outcomes' with non-sendable type '[OCKOutcome]' in a '@Sendable' closure
84 | let outcomes = notTombstoned.map { $0.makeOutcome() }
85 |
86 | callbackQueue.async { completion(.success(outcomes)) }
| `- warning: capture of 'outcomes' with non-sendable type '[OCKOutcome]' in a '@Sendable' closure
87 | } catch {
88 | self.context.rollback()
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:37:15: note: consider making struct 'OCKOutcome' conform to the 'Sendable' protocol
35 | /// For example, a task that asks a patient to measure their temperature will have events whose outcome will contain a single value representing
36 | /// the patient's temperature.
37 | public struct OCKOutcome: Codable, Equatable, Identifiable, OCKAnyOutcome {
| `- note: consider making struct 'OCKOutcome' conform to the 'Sendable' protocol
38 |
39 | /// The version ID of the task to which this outcomes belongs.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Outcomes.swift:90:39: warning: capture of 'completion' with non-sendable type '(Result<[OCKOutcome], OCKStoreError>) -> Void' in a '@Sendable' closure
88 | self.context.rollback()
89 | let reason = "Failed to fetch outcomes for query. \(error.localizedDescription)"
90 | callbackQueue.async { completion(.failure(.fetchFailed(reason: reason))) }
| |- warning: capture of 'completion' with non-sendable type '(Result<[OCKOutcome], OCKStoreError>) -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
91 | }
92 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Outcomes.swift:109:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKOutcome], OCKStoreError>) -> Void)?' in a '@Sendable' closure
107 | ) { result in
108 | callbackQueue.async {
109 | completion?(result.map(\.inserts))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKOutcome], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
110 | }
111 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Outcomes.swift:109:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKOutcome>, OCKStoreError>' in a '@Sendable' closure
107 | ) { result in
108 | callbackQueue.async {
109 | completion?(result.map(\.inserts))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKOutcome>, OCKStoreError>' in a '@Sendable' closure
110 | }
111 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Outcomes.swift:127:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKOutcome], OCKStoreError>) -> Void)?' in a '@Sendable' closure
125 | ) { result in
126 | callbackQueue.async {
127 | completion?(result.map(\.updates))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKOutcome], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Outcomes.swift:127:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKOutcome>, OCKStoreError>' in a '@Sendable' closure
125 | ) { result in
126 | callbackQueue.async {
127 | completion?(result.map(\.updates))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKOutcome>, OCKStoreError>' in a '@Sendable' closure
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Outcomes.swift:139:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKOutcome], OCKStoreError>) -> Void)?' in a '@Sendable' closure
137 | transaction(inserts: [], updates: [], deletes: outcomes) { result in
138 | callbackQueue.async {
139 | completion?(result.map(\.deletes))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKOutcome], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
140 | }
141 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Outcomes.swift:139:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKOutcome>, OCKStoreError>' in a '@Sendable' closure
137 | transaction(inserts: [], updates: [], deletes: outcomes) { result in
138 | callbackQueue.async {
139 | completion?(result.map(\.deletes))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKOutcome>, OCKStoreError>' in a '@Sendable' closure
140 | }
141 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:80:17: warning: capture of 'completion' with non-sendable type '(Result<[OCKPatient], OCKStoreError>) -> Void' in a '@Sendable' closure
78 |
79 | callbackQueue.async {
80 | completion(result)
| |- warning: capture of 'completion' with non-sendable type '(Result<[OCKPatient], OCKStoreError>) -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
81 | }
82 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:80:28: warning: capture of 'result' with non-sendable type 'Result<[OCKPatient], OCKStoreError>' in a '@Sendable' closure
78 |
79 | callbackQueue.async {
80 | completion(result)
| `- warning: capture of 'result' with non-sendable type 'Result<[OCKPatient], OCKStoreError>' in a '@Sendable' closure
81 | }
82 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKPatient.swift:35:15: note: consider making struct 'OCKPatient' conform to the 'Sendable' protocol
33 |
34 | /// Represents a patient
35 | public struct OCKPatient: Codable, Equatable, Identifiable, OCKAnyPatient {
| `- note: consider making struct 'OCKPatient' conform to the 'Sendable' protocol
36 |
37 | // MARK: OCKAnyPatient
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:95:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKPatient], OCKStoreError>) -> Void)?' in a '@Sendable' closure
93 |
94 | callbackQueue.async {
95 | completion?(result.map(\.inserts))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKPatient], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
96 | }
97 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:95:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
93 |
94 | callbackQueue.async {
95 | completion?(result.map(\.inserts))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
96 | }
97 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:107:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKPatient], OCKStoreError>) -> Void)?' in a '@Sendable' closure
105 | transaction(inserts: [], updates: patients, deletes: []) { result in
106 | callbackQueue.async {
107 | completion?(result.map(\.updates))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKPatient], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
108 | }
109 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:107:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
105 | transaction(inserts: [], updates: patients, deletes: []) { result in
106 | callbackQueue.async {
107 | completion?(result.map(\.updates))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
108 | }
109 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:119:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKPatient], OCKStoreError>) -> Void)?' in a '@Sendable' closure
117 | transaction(inserts: [], updates: [], deletes: patients) { result in
118 | callbackQueue.async {
119 | completion?(result.map(\.deletes))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKPatient], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
120 | }
121 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Patients.swift:119:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
117 | transaction(inserts: [], updates: [], deletes: patients) { result in
118 | callbackQueue.async {
119 | completion?(result.map(\.deletes))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKPatient>, OCKStoreError>' in a '@Sendable' closure
120 | }
121 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:88:17: warning: capture of 'completion' with non-sendable type '(Result<[OCKTask], OCKStoreError>) -> Void' in a '@Sendable' closure
86 |
87 | callbackQueue.async {
88 | completion(filtered)
| |- warning: capture of 'completion' with non-sendable type '(Result<[OCKTask], OCKStoreError>) -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
89 | }
90 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:88:28: warning: capture of 'filtered' with non-sendable type 'Result<[OCKTask], OCKStoreError>' in a '@Sendable' closure
86 |
87 | callbackQueue.async {
88 | completion(filtered)
| `- warning: capture of 'filtered' with non-sendable type 'Result<[OCKTask], OCKStoreError>' in a '@Sendable' closure
89 | }
90 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKTask.swift:37:15: note: consider making struct 'OCKTask' conform to the 'Sendable' protocol
35 | /// and must have a unique id and schedule. The schedule determines when and how often the task should be performed, and the
36 | /// `impactsAdherence` flag may be used to specify whether or not the patients adherence to this task will affect their daily completion rings.
37 | public struct OCKTask: Codable, Equatable, OCKAnyVersionableTask, OCKAnyMutableTask {
| `- note: consider making struct 'OCKTask' conform to the 'Sendable' protocol
38 |
39 | /// The UUID of the care plan to which this task belongs.
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:100:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
98 | transaction(inserts: tasks, updates: [], deletes: []) { result in
99 | callbackQueue.async {
100 | completion?(result.map(\.inserts))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:100:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
98 | transaction(inserts: tasks, updates: [], deletes: []) { result in
99 | callbackQueue.async {
100 | completion?(result.map(\.inserts))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:115:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
113 |
114 | callbackQueue.async {
115 | completion?(result.map(\.updates))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
116 | }
117 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:115:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
113 |
114 | callbackQueue.async {
115 | completion?(result.map(\.updates))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
116 | }
117 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:127:17: warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
125 | transaction(inserts: [], updates: [], deletes: tasks) { result in
126 | callbackQueue.async {
127 | completion?(result.map(\.deletes))
| |- warning: capture of 'completion' with non-sendable type '((Result<[OCKTask], OCKStoreError>) -> Void)?' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Tasks.swift:127:29: warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
125 | transaction(inserts: [], updates: [], deletes: tasks) { result in
126 | callbackQueue.async {
127 | completion?(result.map(\.deletes))
| `- warning: capture of 'result' with non-sendable type 'Result<OCKStore.TransactionResult<OCKTask>, OCKStoreError>' in a '@Sendable' closure
128 | }
129 | }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore+Transactions.swift:36:12: note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
34 | extension OCKStore {
35 |
36 | struct TransactionResult<T> {
| `- note: consider making generic struct 'TransactionResult' conform to the 'Sendable' protocol
37 | var inserts: [T] = []
38 | var updates: [T] = []
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore.swift:58:5: warning: let 'sharedManagedObjectModel' is not concurrency-safe because non-'Sendable' type 'NSManagedObjectModel' may have shared mutable state; this is an error in the Swift 6 language mode
56 | // per app invocation, so we load it here and reuse
57 | // the shared MoM each time a store is instantiated.
58 | let sharedManagedObjectModel: NSManagedObjectModel = {
| `- warning: let 'sharedManagedObjectModel' is not concurrency-safe because non-'Sendable' type 'NSManagedObjectModel' may have shared mutable state; this is an error in the Swift 6 language mode
59 | #if SWIFT_PACKAGE
60 | let bundle = Bundle.module // Use the SPM package's module
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/NSManagedObjectModel.h:23:12: note: class 'NSManagedObjectModel' does not conform to the 'Sendable' protocol
21 | // Models describe object graphs to be managed. Models (and their entities/properties/fetch request templates) are editable until they are used by a persistent store coordinator, allowing developers to create/modify them dynamically. However, once a model is being used, it MUST NOT be changed. When the persistent store coordinator first fetches data using a model, it will become uneditable. Any attempt to mutate a model or any of its subobjects after that point will cause an exception to be thrown. If you need to modify a model that is in use, create a copy, modify the copy, and then discard the objects with the old model.
22 | API_AVAILABLE(macosx(10.4),ios(3.0))
23 | @interface NSManagedObjectModel : NSObject <NSCoding, NSCopying, NSFastEnumeration> {
| `- note: class 'NSManagedObjectModel' does not conform to the 'Sendable' protocol
24 | }
25 |
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/OCKStore.swift:31:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
29 | */
30 |
31 | import CoreData
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreData'
32 | import Foundation
33 | import os.log
:
56 | // per app invocation, so we load it here and reuse
57 | // the shared MoM each time a store is instantiated.
58 | let sharedManagedObjectModel: NSManagedObjectModel = {
| |- note: add '@MainActor' to make let 'sharedManagedObjectModel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 | #if SWIFT_PACKAGE
60 | let bundle = Bundle.module // Use the SPM package's module
[614/1163] Compiling CareKitStore OCKEventQuery.swift
[615/1163] Compiling CareKitStore OCKOutcomeQuery.swift
[616/1163] Compiling CareKitStore OCKPatientQuery.swift
[617/1163] Compiling CareKitStore OCKQueryProtocol.swift
[618/1163] Compiling CareKitStore OCKTaskQuery.swift
[619/1163] Compiling CareKitStore AggregatedCareTaskProgress.swift
[620/1163] Compiling CareKitStore BinaryCareTaskProgress.swift
[621/1163] Compiling CareKitStore CareTaskProgress.swift
[622/1163] Compiling CareKitStore CareTaskProgressStrategy+CheckingOutcomesExist.swift
[623/1163] Compiling CareKitStore CareTaskProgressStrategy+SummingOutcomeValues.swift
[624/1163] Compiling CareKitStore CareTaskProgressStrategy.swift
[625/1163] Compiling CareKitStore LinearCareTaskProgress.swift
[626/1163] Compiling CareKitStore resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[649/1163] Compiling ModelsR4 CodeSystemOrientationType.swift
[650/1163] Compiling ModelsR4 CodeSystemParticipantRequired.swift
[651/1163] Compiling ModelsR4 CodeSystemParticipantType.swift
[652/1163] Compiling ModelsR4 CodeSystemParticipationStatus.swift
[653/1163] Compiling ModelsR4 CodeSystemPayeeResourceType.swift
[654/1163] Compiling ModelsR4 CodeSystemPaymentAdjustmentReasonCodes.swift
[655/1163] Compiling ModelsR4 CodeSystemPaymentStatusCodes.swift
[656/1163] Compiling ModelsR4 CodeSystemPaymentTypeCodes.swift
[657/1163] Compiling ModelsR4 CodeSystemPerformerRoleCodes.swift
[658/1163] Compiling ModelsR4 CodeSystemPlanDefinitionType.swift
[659/1163] Compiling ModelsR4 CodeSystemPractitionerRoleCodes.swift
[660/1163] Compiling ModelsR4 CodeSystemPractitionerSpecialty.swift
[661/1163] Compiling ModelsR4 CodeSystemPrecisionEstimateType.swift
[662/1163] Compiling ModelsR4 CodeSystemPrimarySourceType.swift
[663/1163] Compiling ModelsR4 CodeSystemProcedureDeviceActionCodes.swift
[664/1163] Compiling ModelsR4 CodeSystemProcedureProgressStatusCodes.swift
[665/1163] Compiling ModelsR4 CodeSystemProcessPriorityCodes.swift
[666/1163] Compiling ModelsR4 CodeSystemPropertyRepresentation.swift
[667/1163] Compiling ModelsR4 CodeSystemPropertyType.swift
[668/1163] Compiling ModelsR4 CodeSystemProvenanceEntityRole.swift
[669/1163] Compiling ModelsR4 CodeSystemProvenanceParticipantRole.swift
[670/1163] Compiling ModelsR4 CodeSystemProvenanceParticipantType.swift
[671/1163] Compiling ModelsR4 CodeSystemPublicationStatus.swift
[672/1163] Compiling ModelsR4 CodeSystemPushTypeAvailable.swift
[673/1187] Compiling ModelsR4 CodeSystemQualityOfEvidenceRating.swift
[674/1187] Compiling ModelsR4 CodeSystemQualityType.swift
[675/1187] Compiling ModelsR4 CodeSystemQuantityComparator.swift
[676/1187] Compiling ModelsR4 CodeSystemQuestionnaireItemOperator.swift
[677/1187] Compiling ModelsR4 CodeSystemQuestionnaireItemType.swift
[678/1187] Compiling ModelsR4 CodeSystemQuestionnaireItemUIControlCodes.swift
[679/1187] Compiling ModelsR4 CodeSystemQuestionnaireItemUsageMode.swift
[680/1187] Compiling ModelsR4 CodeSystemQuestionnaireResponseStatus.swift
[681/1187] Compiling ModelsR4 CodeSystemQuestionnaireTextCategories.swift
[682/1187] Compiling ModelsR4 CodeSystemReasonMedicationGivenCodes.swift
[683/1187] Compiling ModelsR4 CodeSystemReferenceHandlingPolicy.swift
[684/1187] Compiling ModelsR4 CodeSystemReferenceVersionRules.swift
[685/1187] Compiling ModelsR4 CodeSystemReferralMethod.swift
[686/1187] Compiling ModelsR4 CodeSystemRejectionCriterion.swift
[687/1187] Compiling ModelsR4 CodeSystemRelatedArtifactType.swift
[688/1187] Compiling ModelsR4 CodeSystemRepositoryType.swift
[689/1187] Compiling ModelsR4 CodeSystemRequestIntent.swift
[690/1187] Compiling ModelsR4 CodeSystemRequestPriority.swift
[691/1187] Compiling ModelsR4 CodeSystemRequestResourceType.swift
[692/1187] Compiling ModelsR4 CodeSystemRequestStatus.swift
[693/1187] Compiling ModelsR4 CodeSystemResearchElementType.swift
[694/1187] Compiling ModelsR4 CodeSystemResearchStudyObjectiveType.swift
[695/1187] Compiling ModelsR4 CodeSystemResearchStudyPhase.swift
[696/1187] Compiling ModelsR4 CodeSystemResearchStudyPrimaryPurposeType.swift
[697/1211] Compiling ModelsR4 CodeSystemMedicationrequestStatus.swift
[698/1211] Compiling ModelsR4 CodeSystemMessageSignificanceCategory.swift
[699/1211] Compiling ModelsR4 CodeSystemMessageTransport.swift
[700/1211] Compiling ModelsR4 CodeSystemMessageheaderResponseRequest.swift
[701/1211] Compiling ModelsR4 CodeSystemMissingToothReasonCodes.swift
[702/1211] Compiling ModelsR4 CodeSystemModifierTypeCodes.swift
[703/1211] Compiling ModelsR4 CodeSystemNHINPurposeOfUse.swift
[704/1211] Compiling ModelsR4 CodeSystemNameUse.swift
[705/1211] Compiling ModelsR4 CodeSystemNamingSystemIdentifierType.swift
[706/1211] Compiling ModelsR4 CodeSystemNamingSystemType.swift
[707/1211] Compiling ModelsR4 CodeSystemNarrativeStatus.swift
[708/1211] Compiling ModelsR4 CodeSystemNeed.swift
[709/1211] Compiling ModelsR4 CodeSystemNetworkTypeCodes.swift
[710/1211] Compiling ModelsR4 CodeSystemNoteType.swift
[711/1211] Compiling ModelsR4 CodeSystemObservationCategoryCodes.swift
[712/1211] Compiling ModelsR4 CodeSystemObservationDataType.swift
[713/1211] Compiling ModelsR4 CodeSystemObservationRangeCategory.swift
[714/1211] Compiling ModelsR4 CodeSystemObservationReferenceRangeMeaningCodes.swift
[715/1211] Compiling ModelsR4 CodeSystemObservationStatus.swift
[716/1211] Compiling ModelsR4 CodeSystemOperationKind.swift
[717/1211] Compiling ModelsR4 CodeSystemOperationOutcomeCodes.swift
[718/1211] Compiling ModelsR4 CodeSystemOperationParameterUse.swift
[719/1211] Compiling ModelsR4 CodeSystemOrganizationAffiliationRole.swift
[720/1211] Compiling ModelsR4 CodeSystemOrganizationType.swift
[721/1235] Compiling ModelsR4 CodeSystemResearchStudyReasonStopped.swift
[722/1235] Compiling ModelsR4 CodeSystemResearchStudyStatus.swift
[723/1235] Compiling ModelsR4 CodeSystemResearchSubjectStatus.swift
[724/1235] Compiling ModelsR4 CodeSystemResourceSecurityCategory.swift
[725/1235] Compiling ModelsR4 CodeSystemResourceType.swift
[726/1235] Compiling ModelsR4 CodeSystemResourceValidationMode.swift
[727/1235] Compiling ModelsR4 CodeSystemResourceVersionPolicy.swift
[728/1235] Compiling ModelsR4 CodeSystemResponseType.swift
[729/1235] Compiling ModelsR4 CodeSystemRestfulCapabilityMode.swift
[730/1235] Compiling ModelsR4 CodeSystemRestfulSecurityService.swift
[731/1235] Compiling ModelsR4 CodeSystemRiskEstimateType.swift
[732/1235] Compiling ModelsR4 CodeSystemRiskProbability.swift
[733/1235] Compiling ModelsR4 CodeSystemSNOMEDCTReasonMedicationNotGivenCodes.swift
[734/1235] Compiling ModelsR4 CodeSystemSearchComparator.swift
[735/1235] Compiling ModelsR4 CodeSystemSearchEntryMode.swift
[736/1235] Compiling ModelsR4 CodeSystemSearchModifierCode.swift
[737/1235] Compiling ModelsR4 CodeSystemSearchParamType.swift
[738/1235] Compiling ModelsR4 CodeSystemSequenceStatus.swift
[739/1235] Compiling ModelsR4 CodeSystemSequenceType.swift
[740/1235] Compiling ModelsR4 CodeSystemServiceProvisionConditions.swift
[741/1235] Compiling ModelsR4 CodeSystemSlicingRules.swift
[742/1235] Compiling ModelsR4 CodeSystemSlotStatus.swift
[743/1235] Compiling ModelsR4 CodeSystemSmartCapabilities.swift
[744/1235] Compiling ModelsR4 CodeSystemSortDirection.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[773/1259] Compiling ModelsR4 CodeSystemSpecialArrangements.swift
[774/1259] Compiling ModelsR4 CodeSystemSpecialValues.swift
[775/1259] Compiling ModelsR4 CodeSystemSpecimenContainedPreference.swift
[776/1259] Compiling ModelsR4 CodeSystemSpecimenStatus.swift
[777/1259] Compiling ModelsR4 CodeSystemStandardsStatus.swift
[778/1259] Compiling ModelsR4 CodeSystemStatus.swift
[779/1259] Compiling ModelsR4 CodeSystemStrandType.swift
[780/1259] Compiling ModelsR4 CodeSystemStrengthOfRecommendationRating.swift
[781/1259] Compiling ModelsR4 CodeSystemStructureDefinitionKind.swift
[782/1259] Compiling ModelsR4 CodeSystemStructureMapContextType.swift
[783/1259] Compiling ModelsR4 CodeSystemStructureMapGroupTypeMode.swift
[784/1259] Compiling ModelsR4 CodeSystemStructureMapInputMode.swift
[785/1259] Compiling ModelsR4 CodeSystemStructureMapModelMode.swift
[786/1259] Compiling ModelsR4 CodeSystemStructureMapSourceListMode.swift
[787/1259] Compiling ModelsR4 CodeSystemStructureMapTargetListMode.swift
[788/1259] Compiling ModelsR4 CodeSystemStructureMapTransform.swift
[789/1259] Compiling ModelsR4 CodeSystemStudyType.swift
[790/1259] Compiling ModelsR4 CodeSystemSubscriberRelationshipCodes.swift
[791/1259] Compiling ModelsR4 CodeSystemSubscriptionChannelType.swift
[792/1259] Compiling ModelsR4 CodeSystemSubscriptionStatus.swift
[793/1259] Compiling ModelsR4 CodeSystemSubscriptionTag.swift
[794/1259] Compiling ModelsR4 CodeSystemSubstanceCategoryCodes.swift
[795/1259] Compiling ModelsR4 CodeSystemSupplyDeliveryStatus.swift
[796/1259] Compiling ModelsR4 CodeSystemSupplyItemType.swift
[797/1283] Compiling ModelsR4 CodeSystemSupplyRequestReason.swift
[798/1283] Compiling ModelsR4 CodeSystemSupplyRequestStatus.swift
[799/1283] Compiling ModelsR4 CodeSystemSupplyType.swift
[800/1283] Compiling ModelsR4 CodeSystemSurfaceCodes.swift
[801/1283] Compiling ModelsR4 CodeSystemSynthesisType.swift
[802/1283] Compiling ModelsR4 CodeSystemTaskCode.swift
[803/1283] Compiling ModelsR4 CodeSystemTaskIntent.swift
[804/1283] Compiling ModelsR4 CodeSystemTaskStatus.swift
[805/1283] Compiling ModelsR4 CodeSystemTemplateStatusCodeLifeCycle.swift
[806/1283] Compiling ModelsR4 CodeSystemTestReportActionResult.swift
[807/1283] Compiling ModelsR4 CodeSystemTestReportParticipantType.swift
[808/1283] Compiling ModelsR4 CodeSystemTestReportResult.swift
[809/1283] Compiling ModelsR4 CodeSystemTestReportStatus.swift
[810/1283] Compiling ModelsR4 CodeSystemTestScriptOperationCode.swift
[811/1283] Compiling ModelsR4 CodeSystemTestScriptProfileDestinationType.swift
[812/1283] Compiling ModelsR4 CodeSystemTestScriptProfileOriginType.swift
[813/1283] Compiling ModelsR4 CodeSystemTestScriptRequestMethodCode.swift
[814/1283] Compiling ModelsR4 CodeSystemTransactionMode.swift
[815/1283] Compiling ModelsR4 CodeSystemTriggerType.swift
[816/1283] Compiling ModelsR4 CodeSystemTypeDerivationRule.swift
[817/1283] Compiling ModelsR4 CodeSystemUDICodes.swift
[818/1283] Compiling ModelsR4 CodeSystemUDIEntryType.swift
[819/1283] Compiling ModelsR4 CodeSystemUnitTypeCodes.swift
[820/1283] Compiling ModelsR4 CodeSystemUnknownContentCode.swift
[846/1331] Compiling ModelsR4 CodeSystemEventStatus.swift
[847/1331] Compiling ModelsR4 CodeSystemEventTiming.swift
[848/1331] Compiling ModelsR4 CodeSystemEvidenceVariableType.swift
[849/1331] Compiling ModelsR4 CodeSystemEvidenceVariantState.swift
[850/1331] Compiling ModelsR4 CodeSystemExampleClaimSubTypeCodes.swift
[851/1331] Compiling ModelsR4 CodeSystemExampleCoverageFinancialExceptionCodes.swift
[852/1331] Compiling ModelsR4 CodeSystemExampleDiagnosisOnAdmissionCodes.swift
[853/1331] Compiling ModelsR4 CodeSystemExampleDiagnosisTypeCodes.swift
[854/1331] Compiling ModelsR4 CodeSystemExampleMessageReasonCodes.swift
[855/1331] Compiling ModelsR4 CodeSystemExampleOnsetTypeReasonCodes.swift
[856/1331] Compiling ModelsR4 CodeSystemExamplePaymentTypeCodes.swift
[857/1331] Compiling ModelsR4 CodeSystemExamplePharmacyServiceCodes.swift
[858/1331] Compiling ModelsR4 CodeSystemExampleProcedureTypeCodes.swift
[859/1331] Compiling ModelsR4 CodeSystemExampleProgramReasonCodes.swift
[860/1331] Compiling ModelsR4 CodeSystemExampleRelatedClaimRelationshipCodes.swift
[861/1331] Compiling ModelsR4 CodeSystemExampleScenarioActorType.swift
[862/1331] Compiling ModelsR4 CodeSystemExampleServiceModifierCodes.swift
[863/1331] Compiling ModelsR4 CodeSystemExampleServiceProductCodes.swift
[864/1331] Compiling ModelsR4 CodeSystemExampleUseCodesForList.swift
[865/1331] Compiling ModelsR4 CodeSystemExampleVisionPrescriptionProductCodes.swift
[866/1331] Compiling ModelsR4 CodeSystemExceptionCodes.swift
[867/1331] Compiling ModelsR4 CodeSystemExpansionParameterSource.swift
[868/1331] Compiling ModelsR4 CodeSystemExpansionProcessingRule.swift
[869/1331] Emitting module ModelsDSTU2
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[1101/1427] Emitting module ModelsR4
[1102/1451] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1103/1451] Compiling ModelsR4 CodeSystemUse.swift
[1104/1451] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1105/1451] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1106/1451] Compiling ModelsR4 CodeSystemValidationType.swift
[1107/1451] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1108/1451] Compiling ModelsR4 CodeSystemVisionBase.swift
[1109/1451] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1110/1451] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1111/1451] Compiling ModelsR4 CodeableConcept.swift
[1112/1451] Compiling ModelsR4 Coding.swift
[1113/1451] Compiling ModelsR4 Communication.swift
[1114/1451] Compiling ModelsR4 CommunicationRequest.swift
[1115/1451] Compiling ModelsR4 CompartmentDefinition.swift
[1116/1451] Compiling ModelsR4 Composition.swift
[1117/1451] Compiling ModelsR4 ConceptMap.swift
[1118/1451] Compiling ModelsR4 Condition.swift
[1119/1451] Compiling ModelsR4 Consent.swift
[1120/1451] Compiling ModelsR4 ContactDetail.swift
[1121/1451] Compiling ModelsR4 ContactPoint.swift
[1122/1451] Compiling ModelsR4 Contract.swift
[1123/1451] Compiling ModelsR4 Contributor.swift
[1124/1451] Compiling ModelsR4 Count.swift
[1125/1451] Compiling ModelsR4 Coverage.swift
[1200/1451] Compiling ModelsDSTU2 Money.swift
[1201/1451] Compiling ModelsDSTU2 NamingSystem.swift
[1202/1451] Compiling ModelsDSTU2 Narrative.swift
[1203/1451] Compiling ModelsDSTU2 NutritionOrder.swift
[1204/1451] Compiling ModelsDSTU2 Observation.swift
[1205/1451] Compiling ModelsDSTU2 OperationDefinition.swift
[1206/1451] Compiling ModelsDSTU2 OperationOutcome.swift
[1207/1451] Compiling ModelsDSTU2 Order.swift
[1208/1451] Compiling ModelsDSTU2 OrderResponse.swift
[1209/1451] Compiling ModelsDSTU2 Organization.swift
[1210/1451] Compiling ModelsDSTU2 Parameters.swift
[1211/1451] Compiling ModelsDSTU2 Patient.swift
[1212/1451] Compiling ModelsDSTU2 PaymentNotice.swift
[1213/1451] Compiling ModelsDSTU2 PaymentReconciliation.swift
[1214/1451] Compiling ModelsDSTU2 Period.swift
[1215/1451] Compiling ModelsDSTU2 Person.swift
[1216/1451] Compiling ModelsDSTU2 Practitioner.swift
[1217/1451] Compiling ModelsDSTU2 Procedure.swift
[1218/1451] Compiling ModelsDSTU2 ProcedureRequest.swift
[1219/1451] Compiling ModelsDSTU2 ProcessRequest.swift
[1220/1451] Compiling ModelsDSTU2 ProcessResponse.swift
[1221/1451] Compiling ModelsDSTU2 Provenance.swift
[1222/1451] Compiling ModelsDSTU2 Quantity.swift
[1223/1451] Compiling ModelsDSTU2 Questionnaire.swift
[1224/1451] Compiling ModelsR4 Endpoint.swift
[1225/1451] Compiling ModelsR4 EnrollmentRequest.swift
[1226/1451] Compiling ModelsR4 EnrollmentResponse.swift
[1227/1451] Compiling ModelsR4 EpisodeOfCare.swift
[1228/1451] Compiling ModelsR4 EventDefinition.swift
[1229/1451] Compiling ModelsR4 Evidence.swift
[1230/1451] Compiling ModelsR4 EvidenceVariable.swift
[1231/1451] Compiling ModelsR4 ExampleScenario.swift
[1232/1451] Compiling ModelsR4 ExplanationOfBenefit.swift
[1233/1451] Compiling ModelsR4 Expression.swift
[1234/1451] Compiling ModelsR4 Extension.swift
[1235/1451] Compiling ModelsR4 FHIRAbstractResource.swift
[1236/1451] Compiling ModelsR4 FHIRBool.swift
[1237/1451] Compiling ModelsR4 FHIRDate+NSDate.swift
[1238/1451] Compiling ModelsR4 FHIRDate.swift
[1239/1451] Compiling ModelsR4 FHIRDecimal.swift
[1240/1451] Compiling ModelsR4 FHIRInteger.swift
[1241/1451] Compiling ModelsR4 FHIRPositiveInteger.swift
[1242/1451] Compiling ModelsR4 FHIRPrimitive.swift
[1243/1451] Compiling ModelsR4 FHIRString.swift
[1244/1451] Compiling ModelsR4 FHIRTime+NSDate.swift
[1245/1451] Compiling ModelsR4 FHIRTime.swift
[1246/1451] Compiling ModelsR4 FHIRURI.swift
[1247/1451] Compiling ModelsR4 FHIRUnsignedInteger.swift
[1248/1451] Compiling ModelsR4 FamilyMemberHistory.swift
[1249/1451] Compiling ModelsR4 Flag.swift
[1250/1451] Compiling ModelsR4 Goal.swift
[1251/1451] Compiling ModelsR4 GraphDefinition.swift
[1252/1451] Compiling ModelsR4 Group.swift
[1253/1451] Compiling ModelsR4 GuidanceResponse.swift
[1254/1451] Compiling ModelsR4 HealthcareService.swift
[1255/1451] Compiling ModelsR4 HumanName.swift
[1256/1451] Compiling ModelsR4 Identifier.swift
[1257/1451] Compiling ModelsR4 ImagingStudy.swift
[1258/1451] Compiling ModelsR4 Immunization.swift
[1259/1451] Compiling ModelsR4 ImmunizationEvaluation.swift
[1260/1451] Compiling ModelsR4 ImmunizationRecommendation.swift
[1261/1451] Compiling ModelsR4 ImplementationGuide.swift
[1262/1451] Compiling ModelsR4 Instant+NSDate.swift
[1263/1451] Compiling ModelsR4 Instant.swift
[1264/1451] Compiling ModelsR4 InstantDate.swift
[1265/1451] Compiling ModelsR4 InsurancePlan.swift
[1266/1451] Compiling ModelsR4 Invoice.swift
[1267/1451] Compiling ModelsR4 Library.swift
[1268/1451] Compiling ModelsR4 Linkage.swift
[1269/1451] Compiling ModelsR4 List.swift
[1270/1451] Compiling ModelsR4 Location.swift
[1271/1451] Compiling ModelsR4 MarketingStatus.swift
[1272/1451] Compiling ModelsDSTU2 QuestionnaireResponse.swift
[1273/1451] Compiling ModelsDSTU2 Range.swift
[1274/1451] Compiling ModelsDSTU2 Ratio.swift
[1275/1451] Compiling ModelsDSTU2 Reference.swift
[1276/1451] Compiling ModelsDSTU2 ReferralRequest.swift
[1277/1451] Compiling ModelsDSTU2 RelatedPerson.swift
[1278/1451] Compiling ModelsDSTU2 Resource.swift
[1279/1451] Compiling ModelsDSTU2 ResourceProxy.swift
[1280/1451] Compiling ModelsDSTU2 RiskAssessment.swift
[1281/1451] Compiling ModelsDSTU2 SampledData.swift
[1282/1451] Compiling ModelsDSTU2 Schedule.swift
[1283/1451] Compiling ModelsDSTU2 SearchParameter.swift
[1284/1451] Compiling ModelsDSTU2 Signature.swift
[1285/1451] Compiling ModelsDSTU2 Slot.swift
[1286/1451] Compiling ModelsDSTU2 Specimen.swift
[1287/1451] Compiling ModelsDSTU2 StructureDefinition.swift
[1288/1451] Compiling ModelsDSTU2 Subscription.swift
[1289/1451] Compiling ModelsDSTU2 Substance.swift
[1290/1451] Compiling ModelsDSTU2 SupplyDelivery.swift
[1291/1451] Compiling ModelsDSTU2 SupplyRequest.swift
[1292/1451] Compiling ModelsDSTU2 TestScript.swift
[1293/1451] Compiling ModelsDSTU2 Timing.swift
[1294/1451] Compiling ModelsDSTU2 ValueSet.swift
[1295/1451] Compiling ModelsDSTU2 VisionPrescription.swift
[1296/1451] Compiling ModelsR4 CoverageEligibilityRequest.swift
[1297/1451] Compiling ModelsR4 CoverageEligibilityResponse.swift
[1298/1451] Compiling ModelsR4 DataRequirement.swift
[1299/1451] Compiling ModelsR4 DateTime+NSDate.swift
[1300/1451] Compiling ModelsR4 DateTime.swift
[1301/1451] Compiling ModelsR4 DetectedIssue.swift
[1302/1451] Compiling ModelsR4 Device.swift
[1303/1451] Compiling ModelsR4 DeviceDefinition.swift
[1304/1451] Compiling ModelsR4 DeviceMetric.swift
[1305/1451] Compiling ModelsR4 DeviceRequest.swift
[1306/1451] Compiling ModelsR4 DeviceUseStatement.swift
[1307/1451] Compiling ModelsR4 DiagnosticReport.swift
[1308/1451] Compiling ModelsR4 Distance.swift
[1309/1451] Compiling ModelsR4 DocumentManifest.swift
[1310/1451] Compiling ModelsR4 DocumentReference.swift
[1311/1451] Compiling ModelsR4 DomainResource+Extensions.swift
[1312/1451] Compiling ModelsR4 DomainResource.swift
[1313/1451] Compiling ModelsR4 Dosage.swift
[1314/1451] Compiling ModelsR4 Duration.swift
[1315/1451] Compiling ModelsR4 EffectEvidenceSynthesis.swift
[1316/1451] Compiling ModelsR4 Element+Extensions.swift
[1317/1451] Compiling ModelsR4 Element.swift
[1318/1451] Compiling ModelsR4 ElementDefinition.swift
[1319/1451] Compiling ModelsR4 Encounter.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[1329/1451] Compiling ModelsR4 NamingSystem.swift
[1330/1451] Compiling ModelsR4 Narrative.swift
[1331/1451] Compiling ModelsR4 NutritionOrder.swift
[1332/1451] Compiling ModelsR4 Observation.swift
[1333/1451] Compiling ModelsR4 ObservationDefinition.swift
[1334/1451] Compiling ModelsR4 OperationDefinition.swift
[1335/1451] Compiling ModelsR4 OperationOutcome.swift
[1336/1451] Compiling ModelsR4 Organization.swift
[1337/1451] Compiling ModelsR4 OrganizationAffiliation.swift
[1338/1451] Compiling ModelsR4 ParameterDefinition.swift
[1339/1451] Compiling ModelsR4 Parameters.swift
[1340/1451] Compiling ModelsR4 Patient.swift
[1341/1451] Compiling ModelsR4 PaymentNotice.swift
[1342/1451] Compiling ModelsR4 PaymentReconciliation.swift
[1343/1451] Compiling ModelsR4 Period.swift
[1344/1451] Compiling ModelsR4 Person.swift
[1345/1451] Compiling ModelsR4 PlanDefinition.swift
[1346/1451] Compiling ModelsR4 Population.swift
[1347/1451] Compiling ModelsR4 Practitioner.swift
[1348/1451] Compiling ModelsR4 PractitionerRole.swift
[1349/1451] Compiling ModelsR4 Procedure.swift
[1350/1451] Compiling ModelsR4 ProdCharacteristic.swift
[1351/1451] Compiling ModelsR4 ProductShelfLife.swift
[1352/1451] Compiling ModelsR4 Provenance.swift
[1353/1451] Compiling ModelsR4 Quantity.swift
[1354/1451] Compiling ModelsR4 Questionnaire.swift
[1355/1451] Compiling ModelsR4 QuestionnaireResponse.swift
[1356/1451] Compiling ModelsR4 Range.swift
[1357/1451] Compiling ModelsR4 Ratio.swift
[1358/1451] Compiling ModelsR4 Reference.swift
[1359/1451] Compiling ModelsR4 RelatedArtifact.swift
[1360/1451] Compiling ModelsR4 RelatedPerson.swift
[1361/1451] Compiling ModelsR4 RequestGroup.swift
[1362/1451] Compiling ModelsR4 ResearchDefinition.swift
[1363/1451] Compiling ModelsR4 ResearchElementDefinition.swift
[1364/1451] Compiling ModelsR4 ResearchStudy.swift
[1365/1451] Compiling ModelsR4 ResearchSubject.swift
[1366/1451] Compiling ModelsR4 Resource.swift
[1367/1451] Compiling ModelsR4 ResourceProxy.swift
[1368/1451] Compiling ModelsR4 RiskAssessment.swift
[1369/1451] Compiling ModelsR4 RiskEvidenceSynthesis.swift
[1370/1451] Compiling ModelsR4 SampledData.swift
[1371/1451] Compiling ModelsR4 Schedule.swift
[1372/1451] Compiling ModelsR4 SearchParameter.swift
[1373/1451] Compiling ModelsR4 ServiceRequest.swift
[1374/1451] Compiling ModelsR4 Signature.swift
[1375/1451] Compiling ModelsR4 Slot.swift
[1376/1451] Compiling ModelsR4 Specimen.swift
[1377/1451] Compiling ModelsR4 Measure.swift
[1378/1451] Compiling ModelsR4 MeasureReport.swift
[1379/1451] Compiling ModelsR4 Media.swift
[1380/1451] Compiling ModelsR4 Medication.swift
[1381/1451] Compiling ModelsR4 MedicationAdministration.swift
[1382/1451] Compiling ModelsR4 MedicationDispense.swift
[1383/1451] Compiling ModelsR4 MedicationKnowledge.swift
[1384/1451] Compiling ModelsR4 MedicationRequest.swift
[1385/1451] Compiling ModelsR4 MedicationStatement.swift
[1386/1451] Compiling ModelsR4 MedicinalProduct.swift
[1387/1451] Compiling ModelsR4 MedicinalProductAuthorization.swift
[1388/1451] Compiling ModelsR4 MedicinalProductContraindication.swift
[1389/1451] Compiling ModelsR4 MedicinalProductIndication.swift
[1390/1451] Compiling ModelsR4 MedicinalProductIngredient.swift
[1391/1451] Compiling ModelsR4 MedicinalProductInteraction.swift
[1392/1451] Compiling ModelsR4 MedicinalProductManufactured.swift
[1393/1451] Compiling ModelsR4 MedicinalProductPackaged.swift
[1394/1451] Compiling ModelsR4 MedicinalProductPharmaceutical.swift
[1395/1451] Compiling ModelsR4 MedicinalProductUndesirableEffect.swift
[1396/1451] Compiling ModelsR4 MessageDefinition.swift
[1397/1451] Compiling ModelsR4 MessageHeader.swift
[1398/1451] Compiling ModelsR4 Meta.swift
[1399/1451] Compiling ModelsR4 MolecularSequence.swift
[1400/1451] Compiling ModelsR4 Money.swift
[1401/1451] Compiling ModelsR4 SpecimenDefinition.swift
[1402/1451] Compiling ModelsR4 StructureDefinition.swift
[1403/1451] Compiling ModelsR4 StructureMap.swift
[1404/1451] Compiling ModelsR4 Subscription.swift
[1405/1451] Compiling ModelsR4 Substance.swift
[1406/1451] Compiling ModelsR4 SubstanceAmount.swift
[1407/1451] Compiling ModelsR4 SubstanceNucleicAcid.swift
[1408/1451] Compiling ModelsR4 SubstancePolymer.swift
[1409/1451] Compiling ModelsR4 SubstanceProtein.swift
[1410/1451] Compiling ModelsR4 SubstanceReferenceInformation.swift
[1411/1451] Compiling ModelsR4 SubstanceSourceMaterial.swift
[1412/1451] Compiling ModelsR4 SubstanceSpecification.swift
[1413/1451] Compiling ModelsR4 SupplyDelivery.swift
[1414/1451] Compiling ModelsR4 SupplyRequest.swift
[1415/1451] Compiling ModelsR4 Task.swift
[1416/1451] Compiling ModelsR4 TerminologyCapabilities.swift
[1417/1451] Compiling ModelsR4 TestReport.swift
[1418/1451] Compiling ModelsR4 TestScript.swift
[1419/1451] Compiling ModelsR4 Timing.swift
[1420/1451] Compiling ModelsR4 TriggerDefinition.swift
[1421/1451] Compiling ModelsR4 UsageContext.swift
[1422/1451] Compiling ModelsR4 ValueSet.swift
[1423/1451] Compiling ModelsR4 VerificationResult.swift
[1424/1451] Compiling ModelsR4 VisionPrescription.swift
[1425/1466] Compiling CareKitFHIR OCKFHIRCodingError.swift
[1426/1466] Compiling CareKitFHIR OCKFHIRContentType.swift
[1427/1466] Compiling CareKitFHIR OCKFHIRResourceCoder.swift
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:122:44: warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in a '@Sendable' closure
120 | guard success else {
121 | let error = OCKStoreError.addFailed(reason: "Failed to request authorization for HealthKit's clinical records.")
122 | DispatchQueue.main.async { completion(.failure(error)) }
| |- warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
123 | return
124 | }
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:159:51: warning: capture of 'self' with non-sendable type 'Self' in a '@Sendable' closure
157 | let rawData = clinicalSamples.compactMap { $0.fhirResource?.data }
158 | let resources = rawData.map { OCKFHIRResourceData<DSTU2, JSON>(data: $0) }
159 | let tasks = try resources.map(self.decode)
| `- warning: capture of 'self' with non-sendable type 'Self' in a '@Sendable' closure
160 | DispatchQueue.main.async {
161 | completion(.success(tasks))
CareKitFHIR.OCKFHIRResourceCoder.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol OCKFHIRResourceCoder {
2 | Self : CareKitFHIR.OCKFHIRResourceCoder}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:138:48: warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in a '@Sendable' closure
136 | func fail(_ message: String) {
137 | let error = OCKStoreError.addFailed(reason: "Failed to fetch medications from HealthKit. \(message)")
138 | DispatchQueue.main.async { completion(.failure(error)) }
| |- warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:159:51: warning: capture of 'self' with non-sendable type 'Self' in a '@Sendable' closure
157 | let rawData = clinicalSamples.compactMap { $0.fhirResource?.data }
158 | let resources = rawData.map { OCKFHIRResourceData<DSTU2, JSON>(data: $0) }
159 | let tasks = try resources.map(self.decode)
| `- warning: capture of 'self' with non-sendable type 'Self' in a '@Sendable' closure
160 | DispatchQueue.main.async {
161 | completion(.success(tasks))
CareKitFHIR.OCKFHIRResourceCoder.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol OCKFHIRResourceCoder {
2 | Self : CareKitFHIR.OCKFHIRResourceCoder}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:138:48: warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in an isolated local function; this is an error in the Swift 6 language mode
136 | func fail(_ message: String) {
137 | let error = OCKStoreError.addFailed(reason: "Failed to fetch medications from HealthKit. \(message)")
138 | DispatchQueue.main.async { completion(.failure(error)) }
| |- warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in an isolated local function; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:138:48: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
136 | func fail(_ message: String) {
137 | let error = OCKStoreError.addFailed(reason: "Failed to fetch medications from HealthKit. \(message)")
138 | DispatchQueue.main.async { completion(.failure(error)) }
| |- warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
139 | }
140 |
[1428/1466] Compiling CareKitFHIR OCKFHIRResourceData.swift
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:122:44: warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in a '@Sendable' closure
120 | guard success else {
121 | let error = OCKStoreError.addFailed(reason: "Failed to request authorization for HealthKit's clinical records.")
122 | DispatchQueue.main.async { completion(.failure(error)) }
| |- warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
123 | return
124 | }
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:159:51: warning: capture of 'self' with non-sendable type 'Self' in a '@Sendable' closure
157 | let rawData = clinicalSamples.compactMap { $0.fhirResource?.data }
158 | let resources = rawData.map { OCKFHIRResourceData<DSTU2, JSON>(data: $0) }
159 | let tasks = try resources.map(self.decode)
| `- warning: capture of 'self' with non-sendable type 'Self' in a '@Sendable' closure
160 | DispatchQueue.main.async {
161 | completion(.success(tasks))
CareKitFHIR.OCKFHIRResourceCoder.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol OCKFHIRResourceCoder {
2 | Self : CareKitFHIR.OCKFHIRResourceCoder}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:138:48: warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in a '@Sendable' closure
136 | func fail(_ message: String) {
137 | let error = OCKStoreError.addFailed(reason: "Failed to fetch medications from HealthKit. \(message)")
138 | DispatchQueue.main.async { completion(.failure(error)) }
| |- warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:159:51: warning: capture of 'self' with non-sendable type 'Self' in a '@Sendable' closure
157 | let rawData = clinicalSamples.compactMap { $0.fhirResource?.data }
158 | let resources = rawData.map { OCKFHIRResourceData<DSTU2, JSON>(data: $0) }
159 | let tasks = try resources.map(self.decode)
| `- warning: capture of 'self' with non-sendable type 'Self' in a '@Sendable' closure
160 | DispatchQueue.main.async {
161 | completion(.success(tasks))
CareKitFHIR.OCKFHIRResourceCoder.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol OCKFHIRResourceCoder {
2 | Self : CareKitFHIR.OCKFHIRResourceCoder}
| `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:138:48: warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in an isolated local function; this is an error in the Swift 6 language mode
136 | func fail(_ message: String) {
137 | let error = OCKStoreError.addFailed(reason: "Failed to fetch medications from HealthKit. \(message)")
138 | DispatchQueue.main.async { completion(.failure(error)) }
| |- warning: capture of 'completion' with non-sendable type 'OCKResultClosure<[Self.Entity]>' (aka '(Result<Array<Self.Entity>, OCKStoreError>) -> ()') in an isolated local function; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/CareKitFHIR/CareKitFHIR/OCKFHIRResourceCoder.swift:138:48: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
136 | func fail(_ message: String) {
137 | let error = OCKStoreError.addFailed(reason: "Failed to fetch medications from HealthKit. \(message)")
138 | DispatchQueue.main.async { completion(.failure(error)) }
| |- warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
139 | }
140 |
[1429/1466] Compiling CareKitFHIR FHIRModels+Extensions.swift
[1430/1466] Compiling CareKitFHIR OCK+FHIRExtensions.swift
[1431/1466] Compiling CareKitFHIR OCKDSTU2PatientCoder.swift
[1432/1466] Compiling CareKitFHIR OCKPatientConverterTraits.swift
[1433/1466] Emitting module CareKitFHIR
[1434/1467] Compiling CareKitFHIR OCKDSTU2MedicationOrderCoder.swift
[1435/1467] Compiling CareKitFHIR OCKR4PatientCoder.swift
[1436/1467] Compiling CareKitFHIR OCKDSTU2CarePlanActivityCoder.swift
[1437/1467] Compiling CareKitFHIR OCKFHIRRelease.swift
[1438/1467] Compiling CareKitFHIR OCKFHIRResource.swift
[1439/1467] Compiling CareKitFHIR OCKDSTU2ScheduleCoder.swift
[1440/1467] Compiling CareKitFHIR OCKTaskConverterTraits.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/CareKitStore.xcdatamodeld
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/112] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[3/113] Compiling CareKitUI OSValue.swift
[4/113] Compiling CareKitUI OCKAnimationStyler.swift
[5/113] Compiling CareKitUI NoHighlightStyle.swift
[6/113] Compiling CareKitUI OCKLog.swift
[7/113] Compiling CareKitUI View+Extension.swift
[8/113] Compiling CareKitUI OCKLocalization.swift
[9/113] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[10/113] Compiling CareKitUI AccessibleStack.swift
[11/113] Compiling CareKitUI BackwardsCompatibility.swift
[12/113] Compiling FMCore Scanner+FHIR.swift
[13/113] Compiling FMCore FHIRIntegerRepresentable.swift
[14/113] Compiling FMCore FHIRDateComponents.swift
[15/113] Compiling FMCore FHIRType.swift
[16/113] Compiling FMCore ConstructibleFromNSDate.swift
[17/113] Compiling FMCore FHIRDateParserError.swift
[18/113] Compiling FMCore ExpressibleAsNSDate.swift
[19/113] Emitting module FMCore
[20/113] Compiling FMCore TimeZone+FHIR.swift
[21/113] Compiling FMCore DecodingError+Utilities.swift
[22/113] Emitting module InternalCollectionsUtilities
[23/113] Compiling CareKitUI Number+Extensions.swift
[24/113] Compiling CareKitUI OCKStyler+Extension.swift
[25/113] Compiling CareKitUI CardView.swift
[26/113] Compiling CareKitUI CircularCompletionView.swift
[27/113] Compiling CareKitUI Text+Extension.swift
[28/113] Compiling CareKitUI UIColor+Extension.swift
[29/113] Compiling CareKitUI HeaderView.swift
[30/113] Compiling CareKitUI RectangularCompletionView.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[41/139] Compiling DequeModule _DequeBufferHeader.swift
[42/139] Compiling DequeModule _DequeSlot.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[43/196] Emitting module CareKitUI
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[44/196] Compiling OrderedCollections OrderedSet+Codable.swift
[45/196] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[46/196] Compiling OrderedCollections OrderedSet+Descriptions.swift
[47/196] Compiling OrderedCollections OrderedSet+Diffing.swift
[48/196] Compiling OrderedCollections OrderedSet+Equatable.swift
[49/196] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[50/202] Compiling DequeModule _UnsafeWrappedBuffer.swift
[51/202] Compiling OrderedCollections OrderedSet+Invariants.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[52/202] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[53/202] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[54/202] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[55/202] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[56/202] Compiling OrderedCollections OrderedDictionary+Sendable.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[57/202] Compiling OrderedCollections OrderedDictionary+Sequence.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[58/202] Compiling OrderedCollections OrderedDictionary+Values.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[59/202] Compiling OrderedCollections OrderedDictionary.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[60/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[61/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[62/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[63/202] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[64/202] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[65/202] Compiling OrderedCollections OrderedSet+Sendable.swift
[66/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[67/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[68/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[69/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[70/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[71/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[72/202] Compiling OrderedCollections _Hashtable+Header.swift
[73/202] Compiling OrderedCollections OrderedDictionary+Codable.swift
[74/202] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[75/202] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[76/202] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[77/202] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[78/202] Compiling OrderedCollections OrderedDictionary+Elements.swift
[79/202] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[80/202] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[81/202] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[82/202] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[83/202] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[86/202] Compiling OrderedCollections _HashTable+Testing.swift
[87/202] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[88/202] Compiling OrderedCollections _HashTable.swift
[89/202] Compiling OrderedCollections OrderedSet+Hashable.swift
[90/202] Compiling OrderedCollections OrderedSet+Initializers.swift
[91/202] Compiling OrderedCollections OrderedSet+Insertions.swift
[92/202] Compiling OrderedCollections _HashTable+Constants.swift
[93/202] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[96/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[97/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[98/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[99/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[100/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[101/202] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[114/425] Compiling ModelsDSTU2 CodeSystemNoteType.swift
[115/425] Compiling ModelsDSTU2 CodeSystemNutritionOrderStatus.swift
[116/425] Emitting module DequeModule
[117/425] Compiling ModelsDSTU2 CodeSystemMaxOccurs.swift
[118/425] Compiling ModelsDSTU2 CodeSystemMeasmntPrinciple.swift
[119/425] Compiling ModelsDSTU2 CodeSystemMediaSubType.swift
[120/425] Compiling ModelsDSTU2 CodeSystemMedicationAdministrationStatus.swift
[121/425] Compiling ModelsDSTU2 CodeSystemMedicationDispenseStatus.swift
[122/425] Compiling ModelsDSTU2 CodeSystemMedicationOrderStatus.swift
[125/425] Compiling ModelsDSTU2 CodeSystemObservationCategoryCodes.swift
[126/425] Compiling ModelsDSTU2 CodeSystemObservationReferenceRangeMeaningCodes.swift
[127/425] Compiling ModelsDSTU2 CodeSystemObservationRelationshipType.swift
[128/425] Compiling ModelsDSTU2 CodeSystemObservationStatus.swift
[129/425] Compiling ModelsDSTU2 CodeSystemOperationKind.swift
[137/425] Compiling ModelsDSTU2 CodeSystemOperationOutcomeCodes.swift
[138/425] Compiling ModelsDSTU2 CodeSystemOperationParameterUse.swift
[139/425] Compiling ModelsDSTU2 CodeSystemOrderStatus.swift
[140/425] Compiling ModelsDSTU2 CodeSystemOrganizationType.swift
[141/425] Compiling ModelsDSTU2 CodeSystemParticipantRequired.swift
[142/425] Compiling ModelsDSTU2 CodeSystemParticipantStatus.swift
[143/425] Compiling ModelsDSTU2 CodeSystemParticipantType.swift
[144/425] Compiling ModelsDSTU2 CodeSystemParticipationStatus.swift
[145/425] Compiling ModelsDSTU2 CodeSystemPatientContactRelationship.swift
[146/425] Compiling ModelsDSTU2 CodeSystemPayeeTypeCodes.swift
[147/425] Compiling ModelsDSTU2 CodeSystemPaymentStatusCodes.swift
[148/425] Compiling ModelsDSTU2 CodeSystemPaymentTypeCodes.swift
[149/425] Compiling ModelsDSTU2 CodeSystemPractitionerRole.swift
[150/425] Compiling ModelsDSTU2 CodeSystemPractitionerSpecialty.swift
[151/425] Compiling ModelsDSTU2 CodeSystemPriorityCodes.swift
[152/425] Compiling ModelsDSTU2 CodeSystemProcedureDeviceActionCodes.swift
[153/425] Compiling ModelsDSTU2 CodeSystemProcedureProgressStatusCodes.swift
[154/449] Compiling ModelsDSTU2 CodeSystemContactPointUse.swift
[155/449] Compiling ModelsDSTU2 CodeSystemContentType.swift
[156/449] Compiling ModelsDSTU2 CodeSystemContractActionCodes.swift
[157/449] Compiling ModelsDSTU2 CodeSystemContractActorRoleCodes.swift
[158/449] Compiling ModelsDSTU2 CodeSystemContractSubtypeCodes.swift
[159/449] Compiling ModelsDSTU2 CodeSystemContractTermTypeCodes.swift
[160/449] Compiling ModelsDSTU2 CodeSystemContractTypeCodes.swift
[161/449] Compiling ModelsDSTU2 CodeSystemDataAbsentReason.swift
[162/449] Compiling ModelsDSTU2 CodeSystemDataElementStringency.swift
[163/449] Compiling ModelsDSTU2 CodeSystemDataType.swift
[164/449] Compiling ModelsDSTU2 CodeSystemDaysOfWeek.swift
[165/449] Compiling ModelsDSTU2 CodeSystemDetectedIssueSeverity.swift
[166/449] Compiling ModelsDSTU2 CodeSystemDeviceMetricCalibrationState.swift
[167/449] Compiling ModelsDSTU2 CodeSystemDeviceMetricCalibrationType.swift
[168/449] Compiling ModelsDSTU2 CodeSystemDeviceMetricCategory.swift
[169/449] Compiling ModelsDSTU2 CodeSystemDeviceMetricColor.swift
[170/449] Compiling ModelsDSTU2 CodeSystemDeviceMetricOperationalStatus.swift
[171/449] Compiling ModelsDSTU2 CodeSystemDeviceStatus.swift
[172/449] Compiling ModelsDSTU2 CodeSystemDeviceUseRequestPriority.swift
[173/449] Compiling ModelsDSTU2 CodeSystemDeviceUseRequestStatus.swift
[174/449] Compiling ModelsDSTU2 CodeSystemDiagnosticOrderPriority.swift
[175/449] Compiling ModelsDSTU2 CodeSystemDiagnosticOrderStatus.swift
[176/449] Compiling ModelsDSTU2 CodeSystemDiagnosticReportStatus.swift
[177/449] Compiling ModelsDSTU2 CodeSystemDiet.swift
[178/449] Compiling ModelsDSTU2 CodeSystemDigitalMediaType.swift
[179/699] Compiling ModelsR4 CodeSystemExampleVisionPrescriptionProductCodes.swift
[180/699] Compiling ModelsR4 CodeSystemExceptionCodes.swift
[181/699] Compiling ModelsR4 CodeSystemExpansionParameterSource.swift
[182/699] Compiling ModelsR4 CodeSystemExpansionProcessingRule.swift
[183/699] Compiling ModelsR4 CodeSystemExplanationOfBenefitStatus.swift
[184/699] Compiling ModelsR4 CodeSystemExposureState.swift
[185/699] Compiling ModelsR4 CodeSystemExampleDiagnosisTypeCodes.swift
[186/699] Compiling ModelsR4 CodeSystemExampleMessageReasonCodes.swift
[187/699] Compiling ModelsR4 CodeSystemExampleOnsetTypeReasonCodes.swift
[188/699] Compiling ModelsR4 CodeSystemExamplePaymentTypeCodes.swift
[189/699] Compiling ModelsR4 CodeSystemExamplePharmacyServiceCodes.swift
[190/699] Compiling ModelsR4 CodeSystemExampleProcedureTypeCodes.swift
[191/699] Compiling ModelsR4 CodeSystemExampleProgramReasonCodes.swift
[192/699] Compiling ModelsR4 CodeSystemExampleRelatedClaimRelationshipCodes.swift
[193/699] Compiling ModelsR4 CodeSystemExampleScenarioActorType.swift
[194/699] Compiling ModelsR4 CodeSystemExampleServiceModifierCodes.swift
[195/699] Compiling ModelsR4 CodeSystemExampleServiceProductCodes.swift
[196/699] Compiling ModelsR4 CodeSystemExampleUseCodesForList.swift
[197/699] Emitting module OrderedCollections
[198/745] Compiling AsyncAlgorithms AsyncAdjacentPairsSequence.swift
[199/745] Compiling AsyncAlgorithms AsyncBufferedByteIterator.swift
[200/745] Compiling AsyncAlgorithms AsyncChain2Sequence.swift
[201/745] Compiling AsyncAlgorithms AsyncChain3Sequence.swift
[202/745] Compiling AsyncAlgorithms AsyncChunkedByGroupSequence.swift
[203/750] Compiling ModelsR4 CodeSystemConsentProvisionType.swift
[204/750] Compiling ModelsR4 CodeSystemConsentScopeCodes.swift
[205/750] Compiling ModelsR4 CodeSystemConsentState.swift
[206/750] Compiling ModelsDSTU2 CodeSystemResponseType.swift
[207/750] Compiling ModelsDSTU2 CodeSystemRestfulConformanceMode.swift
[208/750] Compiling ModelsDSTU2 CodeSystemRestfulSecurityService.swift
[209/750] Compiling ModelsDSTU2 CodeSystemRiskProbability.swift
[210/750] Compiling ModelsDSTU2 CodeSystemRulesetCodes.swift
[211/750] Compiling ModelsDSTU2 CodeSystemSearchEntryMode.swift
[212/750] Compiling ModelsDSTU2 CodeSystemSearchModifierCode.swift
[213/750] Compiling ModelsDSTU2 CodeSystemSearchParamType.swift
[214/750] Compiling ModelsDSTU2 CodeSystemServiceProvisionConditions.swift
[215/750] Compiling ModelsDSTU2 CodeSystemSlicingRules.swift
[216/750] Compiling ModelsDSTU2 CodeSystemSlotStatus.swift
[217/750] Compiling ModelsDSTU2 CodeSystemSpecialArrangements.swift
[218/750] Compiling ModelsDSTU2 CodeSystemSpecialValues.swift
[219/750] Compiling ModelsDSTU2 CodeSystemSpecimenStatus.swift
[220/750] Compiling ModelsDSTU2 CodeSystemStructureDefinitionKind.swift
[221/750] Compiling ModelsDSTU2 CodeSystemSubscriptionChannelType.swift
[222/750] Compiling ModelsDSTU2 CodeSystemSubscriptionStatus.swift
[223/750] Compiling ModelsDSTU2 CodeSystemSubscriptionTag.swift
[224/750] Compiling ModelsDSTU2 CodeSystemSubstanceCategoryCodes.swift
[225/750] Compiling ModelsDSTU2 CodeSystemSupplyDeliveryStatus.swift
[226/750] Compiling ModelsDSTU2 CodeSystemSupplyItemType.swift
[227/750] Compiling AsyncAlgorithms AsyncChunkedOnProjectionSequence.swift
[228/750] Compiling AsyncAlgorithms AsyncChunksOfCountOrSignalSequence.swift
[229/750] Compiling AsyncAlgorithms AsyncChunksOfCountSequence.swift
[230/750] Compiling AsyncAlgorithms AsyncCompactedSequence.swift
[231/750] Compiling AsyncAlgorithms AsyncExclusiveReductionsSequence.swift
[232/750] Compiling AsyncAlgorithms AsyncInclusiveReductionsSequence.swift
[233/750] Compiling AsyncAlgorithms AsyncJoinedBySeparatorSequence.swift
[234/750] Compiling AsyncAlgorithms AsyncJoinedSequence.swift
[235/750] Compiling AsyncAlgorithms AsyncRemoveDuplicatesSequence.swift
[236/750] Compiling AsyncAlgorithms AsyncSyncSequence.swift
[237/750] Compiling AsyncAlgorithms MergeStateMachine.swift
[238/750] Compiling AsyncAlgorithms MergeStorage.swift
[239/750] Compiling AsyncAlgorithms RangeReplaceableCollection.swift
[240/750] Compiling AsyncAlgorithms Rethrow.swift
[241/750] Compiling AsyncAlgorithms SetAlgebra.swift
[242/774] Compiling AsyncAlgorithms AsyncThrottleSequence.swift
[243/774] Compiling AsyncAlgorithms AsyncThrowingExclusiveReductionsSequence.swift
[244/774] Compiling AsyncAlgorithms AsyncThrowingInclusiveReductionsSequence.swift
[245/774] Compiling AsyncAlgorithms AsyncTimerSequence.swift
[246/774] Compiling AsyncAlgorithms AsyncBufferSequence.swift
[247/774] Compiling AsyncAlgorithms BoundedBufferStateMachine.swift
[248/774] Compiling AsyncAlgorithms BoundedBufferStorage.swift
[249/774] Compiling AsyncAlgorithms UnboundedBufferStateMachine.swift
[250/774] Compiling AsyncAlgorithms UnboundedBufferStorage.swift
[251/774] Compiling AsyncAlgorithms AsyncChannel.swift
[252/774] Emitting module AsyncAlgorithms
[253/774] Compiling AsyncAlgorithms UnsafeTransfer.swift
[254/774] Compiling AsyncAlgorithms AsyncZip2Sequence.swift
[255/774] Compiling AsyncAlgorithms AsyncZip3Sequence.swift
[256/774] Compiling AsyncAlgorithms ZipStateMachine.swift
[257/774] Compiling AsyncAlgorithms ZipStorage.swift
[258/774] Compiling AsyncAlgorithms AsyncThrowingChannel.swift
[259/774] Compiling AsyncAlgorithms ChannelStateMachine.swift
[260/774] Compiling AsyncAlgorithms ChannelStorage.swift
[261/774] Compiling AsyncAlgorithms AsyncCombineLatest2Sequence.swift
[262/774] Compiling AsyncAlgorithms AsyncCombineLatest3Sequence.swift
[263/774] Compiling AsyncAlgorithms Dictionary.swift
[264/774] Compiling AsyncAlgorithms AsyncInterspersedSequence.swift
[265/774] Compiling AsyncAlgorithms Locking.swift
[266/774] Compiling AsyncAlgorithms AsyncMerge2Sequence.swift
[267/774] Compiling AsyncAlgorithms AsyncMerge3Sequence.swift
[268/774] Compiling AsyncAlgorithms CombineLatestStateMachine.swift
[269/774] Compiling AsyncAlgorithms CombineLatestStorage.swift
[270/774] Compiling AsyncAlgorithms AsyncDebounceSequence.swift
[271/774] Compiling AsyncAlgorithms DebounceStateMachine.swift
[272/774] Compiling AsyncAlgorithms DebounceStorage.swift
[273/892] Compiling CareKitStore OCKStore+Transactions.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[274/892] Compiling CareKitStore OCKStore.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[275/892] Compiling CareKitStore OCKCarePlanStoreDelegate.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[276/892] Compiling CareKitStore OCKContactStoreDelegate.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[277/892] Compiling CareKitStore OCKEventAggregator.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[278/892] Compiling CareKitStore OCKOutcomeStoreDelegate.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[279/892] Compiling CareKitStore OCKPatientStoreDelegate.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[280/892] Compiling CareKitStore OCKTaskStoreDelegate.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[281/892] Compiling CareKitStore OCKPersistentStoreCoordinator+CarePlans.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[282/892] Compiling CareKitStore OCKStoreProtocol+Synchronous.swift
[283/892] Compiling CareKitStore OCKStoreProtocol.swift
[284/892] Compiling CareKitStore OCKAnyOutcome.swift
[285/892] Compiling CareKitStore OCKAnyOutcomeStore.swift
[286/892] Compiling CareKitStore OCKOutcomeStore.swift
[287/892] Compiling CareKitStore OCKAnyPatient.swift
[288/892] Compiling CareKitStore OCKAnyPatientStore.swift
[289/892] Compiling CareKitStore OCKPatientStore.swift
[290/892] Compiling CareKitStore OCKAnyTask.swift
[291/892] Compiling CareKitStore OCKAnyTaskStore.swift
[292/892] Compiling CareKitStore OCKAnyVersionableTask.swift
[293/892] Compiling CareKitStore OCKTaskStore.swift
[294/892] Compiling CareKitStore OCKAdherenceAggregator.swift
[295/905] Compiling ModelsDSTU2 CodeSystemSupplyRequestReason.swift
[296/905] Compiling ModelsDSTU2 CodeSystemSupplyRequestStatus.swift
[297/905] Compiling ModelsDSTU2 CodeSystemSupplyType.swift
[298/905] Compiling ModelsDSTU2 CodeSystemSurfaceCodes.swift
[299/905] Compiling ModelsDSTU2 CodeSystemTestScriptOperationCodes.swift
[300/905] Compiling ModelsDSTU2 CodeSystemTimingAbbreviation.swift
[301/905] Compiling ModelsDSTU2 CodeSystemTransactionMode.swift
[302/905] Compiling ModelsDSTU2 CodeSystemUDICodes.swift
[303/905] Compiling ModelsDSTU2 CodeSystemUSLABDiagnosticOrderEventCodes.swift
[304/905] Compiling ModelsDSTU2 CodeSystemUnknownContentCode.swift
[305/905] Compiling ModelsDSTU2 CodeSystemUse.swift
[306/905] Compiling ModelsDSTU2 CodeSystemUslabObservationkind.swift
[307/905] Compiling ModelsDSTU2 CodeSystemVaccinationProtocolDoseStatusCodes.swift
[308/905] Compiling ModelsDSTU2 CodeSystemVaccinationProtocolDoseStatusReasonCodes.swift
[309/905] Compiling ModelsDSTU2 CodeSystemVisionBase.swift
[310/905] Compiling ModelsDSTU2 CodeSystemVisionEyes.swift
[311/905] Compiling ModelsDSTU2 CodeSystemXDSRelationshipType.swift
[312/905] Compiling ModelsDSTU2 CodeSystemXPathUsageType.swift
[313/905] Compiling ModelsDSTU2 CodeableConcept.swift
[314/905] Compiling ModelsDSTU2 Coding.swift
[315/905] Compiling ModelsDSTU2 Communication.swift
[316/905] Compiling ModelsDSTU2 CommunicationRequest.swift
[317/905] Compiling ModelsDSTU2 Composition.swift
[318/905] Compiling ModelsDSTU2 ConceptMap.swift
[319/929] Compiling CareKitStore OCKEventQuery.swift
[320/929] Compiling CareKitStore OCKOutcomeQuery.swift
[321/929] Compiling CareKitStore OCKPatientQuery.swift
[322/929] Compiling CareKitStore OCKQueryProtocol.swift
[323/929] Compiling CareKitStore OCKTaskQuery.swift
[324/929] Compiling CareKitStore AggregatedCareTaskProgress.swift
[325/929] Compiling CareKitStore BinaryCareTaskProgress.swift
[326/929] Compiling CareKitStore CareTaskProgress.swift
[327/929] Compiling CareKitStore CareTaskProgressStrategy+CheckingOutcomesExist.swift
[328/929] Compiling CareKitStore CareTaskProgressStrategy+SummingOutcomeValues.swift
[329/929] Compiling CareKitStore CareTaskProgressStrategy.swift
[330/929] Compiling CareKitStore LinearCareTaskProgress.swift
[331/929] Compiling CareKitStore resource_bundle_accessor.swift
[332/929] Compiling CareKitStore OCKHealthKitStore+Tasks.swift
[333/929] Compiling CareKitStore OCKHealthKitTask.swift
[334/929] Compiling CareKitStore Sample.swift
[335/929] Compiling CareKitStore SampleChange.swift
[336/929] Compiling CareKitStore LogCategory.swift
[337/929] Compiling CareKitStore Logger+Init.swift
[338/929] Compiling CareKitStore OCKLog.swift
[339/929] Compiling CareKitStore OSLog+Init.swift
[340/929] Compiling CareKitStore OCKResultClosure.swift
[341/929] Compiling CareKitStore OCKStoreError.swift
[342/929] Compiling CareKitStore OCKUtilities.swift
[343/929] Compiling CareKitStore OCKAnyCarePlan.swift
[344/929] Compiling CareKitStore OCKAnyCarePlanStore.swift
[345/929] Compiling CareKitStore OCKStoreMigration2_0To2_1Policy.swift
[346/929] Compiling CareKitStore OCKCDCarePlan.swift
[347/929] Compiling CareKitStore OCKCDClock.swift
[348/929] Compiling CareKitStore OCKCDContact.swift
[349/929] Compiling CareKitStore OCKCDHealthKitLinkage.swift
[350/929] Compiling CareKitStore OCKCDHealthKitTask.swift
[351/929] Compiling CareKitStore OCKCDKnowledgeElement.swift
[352/929] Compiling CareKitStore OCKCDNote.swift
[353/929] Compiling CareKitStore OCKCDObject.swift
[354/929] Compiling CareKitStore OCKCDOutcome.swift
[355/929] Compiling CareKitStore OCKCDOutcomeValue.swift
[356/929] Compiling CareKitStore OCKCDPatient.swift
[357/929] Compiling CareKitStore OCKCDPersonName.swift
[358/929] Compiling CareKitStore OCKCarePlanStore.swift
[359/929] Compiling CareKitStore OCKAnyContact.swift
[360/929] Compiling CareKitStore OCKAnyContactStore.swift
[361/929] Compiling CareKitStore OCKContactStore.swift
[362/929] Compiling CareKitStore OCKAnyEvent.swift
[363/929] Compiling CareKitStore OCKAnyEventStore.swift
[364/929] Compiling CareKitStore OCKEventStore.swift
[365/929] Compiling CareKitStore OCKReadOnlyEventStore+FetchPartialEvents.swift
[366/929] Compiling CareKitStore OCKReadOnlyEventStore+PartialEventsStream.swift
[367/929] Compiling CareKitStore OCKReadOnlyEventStore+Utilities.swift
[368/929] Compiling CareKitStore OCKReadOnlyEventStore+VersioningUtilities.swift
[369/929] Compiling CareKitStore PartialEvent.swift
[370/929] Compiling CareKitStore OCKObjectCompatible.swift
[371/929] Emitting module CareKitStore
[372/929] Compiling CareKitStore CareStoreQueryResults.swift
[373/929] Compiling CareKitStore CoreDataQueryMonitor.swift
[374/929] Compiling CareKitStore HealthKitQueryMonitor+QueryResult.swift
[375/929] Compiling CareKitStore HealthKitQueryMonitor.swift
[376/929] Compiling CareKitStore QueryMonitor.swift
[377/929] Compiling CareKitStore OCKAdherence.swift
[378/929] Compiling CareKitStore OCKBiologicalSex.swift
[379/929] Compiling CareKitStore OCKCarePlan.swift
[380/929] Compiling CareKitStore OCKContact.swift
[381/929] Compiling CareKitStore OCKEntity.swift
[382/929] Compiling CareKitStore OCKEvent.swift
[383/929] Compiling CareKitStore OCKHealthKitLinkage.swift
[384/929] Compiling CareKitStore OCKLabeledValue.swift
[385/929] Compiling CareKitStore OCKRemoteSynchronizable.swift
[386/929] Compiling CareKitStore OCKRevisionRecord.swift
[387/929] Compiling CareKitStore OCKStore+Synchronization.swift
[388/929] Compiling CareKitStore OCKWatchConnectivityPeer.swift
[389/929] Compiling CareKitStore OCKHealthKitOutcome.swift
[390/929] Compiling CareKitStore OCKHealthKitPassthroughStore+EventUtilities.swift
[391/929] Compiling CareKitStore OCKHealthKitPassthroughStore+EventsStream.swift
[392/929] Compiling CareKitStore OCKHealthKitPassthroughStore+FetchEvents.swift
[393/929] Compiling CareKitStore OCKHealthKitPassthroughStore+FetchOutcomes.swift
[394/929] Compiling CareKitStore OCKHealthKitPassthroughStore+OutcomesStream.swift
[395/929] Compiling CareKitStore OCKHealthKitPassthroughStore.swift
[396/929] Compiling CareKitStore OCKHealthKitProxy.swift
[397/929] Compiling CareKitStore OCKHealthKitStore+Outcomes.swift
[405/929] Compiling CareKitStore OCKPersistentStoreCoordinator+Contacts.swift
[406/929] Compiling CareKitStore OCKPersistentStoreCoordinator+Events.swift
[407/929] Compiling CareKitStore OCKPersistentStoreCoordinator+Outcomes.swift
[408/929] Compiling CareKitStore OCKPersistentStoreCoordinator+Patients.swift
[409/929] Compiling CareKitStore OCKPersistentStoreCoordinator+Tasks.swift
[410/929] Compiling CareKitStore OCKStoreCoordinator.swift
[411/929] Compiling CareKitStore OCKNote.swift
[412/929] Compiling CareKitStore OCKOutcome.swift
[413/929] Compiling CareKitStore OCKOutcomeValue.swift
[414/929] Compiling CareKitStore OCKPatient.swift
[415/929] Compiling CareKitStore OCKPostalAddress.swift
[416/929] Compiling CareKitStore OCKSchedule.swift
[417/929] Compiling CareKitStore OCKScheduleElement.swift
[418/929] Compiling CareKitStore OCKScheduleEvent.swift
[419/929] Compiling CareKitStore OCKSemanticVersion.swift
[420/929] Compiling CareKitStore OCKTask.swift
[421/929] Compiling CareKitStore OCKAdherenceQuery.swift
[422/929] Compiling CareKitStore OCKCarePlanQuery.swift
[423/929] Compiling CareKitStore OCKContactQuery.swift
[424/929] Compiling CareKitStore OCKCDPostalAddress.swift
[425/929] Compiling CareKitStore OCKCDScheduleElement.swift
[426/929] Compiling CareKitStore OCKCDTag.swift
[427/929] Compiling CareKitStore OCKCDTask.swift
[428/929] Compiling CareKitStore OCKCDVersionedObject.swift
[429/929] Compiling CareKitStore OCKStore+CarePlans.swift
[430/929] Compiling CareKitStore OCKStore+Contacts.swift
[431/929] Compiling CareKitStore OCKStore+HealthKit.swift
[432/929] Compiling CareKitStore OCKStore+Outcomes.swift
[433/929] Compiling CareKitStore OCKStore+Patients.swift
[434/929] Compiling CareKitStore OCKStore+Tasks.swift
[437/929] Emitting module ModelsDSTU2
[446/953] Compiling ModelsR4 CodeSystemDiscriminatorType.swift
[447/953] Compiling ModelsR4 CodeSystemDocumentMode.swift
[448/953] Compiling ModelsR4 CodeSystemDocumentReferenceStatus.swift
[449/953] Compiling ModelsR4 CodeSystemDocumentRelationshipType.swift
[450/953] Compiling ModelsR4 CodeSystemDoseAndRateType.swift
[451/953] Compiling ModelsR4 CodeSystemEffectEstimateType.swift
[452/953] Compiling ModelsR4 CodeSystemEligibilityRequestPurpose.swift
[453/953] Compiling ModelsR4 CodeSystemEligibilityResponsePurpose.swift
[454/953] Compiling ModelsR4 CodeSystemEnableWhenBehavior.swift
[455/953] Compiling ModelsR4 CodeSystemEncounterLocationStatus.swift
[456/953] Compiling ModelsR4 CodeSystemEncounterStatus.swift
[457/953] Compiling ModelsR4 CodeSystemEncounterType.swift
[458/953] Compiling ModelsR4 CodeSystemEndpointConnectionType.swift
[459/953] Compiling ModelsR4 CodeSystemEndpointPayloadType.swift
[460/953] Compiling ModelsR4 CodeSystemEndpointStatus.swift
[461/953] Compiling ModelsR4 CodeSystemEnteralFormulaAdditiveTypeCode.swift
[462/953] Compiling ModelsR4 CodeSystemEpisodeOfCareStatus.swift
[463/953] Compiling ModelsR4 CodeSystemDeviceMetricColor.swift
[464/953] Compiling ModelsR4 CodeSystemDeviceMetricOperationalStatus.swift
[465/953] Compiling ModelsR4 CodeSystemDeviceNameType.swift
[466/953] Compiling ModelsR4 CodeSystemCommonTags.swift
[467/953] Compiling ModelsR4 CodeSystemCommunicationCategory.swift
[468/953] Compiling ModelsR4 CodeSystemCommunicationNotDoneReason.swift
[469/953] Compiling ModelsR4 CodeSystemCommunicationTopic.swift
[470/953] Compiling ModelsR4 CodeSystemCompartmentType.swift
[471/953] Compiling ModelsR4 CodeSystemCompositeMeasureScoring.swift
[472/953] Compiling ModelsR4 CodeSystemCompositionAttestationMode.swift
[473/953] Compiling ModelsR4 CodeSystemCompositionStatus.swift
[474/953] Compiling ModelsR4 CodeSystemConceptMapEquivalence.swift
[475/953] Compiling ModelsR4 CodeSystemConceptMapGroupUnmappedMode.swift
[476/953] Compiling ModelsR4 CodeSystemConceptSubsumptionOutcome.swift
[477/953] Compiling ModelsR4 CodeSystemConditionCategoryCodes.swift
[478/953] Compiling ModelsR4 CodeSystemConditionClinicalStatusCodes.swift
[479/953] Compiling ModelsR4 CodeSystemConditionState.swift
[480/953] Compiling ModelsR4 CodeSystemConditionVerificationStatus.swift
[481/953] Compiling ModelsR4 CodeSystemConditionalDeleteStatus.swift
[482/953] Compiling ModelsR4 CodeSystemConditionalReadStatus.swift
[483/953] Compiling ModelsR4 CodeSystemConformanceExpectation.swift
[484/953] Compiling ModelsR4 CodeSystemConsentActionCodes.swift
[485/953] Compiling ModelsR4 CodeSystemConsentCategoryCodes.swift
[486/953] Compiling ModelsR4 CodeSystemConsentDataMeaning.swift
[487/953] Compiling ModelsR4 CodeSystemConsentPolicyRuleCodes.swift
[488/953] Compiling ModelsR4 CodeSystemEpisodeOfCareType.swift
[489/953] Compiling ModelsR4 CodeSystemEventCapabilityMode.swift
[490/953] Compiling ModelsR4 CodeSystemEventResourceType.swift
[491/953] Compiling ModelsR4 CodeSystemConstraintSeverity.swift
[492/953] Compiling ModelsR4 CodeSystemContactEntityType.swift
[493/953] Compiling ModelsR4 CodeSystemContactPointSystem.swift
[494/953] Compiling ModelsR4 CodeSystemContactPointUse.swift
[495/953] Compiling ModelsR4 CodeSystemContainerCap.swift
[496/953] Compiling ModelsR4 CodeSystemContractActionCodes.swift
[497/953] Compiling ModelsR4 CodeSystemContractActorRoleCodes.swift
[498/953] Compiling ModelsR4 CodeSystemContractContentDerivationCodes.swift
[499/953] Compiling ModelsR4 CodeSystemContractDataMeaning.swift
[500/953] Compiling ModelsR4 CodeSystemContractResourceActionStatusCodes.swift
[501/953] Compiling ModelsR4 CodeSystemContractResourceAssetAvailiabilityCodes.swift
[502/953] Compiling ModelsR4 CodeSystemContractResourceAssetContextCodes.swift
[503/953] Compiling ModelsR4 CodeSystemContractResourceAssetScopeCodes.swift
[504/953] Compiling ModelsR4 CodeSystemContractResourceAssetSubTypeCodes.swift
[505/953] Compiling ModelsR4 CodeSystemContractResourceAssetTypeCodes.swift
[506/953] Compiling ModelsR4 CodeSystemContractResourceDecisionModeCodes.swift
[507/953] Compiling ModelsR4 CodeSystemContractResourceDefinitionSubtypeCodes.swift
[508/953] Compiling ModelsR4 CodeSystemContractResourceDefinitionTypeCodes.swift
[509/953] Compiling ModelsR4 CodeSystemContractResourceExpirationTypeCodes.swift
[510/953] Compiling ModelsR4 CodeSystemContractResourceLegalStateCodes.swift
[511/953] Compiling ModelsR4 CodeSystemContractResourcePartyRoleCodes.swift
[512/953] Compiling ModelsR4 CodeSystemContractResourcePublicationStatusCodes.swift
[586/953] Compiling ModelsR4 CodeSystemContractResourceSecurityControlCodes.swift
[587/953] Compiling ModelsR4 CodeSystemContractResourceStatusCodes.swift
[588/953] Compiling ModelsR4 CodeSystemContractSignerTypeCodes.swift
[589/953] Compiling ModelsR4 CodeSystemContractSubtypeCodes.swift
[590/953] Compiling ModelsR4 CodeSystemContractTermSubtypeCodes.swift
[591/953] Compiling ModelsR4 CodeSystemContractTermTypeCodes.swift
[592/953] Compiling ModelsR4 CodeSystemContractTypeCodes.swift
[593/953] Compiling ModelsR4 CodeSystemContributorType.swift
[594/953] Compiling ModelsR4 CodeSystemCopyNumberEvent.swift
[595/953] Compiling ModelsR4 CodeSystemCoverageClassCodes.swift
[596/953] Compiling ModelsR4 CodeSystemCoverageCopayTypeCodes.swift
[597/953] Compiling ModelsR4 CodeSystemCoverageEligibilityResponseAuthSupportCodes.swift
[598/953] Compiling ModelsR4 CodeSystemCoverageSelfPayCodes.swift
[599/953] Compiling ModelsR4 CodeSystemDataAbsentReason.swift
[600/953] Compiling ModelsR4 CodeSystemDataType.swift
[601/953] Compiling ModelsR4 CodeSystemDaysOfWeek.swift
[602/953] Compiling ModelsR4 CodeSystemDefinitionResourceType.swift
[603/953] Compiling ModelsR4 CodeSystemDefinitionStatus.swift
[604/953] Compiling ModelsR4 CodeSystemDefinitionTopic.swift
[605/953] Compiling ModelsR4 CodeSystemDefinitionUseCodes.swift
[606/953] Compiling ModelsR4 CodeSystemDetectedIssueSeverity.swift
[607/953] Compiling ModelsR4 CodeSystemDeviceDefinitionParameterGroup.swift
[608/953] Compiling ModelsR4 CodeSystemDeviceMetricCalibrationState.swift
[609/953] Compiling ModelsR4 CodeSystemDeviceMetricCalibrationType.swift
[610/953] Compiling ModelsR4 CodeSystemDeviceMetricCategory.swift
[611/1001] Compiling ModelsDSTU2 Condition.swift
[612/1001] Compiling ModelsDSTU2 Conformance.swift
[613/1001] Compiling ModelsDSTU2 ContactPoint.swift
[614/1001] Compiling ModelsDSTU2 Contract.swift
[615/1001] Compiling ModelsDSTU2 Count.swift
[616/1001] Compiling ModelsDSTU2 Coverage.swift
[617/1001] Compiling ModelsDSTU2 DataElement.swift
[618/1001] Compiling ModelsDSTU2 DateTime+NSDate.swift
[619/1001] Compiling ModelsDSTU2 DateTime.swift
[620/1001] Compiling ModelsDSTU2 DetectedIssue.swift
[621/1001] Compiling ModelsDSTU2 Device.swift
[622/1001] Compiling ModelsDSTU2 DeviceComponent.swift
[623/1001] Compiling ModelsDSTU2 DeviceMetric.swift
[624/1001] Compiling ModelsDSTU2 DeviceUseRequest.swift
[625/1001] Compiling ModelsDSTU2 DeviceUseStatement.swift
[626/1001] Compiling ModelsDSTU2 DiagnosticOrder.swift
[627/1001] Compiling ModelsDSTU2 DiagnosticReport.swift
[628/1001] Compiling ModelsDSTU2 Distance.swift
[629/1001] Compiling ModelsDSTU2 DocumentManifest.swift
[630/1001] Compiling ModelsDSTU2 DocumentReference.swift
[631/1001] Compiling ModelsDSTU2 DomainResource+Extensions.swift
[632/1001] Compiling ModelsDSTU2 DomainResource.swift
[633/1001] Compiling ModelsDSTU2 Duration.swift
[634/1001] Compiling ModelsDSTU2 Element+Extensions.swift
[635/1001] Compiling ModelsDSTU2 Element.swift
[636/1001] Compiling ModelsDSTU2 ElementDefinition.swift
[637/1001] Compiling ModelsDSTU2 EligibilityRequest.swift
[638/1001] Compiling ModelsDSTU2 EligibilityResponse.swift
[639/1001] Compiling ModelsDSTU2 Encounter.swift
[640/1001] Compiling ModelsDSTU2 EnrollmentRequest.swift
[641/1001] Compiling ModelsDSTU2 EnrollmentResponse.swift
[642/1001] Compiling ModelsDSTU2 EpisodeOfCare.swift
[643/1001] Compiling ModelsDSTU2 ExplanationOfBenefit.swift
[644/1001] Compiling ModelsDSTU2 Extension.swift
[645/1001] Compiling ModelsDSTU2 FHIRAbstractResource.swift
[646/1001] Compiling ModelsDSTU2 FHIRBool.swift
[647/1001] Compiling ModelsDSTU2 FHIRDate+NSDate.swift
[648/1001] Compiling ModelsDSTU2 FHIRDate.swift
[649/1001] Compiling ModelsDSTU2 FHIRDecimal.swift
[650/1001] Compiling ModelsDSTU2 FHIRInteger.swift
[651/1001] Compiling ModelsDSTU2 FHIRPositiveInteger.swift
[652/1001] Compiling ModelsDSTU2 FHIRPrimitive.swift
[653/1001] Compiling ModelsDSTU2 FHIRString.swift
[654/1001] Compiling ModelsDSTU2 FHIRTime+NSDate.swift
[655/1001] Compiling ModelsDSTU2 FHIRTime.swift
[656/1001] Compiling ModelsDSTU2 FHIRURI.swift
[657/1001] Compiling ModelsDSTU2 FHIRUnsignedInteger.swift
[658/1001] Compiling ModelsDSTU2 FamilyMemberHistory.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[693/1025] Compiling ModelsR4 CodeSystemExpressionLanguage.swift
[694/1025] Compiling ModelsR4 CodeSystemExtensionContextType.swift
[695/1025] Compiling ModelsR4 CodeSystemFHIRDefinedConceptProperties.swift
[696/1025] Compiling ModelsR4 CodeSystemFHIRDeviceStatus.swift
[697/1025] Compiling ModelsR4 CodeSystemFHIRDeviceStatusReason.swift
[698/1025] Compiling ModelsR4 CodeSystemFHIRRestfulInteractions.swift
[699/1025] Compiling ModelsR4 CodeSystemFHIRSubstanceStatus.swift
[700/1025] Compiling ModelsR4 CodeSystemFailureAction.swift
[701/1025] Compiling ModelsR4 CodeSystemFamilyHistoryAbsentReason.swift
[702/1025] Compiling ModelsR4 CodeSystemFamilyHistoryStatus.swift
[703/1025] Compiling ModelsR4 CodeSystemFeedingDeviceCodes.swift
[704/1025] Compiling ModelsR4 CodeSystemFilterOperator.swift
[705/1025] Compiling ModelsR4 CodeSystemFinancialResourceStatusCodes.swift
[706/1025] Compiling ModelsR4 CodeSystemFinancialTaskCodes.swift
[707/1025] Compiling ModelsR4 CodeSystemFinancialTaskInputTypeCodes.swift
[708/1025] Compiling ModelsR4 CodeSystemFlagCategory.swift
[709/1025] Compiling ModelsR4 CodeSystemFlagPriorityCodes.swift
[710/1025] Compiling ModelsR4 CodeSystemFlagStatus.swift
[711/1025] Compiling ModelsR4 CodeSystemGenderIdentity.swift
[712/1025] Compiling ModelsR4 CodeSystemGenderStatus.swift
[713/1025] Compiling ModelsR4 CodeSystemGoalAcceptanceStatus.swift
[714/1025] Compiling ModelsR4 CodeSystemGoalAchievementStatus.swift
[715/1025] Compiling ModelsR4 CodeSystemGoalCategory.swift
[716/1025] Compiling ModelsR4 CodeSystemGoalLifecycleStatus.swift
[892/1049] Emitting module ModelsR4
[918/1265] Compiling ModelsR4 CodeSystemGoalPriority.swift
[919/1265] Compiling ModelsR4 CodeSystemGoalRelationshipType.swift
[920/1265] Compiling ModelsR4 CodeSystemGoalStatusReason.swift
[921/1265] Compiling ModelsR4 CodeSystemGraphCompartmentRule.swift
[922/1265] Compiling ModelsR4 CodeSystemGraphCompartmentUse.swift
[923/1265] Compiling ModelsR4 CodeSystemGroupMeasure.swift
[924/1265] Compiling ModelsR4 CodeSystemGroupType.swift
[925/1265] Compiling ModelsR4 CodeSystemGuidanceResponseStatus.swift
[926/1265] Compiling ModelsR4 CodeSystemGuidePageGeneration.swift
[927/1265] Compiling ModelsR4 CodeSystemGuideParameterCode.swift
[928/1265] Compiling ModelsR4 CodeSystemHL7Workgroup.swift
[929/1265] Compiling ModelsR4 CodeSystemHTTPVerb.swift
[930/1265] Compiling ModelsR4 CodeSystemHandlingConditionSet.swift
[931/1265] Compiling ModelsR4 CodeSystemHumanNameAssemblyOrder.swift
[932/1265] Compiling ModelsR4 CodeSystemISO210892017HealthRecordLifecycleEvents.swift
[933/1265] Compiling ModelsR4 CodeSystemIdentifierUse.swift
[934/1265] Compiling ModelsR4 CodeSystemIdentityAssuranceLevel.swift
[935/1265] Compiling ModelsR4 CodeSystemImagingStudyStatus.swift
[936/1265] Compiling ModelsR4 CodeSystemImmunizationEvaluationDoseStatusCodes.swift
[937/1265] Compiling ModelsR4 CodeSystemImmunizationEvaluationDoseStatusReasonCodes.swift
[938/1265] Compiling ModelsR4 CodeSystemImmunizationFundingSource.swift
[939/1265] Compiling ModelsR4 CodeSystemImmunizationOriginCodes.swift
[940/1265] Compiling ModelsR4 CodeSystemImmunizationProgramEligibility.swift
[941/1265] Compiling ModelsR4 CodeSystemImmunizationRecommendationStatusCodes.swift
[942/1289] Compiling ModelsR4 CodeSystemImmunizationSubpotentReason.swift
[943/1289] Compiling ModelsR4 CodeSystemImplantStatus.swift
[944/1289] Compiling ModelsR4 CodeSystemIndicator.swift
[945/1289] Compiling ModelsR4 CodeSystemInterventionCodes.swift
[946/1289] Compiling ModelsR4 CodeSystemInvoicePriceComponentType.swift
[947/1289] Compiling ModelsR4 CodeSystemInvoiceStatus.swift
[948/1289] Compiling ModelsR4 CodeSystemIssueSeverity.swift
[949/1289] Compiling ModelsR4 CodeSystemIssueType.swift
[950/1289] Compiling ModelsR4 CodeSystemKnowledgeResourceType.swift
[951/1289] Compiling ModelsR4 CodeSystemLanguagePreferenceType.swift
[952/1289] Compiling ModelsR4 CodeSystemLibraryType.swift
[953/1289] Compiling ModelsR4 CodeSystemLinkType.swift
[954/1289] Compiling ModelsR4 CodeSystemLinkageType.swift
[955/1289] Compiling ModelsR4 CodeSystemListEmptyReasons.swift
[956/1289] Compiling ModelsR4 CodeSystemListMode.swift
[957/1289] Compiling ModelsR4 CodeSystemListOrderCodes.swift
[958/1289] Compiling ModelsR4 CodeSystemListStatus.swift
[959/1289] Compiling ModelsR4 CodeSystemLocationMode.swift
[960/1289] Compiling ModelsR4 CodeSystemLocationStatus.swift
[961/1289] Compiling ModelsR4 CodeSystemLocationType.swift
[962/1289] Compiling ModelsR4 CodeSystemMatchGrade.swift
[963/1289] Compiling ModelsR4 CodeSystemMaxOccurs.swift
[964/1289] Compiling ModelsR4 CodeSystemMeasureDataUsage.swift
[965/1289] Compiling ModelsR4 CodeSystemMeasureImprovementNotation.swift
[966/1313] Compiling ModelsR4 CodeSystemMedicationrequestStatus.swift
[967/1313] Compiling ModelsR4 CodeSystemMessageSignificanceCategory.swift
[968/1313] Compiling ModelsR4 CodeSystemMessageTransport.swift
[969/1313] Compiling ModelsR4 CodeSystemMessageheaderResponseRequest.swift
[970/1313] Compiling ModelsR4 CodeSystemMissingToothReasonCodes.swift
[971/1313] Compiling ModelsR4 CodeSystemModifierTypeCodes.swift
[972/1313] Compiling ModelsR4 CodeSystemNHINPurposeOfUse.swift
[973/1313] Compiling ModelsR4 CodeSystemNameUse.swift
[974/1313] Compiling ModelsR4 CodeSystemNamingSystemIdentifierType.swift
[975/1313] Compiling ModelsR4 CodeSystemNamingSystemType.swift
[976/1313] Compiling ModelsR4 CodeSystemNarrativeStatus.swift
[977/1313] Compiling ModelsR4 CodeSystemNeed.swift
[978/1313] Compiling ModelsR4 CodeSystemNetworkTypeCodes.swift
[979/1313] Compiling ModelsR4 CodeSystemNoteType.swift
[980/1313] Compiling ModelsR4 CodeSystemObservationCategoryCodes.swift
[981/1313] Compiling ModelsR4 CodeSystemObservationDataType.swift
[982/1313] Compiling ModelsR4 CodeSystemObservationRangeCategory.swift
[983/1313] Compiling ModelsR4 CodeSystemObservationReferenceRangeMeaningCodes.swift
[984/1313] Compiling ModelsR4 CodeSystemObservationStatus.swift
[985/1313] Compiling ModelsR4 CodeSystemOperationKind.swift
[986/1313] Compiling ModelsR4 CodeSystemOperationOutcomeCodes.swift
[987/1313] Compiling ModelsR4 CodeSystemOperationParameterUse.swift
[988/1313] Compiling ModelsR4 CodeSystemOrganizationAffiliationRole.swift
[989/1313] Compiling ModelsR4 CodeSystemOrganizationType.swift
[990/1337] Compiling ModelsR4 CodeSystemOrientationType.swift
[991/1337] Compiling ModelsR4 CodeSystemParticipantRequired.swift
[992/1337] Compiling ModelsR4 CodeSystemParticipantType.swift
[993/1337] Compiling ModelsR4 CodeSystemParticipationStatus.swift
[994/1337] Compiling ModelsR4 CodeSystemPayeeResourceType.swift
[995/1337] Compiling ModelsR4 CodeSystemPaymentAdjustmentReasonCodes.swift
[996/1337] Compiling ModelsR4 CodeSystemPaymentStatusCodes.swift
[997/1337] Compiling ModelsR4 CodeSystemPaymentTypeCodes.swift
[998/1337] Compiling ModelsR4 CodeSystemPerformerRoleCodes.swift
[999/1337] Compiling ModelsR4 CodeSystemPlanDefinitionType.swift
[1000/1337] Compiling ModelsR4 CodeSystemPractitionerRoleCodes.swift
[1001/1337] Compiling ModelsR4 CodeSystemPractitionerSpecialty.swift
[1002/1337] Compiling ModelsR4 CodeSystemPrecisionEstimateType.swift
[1003/1337] Compiling ModelsR4 CodeSystemPrimarySourceType.swift
[1004/1337] Compiling ModelsR4 CodeSystemProcedureDeviceActionCodes.swift
[1005/1337] Compiling ModelsR4 CodeSystemProcedureProgressStatusCodes.swift
[1006/1337] Compiling ModelsR4 CodeSystemProcessPriorityCodes.swift
[1007/1337] Compiling ModelsR4 CodeSystemPropertyRepresentation.swift
[1008/1337] Compiling ModelsR4 CodeSystemPropertyType.swift
[1009/1337] Compiling ModelsR4 CodeSystemProvenanceEntityRole.swift
[1010/1337] Compiling ModelsR4 CodeSystemProvenanceParticipantRole.swift
[1011/1337] Compiling ModelsR4 CodeSystemProvenanceParticipantType.swift
[1012/1337] Compiling ModelsR4 CodeSystemPublicationStatus.swift
[1013/1337] Compiling ModelsR4 CodeSystemPushTypeAvailable.swift
[1014/1361] Compiling ModelsR4 CodeSystemMeasurePopulationType.swift
[1015/1361] Compiling ModelsR4 CodeSystemMeasureReportStatus.swift
[1016/1361] Compiling ModelsR4 CodeSystemMeasureReportType.swift
[1017/1361] Compiling ModelsR4 CodeSystemMeasureScoring.swift
[1018/1361] Compiling ModelsR4 CodeSystemMeasureType.swift
[1019/1361] Compiling ModelsR4 CodeSystemMediaModality.swift
[1020/1361] Compiling ModelsR4 CodeSystemMediaType.swift
[1021/1361] Compiling ModelsR4 CodeSystemMedicationAdministrationCategoryCodes.swift
[1022/1361] Compiling ModelsR4 CodeSystemMedicationAdministrationPerformerFunctionCodes.swift
[1023/1361] Compiling ModelsR4 CodeSystemMedicationAdministrationStatusCodes.swift
[1024/1361] Compiling ModelsR4 CodeSystemMedicationDispenseCategoryCodes.swift
[1025/1361] Compiling ModelsR4 CodeSystemMedicationDispensePerformerFunctionCodes.swift
[1026/1361] Compiling ModelsR4 CodeSystemMedicationDispenseStatusCodes.swift
[1027/1361] Compiling ModelsR4 CodeSystemMedicationDispenseStatusReasonCodes.swift
[1028/1361] Compiling ModelsR4 CodeSystemMedicationKnowledgeCharacteristicCodes.swift
[1029/1361] Compiling ModelsR4 CodeSystemMedicationKnowledgePackageTypeCodes.swift
[1030/1361] Compiling ModelsR4 CodeSystemMedicationKnowledgeStatusCodes.swift
[1031/1361] Compiling ModelsR4 CodeSystemMedicationRequestCategoryCodes.swift
[1032/1361] Compiling ModelsR4 CodeSystemMedicationRequestCourseOfTherapyCodes.swift
[1033/1361] Compiling ModelsR4 CodeSystemMedicationRequestIntent.swift
[1034/1361] Compiling ModelsR4 CodeSystemMedicationRequestStatusReasonCodes.swift
[1035/1361] Compiling ModelsR4 CodeSystemMedicationStatementCategoryCodes.swift
[1036/1361] Compiling ModelsR4 CodeSystemMedicationStatementStatusCodes.swift
[1037/1361] Compiling ModelsR4 CodeSystemMedicationStatusCodes.swift
[1038/1385] Compiling ModelsR4 CodeSystemQualityOfEvidenceRating.swift
[1039/1385] Compiling ModelsR4 CodeSystemQualityType.swift
[1040/1385] Compiling ModelsR4 CodeSystemQuantityComparator.swift
[1041/1385] Compiling ModelsR4 CodeSystemQuestionnaireItemOperator.swift
[1042/1385] Compiling ModelsR4 CodeSystemQuestionnaireItemType.swift
[1043/1385] Compiling ModelsR4 CodeSystemQuestionnaireItemUIControlCodes.swift
[1044/1385] Compiling ModelsR4 CodeSystemQuestionnaireItemUsageMode.swift
[1045/1385] Compiling ModelsR4 CodeSystemQuestionnaireResponseStatus.swift
[1046/1385] Compiling ModelsR4 CodeSystemQuestionnaireTextCategories.swift
[1047/1385] Compiling ModelsR4 CodeSystemReasonMedicationGivenCodes.swift
[1048/1385] Compiling ModelsR4 CodeSystemReferenceHandlingPolicy.swift
[1049/1385] Compiling ModelsR4 CodeSystemReferenceVersionRules.swift
[1050/1385] Compiling ModelsR4 CodeSystemReferralMethod.swift
[1051/1385] Compiling ModelsR4 CodeSystemRejectionCriterion.swift
[1052/1385] Compiling ModelsR4 CodeSystemRelatedArtifactType.swift
[1053/1385] Compiling ModelsR4 CodeSystemRepositoryType.swift
[1054/1385] Compiling ModelsR4 CodeSystemRequestIntent.swift
[1055/1385] Compiling ModelsR4 CodeSystemRequestPriority.swift
[1056/1385] Compiling ModelsR4 CodeSystemRequestResourceType.swift
[1057/1385] Compiling ModelsR4 CodeSystemRequestStatus.swift
[1058/1385] Compiling ModelsR4 CodeSystemResearchElementType.swift
[1059/1385] Compiling ModelsR4 CodeSystemResearchStudyObjectiveType.swift
[1060/1385] Compiling ModelsR4 CodeSystemResearchStudyPhase.swift
[1061/1385] Compiling ModelsR4 CodeSystemResearchStudyPrimaryPurposeType.swift
[1062/1385] Compiling ModelsR4 CodeSystemResearchStudyReasonStopped.swift
[1063/1385] Compiling ModelsR4 CodeSystemResearchStudyStatus.swift
[1064/1385] Compiling ModelsR4 CodeSystemResearchSubjectStatus.swift
[1065/1385] Compiling ModelsR4 CodeSystemResourceSecurityCategory.swift
[1066/1385] Compiling ModelsR4 CodeSystemResourceType.swift
[1067/1385] Compiling ModelsR4 CodeSystemResourceValidationMode.swift
[1068/1385] Compiling ModelsR4 CodeSystemResourceVersionPolicy.swift
[1069/1385] Compiling ModelsR4 CodeSystemResponseType.swift
[1070/1385] Compiling ModelsR4 CodeSystemRestfulCapabilityMode.swift
[1071/1385] Compiling ModelsR4 CodeSystemRestfulSecurityService.swift
[1072/1385] Compiling ModelsR4 CodeSystemRiskEstimateType.swift
[1073/1385] Compiling ModelsR4 CodeSystemRiskProbability.swift
[1074/1385] Compiling ModelsR4 CodeSystemSNOMEDCTReasonMedicationNotGivenCodes.swift
[1075/1385] Compiling ModelsR4 CodeSystemSearchComparator.swift
[1076/1385] Compiling ModelsR4 CodeSystemSearchEntryMode.swift
[1077/1385] Compiling ModelsR4 CodeSystemSearchModifierCode.swift
[1078/1385] Compiling ModelsR4 CodeSystemSearchParamType.swift
[1079/1385] Compiling ModelsR4 CodeSystemSequenceStatus.swift
[1080/1385] Compiling ModelsR4 CodeSystemSequenceType.swift
[1081/1385] Compiling ModelsR4 CodeSystemServiceProvisionConditions.swift
[1082/1385] Compiling ModelsR4 CodeSystemSlicingRules.swift
[1083/1385] Compiling ModelsR4 CodeSystemSlotStatus.swift
[1084/1385] Compiling ModelsR4 CodeSystemSmartCapabilities.swift
[1085/1385] Compiling ModelsR4 CodeSystemSortDirection.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
[1167/1433] Compiling ModelsR4 CodeSystemSupplyRequestReason.swift
[1168/1433] Compiling ModelsR4 CodeSystemSupplyRequestStatus.swift
[1169/1433] Compiling ModelsR4 CodeSystemSupplyType.swift
[1170/1433] Compiling ModelsR4 CodeSystemSurfaceCodes.swift
[1171/1433] Compiling ModelsR4 CodeSystemSynthesisType.swift
[1172/1433] Compiling ModelsR4 CodeSystemTaskCode.swift
[1173/1433] Compiling ModelsR4 CodeSystemTaskIntent.swift
[1174/1433] Compiling ModelsR4 CodeSystemTaskStatus.swift
[1175/1433] Compiling ModelsR4 CodeSystemTemplateStatusCodeLifeCycle.swift
[1176/1433] Compiling ModelsR4 CodeSystemTestReportActionResult.swift
[1177/1433] Compiling ModelsR4 CodeSystemTestReportParticipantType.swift
[1178/1433] Compiling ModelsR4 CodeSystemTestReportResult.swift
[1179/1433] Compiling ModelsR4 CodeSystemTestReportStatus.swift
[1180/1433] Compiling ModelsR4 CodeSystemTestScriptOperationCode.swift
[1181/1433] Compiling ModelsR4 CodeSystemTestScriptProfileDestinationType.swift
[1182/1433] Compiling ModelsR4 CodeSystemTestScriptProfileOriginType.swift
[1183/1433] Compiling ModelsR4 CodeSystemTestScriptRequestMethodCode.swift
[1184/1433] Compiling ModelsR4 CodeSystemTransactionMode.swift
[1185/1433] Compiling ModelsR4 CodeSystemTriggerType.swift
[1186/1433] Compiling ModelsR4 CodeSystemTypeDerivationRule.swift
[1187/1433] Compiling ModelsR4 CodeSystemUDICodes.swift
[1188/1433] Compiling ModelsR4 CodeSystemUDIEntryType.swift
[1189/1433] Compiling ModelsR4 CodeSystemUnitTypeCodes.swift
[1190/1433] Compiling ModelsR4 CodeSystemUnknownContentCode.swift
[1191/1433] Compiling ModelsR4 CodeSystemSpecialArrangements.swift
[1192/1433] Compiling ModelsR4 CodeSystemSpecialValues.swift
[1193/1433] Compiling ModelsR4 CodeSystemSpecimenContainedPreference.swift
[1194/1433] Compiling ModelsR4 CodeSystemSpecimenStatus.swift
[1195/1433] Compiling ModelsR4 CodeSystemStandardsStatus.swift
[1196/1433] Compiling ModelsR4 CodeSystemStatus.swift
[1197/1433] Compiling ModelsR4 CodeSystemStrandType.swift
[1198/1433] Compiling ModelsR4 CodeSystemStrengthOfRecommendationRating.swift
[1199/1433] Compiling ModelsR4 CodeSystemStructureDefinitionKind.swift
[1200/1433] Compiling ModelsR4 CodeSystemStructureMapContextType.swift
[1201/1433] Compiling ModelsR4 CodeSystemStructureMapGroupTypeMode.swift
[1202/1433] Compiling ModelsR4 CodeSystemStructureMapInputMode.swift
[1203/1433] Compiling ModelsR4 CodeSystemStructureMapModelMode.swift
[1204/1433] Compiling ModelsR4 CodeSystemStructureMapSourceListMode.swift
[1205/1433] Compiling ModelsR4 CodeSystemStructureMapTargetListMode.swift
[1206/1433] Compiling ModelsR4 CodeSystemStructureMapTransform.swift
[1207/1433] Compiling ModelsR4 CodeSystemStudyType.swift
[1208/1433] Compiling ModelsR4 CodeSystemSubscriberRelationshipCodes.swift
[1209/1433] Compiling ModelsR4 CodeSystemSubscriptionChannelType.swift
[1210/1433] Compiling ModelsR4 CodeSystemSubscriptionStatus.swift
[1211/1433] Compiling ModelsR4 CodeSystemSubscriptionTag.swift
[1212/1433] Compiling ModelsR4 CodeSystemSubstanceCategoryCodes.swift
[1213/1433] Compiling ModelsR4 CodeSystemSupplyDeliveryStatus.swift
[1214/1433] Compiling ModelsR4 CodeSystemSupplyItemType.swift
[1215/1433] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1216/1433] Compiling ModelsR4 CodeSystemUse.swift
[1217/1433] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1218/1433] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1219/1433] Compiling ModelsR4 CodeSystemValidationType.swift
[1220/1433] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1221/1433] Compiling ModelsR4 CodeSystemVisionBase.swift
[1222/1433] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1223/1433] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1224/1433] Compiling ModelsR4 CodeableConcept.swift
[1225/1433] Compiling ModelsR4 Coding.swift
[1226/1433] Compiling ModelsR4 Communication.swift
[1227/1433] Compiling ModelsR4 CommunicationRequest.swift
[1228/1433] Compiling ModelsR4 CompartmentDefinition.swift
[1229/1433] Compiling ModelsR4 Composition.swift
[1230/1433] Compiling ModelsR4 ConceptMap.swift
[1231/1433] Compiling ModelsR4 Condition.swift
[1232/1433] Compiling ModelsR4 Consent.swift
[1233/1433] Compiling ModelsR4 ContactDetail.swift
[1234/1433] Compiling ModelsR4 ContactPoint.swift
[1235/1433] Compiling ModelsR4 Contract.swift
[1236/1433] Compiling ModelsR4 Contributor.swift
[1237/1433] Compiling ModelsR4 Count.swift
[1238/1433] Compiling ModelsR4 Coverage.swift
[1239/1433] Compiling ModelsR4 Endpoint.swift
[1240/1433] Compiling ModelsR4 EnrollmentRequest.swift
[1241/1433] Compiling ModelsR4 EnrollmentResponse.swift
[1242/1433] Compiling ModelsR4 EpisodeOfCare.swift
[1243/1433] Compiling ModelsR4 EventDefinition.swift
[1244/1433] Compiling ModelsR4 Evidence.swift
[1245/1433] Compiling ModelsR4 EvidenceVariable.swift
[1246/1433] Compiling ModelsR4 ExampleScenario.swift
[1247/1433] Compiling ModelsR4 ExplanationOfBenefit.swift
[1248/1433] Compiling ModelsR4 Expression.swift
[1249/1433] Compiling ModelsR4 Extension.swift
[1250/1433] Compiling ModelsR4 FHIRAbstractResource.swift
[1251/1433] Compiling ModelsR4 FHIRBool.swift
[1252/1433] Compiling ModelsR4 FHIRDate+NSDate.swift
[1253/1433] Compiling ModelsR4 FHIRDate.swift
[1254/1433] Compiling ModelsR4 FHIRDecimal.swift
[1255/1433] Compiling ModelsR4 FHIRInteger.swift
[1256/1433] Compiling ModelsR4 FHIRPositiveInteger.swift
[1257/1433] Compiling ModelsR4 FHIRPrimitive.swift
[1258/1433] Compiling ModelsR4 FHIRString.swift
[1259/1433] Compiling ModelsR4 FHIRTime+NSDate.swift
[1260/1433] Compiling ModelsR4 FHIRTime.swift
[1261/1433] Compiling ModelsR4 FHIRURI.swift
[1262/1433] Compiling ModelsR4 FHIRUnsignedInteger.swift
[1263/1433] Compiling ModelsR4 NamingSystem.swift
[1264/1433] Compiling ModelsR4 Narrative.swift
[1265/1433] Compiling ModelsR4 NutritionOrder.swift
[1266/1433] Compiling ModelsR4 Observation.swift
[1267/1433] Compiling ModelsR4 ObservationDefinition.swift
[1268/1433] Compiling ModelsR4 OperationDefinition.swift
[1269/1433] Compiling ModelsR4 OperationOutcome.swift
[1270/1433] Compiling ModelsR4 Organization.swift
[1271/1433] Compiling ModelsR4 OrganizationAffiliation.swift
[1272/1433] Compiling ModelsR4 ParameterDefinition.swift
[1273/1433] Compiling ModelsR4 Parameters.swift
[1274/1433] Compiling ModelsR4 Patient.swift
[1275/1433] Compiling ModelsR4 PaymentNotice.swift
[1276/1433] Compiling ModelsR4 PaymentReconciliation.swift
[1277/1433] Compiling ModelsR4 Period.swift
[1278/1433] Compiling ModelsR4 Person.swift
[1279/1433] Compiling ModelsR4 PlanDefinition.swift
[1280/1433] Compiling ModelsR4 Population.swift
[1281/1433] Compiling ModelsR4 Practitioner.swift
[1282/1433] Compiling ModelsR4 PractitionerRole.swift
[1283/1433] Compiling ModelsR4 Procedure.swift
[1284/1433] Compiling ModelsR4 ProdCharacteristic.swift
[1285/1433] Compiling ModelsR4 ProductShelfLife.swift
[1286/1433] Compiling ModelsR4 Provenance.swift
[1287/1433] Compiling ModelsR4 FamilyMemberHistory.swift
[1288/1433] Compiling ModelsR4 Flag.swift
[1289/1433] Compiling ModelsR4 Goal.swift
[1290/1433] Compiling ModelsR4 GraphDefinition.swift
[1291/1433] Compiling ModelsR4 Group.swift
[1292/1433] Compiling ModelsR4 GuidanceResponse.swift
[1293/1433] Compiling ModelsR4 HealthcareService.swift
[1294/1433] Compiling ModelsR4 HumanName.swift
[1295/1433] Compiling ModelsR4 Identifier.swift
[1296/1433] Compiling ModelsR4 ImagingStudy.swift
[1297/1433] Compiling ModelsR4 Immunization.swift
[1298/1433] Compiling ModelsR4 ImmunizationEvaluation.swift
[1299/1433] Compiling ModelsR4 ImmunizationRecommendation.swift
[1300/1433] Compiling ModelsR4 ImplementationGuide.swift
[1301/1433] Compiling ModelsR4 Instant+NSDate.swift
[1302/1433] Compiling ModelsR4 Instant.swift
[1303/1433] Compiling ModelsR4 InstantDate.swift
[1304/1433] Compiling ModelsR4 InsurancePlan.swift
[1305/1433] Compiling ModelsR4 Invoice.swift
[1306/1433] Compiling ModelsR4 Library.swift
[1307/1433] Compiling ModelsR4 Linkage.swift
[1308/1433] Compiling ModelsR4 List.swift
[1309/1433] Compiling ModelsR4 Location.swift
[1310/1433] Compiling ModelsR4 MarketingStatus.swift
[1311/1433] Compiling ModelsR4 Quantity.swift
[1312/1433] Compiling ModelsR4 Questionnaire.swift
[1313/1433] Compiling ModelsR4 QuestionnaireResponse.swift
[1314/1433] Compiling ModelsR4 Range.swift
[1315/1433] Compiling ModelsR4 Ratio.swift
[1316/1433] Compiling ModelsR4 Reference.swift
[1317/1433] Compiling ModelsR4 RelatedArtifact.swift
[1318/1433] Compiling ModelsR4 RelatedPerson.swift
[1319/1433] Compiling ModelsR4 RequestGroup.swift
[1320/1433] Compiling ModelsR4 ResearchDefinition.swift
[1321/1433] Compiling ModelsR4 ResearchElementDefinition.swift
[1322/1433] Compiling ModelsR4 ResearchStudy.swift
[1323/1433] Compiling ModelsR4 ResearchSubject.swift
[1324/1433] Compiling ModelsR4 Resource.swift
[1325/1433] Compiling ModelsR4 ResourceProxy.swift
[1326/1433] Compiling ModelsR4 RiskAssessment.swift
[1327/1433] Compiling ModelsR4 RiskEvidenceSynthesis.swift
[1328/1433] Compiling ModelsR4 SampledData.swift
[1329/1433] Compiling ModelsR4 Schedule.swift
[1330/1433] Compiling ModelsR4 SearchParameter.swift
[1331/1433] Compiling ModelsR4 ServiceRequest.swift
[1332/1433] Compiling ModelsR4 Signature.swift
[1333/1433] Compiling ModelsR4 Slot.swift
[1334/1433] Compiling ModelsR4 Specimen.swift
[1335/1433] Compiling ModelsR4 CoverageEligibilityRequest.swift
[1336/1433] Compiling ModelsR4 CoverageEligibilityResponse.swift
[1337/1433] Compiling ModelsR4 DataRequirement.swift
[1338/1433] Compiling ModelsR4 DateTime+NSDate.swift
[1339/1433] Compiling ModelsR4 DateTime.swift
[1340/1433] Compiling ModelsR4 DetectedIssue.swift
[1341/1433] Compiling ModelsR4 Device.swift
[1342/1433] Compiling ModelsR4 DeviceDefinition.swift
[1343/1433] Compiling ModelsR4 DeviceMetric.swift
[1344/1433] Compiling ModelsR4 DeviceRequest.swift
[1345/1433] Compiling ModelsR4 DeviceUseStatement.swift
[1346/1433] Compiling ModelsR4 DiagnosticReport.swift
[1347/1433] Compiling ModelsR4 Distance.swift
[1348/1433] Compiling ModelsR4 DocumentManifest.swift
[1349/1433] Compiling ModelsR4 DocumentReference.swift
[1350/1433] Compiling ModelsR4 DomainResource+Extensions.swift
[1351/1433] Compiling ModelsR4 DomainResource.swift
[1352/1433] Compiling ModelsR4 Dosage.swift
[1353/1433] Compiling ModelsR4 Duration.swift
[1354/1433] Compiling ModelsR4 EffectEvidenceSynthesis.swift
[1355/1433] Compiling ModelsR4 Element+Extensions.swift
[1356/1433] Compiling ModelsR4 Element.swift
[1357/1433] Compiling ModelsR4 ElementDefinition.swift
[1358/1433] Compiling ModelsR4 Encounter.swift
[1359/1433] Compiling ModelsR4 Measure.swift
[1360/1433] Compiling ModelsR4 MeasureReport.swift
[1361/1433] Compiling ModelsR4 Media.swift
[1362/1433] Compiling ModelsR4 Medication.swift
[1363/1433] Compiling ModelsR4 MedicationAdministration.swift
[1364/1433] Compiling ModelsR4 MedicationDispense.swift
[1365/1433] Compiling ModelsR4 MedicationKnowledge.swift
[1366/1433] Compiling ModelsR4 MedicationRequest.swift
[1367/1433] Compiling ModelsR4 MedicationStatement.swift
[1368/1433] Compiling ModelsR4 MedicinalProduct.swift
[1369/1433] Compiling ModelsR4 MedicinalProductAuthorization.swift
[1370/1433] Compiling ModelsR4 MedicinalProductContraindication.swift
[1371/1433] Compiling ModelsR4 MedicinalProductIndication.swift
[1372/1433] Compiling ModelsR4 MedicinalProductIngredient.swift
[1373/1433] Compiling ModelsR4 MedicinalProductInteraction.swift
[1374/1433] Compiling ModelsR4 MedicinalProductManufactured.swift
[1375/1433] Compiling ModelsR4 MedicinalProductPackaged.swift
[1376/1433] Compiling ModelsR4 MedicinalProductPharmaceutical.swift
[1377/1433] Compiling ModelsR4 MedicinalProductUndesirableEffect.swift
[1378/1433] Compiling ModelsR4 MessageDefinition.swift
[1379/1433] Compiling ModelsR4 MessageHeader.swift
[1380/1433] Compiling ModelsR4 Meta.swift
[1381/1433] Compiling ModelsR4 MolecularSequence.swift
[1382/1433] Compiling ModelsR4 Money.swift
[1383/1433] Compiling ModelsR4 SpecimenDefinition.swift
[1384/1433] Compiling ModelsR4 StructureDefinition.swift
[1385/1433] Compiling ModelsR4 StructureMap.swift
[1386/1433] Compiling ModelsR4 Subscription.swift
[1387/1433] Compiling ModelsR4 Substance.swift
[1388/1433] Compiling ModelsR4 SubstanceAmount.swift
[1389/1433] Compiling ModelsR4 SubstanceNucleicAcid.swift
[1390/1433] Compiling ModelsR4 SubstancePolymer.swift
[1391/1433] Compiling ModelsR4 SubstanceProtein.swift
[1392/1433] Compiling ModelsR4 SubstanceReferenceInformation.swift
[1393/1433] Compiling ModelsR4 SubstanceSourceMaterial.swift
[1394/1433] Compiling ModelsR4 SubstanceSpecification.swift
[1395/1433] Compiling ModelsR4 SupplyDelivery.swift
[1396/1433] Compiling ModelsR4 SupplyRequest.swift
[1397/1433] Compiling ModelsR4 Task.swift
[1398/1433] Compiling ModelsR4 TerminologyCapabilities.swift
[1399/1433] Compiling ModelsR4 TestReport.swift
[1400/1433] Compiling ModelsR4 TestScript.swift
[1401/1433] Compiling ModelsR4 Timing.swift
[1402/1433] Compiling ModelsR4 TriggerDefinition.swift
[1403/1433] Compiling ModelsR4 UsageContext.swift
[1404/1433] Compiling ModelsR4 ValueSet.swift
[1405/1433] Compiling ModelsR4 VerificationResult.swift
[1406/1433] Compiling ModelsR4 VisionPrescription.swift
[1407/1448] Compiling CareKitFHIR OCKR4PatientCoder.swift
[1408/1449] Compiling CareKitFHIR OCKDSTU2CarePlanActivityCoder.swift
[1409/1449] Compiling CareKitFHIR OCKFHIRCodingError.swift
[1410/1449] Compiling CareKitFHIR OCKFHIRContentType.swift
[1411/1449] Compiling CareKitFHIR OCKFHIRRelease.swift
[1412/1449] Compiling CareKitFHIR OCKFHIRResource.swift
[1413/1449] Emitting module CareKitFHIR
[1414/1449] Compiling CareKitFHIR FHIRModels+Extensions.swift
[1415/1449] Compiling CareKitFHIR OCK+FHIRExtensions.swift
[1416/1449] Compiling CareKitFHIR OCKFHIRResourceCoder.swift
[1417/1449] Compiling CareKitFHIR OCKFHIRResourceData.swift
[1418/1449] Compiling CareKitFHIR OCKDSTU2PatientCoder.swift
[1419/1449] Compiling CareKitFHIR OCKPatientConverterTraits.swift
[1420/1449] Compiling CareKitFHIR OCKDSTU2MedicationOrderCoder.swift
[1421/1449] Compiling CareKitFHIR OCKDSTU2ScheduleCoder.swift
[1422/1449] Compiling CareKitFHIR OCKTaskConverterTraits.swift
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Extensions/Number+Extensions.swift:31:8: error: no such module 'UIKit'
29 | */
30 |
31 | import UIKit
| `- error: no such module 'UIKit'
32 |
33 | extension Double {
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/CareKitStore.xcdatamodeld
BUILD FAILURE 6.1 macosSpm