The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of CareKit, reference 4.0.6 (b50593), with Swift 6.2 for macOS (SPM) on 15 Dec 2025 04:27:46 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

103 |     ) {
104 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:115:52: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
113 |     }
114 |
115 |     private func firstStoreHandlingTasks(_ tasks: [OCKAnyTask]) throws -> OCKAnyTaskStore {
    |                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
116 |
117 |         let firstMatchingStore = state.withLock { state in
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:95:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 93 |     ///   - store: A candidate store that should or should not handle writing.
 94 |     ///   - task: The task that needs to be written.
 95 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 96 |
 97 |     /// Determines whether or not a store is intended to handle a given query. If true is returned, the persistent store coordinator
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:192:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
190 |     ///   - store: A candidate store that should or should not handle writing.
191 |     ///   - task: The task that needs to be written.
192 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool {
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
193 |
194 |         if store is OCKHealthKitPassthroughStore && !(task is OCKHealthKitTask) { return false }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:35:81: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 33 | extension OCKStoreCoordinator {
 34 |
 35 |     public func anyTasks(matching query: OCKTaskQuery) -> CareStoreQueryResults<OCKAnyTask> {
    |                                                                                 `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 36 |
 37 |         let relevantStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:58:50: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         query: OCKTaskQuery,
 57 |         callbackQueue: DispatchQueue = .main,
 58 |         completion: @Sendable @escaping (Result<[OCKAnyTask], OCKStoreError>) -> Void
    |                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 59 |     ) {
 60 |         let respondingStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:68:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 66 |
 67 |     public func addAnyTasks(
 68 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:70:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |         _ tasks: [OCKAnyTask],
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 71 |     ) {
 72 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:84:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |
 83 |     public func updateAnyTasks(
 84 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:86:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 84 |         _ tasks: [OCKAnyTask],
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 87 |     ) {
 88 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:100:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 98 |
 99 |     public func deleteAnyTasks(
100 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:102:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
100 |         _ tasks: [OCKAnyTask],
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
103 |     ) {
104 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:115:52: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
113 |     }
114 |
115 |     private func firstStoreHandlingTasks(_ tasks: [OCKAnyTask]) throws -> OCKAnyTaskStore {
    |                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
116 |
117 |         let firstMatchingStore = state.withLock { state in
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:95:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 93 |     ///   - store: A candidate store that should or should not handle writing.
 94 |     ///   - task: The task that needs to be written.
 95 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 96 |
 97 |     /// Determines whether or not a store is intended to handle a given query. If true is returned, the persistent store coordinator
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:192:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
190 |     ///   - store: A candidate store that should or should not handle writing.
191 |     ///   - task: The task that needs to be written.
192 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool {
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
193 |
194 |         if store is OCKHealthKitPassthroughStore && !(task is OCKHealthKitTask) { return false }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:35:81: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 33 | extension OCKStoreCoordinator {
 34 |
 35 |     public func anyTasks(matching query: OCKTaskQuery) -> CareStoreQueryResults<OCKAnyTask> {
    |                                                                                 `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 36 |
 37 |         let relevantStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:58:50: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         query: OCKTaskQuery,
 57 |         callbackQueue: DispatchQueue = .main,
 58 |         completion: @Sendable @escaping (Result<[OCKAnyTask], OCKStoreError>) -> Void
    |                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 59 |     ) {
 60 |         let respondingStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:68:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 66 |
 67 |     public func addAnyTasks(
 68 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:70:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |         _ tasks: [OCKAnyTask],
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 71 |     ) {
 72 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:84:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |
 83 |     public func updateAnyTasks(
 84 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:86:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 84 |         _ tasks: [OCKAnyTask],
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 87 |     ) {
 88 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:100:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 98 |
 99 |     public func deleteAnyTasks(
100 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:102:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
100 |         _ tasks: [OCKAnyTask],
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
103 |     ) {
104 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:115:52: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
113 |     }
114 |
115 |     private func firstStoreHandlingTasks(_ tasks: [OCKAnyTask]) throws -> OCKAnyTaskStore {
    |                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
116 |
117 |         let firstMatchingStore = state.withLock { state in
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:95:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 93 |     ///   - store: A candidate store that should or should not handle writing.
 94 |     ///   - task: The task that needs to be written.
 95 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 96 |
 97 |     /// Determines whether or not a store is intended to handle a given query. If true is returned, the persistent store coordinator
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:192:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
190 |     ///   - store: A candidate store that should or should not handle writing.
191 |     ///   - task: The task that needs to be written.
192 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool {
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
193 |
194 |         if store is OCKHealthKitPassthroughStore && !(task is OCKHealthKitTask) { return false }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:35:81: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 33 | extension OCKStoreCoordinator {
 34 |
 35 |     public func anyTasks(matching query: OCKTaskQuery) -> CareStoreQueryResults<OCKAnyTask> {
    |                                                                                 `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 36 |
 37 |         let relevantStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:58:50: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         query: OCKTaskQuery,
 57 |         callbackQueue: DispatchQueue = .main,
 58 |         completion: @Sendable @escaping (Result<[OCKAnyTask], OCKStoreError>) -> Void
    |                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 59 |     ) {
 60 |         let respondingStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:68:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 66 |
 67 |     public func addAnyTasks(
 68 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:70:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |         _ tasks: [OCKAnyTask],
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 71 |     ) {
 72 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:84:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |
 83 |     public func updateAnyTasks(
 84 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:86:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 84 |         _ tasks: [OCKAnyTask],
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 87 |     ) {
 88 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:100:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 98 |
 99 |     public func deleteAnyTasks(
100 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:102:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
100 |         _ tasks: [OCKAnyTask],
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
103 |     ) {
104 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:115:52: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
113 |     }
114 |
115 |     private func firstStoreHandlingTasks(_ tasks: [OCKAnyTask]) throws -> OCKAnyTaskStore {
    |                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
116 |
117 |         let firstMatchingStore = state.withLock { state in
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:95:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 93 |     ///   - store: A candidate store that should or should not handle writing.
 94 |     ///   - task: The task that needs to be written.
 95 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 96 |
 97 |     /// Determines whether or not a store is intended to handle a given query. If true is returned, the persistent store coordinator
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:192:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
190 |     ///   - store: A candidate store that should or should not handle writing.
191 |     ///   - task: The task that needs to be written.
192 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool {
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
193 |
194 |         if store is OCKHealthKitPassthroughStore && !(task is OCKHealthKitTask) { return false }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:35:81: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 33 | extension OCKStoreCoordinator {
 34 |
 35 |     public func anyTasks(matching query: OCKTaskQuery) -> CareStoreQueryResults<OCKAnyTask> {
    |                                                                                 `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 36 |
 37 |         let relevantStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:58:50: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         query: OCKTaskQuery,
 57 |         callbackQueue: DispatchQueue = .main,
 58 |         completion: @Sendable @escaping (Result<[OCKAnyTask], OCKStoreError>) -> Void
    |                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 59 |     ) {
 60 |         let respondingStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:68:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 66 |
 67 |     public func addAnyTasks(
 68 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:70:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |         _ tasks: [OCKAnyTask],
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 71 |     ) {
 72 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:84:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |
 83 |     public func updateAnyTasks(
 84 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:86:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 84 |         _ tasks: [OCKAnyTask],
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 87 |     ) {
 88 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:100:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 98 |
 99 |     public func deleteAnyTasks(
100 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:102:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
100 |         _ tasks: [OCKAnyTask],
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
103 |     ) {
104 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:115:52: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
113 |     }
114 |
115 |     private func firstStoreHandlingTasks(_ tasks: [OCKAnyTask]) throws -> OCKAnyTaskStore {
    |                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
116 |
117 |         let firstMatchingStore = state.withLock { state in
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:95:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 93 |     ///   - store: A candidate store that should or should not handle writing.
 94 |     ///   - task: The task that needs to be written.
 95 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 96 |
 97 |     /// Determines whether or not a store is intended to handle a given query. If true is returned, the persistent store coordinator
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:192:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
190 |     ///   - store: A candidate store that should or should not handle writing.
191 |     ///   - task: The task that needs to be written.
192 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool {
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
193 |
194 |         if store is OCKHealthKitPassthroughStore && !(task is OCKHealthKitTask) { return false }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:35:81: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 33 | extension OCKStoreCoordinator {
 34 |
 35 |     public func anyTasks(matching query: OCKTaskQuery) -> CareStoreQueryResults<OCKAnyTask> {
    |                                                                                 `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 36 |
 37 |         let relevantStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:58:50: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         query: OCKTaskQuery,
 57 |         callbackQueue: DispatchQueue = .main,
 58 |         completion: @Sendable @escaping (Result<[OCKAnyTask], OCKStoreError>) -> Void
    |                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 59 |     ) {
 60 |         let respondingStores = storesHandlingQuery(query)
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:68:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 66 |
 67 |     public func addAnyTasks(
 68 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:70:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |         _ tasks: [OCKAnyTask],
 69 |         callbackQueue: DispatchQueue = .main,
 70 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 71 |     ) {
 72 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:84:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |
 83 |     public func updateAnyTasks(
 84 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:86:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 84 |         _ tasks: [OCKAnyTask],
 85 |         callbackQueue: DispatchQueue = .main,
 86 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 87 |     ) {
 88 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:100:19: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 98 |
 99 |     public func deleteAnyTasks(
100 |         _ tasks: [OCKAnyTask],
    |                   `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:102:41: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
100 |         _ tasks: [OCKAnyTask],
101 |         callbackQueue: DispatchQueue = .main,
102 |         completion: (@Sendable (Result<[OCKAnyTask], OCKStoreError>) -> Void)? = nil
    |                                         `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
103 |     ) {
104 |         do {
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift:115:52: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
113 |     }
114 |
115 |     private func firstStoreHandlingTasks(_ tasks: [OCKAnyTask]) throws -> OCKAnyTaskStore {
    |                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
116 |
117 |         let firstMatchingStore = state.withLock { state in
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:95:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 93 |     ///   - store: A candidate store that should or should not handle writing.
 94 |     ///   - task: The task that needs to be written.
 95 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 96 |
 97 |     /// Determines whether or not a store is intended to handle a given query. If true is returned, the persistent store coordinator
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/StoreCoordinator/OCKStoreCoordinatorDelegate.swift:192:84: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
190 |     ///   - store: A candidate store that should or should not handle writing.
191 |     ///   - task: The task that needs to be written.
192 |     func taskStore(_ store: OCKAnyReadOnlyTaskStore, shouldHandleWritingTask task: OCKAnyTask) -> Bool {
    |                                                                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
193 |
194 |         if store is OCKHealthKitPassthroughStore && !(task is OCKHealthKitTask) { return false }
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Streaming/CoreDataQueryMonitor.swift:47:13: warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 45 |
 46 |     private nonisolated(unsafe) let request: NSFetchRequest<Element>
 47 |     private nonisolated(unsafe) let context: NSManagedObjectContext
    |             `- warning: 'nonisolated(unsafe)' is unnecessary for a constant with 'Sendable' type 'NSManagedObjectContext', consider removing it
 48 |
 49 |     var resultHandler: @Sendable (Result<[OCKVersionedObjectCompatible], Error>) -> Void {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[799/1324] Compiling CareKitStore OCKOutcomeValue.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[800/1324] Compiling CareKitStore OCKPatient.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[801/1324] Compiling CareKitStore OCKPostalAddress.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[802/1324] Compiling CareKitStore OCKSchedule.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[803/1324] Compiling CareKitStore OCKScheduleElement.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[804/1324] Compiling CareKitStore OCKScheduleEvent.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[805/1324] Compiling CareKitStore OCKSemanticVersion.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[806/1324] Compiling CareKitStore OCKTask.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[807/1324] Compiling CareKitStore OCKAdherenceQuery.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[808/1324] Compiling CareKitStore OCKCarePlanQuery.swift
/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/Structs/OCKOutcome.swift:81:34: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 79 |     }
 80 |
 81 |     public func belongs(to task: OCKAnyTask) -> Bool {
    |                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 82 |         guard let task = task as? OCKTask else { return false }
 83 |         return task.uuid == taskUUID
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[818/1324] Emitting module CareKitUI
[1005/1324] Emitting module ModelsDSTU2
[1006/1463] Emitting module CareKit
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1007/1463] Compiling CareKit ViewSynchronizing.swift
[1008/1463] Compiling CareKit LabeledValueTaskView+Init.swift
[1009/1463] Compiling CareKit NumericProgressTaskView+Init.swift
[1010/1463] Compiling CareKit OCKButtonLogTaskViewSynchronizer.swift
[1011/1463] Compiling CareKit OCKChecklistTaskViewSynchronizer.swift
[1012/1463] Compiling CareKit OCKGridTaskViewSynchronizer.swift
[1013/1463] Compiling CareKit OCKInstructionsTaskViewSynchronizer.swift
[1014/1463] Compiling CareKit OCKSimpleTaskViewSynchronizer.swift
[1015/1463] Compiling CareKit OCKSurveyTaskViewSynchronizer.swift
[1016/1463] Compiling CareKit OCKButtonLogViewController.swift
[1017/1472] Compiling CareKit OCKTaskController.swift
[1018/1472] Compiling CareKit OCKTaskViewSynchronizerProtocol.swift
[1019/1472] Compiling CareKit OCKWeekCalendarController.swift
[1020/1472] Compiling CareKit OCKWeekCalendarPageViewController.swift
[1021/1472] Compiling CareKit OCKWeekCalendarViewSynchronizer.swift
[1022/1472] Compiling CareKit OCKCalendarViewController.swift
[1023/1472] Compiling CareKit OCKWeekCalendarViewController.swift
[1024/1472] Compiling CareKit OCKCartesianChartViewSynchronizer.swift
[1025/1472] Compiling CareKit OCKCartesianChartViewController.swift
[1026/1472] Compiling CareKit OCKChartViewController.swift
[1027/1472] Compiling CareKit OCKContactViewSynchronizerProtocol.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1028/1472] Compiling CareKit OCKDetailedContactController.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1029/1472] Compiling CareKit OCKGridTaskController.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1030/1472] Compiling CareKit OCKInstructionsTaskController.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1031/1472] Compiling CareKit OCKLabeledValueTaskController.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1032/1472] Compiling CareKit OCKNumericProgressTaskController.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1033/1472] Compiling CareKit OCKSimpleContactController.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1034/1472] Compiling CareKit OCKSimpleTaskController.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1035/1472] Compiling CareKit OCKStoreNotifications.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1036/1472] Compiling CareKit OCKSynchronizedStoreManager.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKStoreNotifications.swift:67:22: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 65 | @available(*, unavailable, message: "OCKSynchronizedStoreManager and its related types are no longer available as a mechanism to synchronize with the CareKit store. As a replacement, see the asynchronous streams available directly on a CareKit store. For example, to monitor changes to tasks, see `OCKStore.tasks(query:)`.")
 66 | public struct OCKTaskNotification: OCKStoreNotification {
 67 |     public let task: OCKAnyTask
    |                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 68 |     public let category: OCKStoreNotificationCategory
 69 |     public let storeManager: OCKSynchronizedStoreManager
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:133:79: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
131 |     // MARK: OCKStoreDelegate Tasks
132 |
133 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didAddTasks tasks: [OCKAnyTask]) {
    |                                                                               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
134 |         dispatchTaskNotifications(category: .add, tasks: tasks)
135 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:137:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
135 |     }
136 |
137 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didUpdateTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
138 |         dispatchTaskNotifications(category: .update, tasks: tasks)
139 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:141:82: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
139 |     }
140 |
141 |     open func taskStore(_ store: OCKAnyReadOnlyTaskStore, didDeleteTasks tasks: [OCKAnyTask]) {
    |                                                                                  `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
142 |         dispatchTaskNotifications(category: .delete, tasks: tasks)
143 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Stale/OCKSynchronizedStoreManager.swift:145:92: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |     }
144 |
145 |     private func dispatchTaskNotifications(category: OCKStoreNotificationCategory, tasks: [OCKAnyTask]) {
    |                                                                                            `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |         DispatchQueue.main.async { [weak self] in
147 |             guard let self = self else { return }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1037/1472] Compiling CareKit OCKDataSeriesConfiguration.swift
[1038/1472] Compiling CareKit OCKDetailedContactViewSynchronizer.swift
[1039/1472] Compiling CareKit OCKSimpleContactViewSynchronizer.swift
[1040/1472] Compiling CareKit _OCKContactsListViewSynchronizer.swift
[1041/1472] Compiling CareKit OCKContactViewController.swift
[1042/1472] Compiling CareKit OCKContactViewResponder.swift
[1043/1472] Compiling CareKit OCKContactsListViewController.swift
[1044/1472] Compiling CareKit OCKDetailedContactViewController.swift
[1045/1472] Compiling CareKit OCKSimpleContactViewController.swift
[1046/1472] Compiling CareKit OCKDetailViewController.swift
[1047/1472] Compiling CareKit OCKSimpleContactView+Updatable.swift
[1048/1472] Compiling CareKit OCKHeaderView+Updatable.swift
[1049/1472] Compiling CareKit OCKChecklistTaskView+Updatable.swift
[1050/1472] Compiling CareKit OCKGridTaskView+Updatable.swift
[1051/1472] Compiling CareKit OCKInstructionsTaskView+Updatable.swift
[1052/1472] Compiling CareKit OCKLogTaskView+Updatable.swift
[1053/1472] Compiling CareKit OCKSimpleTaskView+Updatable.swift
[1054/1472] Compiling CareKit Updatable.swift
[1055/1472] Compiling CareKit resource_bundle_accessor.swift
[1056/1472] Compiling CareKit Calendar+Extensions.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1057/1472] Compiling CareKit LinearCareTaskProgress+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1058/1472] Compiling CareKit Number+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1059/1472] Compiling CareKit OCKAnyContact+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1060/1472] Compiling CareKit OCKAnyEvent+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1061/1472] Compiling CareKit OCKAnyEventStore+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1062/1472] Compiling CareKit OCKAnyStoreProtocol+Environment.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1063/1472] Compiling CareKit UIImage+Asset.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1064/1472] Compiling CareKit OCKLog.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1065/1472] Compiling CareKit CareStoreFetchRequest.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Extensions/OCKAnyStoreProtocol+Environment.swift:58:15: warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 56 |
 57 | /// A store implementation that fatal errors when CRUD methods are performed.
 58 | private class FatalCareStore: OCKStoreProtocol {
    |               `- warning: non-final class 'FatalCareStore' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 59 |
 60 |     typealias OCKEvent = CareKitStore.OCKEvent<OCKTask, OCKOutcome>
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Synchronization/CareStoreFetchRequest.swift:145:15: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
143 |
144 | public extension CareStoreFetchRequest where
145 |     Result == OCKAnyTask,
    |               `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
146 |     Query == OCKTaskQuery
147 | {
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1066/1472] Compiling CareKit SimpleTaskView+Init.swift
[1067/1472] Compiling CareKit OCKScheduleUtility.swift
[1068/1472] Compiling CareKit OCKButtonLogTaskController.swift
[1069/1472] Compiling CareKit OCKCalendarController.swift
[1070/1472] Compiling CareKit OCKCalendarViewSynchronizerProtocol.swift
[1071/1472] Compiling CareKit OCKCartesianChartController.swift
[1072/1472] Compiling CareKit OCKChartController.swift
[1073/1472] Compiling CareKit OCKChartViewSynchronizerProtocol.swift
[1074/1472] Compiling CareKit OCKChecklistTaskController.swift
[1075/1472] Compiling CareKit OCKContactController.swift
[1076/1472] Compiling CareKit OCKChecklistTaskViewController.swift
[1077/1472] Compiling CareKit OCKGridTaskViewController.swift
[1078/1472] Compiling CareKit OCKInstructionsTaskViewController.swift
[1079/1472] Compiling CareKit OCKSimpleTaskViewController.swift
[1080/1472] Compiling CareKit OCKSurveyTaskViewController.swift
[1081/1472] Compiling CareKit OCKTaskViewController.swift
[1082/1472] Compiling CareKit OCKContactUtility.swift
[1083/1472] Compiling CareKit OCKWeekCalendarView+Updatable.swift
[1084/1472] Compiling CareKit OCKCartesianChartView+Updatable.swift
[1085/1472] Compiling CareKit OCKDetailedContactView+Updatable.swift
[1086/1472] Compiling CareKit NSLayoutConstraint+Extensions.swift
[1087/1472] Compiling CareKit OCKContact+Extensions.swift
[1088/1472] Compiling CareKit OCKOutcomeValue+Extension.swift
[1089/1472] Compiling CareKit UIViewController+Extensions.swift
[1090/1472] Compiling CareKit OCKHeaderBodyView.swift
[1091/1472] Compiling CareKit OCKListView.swift
[1092/1472] Compiling CareKit OCKDailyPageViewController.swift
[1093/1472] Compiling CareKit OCKDailyTasksPageViewController.swift
[1094/1472] Compiling CareKit OCKListViewController.swift
[1095/1472] Compiling CareKit SynchronizedViewController.swift
[1096/1472] Compiling CareKit CareStoreFetchRequestController.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1097/1472] Compiling CareKit CareStoreFetchedResult+Extension.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1098/1472] Compiling CareKit CareStoreFetchedResult.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1099/1472] Compiling CareKit CareStoreFetchedResults.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1100/1472] Compiling CareKit OCKAnyReadOnlyEventStore+Progress.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1101/1472] Compiling CareKit OCKSynchronizationContext.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1102/1472] Compiling CareKit TemporalProgress.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1103/1472] Compiling CareKit TemporalTaskProgress.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1104/1472] Compiling CareKit InstructionsTaskView+Init.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1105/1472] Compiling CareKit OCKTaskEvents.swift
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:55:24: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 53 |
 54 |     /// Unique tasks.
 55 |     public var tasks: [OCKAnyTask] {
    |                        `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
 56 |         (0..<events.count).compactMap { section in
 57 |             events[section].first?.task
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:107:38: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
105 |     /// Get all events that have matching tasks. Two tasks match if they have equal stable identities defined by the `Identifiable` protocol.
106 |     /// - Parameter task: Task used to match for the desired events.
107 |     public func events(forTask task: OCKAnyTask) -> [OCKAnyEvent] {
    |                                      `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
108 |         guard let section = section(for: task) else { return [] }
109 |         return events[section]
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:149:36: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
147 |     }
148 |
149 |     private func section(for task: OCKAnyTask) -> Int? {
    |                                    `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
150 |         return events.firstIndex { $0.first?.task.matches(task) == true }
151 |     }
/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/Shared/Task/OCKTaskEvents.swift:207:27: warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
205 |
206 |     /// The matching criteria used to check for uniqueness of two tasks.
207 |     func matches(_ other: OCKAnyTask) -> Bool {
    |                           `- warning: use of protocol 'OCKAnyTask' as a type must be written 'any OCKAnyTask'; this will be an error in a future Swift language mode [#ExistentialAny]
208 |         uuid == other.uuid
209 |     }
[#ExistentialAny]: <https://docs.swift.org/compiler/documentation/diagnostics/existential-any>
[1206/1544] Emitting module ModelsR4
[1255/1568] Compiling ModelsR4 CodeSystemUsageContextType.swift
[1256/1568] Compiling ModelsR4 CodeSystemUse.swift
[1257/1568] Compiling ModelsR4 CodeSystemValidationProcess.swift
[1258/1568] Compiling ModelsR4 CodeSystemValidationStatus.swift
[1259/1568] Compiling ModelsR4 CodeSystemValidationType.swift
[1260/1568] Compiling ModelsR4 CodeSystemVerificationresultCommunicationMethod.swift
[1261/1568] Compiling ModelsR4 CodeSystemVisionBase.swift
[1262/1568] Compiling ModelsR4 CodeSystemVisionEyes.swift
[1263/1568] Compiling ModelsR4 CodeSystemXPathUsageType.swift
[1264/1568] Compiling ModelsR4 CodeableConcept.swift
[1265/1568] Compiling ModelsR4 Coding.swift
[1266/1568] Compiling ModelsR4 Communication.swift
[1267/1568] Compiling ModelsR4 CommunicationRequest.swift
[1268/1568] Compiling ModelsR4 CompartmentDefinition.swift
[1269/1568] Compiling ModelsR4 Composition.swift
[1270/1568] Compiling ModelsR4 ConceptMap.swift
[1271/1568] Compiling ModelsR4 Condition.swift
[1272/1568] Compiling ModelsR4 Consent.swift
[1273/1568] Compiling ModelsR4 ContactDetail.swift
[1274/1568] Compiling ModelsR4 ContactPoint.swift
[1275/1568] Compiling ModelsR4 Contract.swift
[1276/1568] Compiling ModelsR4 Contributor.swift
[1277/1568] Compiling ModelsR4 Count.swift
[1278/1568] Compiling ModelsR4 Coverage.swift
[1329/1568] Compiling ModelsR4 Endpoint.swift
[1330/1568] Compiling ModelsR4 EnrollmentRequest.swift
[1331/1568] Compiling ModelsR4 EnrollmentResponse.swift
[1332/1568] Compiling ModelsR4 EpisodeOfCare.swift
[1333/1568] Compiling ModelsR4 EventDefinition.swift
[1334/1568] Compiling ModelsR4 Evidence.swift
[1335/1568] Compiling ModelsR4 EvidenceVariable.swift
[1336/1568] Compiling ModelsR4 ExampleScenario.swift
[1337/1568] Compiling ModelsR4 ExplanationOfBenefit.swift
[1338/1568] Compiling ModelsR4 Expression.swift
[1339/1568] Compiling ModelsR4 Extension.swift
[1340/1568] Compiling ModelsR4 FHIRAbstractResource.swift
[1341/1568] Compiling ModelsR4 FHIRBool.swift
[1342/1568] Compiling ModelsR4 FHIRDate+NSDate.swift
[1343/1568] Compiling ModelsR4 FHIRDate.swift
[1344/1568] Compiling ModelsR4 FHIRDecimal.swift
[1345/1568] Compiling ModelsR4 FHIRInteger.swift
[1346/1568] Compiling ModelsR4 FHIRPositiveInteger.swift
[1347/1568] Compiling ModelsR4 FHIRPrimitive.swift
[1348/1568] Compiling ModelsR4 FHIRString.swift
[1349/1568] Compiling ModelsR4 FHIRTime+NSDate.swift
[1350/1568] Compiling ModelsR4 FHIRTime.swift
[1351/1568] Compiling ModelsR4 FHIRURI.swift
[1352/1568] Compiling ModelsR4 FHIRUnsignedInteger.swift
[1353/1568] Compiling ModelsDSTU2 Flag.swift
[1354/1568] Compiling ModelsDSTU2 Goal.swift
[1355/1568] Compiling ModelsDSTU2 Group.swift
[1356/1568] Compiling ModelsDSTU2 HealthcareService.swift
[1357/1568] Compiling ModelsDSTU2 HumanName.swift
[1358/1568] Compiling ModelsDSTU2 Identifier.swift
[1359/1568] Compiling ModelsDSTU2 ImagingObjectSelection.swift
[1360/1568] Compiling ModelsDSTU2 ImagingStudy.swift
[1361/1568] Compiling ModelsDSTU2 Immunization.swift
[1362/1568] Compiling ModelsDSTU2 ImmunizationRecommendation.swift
[1363/1568] Compiling ModelsDSTU2 ImplementationGuide.swift
[1364/1568] Compiling ModelsDSTU2 Instant+NSDate.swift
[1365/1568] Compiling ModelsDSTU2 Instant.swift
[1366/1568] Compiling ModelsDSTU2 InstantDate.swift
[1367/1568] Compiling ModelsDSTU2 List.swift
[1368/1568] Compiling ModelsDSTU2 Location.swift
[1369/1568] Compiling ModelsDSTU2 Media.swift
[1370/1568] Compiling ModelsDSTU2 Medication.swift
[1371/1568] Compiling ModelsDSTU2 MedicationAdministration.swift
[1372/1568] Compiling ModelsDSTU2 MedicationDispense.swift
[1373/1568] Compiling ModelsDSTU2 MedicationOrder.swift
[1374/1568] Compiling ModelsDSTU2 MedicationStatement.swift
[1375/1568] Compiling ModelsDSTU2 MessageHeader.swift
[1376/1568] Compiling ModelsDSTU2 Meta.swift
[1377/1568] Compiling ModelsDSTU2 Money.swift
[1378/1568] Compiling ModelsDSTU2 NamingSystem.swift
[1379/1568] Compiling ModelsDSTU2 Narrative.swift
[1380/1568] Compiling ModelsDSTU2 NutritionOrder.swift
[1381/1568] Compiling ModelsDSTU2 Observation.swift
[1382/1568] Compiling ModelsDSTU2 OperationDefinition.swift
[1383/1568] Compiling ModelsDSTU2 OperationOutcome.swift
[1384/1568] Compiling ModelsDSTU2 Order.swift
[1385/1568] Compiling ModelsDSTU2 OrderResponse.swift
[1386/1568] Compiling ModelsDSTU2 Organization.swift
[1387/1568] Compiling ModelsDSTU2 Parameters.swift
[1388/1568] Compiling ModelsDSTU2 Patient.swift
[1389/1568] Compiling ModelsDSTU2 PaymentNotice.swift
[1390/1568] Compiling ModelsDSTU2 PaymentReconciliation.swift
[1391/1568] Compiling ModelsDSTU2 Period.swift
[1392/1568] Compiling ModelsDSTU2 Person.swift
[1393/1568] Compiling ModelsDSTU2 Practitioner.swift
[1394/1568] Compiling ModelsDSTU2 Procedure.swift
[1395/1568] Compiling ModelsDSTU2 ProcedureRequest.swift
[1396/1568] Compiling ModelsDSTU2 ProcessRequest.swift
[1397/1568] Compiling ModelsDSTU2 ProcessResponse.swift
[1398/1568] Compiling ModelsDSTU2 Provenance.swift
[1399/1568] Compiling ModelsDSTU2 Quantity.swift
[1400/1568] Compiling ModelsDSTU2 Questionnaire.swift
[1401/1568] Compiling ModelsR4 FamilyMemberHistory.swift
[1402/1568] Compiling ModelsR4 Flag.swift
[1403/1568] Compiling ModelsR4 Goal.swift
[1404/1568] Compiling ModelsR4 GraphDefinition.swift
[1405/1568] Compiling ModelsR4 Group.swift
[1406/1568] Compiling ModelsR4 GuidanceResponse.swift
[1407/1568] Compiling ModelsR4 HealthcareService.swift
[1408/1568] Compiling ModelsR4 HumanName.swift
[1409/1568] Compiling ModelsR4 Identifier.swift
[1410/1568] Compiling ModelsR4 ImagingStudy.swift
[1411/1568] Compiling ModelsR4 Immunization.swift
[1412/1568] Compiling ModelsR4 ImmunizationEvaluation.swift
[1413/1568] Compiling ModelsR4 ImmunizationRecommendation.swift
[1414/1568] Compiling ModelsR4 ImplementationGuide.swift
[1415/1568] Compiling ModelsR4 Instant+NSDate.swift
[1416/1568] Compiling ModelsR4 Instant.swift
[1417/1568] Compiling ModelsR4 InstantDate.swift
[1418/1568] Compiling ModelsR4 InsurancePlan.swift
[1419/1568] Compiling ModelsR4 Invoice.swift
[1420/1568] Compiling ModelsR4 Library.swift
[1421/1568] Compiling ModelsR4 Linkage.swift
[1422/1568] Compiling ModelsR4 List.swift
[1423/1568] Compiling ModelsR4 Location.swift
[1424/1568] Compiling ModelsR4 MarketingStatus.swift
[1425/1568] Compiling ModelsDSTU2 QuestionnaireResponse.swift
[1426/1568] Compiling ModelsDSTU2 Range.swift
[1427/1568] Compiling ModelsDSTU2 Ratio.swift
[1428/1568] Compiling ModelsDSTU2 Reference.swift
[1429/1568] Compiling ModelsDSTU2 ReferralRequest.swift
[1430/1568] Compiling ModelsDSTU2 RelatedPerson.swift
[1431/1568] Compiling ModelsDSTU2 Resource.swift
[1432/1568] Compiling ModelsDSTU2 ResourceProxy.swift
[1433/1568] Compiling ModelsDSTU2 RiskAssessment.swift
[1434/1568] Compiling ModelsDSTU2 SampledData.swift
[1435/1568] Compiling ModelsDSTU2 Schedule.swift
[1436/1568] Compiling ModelsDSTU2 SearchParameter.swift
[1437/1568] Compiling ModelsDSTU2 Signature.swift
[1438/1568] Compiling ModelsDSTU2 Slot.swift
[1439/1568] Compiling ModelsDSTU2 Specimen.swift
[1440/1568] Compiling ModelsDSTU2 StructureDefinition.swift
[1441/1568] Compiling ModelsDSTU2 Subscription.swift
[1442/1568] Compiling ModelsDSTU2 Substance.swift
[1443/1568] Compiling ModelsDSTU2 SupplyDelivery.swift
[1444/1568] Compiling ModelsDSTU2 SupplyRequest.swift
[1445/1568] Compiling ModelsDSTU2 TestScript.swift
[1446/1568] Compiling ModelsDSTU2 Timing.swift
[1447/1568] Compiling ModelsDSTU2 ValueSet.swift
[1448/1568] Compiling ModelsDSTU2 VisionPrescription.swift
[1449/1568] Compiling ModelsR4 CoverageEligibilityRequest.swift
[1450/1568] Compiling ModelsR4 CoverageEligibilityResponse.swift
[1451/1568] Compiling ModelsR4 DataRequirement.swift
[1452/1568] Compiling ModelsR4 DateTime+NSDate.swift
[1453/1568] Compiling ModelsR4 DateTime.swift
[1454/1568] Compiling ModelsR4 DetectedIssue.swift
[1455/1568] Compiling ModelsR4 Device.swift
[1456/1568] Compiling ModelsR4 DeviceDefinition.swift
[1457/1568] Compiling ModelsR4 DeviceMetric.swift
[1458/1568] Compiling ModelsR4 DeviceRequest.swift
[1459/1568] Compiling ModelsR4 DeviceUseStatement.swift
[1460/1568] Compiling ModelsR4 DiagnosticReport.swift
[1461/1568] Compiling ModelsR4 Distance.swift
[1462/1568] Compiling ModelsR4 DocumentManifest.swift
[1463/1568] Compiling ModelsR4 DocumentReference.swift
[1464/1568] Compiling ModelsR4 DomainResource+Extensions.swift
[1465/1568] Compiling ModelsR4 DomainResource.swift
[1466/1568] Compiling ModelsR4 Dosage.swift
[1467/1568] Compiling ModelsR4 Duration.swift
[1468/1568] Compiling ModelsR4 EffectEvidenceSynthesis.swift
[1469/1568] Compiling ModelsR4 Element+Extensions.swift
[1470/1568] Compiling ModelsR4 Element.swift
[1471/1568] Compiling ModelsR4 ElementDefinition.swift
[1472/1568] Compiling ModelsR4 Encounter.swift
[1473/1568] Compiling ModelsR4 NamingSystem.swift
[1474/1568] Compiling ModelsR4 Narrative.swift
[1475/1568] Compiling ModelsR4 NutritionOrder.swift
[1476/1568] Compiling ModelsR4 Observation.swift
[1477/1568] Compiling ModelsR4 ObservationDefinition.swift
[1478/1568] Compiling ModelsR4 OperationDefinition.swift
[1479/1568] Compiling ModelsR4 OperationOutcome.swift
[1480/1568] Compiling ModelsR4 Organization.swift
[1481/1568] Compiling ModelsR4 OrganizationAffiliation.swift
[1482/1568] Compiling ModelsR4 ParameterDefinition.swift
[1483/1568] Compiling ModelsR4 Parameters.swift
[1484/1568] Compiling ModelsR4 Patient.swift
[1485/1568] Compiling ModelsR4 PaymentNotice.swift
[1486/1568] Compiling ModelsR4 PaymentReconciliation.swift
[1487/1568] Compiling ModelsR4 Period.swift
[1488/1568] Compiling ModelsR4 Person.swift
[1489/1568] Compiling ModelsR4 PlanDefinition.swift
[1490/1568] Compiling ModelsR4 Population.swift
[1491/1568] Compiling ModelsR4 Practitioner.swift
[1492/1568] Compiling ModelsR4 PractitionerRole.swift
[1493/1568] Compiling ModelsR4 Procedure.swift
[1494/1568] Compiling ModelsR4 ProdCharacteristic.swift
[1495/1568] Compiling ModelsR4 ProductShelfLife.swift
[1496/1568] Compiling ModelsR4 Provenance.swift
[1497/1568] Compiling ModelsR4 Quantity.swift
[1498/1568] Compiling ModelsR4 Questionnaire.swift
[1499/1568] Compiling ModelsR4 QuestionnaireResponse.swift
[1500/1568] Compiling ModelsR4 Range.swift
[1501/1568] Compiling ModelsR4 Ratio.swift
[1502/1568] Compiling ModelsR4 Reference.swift
[1503/1568] Compiling ModelsR4 RelatedArtifact.swift
[1504/1568] Compiling ModelsR4 RelatedPerson.swift
[1505/1568] Compiling ModelsR4 RequestGroup.swift
[1506/1568] Compiling ModelsR4 ResearchDefinition.swift
[1507/1568] Compiling ModelsR4 ResearchElementDefinition.swift
[1508/1568] Compiling ModelsR4 ResearchStudy.swift
[1509/1568] Compiling ModelsR4 ResearchSubject.swift
[1510/1568] Compiling ModelsR4 Resource.swift
[1511/1568] Compiling ModelsR4 ResourceProxy.swift
[1512/1568] Compiling ModelsR4 RiskAssessment.swift
[1513/1568] Compiling ModelsR4 RiskEvidenceSynthesis.swift
[1514/1568] Compiling ModelsR4 SampledData.swift
[1515/1568] Compiling ModelsR4 Schedule.swift
[1516/1568] Compiling ModelsR4 SearchParameter.swift
[1517/1568] Compiling ModelsR4 ServiceRequest.swift
[1518/1568] Compiling ModelsR4 Signature.swift
[1519/1568] Compiling ModelsR4 Slot.swift
[1520/1568] Compiling ModelsR4 Specimen.swift
[1521/1568] Compiling ModelsR4 Measure.swift
[1522/1568] Compiling ModelsR4 MeasureReport.swift
[1523/1568] Compiling ModelsR4 Media.swift
[1524/1568] Compiling ModelsR4 Medication.swift
[1525/1568] Compiling ModelsR4 MedicationAdministration.swift
[1526/1568] Compiling ModelsR4 MedicationDispense.swift
[1527/1568] Compiling ModelsR4 MedicationKnowledge.swift
[1528/1568] Compiling ModelsR4 MedicationRequest.swift
[1529/1568] Compiling ModelsR4 MedicationStatement.swift
[1530/1568] Compiling ModelsR4 MedicinalProduct.swift
[1531/1568] Compiling ModelsR4 MedicinalProductAuthorization.swift
[1532/1568] Compiling ModelsR4 MedicinalProductContraindication.swift
[1533/1568] Compiling ModelsR4 MedicinalProductIndication.swift
[1534/1568] Compiling ModelsR4 MedicinalProductIngredient.swift
[1535/1568] Compiling ModelsR4 MedicinalProductInteraction.swift
[1536/1568] Compiling ModelsR4 MedicinalProductManufactured.swift
[1537/1568] Compiling ModelsR4 MedicinalProductPackaged.swift
[1538/1568] Compiling ModelsR4 MedicinalProductPharmaceutical.swift
[1539/1568] Compiling ModelsR4 MedicinalProductUndesirableEffect.swift
[1540/1568] Compiling ModelsR4 MessageDefinition.swift
[1541/1568] Compiling ModelsR4 MessageHeader.swift
[1542/1568] Compiling ModelsR4 Meta.swift
[1543/1568] Compiling ModelsR4 MolecularSequence.swift
[1544/1568] Compiling ModelsR4 Money.swift
[1545/1568] Compiling ModelsR4 SpecimenDefinition.swift
[1546/1568] Compiling ModelsR4 StructureDefinition.swift
[1547/1568] Compiling ModelsR4 StructureMap.swift
[1548/1568] Compiling ModelsR4 Subscription.swift
[1549/1568] Compiling ModelsR4 Substance.swift
[1550/1568] Compiling ModelsR4 SubstanceAmount.swift
[1551/1568] Compiling ModelsR4 SubstanceNucleicAcid.swift
[1552/1568] Compiling ModelsR4 SubstancePolymer.swift
[1553/1568] Compiling ModelsR4 SubstanceProtein.swift
[1554/1568] Compiling ModelsR4 SubstanceReferenceInformation.swift
[1555/1568] Compiling ModelsR4 SubstanceSourceMaterial.swift
[1556/1568] Compiling ModelsR4 SubstanceSpecification.swift
[1557/1568] Compiling ModelsR4 SupplyDelivery.swift
[1558/1568] Compiling ModelsR4 SupplyRequest.swift
[1559/1568] Compiling ModelsR4 Task.swift
[1560/1568] Compiling ModelsR4 TerminologyCapabilities.swift
[1561/1568] Compiling ModelsR4 TestReport.swift
[1562/1568] Compiling ModelsR4 TestScript.swift
[1563/1568] Compiling ModelsR4 Timing.swift
[1564/1568] Compiling ModelsR4 TriggerDefinition.swift
[1565/1568] Compiling ModelsR4 UsageContext.swift
[1566/1568] Compiling ModelsR4 ValueSet.swift
[1567/1568] Compiling ModelsR4 VerificationResult.swift
[1568/1568] Compiling ModelsR4 VisionPrescription.swift
[1569/1583] Compiling CareKitFHIR OCKDSTU2ScheduleCoder.swift
[1570/1583] Compiling CareKitFHIR OCKDSTU2CarePlanActivityCoder.swift
[1571/1583] Compiling CareKitFHIR OCKDSTU2MedicationOrderCoder.swift
[1572/1584] Compiling CareKitFHIR OCKFHIRResourceCoder.swift
[1573/1584] Compiling CareKitFHIR OCKFHIRResourceData.swift
[1574/1584] Compiling CareKitFHIR OCKFHIRRelease.swift
[1575/1584] Compiling CareKitFHIR OCKFHIRResource.swift
[1576/1584] Compiling CareKitFHIR OCKR4PatientCoder.swift
[1577/1584] Compiling CareKitFHIR OCKFHIRCodingError.swift
[1578/1584] Compiling CareKitFHIR OCKFHIRContentType.swift
[1579/1584] Compiling CareKitFHIR OCKDSTU2PatientCoder.swift
[1580/1584] Compiling CareKitFHIR OCKPatientConverterTraits.swift
[1581/1584] Emitting module CareKitFHIR
[1582/1584] Compiling CareKitFHIR FHIRModels+Extensions.swift
[1583/1584] Compiling CareKitFHIR OCK+FHIRExtensions.swift
[1584/1584] Compiling CareKitFHIR OCKTaskConverterTraits.swift
Build complete! (32.93s)
warning: 'spi-builder-workspace': found 2 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/Migrations/2_0To_3_0/2.0_3.0_Mapping.xcmappingmodel
    /Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/CareKitStore.xcdatamodeld
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "fhirmodels",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.7.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/FHIRModels.git"
    },
    {
      "identity" : "swift-async-algorithms",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.4",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-async-algorithms"
    }
  ],
  "manifest_display_name" : "CareKit",
  "name" : "CareKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "18.0"
    },
    {
      "name" : "macos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "CareKit",
      "targets" : [
        "CareKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CareKitUI",
      "targets" : [
        "CareKitUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CareKitStore",
      "targets" : [
        "CareKitStore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CareKitFHIR",
      "targets" : [
        "CareKitFHIR"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CareKitUITests",
      "module_type" : "SwiftTarget",
      "name" : "CareKitUITests",
      "path" : "CareKitUI/CareKitUITests",
      "sources" : [
        "Link/TestLinkType.swift",
        "Link/TestLinkView.swift",
        "OCKResponsiveLayoutTests.swift",
        "Task/TestGridTaskView.swift",
        "Task/TestNumericProgressTaskView.swift",
        "TestColorExtension.swift",
        "TestStylableView.swift"
      ],
      "target_dependencies" : [
        "CareKitUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CareKitUI",
      "module_type" : "SwiftTarget",
      "name" : "CareKitUI",
      "path" : "CareKitUI/CareKitUI",
      "product_memberships" : [
        "CareKit",
        "CareKitUI"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Localization/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitUI/CareKitUI/Shared/Localization/en.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "Shared/AccessibleStack.swift",
        "Shared/BackwardsCompatibility.swift",
        "Shared/Components/CardView.swift",
        "Shared/Components/CircularCompletionView.swift",
        "Shared/Components/HeaderView.swift",
        "Shared/Components/RectangularCompletionView.swift",
        "Shared/Extensions/Number+Extensions.swift",
        "Shared/Extensions/OCKStyler+Extension.swift",
        "Shared/Extensions/Text+Extension.swift",
        "Shared/Extensions/UIColor+Extension.swift",
        "Shared/Extensions/View+Extension.swift",
        "Shared/Localization/OCKLocalization.swift",
        "Shared/NoHighlightStyle.swift",
        "Shared/OCKLog.swift",
        "Shared/OSValue.swift",
        "Shared/Style/OCKAnimationStyler.swift",
        "Shared/Style/OCKAppearanceStyler.swift",
        "Shared/Style/OCKColorStyler.swift",
        "Shared/Style/OCKDimensionStyler.swift",
        "Shared/Style/OCKStyler.swift",
        "Shared/Task/InstructionsTaskView.swift",
        "Shared/Task/SimpleTaskView.swift",
        "iOS/Calendar/OCKCalendarDisplayable.swift",
        "iOS/Calendar/OCKWeekCalendarView.swift",
        "iOS/Calendar/Ring/OCKCompletionRingButton.swift",
        "iOS/Calendar/Ring/OCKCompletionRingView.swift",
        "iOS/Calendar/Ring/OCKCompletionState.swift",
        "iOS/Calendar/Ring/OCKRingView.swift",
        "iOS/Charts/Gradient Plots/OCKBarPlotView.swift",
        "iOS/Charts/Gradient Plots/OCKGradientPlotView.swift",
        "iOS/Charts/Gradient Plots/OCKLinePlotView.swift",
        "iOS/Charts/Gradient Plots/OCKScatterPlotView.swift",
        "iOS/Charts/Layers/OCKBarLayer.swift",
        "iOS/Charts/Layers/OCKCartesianCoordinatesLayer.swift",
        "iOS/Charts/Layers/OCKGridLayer.swift",
        "iOS/Charts/Layers/OCKLineLayer.swift",
        "iOS/Charts/Layers/OCKScatterLayer.swift",
        "iOS/Charts/OCKCartesianChartView.swift",
        "iOS/Charts/OCKCartesianGraphView.swift",
        "iOS/Charts/OCKDataSeries.swift",
        "iOS/Charts/OCKGraphAxisView.swift",
        "iOS/Charts/OCKGraphLegendView.swift",
        "iOS/Charts/OCKGridView.swift",
        "iOS/Charts/Protocols/OCKChartDisplayable.swift",
        "iOS/Charts/Protocols/OCKGraphable.swift",
        "iOS/Contact/OCKAddressButton.swift",
        "iOS/Contact/OCKContactButton.swift",
        "iOS/Contact/OCKContactDisplayable.swift",
        "iOS/Contact/OCKDetailedContactView.swift",
        "iOS/Contact/OCKSimpleContactView.swift",
        "iOS/Controls/OCKAnimatedButton.swift",
        "iOS/Controls/OCKCheckmarkButton.swift",
        "iOS/Controls/OCKLabeledButton.swift",
        "iOS/Detail View/OCKDetailView.swift",
        "iOS/Detail View/OCKDetailedImageView.swift",
        "iOS/Extensions/CATransaction+Extension.swift",
        "iOS/Extensions/Calendar+Extensions.swift",
        "iOS/Extensions/NSLayoutConstraint+Extensions.swift",
        "iOS/Extensions/UIFont+Extensions.swift",
        "iOS/Featured Content/OCKFeaturedContentView.swift",
        "iOS/Labels/OCKCappedSizeLabel.swift",
        "iOS/Labels/OCKLabel.swift",
        "iOS/Link/LinkButton.swift",
        "iOS/Link/LinkItem.swift",
        "iOS/Link/LinkLabel.swift",
        "iOS/Link/LinkView.swift",
        "iOS/Link/SafariView.swift",
        "iOS/OCKAccessibleValue.swift",
        "iOS/OCKCardable.swift",
        "iOS/OCKResponsiveLayout.swift",
        "iOS/Style/OCKStylable.swift",
        "iOS/Task/Buttons/OCKChecklistItemButton.swift",
        "iOS/Task/Buttons/OCKLabeledCheckmarkButton.swift",
        "iOS/Task/Buttons/OCKLogItemButton.swift",
        "iOS/Task/Collection/OCKGridTaskCell.swift",
        "iOS/Task/Collection/OCKLogButtonCell.swift",
        "iOS/Task/Collection/OCKSelfSizingCollectionView.swift",
        "iOS/Task/LabeledValueTaskView.swift",
        "iOS/Task/NumericProgressTaskView.swift",
        "iOS/Task/OCKButtonLogTaskView.swift",
        "iOS/Task/OCKChecklistTaskView.swift",
        "iOS/Task/OCKGridTaskView.swift",
        "iOS/Task/OCKInstructionsTaskView.swift",
        "iOS/Task/OCKLogTaskView.swift",
        "iOS/Task/OCKSimpleTaskView.swift",
        "iOS/Task/OCKTaskDisplayable.swift",
        "iOS/Views/OCKHeaderView.swift",
        "iOS/Views/OCKSeparatorView.swift",
        "iOS/Views/OCKStackView.swift",
        "iOS/Views/OCKView.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CareKitTests",
      "module_type" : "SwiftTarget",
      "name" : "CareKitTests",
      "path" : "CareKit/CareKitTests",
      "sources" : [
        "Calendar/TestCustomCalendarViewSynchronizer.swift",
        "Calendar/TestDailyProgress.swift",
        "Calendar/TestWeekCalendarViewSynchronizer.swift",
        "Chart/TestCartesianChartViewSynchronizer.swift",
        "Chart/TestCustomChartViewSynchronizer.swift",
        "Contact/TestContactListViewSynchronizer.swift",
        "Contact/TestCustomContactViewSynchronizer.swift",
        "Contact/TestDetailedContactViewSynchronizer.swift",
        "Contact/TestSimpleContactViewSynchronizer.swift",
        "Extensions/Array+Extension.swift",
        "Extensions/OCKSchedule+Extension.swift",
        "Extensions/XCTestCase+Extension.swift",
        "Higher Order/TestDailyTasksPageViewController.swift",
        "Higher Order/TestListView.swift",
        "Higher Order/TestWeekCalendarPageViewController.swift",
        "MockStore.swift",
        "Synchronization/TestCareStoreFetchRequestController.swift",
        "Synchronization/TestSynchronizedViewController.swift",
        "Task/OCKTask+Extension.swift",
        "Task/TestAnyEventExtensions.swift",
        "Task/TestButtonLogTaskViewSynchronizer.swift",
        "Task/TestChecklistViewSynchronizer.swift",
        "Task/TestCustomTaskViewSynchronizer.swift",
        "Task/TestGridTaskViewSynchronizer.swift",
        "Task/TestInstructionsTaskViewSynchronizer.swift",
        "Task/TestMockTaskEvents.swift",
        "Task/TestSimpleTaskViewSynchronizer.swift",
        "Task/TestTaskEvents.swift",
        "TestAnyEventStoreExtensions.swift",
        "TestContactExtension.swift",
        "TestScheduleUtility.swift"
      ],
      "target_dependencies" : [
        "CareKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CareKitStoreTests",
      "module_type" : "SwiftTarget",
      "name" : "CareKitStoreTests",
      "path" : "CareKitStore/CareKitStoreTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.0.sqlite",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.0.sqlite-shm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.0.sqlite-wal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.1.sqlite",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.1.sqlite-shm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStoreTests/CoreDataSchema/Migrations/SampleStore2.1.sqlite-wal",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CoreDataSchema/TestCoreDataSchema+Migrations.swift",
        "OCKHealthKitStore/TestHealthKitPassthroughStore+Events.swift",
        "OCKHealthKitStore/TestHealthKitPassthroughStore+Outcomes.swift",
        "OCKHealthKitStore/TestHealthKitStore+Tasks.swift",
        "OCKStore/TestStore+BuildRevisions.swift",
        "OCKStore/TestStore+CRDT.swift",
        "OCKStore/TestStore+CarePlans.swift",
        "OCKStore/TestStore+ConsumeRevisions.swift",
        "OCKStore/TestStore+Contacts.swift",
        "OCKStore/TestStore+EventsStream.swift",
        "OCKStore/TestStore+Notes.swift",
        "OCKStore/TestStore+Outcomes.swift",
        "OCKStore/TestStore+Patients.swift",
        "OCKStore/TestStore+ResolveConflicts.swift",
        "OCKStore/TestStore+Sync.swift",
        "OCKStore/TestStore+Tasks.swift",
        "OCKStore/TestStore+TasksStream.swift",
        "OCKStore/TestStore.swift",
        "OCKStoreCoordinator/TestPersistentStoreCoordinator.swift",
        "OCKStoreCoordinator/TestStoreCoordinator+EventStream.swift",
        "Shared/Extensions/Collection+Extension.swift",
        "Shared/Extensions/XCTestCase+Utilities.swift",
        "Streaming/TestCoreDataQueryMonitor.swift",
        "Structs/TestCarePlan.swift",
        "Structs/TestContact.swift",
        "Structs/TestEvent.swift",
        "Structs/TestHealthKitLinkage.swift",
        "Structs/TestKnowledgeVector.swift",
        "Structs/TestOutcome.swift",
        "Structs/TestOutcomeValue.swift",
        "Structs/TestPatient.swift",
        "Structs/TestPostalAddress.swift",
        "Structs/TestSchedule.swift",
        "Structs/TestScheduleElement.swift",
        "Structs/TestScheduleEvent.swift",
        "Structs/TestSemanticVersion.swift",
        "Structs/TestTask.swift",
        "TaskProgress/CareTaskProgressTestUtils.swift",
        "TaskProgress/TestAggregatedCareTaskProgress.swift",
        "TaskProgress/TestBinaryCareTaskProgress.swift",
        "TaskProgress/TestCareTaskProgress.swift",
        "TaskProgress/TestCheckingOutcomeExistsProgressStrategy.swift",
        "TaskProgress/TestCustomCareTaskProgressStrategy.swift",
        "TaskProgress/TestLinearCareTaskProgress.swift",
        "TaskProgress/TestSummingOutcomeValuesProgressStrategy.swift",
        "TestPartialEvents.swift",
        "TestStoreProtocolExtensions.swift",
        "TestWatchConnectivityPeer.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "CareKitStore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CareKitStore",
      "module_type" : "SwiftTarget",
      "name" : "CareKitStore",
      "path" : "CareKitStore/CareKitStore",
      "product_dependencies" : [
        "AsyncAlgorithms"
      ],
      "product_memberships" : [
        "CareKit",
        "CareKitStore",
        "CareKitFHIR"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/Migrations/2_0To2_1/2.0_2.1_Mapping.xcmappingmodel",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKitStore/CareKitStore/CoreData/Migrations/2_1To3_0/2.1_3.0_Mapping.xcmappingmodel",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CoreData/Migrations/2_0To2_1/OCKStoreMigration2_0To2_1Policy.swift",
        "CoreData/Migrations/2_0To_3_0/OCKStoreMigration2_0To3_0Policy.swift",
        "CoreData/Migrations/2_1To3_0/OCKStoreMigration2_1To3_0Policy.swift",
        "CoreData/OCKCDCarePlan.swift",
        "CoreData/OCKCDClock.swift",
        "CoreData/OCKCDContact.swift",
        "CoreData/OCKCDDevice.swift",
        "CoreData/OCKCDHealthKitLinkage.swift",
        "CoreData/OCKCDHealthKitTask.swift",
        "CoreData/OCKCDKnowledgeElement.swift",
        "CoreData/OCKCDNote.swift",
        "CoreData/OCKCDObject.swift",
        "CoreData/OCKCDOperatingSystemVersion.swift",
        "CoreData/OCKCDOutcome.swift",
        "CoreData/OCKCDOutcomeValue.swift",
        "CoreData/OCKCDPatient.swift",
        "CoreData/OCKCDPersonName.swift",
        "CoreData/OCKCDPostalAddress.swift",
        "CoreData/OCKCDScheduleElement.swift",
        "CoreData/OCKCDSource.swift",
        "CoreData/OCKCDSourceRevision.swift",
        "CoreData/OCKCDTag.swift",
        "CoreData/OCKCDTask.swift",
        "CoreData/OCKCDVersionedObject.swift",
        "CoreData/OCKStore+CarePlans.swift",
        "CoreData/OCKStore+Contacts.swift",
        "CoreData/OCKStore+HealthKit.swift",
        "CoreData/OCKStore+Outcomes.swift",
        "CoreData/OCKStore+Patients.swift",
        "CoreData/OCKStore+Tasks.swift",
        "CoreData/OCKStore+Transactions.swift",
        "CoreData/OCKStore.swift",
        "CoreData/Synchronization/OCKRemoteSynchronizable.swift",
        "CoreData/Synchronization/OCKRevisionRecord.swift",
        "CoreData/Synchronization/OCKStore+Synchronization.swift",
        "CoreData/Synchronization/OCKWatchConnectivityPeer.swift",
        "HealthKit/OCKDevice.swift",
        "HealthKit/OCKHealthKitOutcome.swift",
        "HealthKit/OCKHealthKitPassthroughStore+EventUtilities.swift",
        "HealthKit/OCKHealthKitPassthroughStore+EventsStream.swift",
        "HealthKit/OCKHealthKitPassthroughStore+FetchEvents.swift",
        "HealthKit/OCKHealthKitPassthroughStore+FetchOutcomes.swift",
        "HealthKit/OCKHealthKitPassthroughStore+OutcomesStream.swift",
        "HealthKit/OCKHealthKitPassthroughStore.swift",
        "HealthKit/OCKHealthKitProxy.swift",
        "HealthKit/OCKHealthKitStore+Outcomes.swift",
        "HealthKit/OCKHealthKitStore+Tasks.swift",
        "HealthKit/OCKHealthKitTask.swift",
        "HealthKit/OCKSource.swift",
        "HealthKit/OCKSourceRevision.swift",
        "HealthKit/OperatingSystemVersion+Codable.swift",
        "HealthKit/OperatingSystemVersion+Hashable.swift",
        "HealthKit/Sample/CategorySample.swift",
        "HealthKit/Sample/QuantitySample.swift",
        "HealthKit/Sample/Sample.swift",
        "HealthKit/Sample/SampleChange.swift",
        "Logging/LogCategory.swift",
        "Logging/Logger+Init.swift",
        "Logging/OCKLog.swift",
        "Logging/OSLog+Init.swift",
        "OCKResultClosure.swift",
        "OCKStoreError.swift",
        "OCKUtilities.swift",
        "Protocols/CarePlans/OCKAnyCarePlan.swift",
        "Protocols/CarePlans/OCKAnyCarePlanStore.swift",
        "Protocols/CarePlans/OCKCarePlanStore.swift",
        "Protocols/Contacts/OCKAnyContact.swift",
        "Protocols/Contacts/OCKAnyContactStore.swift",
        "Protocols/Contacts/OCKContactStore.swift",
        "Protocols/Events/OCKAnyEvent.swift",
        "Protocols/Events/OCKAnyEventStore.swift",
        "Protocols/Events/OCKEventStore.swift",
        "Protocols/Events/OCKReadOnlyEventStore+FetchPartialEvents.swift",
        "Protocols/Events/OCKReadOnlyEventStore+PartialEventsStream.swift",
        "Protocols/Events/OCKReadOnlyEventStore+Utilities.swift",
        "Protocols/Events/OCKReadOnlyEventStore+VersioningUtilities.swift",
        "Protocols/Events/PartialEvent.swift",
        "Protocols/OCKObjectCompatible.swift",
        "Protocols/OCKStoreProtocol.swift",
        "Protocols/Outcomes/OCKAnyOutcome.swift",
        "Protocols/Outcomes/OCKAnyOutcomeStore.swift",
        "Protocols/Outcomes/OCKOutcomeStore.swift",
        "Protocols/Patients/OCKAnyPatient.swift",
        "Protocols/Patients/OCKAnyPatientStore.swift",
        "Protocols/Patients/OCKPatientStore.swift",
        "Protocols/Tasks/OCKAnyTask.swift",
        "Protocols/Tasks/OCKAnyTaskStore.swift",
        "Protocols/Tasks/OCKAnyVersionableTask.swift",
        "Protocols/Tasks/OCKTaskStore.swift",
        "Shared/Extensions/Mutex+Extension.swift",
        "Stale/OCKAdherenceAggregator.swift",
        "Stale/OCKCarePlanStoreDelegate.swift",
        "Stale/OCKContactStoreDelegate.swift",
        "Stale/OCKEventAggregator.swift",
        "Stale/OCKOutcomeStoreDelegate.swift",
        "Stale/OCKPatientStoreDelegate.swift",
        "Stale/OCKTaskStoreDelegate.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+CarePlans.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Contacts.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Events.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Outcomes.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Patients.swift",
        "StoreCoordinator/OCKPersistentStoreCoordinator+Tasks.swift",
        "StoreCoordinator/OCKStoreCoordinator.swift",
        "StoreCoordinator/OCKStoreCoordinatorDelegate.swift",
        "Streaming/AsyncStreamFactory.swift",
        "Streaming/CareStoreQueryResults.swift",
        "Streaming/CoreDataQueryMonitor.swift",
        "Streaming/HealthKitQueryMonitor+QueryResult.swift",
        "Streaming/HealthKitQueryMonitor.swift",
        "Structs/OCKAdherence.swift",
        "Structs/OCKBiologicalSex.swift",
        "Structs/OCKCarePlan.swift",
        "Structs/OCKContact.swift",
        "Structs/OCKEntity.swift",
        "Structs/OCKEvent.swift",
        "Structs/OCKHealthKitLinkage.swift",
        "Structs/OCKLabeledValue.swift",
        "Structs/OCKNote.swift",
        "Structs/OCKOutcome.swift",
        "Structs/OCKOutcomeValue.swift",
        "Structs/OCKPatient.swift",
        "Structs/OCKPostalAddress.swift",
        "Structs/OCKSchedule.swift",
        "Structs/OCKScheduleElement.swift",
        "Structs/OCKScheduleEvent.swift",
        "Structs/OCKSemanticVersion.swift",
        "Structs/OCKTask.swift",
        "Structs/Queries/OCKAdherenceQuery.swift",
        "Structs/Queries/OCKCarePlanQuery.swift",
        "Structs/Queries/OCKContactQuery.swift",
        "Structs/Queries/OCKEventQuery.swift",
        "Structs/Queries/OCKOutcomeQuery.swift",
        "Structs/Queries/OCKPatientQuery.swift",
        "Structs/Queries/OCKQueryProtocol.swift",
        "Structs/Queries/OCKTaskQuery.swift",
        "TaskProgress/AggregatedCareTaskProgress.swift",
        "TaskProgress/BinaryCareTaskProgress.swift",
        "TaskProgress/CareTaskProgress.swift",
        "TaskProgress/CareTaskProgressStrategy+CheckingOutcomesExist.swift",
        "TaskProgress/CareTaskProgressStrategy+SummingOutcomeValues.swift",
        "TaskProgress/CareTaskProgressStrategy.swift",
        "TaskProgress/LinearCareTaskProgress.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CareKitFHIRTests",
      "module_type" : "SwiftTarget",
      "name" : "CareKitFHIRTests",
      "path" : "CareKitFHIR/CareKitFHIRTests",
      "sources" : [
        "Integration Tests/CareKitFHIRTests.swift",
        "Unit Tests/DSTU2MedicationOrderConverterTests.swift",
        "Unit Tests/DSTU2PatientConverterTests.swift",
        "Unit Tests/DSTU2TaskConverterTests.swift",
        "Unit Tests/FHIRResourceDataTests.swift",
        "Unit Tests/R4PatientConverterTests.swift",
        "Utils.swift"
      ],
      "target_dependencies" : [
        "CareKitFHIR"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CareKitFHIR",
      "module_type" : "SwiftTarget",
      "name" : "CareKitFHIR",
      "path" : "CareKitFHIR/CareKitFHIR",
      "product_dependencies" : [
        "ModelsR4",
        "ModelsDSTU2"
      ],
      "product_memberships" : [
        "CareKitFHIR"
      ],
      "sources" : [
        "FHIRModels+Extensions.swift",
        "OCK+FHIRExtensions.swift",
        "OCKFHIRCodingError.swift",
        "OCKFHIRContentType.swift",
        "OCKFHIRRelease.swift",
        "OCKFHIRResource.swift",
        "OCKFHIRResourceCoder.swift",
        "OCKFHIRResourceData.swift",
        "Patients/OCKDSTU2PatientCoder.swift",
        "Patients/OCKPatientConverterTraits.swift",
        "Patients/OCKR4PatientCoder.swift",
        "Tasks/OCKDSTU2CarePlanActivityCoder.swift",
        "Tasks/OCKDSTU2MedicationOrderCoder.swift",
        "Tasks/OCKDSTU2ScheduleCoder.swift",
        "Tasks/OCKTaskConverterTraits.swift"
      ],
      "target_dependencies" : [
        "CareKitStore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CareKit",
      "module_type" : "SwiftTarget",
      "name" : "CareKit",
      "path" : "CareKit/CareKit",
      "product_memberships" : [
        "CareKit"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CareKit/CareKit/iOS/Localization/en.lproj/locversion.plist",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "Shared/Extensions/Calendar+Extensions.swift",
        "Shared/Extensions/LinearCareTaskProgress+Extension.swift",
        "Shared/Extensions/Number+Extension.swift",
        "Shared/Extensions/OCKAnyContact+Extension.swift",
        "Shared/Extensions/OCKAnyEvent+Extension.swift",
        "Shared/Extensions/OCKAnyEventStore+Extension.swift",
        "Shared/Extensions/OCKAnyStoreProtocol+Environment.swift",
        "Shared/Extensions/UIImage+Asset.swift",
        "Shared/OCKLog.swift",
        "Shared/Synchronization/CareStoreFetchRequest.swift",
        "Shared/Synchronization/CareStoreFetchRequestController.swift",
        "Shared/Synchronization/CareStoreFetchedResult+Extension.swift",
        "Shared/Synchronization/CareStoreFetchedResult.swift",
        "Shared/Synchronization/CareStoreFetchedResults.swift",
        "Shared/Synchronization/OCKAnyReadOnlyEventStore+Progress.swift",
        "Shared/Synchronization/OCKSynchronizationContext.swift",
        "Shared/Synchronization/TemporalProgress.swift",
        "Shared/Synchronization/TemporalTaskProgress.swift",
        "Shared/Task/InstructionsTaskView+Init.swift",
        "Shared/Task/OCKTaskEvents.swift",
        "Shared/Task/SimpleTaskView+Init.swift",
        "Shared/Utilities/OCKScheduleUtility.swift",
        "Stale/OCKButtonLogTaskController.swift",
        "Stale/OCKCalendarController.swift",
        "Stale/OCKCalendarViewSynchronizerProtocol.swift",
        "Stale/OCKCartesianChartController.swift",
        "Stale/OCKChartController.swift",
        "Stale/OCKChartViewSynchronizerProtocol.swift",
        "Stale/OCKChecklistTaskController.swift",
        "Stale/OCKContactController.swift",
        "Stale/OCKContactViewSynchronizerProtocol.swift",
        "Stale/OCKDetailedContactController.swift",
        "Stale/OCKGridTaskController.swift",
        "Stale/OCKInstructionsTaskController.swift",
        "Stale/OCKLabeledValueTaskController.swift",
        "Stale/OCKNumericProgressTaskController.swift",
        "Stale/OCKSimpleContactController.swift",
        "Stale/OCKSimpleTaskController.swift",
        "Stale/OCKStoreNotifications.swift",
        "Stale/OCKSynchronizedStoreManager.swift",
        "Stale/OCKTaskController.swift",
        "Stale/OCKTaskViewSynchronizerProtocol.swift",
        "Stale/OCKWeekCalendarController.swift",
        "iOS/Calendar/Paging/OCKWeekCalendarPageViewController.swift",
        "iOS/Calendar/Synchronizers/OCKWeekCalendarViewSynchronizer.swift",
        "iOS/Calendar/View Controllers/OCKCalendarViewController.swift",
        "iOS/Calendar/View Controllers/OCKWeekCalendarViewController.swift",
        "iOS/Chart/Synchronizers/OCKCartesianChartViewSynchronizer.swift",
        "iOS/Chart/View Controllers/OCKCartesianChartViewController.swift",
        "iOS/Chart/View Controllers/OCKChartViewController.swift",
        "iOS/Chart/View Controllers/OCKDataSeriesConfiguration.swift",
        "iOS/Contact/Synchronizers/OCKDetailedContactViewSynchronizer.swift",
        "iOS/Contact/Synchronizers/OCKSimpleContactViewSynchronizer.swift",
        "iOS/Contact/Synchronizers/_OCKContactsListViewSynchronizer.swift",
        "iOS/Contact/View Controllers/OCKContactViewController.swift",
        "iOS/Contact/View Controllers/OCKContactViewResponder.swift",
        "iOS/Contact/View Controllers/OCKContactsListViewController.swift",
        "iOS/Contact/View Controllers/OCKDetailedContactViewController.swift",
        "iOS/Contact/View Controllers/OCKSimpleContactViewController.swift",
        "iOS/Details/OCKDetailViewController.swift",
        "iOS/Extensions/NSLayoutConstraint+Extensions.swift",
        "iOS/Extensions/OCKContact+Extensions.swift",
        "iOS/Extensions/OCKOutcomeValue+Extension.swift",
        "iOS/Extensions/UIViewController+Extensions.swift",
        "iOS/Higher Order/View/OCKHeaderBodyView.swift",
        "iOS/Higher Order/View/OCKListView.swift",
        "iOS/Higher Order/ViewController/OCKDailyPageViewController.swift",
        "iOS/Higher Order/ViewController/OCKDailyTasksPageViewController.swift",
        "iOS/Higher Order/ViewController/OCKListViewController.swift",
        "iOS/Synchronization/SynchronizedViewController.swift",
        "iOS/Synchronization/ViewSynchronizing.swift",
        "iOS/Task/LabeledValueTaskView+Init.swift",
        "iOS/Task/NumericProgressTaskView+Init.swift",
        "iOS/Task/Synchronizers/OCKButtonLogTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKChecklistTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKGridTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKInstructionsTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKSimpleTaskViewSynchronizer.swift",
        "iOS/Task/Synchronizers/OCKSurveyTaskViewSynchronizer.swift",
        "iOS/Task/View Controllers/OCKButtonLogViewController.swift",
        "iOS/Task/View Controllers/OCKChecklistTaskViewController.swift",
        "iOS/Task/View Controllers/OCKGridTaskViewController.swift",
        "iOS/Task/View Controllers/OCKInstructionsTaskViewController.swift",
        "iOS/Task/View Controllers/OCKSimpleTaskViewController.swift",
        "iOS/Task/View Controllers/OCKSurveyTaskViewController.swift",
        "iOS/Task/View Controllers/OCKTaskViewController.swift",
        "iOS/Utilities/OCKContactUtility.swift",
        "iOS/View Updaters/Calendar/OCKWeekCalendarView+Updatable.swift",
        "iOS/View Updaters/Chart/OCKCartesianChartView+Updatable.swift",
        "iOS/View Updaters/Contact/OCKDetailedContactView+Updatable.swift",
        "iOS/View Updaters/Contact/OCKSimpleContactView+Updatable.swift",
        "iOS/View Updaters/OCKHeaderView+Updatable.swift",
        "iOS/View Updaters/Task/OCKChecklistTaskView+Updatable.swift",
        "iOS/View Updaters/Task/OCKGridTaskView+Updatable.swift",
        "iOS/View Updaters/Task/OCKInstructionsTaskView+Updatable.swift",
        "iOS/View Updaters/Task/OCKLogTaskView+Updatable.swift",
        "iOS/View Updaters/Task/OCKSimpleTaskView+Updatable.swift",
        "iOS/View Updaters/Updatable.swift"
      ],
      "target_dependencies" : [
        "CareKitUI",
        "CareKitStore"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.