The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Harmony, reference master (a00a49), with Swift 6.3 for macOS (SPM) on 15 Apr 2026 04:03:12 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[61/113] Compiling Harmony AnyPutRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/AnyRepository.swift:119:21: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
117 |
118 |     override func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
119 |         return base.deleteAll(query, operation: operation)
    |                     `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
120 |     }
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:264:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
262 |             return deleteAll(query, operation: MainSyncOperation())
263 |         case is MainOperation:
264 |             return main.deleteAll(query)
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:266:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
264 |             return main.deleteAll(query)
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:268:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
266 |             return cache.deleteAll(query)
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
269 |                 return self.cache.deleteAll(query)
270 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:269:35: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
269 |                 return self.cache.deleteAll(query)
    |                                   `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:272:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
273 |                 return self.main.deleteAll(query)
274 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:273:34: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
273 |                 return self.main.deleteAll(query)
    |                                  `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
274 |             }
275 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryAssembler.swift:64:33: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 62 |     @discardableResult
 63 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
 64 |         return deleteRepository.deleteAll(query, operation: operation)
    |                                 `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 65 |     }
 66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryMapper.swift:167:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[62/113] Compiling Harmony AnyRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/AnyRepository.swift:119:21: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
117 |
118 |     override func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
119 |         return base.deleteAll(query, operation: operation)
    |                     `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
120 |     }
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:264:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
262 |             return deleteAll(query, operation: MainSyncOperation())
263 |         case is MainOperation:
264 |             return main.deleteAll(query)
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:266:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
264 |             return main.deleteAll(query)
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:268:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
266 |             return cache.deleteAll(query)
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
269 |                 return self.cache.deleteAll(query)
270 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:269:35: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
269 |                 return self.cache.deleteAll(query)
    |                                   `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:272:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
273 |                 return self.main.deleteAll(query)
274 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:273:34: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
273 |                 return self.main.deleteAll(query)
    |                                  `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
274 |             }
275 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryAssembler.swift:64:33: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 62 |     @discardableResult
 63 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
 64 |         return deleteRepository.deleteAll(query, operation: operation)
    |                                 `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 65 |     }
 66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryMapper.swift:167:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[63/113] Compiling Harmony CacheRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/AnyRepository.swift:119:21: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
117 |
118 |     override func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
119 |         return base.deleteAll(query, operation: operation)
    |                     `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
120 |     }
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:264:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
262 |             return deleteAll(query, operation: MainSyncOperation())
263 |         case is MainOperation:
264 |             return main.deleteAll(query)
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:266:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
264 |             return main.deleteAll(query)
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:268:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
266 |             return cache.deleteAll(query)
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
269 |                 return self.cache.deleteAll(query)
270 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:269:35: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
269 |                 return self.cache.deleteAll(query)
    |                                   `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:272:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
273 |                 return self.main.deleteAll(query)
274 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:273:34: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
273 |                 return self.main.deleteAll(query)
    |                                  `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
274 |             }
275 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryAssembler.swift:64:33: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 62 |     @discardableResult
 63 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
 64 |         return deleteRepository.deleteAll(query, operation: operation)
    |                                 `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 65 |     }
 66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryMapper.swift:167:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[64/113] Compiling Harmony Repository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/AnyRepository.swift:119:21: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
117 |
118 |     override func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
119 |         return base.deleteAll(query, operation: operation)
    |                     `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
120 |     }
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:264:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
262 |             return deleteAll(query, operation: MainSyncOperation())
263 |         case is MainOperation:
264 |             return main.deleteAll(query)
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:266:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
264 |             return main.deleteAll(query)
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:268:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
266 |             return cache.deleteAll(query)
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
269 |                 return self.cache.deleteAll(query)
270 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:269:35: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
269 |                 return self.cache.deleteAll(query)
    |                                   `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:272:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
273 |                 return self.main.deleteAll(query)
274 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:273:34: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
273 |                 return self.main.deleteAll(query)
    |                                  `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
274 |             }
275 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryAssembler.swift:64:33: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 62 |     @discardableResult
 63 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
 64 |         return deleteRepository.deleteAll(query, operation: operation)
    |                                 `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 65 |     }
 66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryMapper.swift:167:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[65/113] Compiling Harmony RepositoryAssembler.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/AnyRepository.swift:119:21: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
117 |
118 |     override func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
119 |         return base.deleteAll(query, operation: operation)
    |                     `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
120 |     }
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:264:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
262 |             return deleteAll(query, operation: MainSyncOperation())
263 |         case is MainOperation:
264 |             return main.deleteAll(query)
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:266:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
264 |             return main.deleteAll(query)
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:268:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
266 |             return cache.deleteAll(query)
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
269 |                 return self.cache.deleteAll(query)
270 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:269:35: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
269 |                 return self.cache.deleteAll(query)
    |                                   `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:272:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
273 |                 return self.main.deleteAll(query)
274 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:273:34: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
273 |                 return self.main.deleteAll(query)
    |                                  `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
274 |             }
275 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryAssembler.swift:64:33: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 62 |     @discardableResult
 63 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
 64 |         return deleteRepository.deleteAll(query, operation: operation)
    |                                 `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 65 |     }
 66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryMapper.swift:167:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[66/113] Compiling Harmony RepositoryMapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/AnyRepository.swift:119:21: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
117 |
118 |     override func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
119 |         return base.deleteAll(query, operation: operation)
    |                     `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
120 |     }
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:264:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
262 |             return deleteAll(query, operation: MainSyncOperation())
263 |         case is MainOperation:
264 |             return main.deleteAll(query)
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:266:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
264 |             return main.deleteAll(query)
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:268:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
266 |             return cache.deleteAll(query)
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
269 |                 return self.cache.deleteAll(query)
270 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:269:35: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
269 |                 return self.cache.deleteAll(query)
    |                                   `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:272:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
273 |                 return self.main.deleteAll(query)
274 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:273:34: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
273 |                 return self.main.deleteAll(query)
    |                                  `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
274 |             }
275 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryAssembler.swift:64:33: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 62 |     @discardableResult
 63 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
 64 |         return deleteRepository.deleteAll(query, operation: operation)
    |                                 `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 65 |     }
 66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryMapper.swift:167:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[67/113] Compiling Harmony RetryRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/AnyRepository.swift:119:21: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
117 |
118 |     override func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
119 |         return base.deleteAll(query, operation: operation)
    |                     `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
120 |     }
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:264:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
262 |             return deleteAll(query, operation: MainSyncOperation())
263 |         case is MainOperation:
264 |             return main.deleteAll(query)
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:266:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
264 |             return main.deleteAll(query)
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:268:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
266 |             return cache.deleteAll(query)
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
269 |                 return self.cache.deleteAll(query)
270 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:269:35: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
269 |                 return self.cache.deleteAll(query)
    |                                   `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:272:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
273 |                 return self.main.deleteAll(query)
274 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:273:34: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
273 |                 return self.main.deleteAll(query)
    |                                  `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
274 |             }
275 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryAssembler.swift:64:33: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 62 |     @discardableResult
 63 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
 64 |         return deleteRepository.deleteAll(query, operation: operation)
    |                                 `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 65 |     }
 66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryMapper.swift:167:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[68/113] Compiling Harmony SingleDataSourceRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/AnyRepository.swift:119:21: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
117 |
118 |     override func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
119 |         return base.deleteAll(query, operation: operation)
    |                     `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
120 |     }
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:264:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
262 |             return deleteAll(query, operation: MainSyncOperation())
263 |         case is MainOperation:
264 |             return main.deleteAll(query)
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:266:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
264 |             return main.deleteAll(query)
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:268:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
266 |             return cache.deleteAll(query)
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
269 |                 return self.cache.deleteAll(query)
270 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:269:35: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
269 |                 return self.cache.deleteAll(query)
    |                                   `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:272:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
273 |                 return self.main.deleteAll(query)
274 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:273:34: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
273 |                 return self.main.deleteAll(query)
    |                                  `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
274 |             }
275 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryAssembler.swift:64:33: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 62 |     @discardableResult
 63 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
 64 |         return deleteRepository.deleteAll(query, operation: operation)
    |                                 `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 65 |     }
 66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryMapper.swift:167:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[69/113] Compiling Harmony VoidRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/AnyRepository.swift:119:21: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
117 |
118 |     override func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
119 |         return base.deleteAll(query, operation: operation)
    |                     `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
120 |     }
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:264:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
262 |             return deleteAll(query, operation: MainSyncOperation())
263 |         case is MainOperation:
264 |             return main.deleteAll(query)
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:266:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
264 |             return main.deleteAll(query)
265 |         case is CacheOperation:
266 |             return cache.deleteAll(query)
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:268:25: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
266 |             return cache.deleteAll(query)
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
    |                         `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
269 |                 return self.cache.deleteAll(query)
270 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:269:35: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
267 |         case is MainSyncOperation:
268 |             return main.deleteAll(query).flatMap {
269 |                 return self.cache.deleteAll(query)
    |                                   `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:272:26: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
270 |             }
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
    |                          `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
273 |                 return self.main.deleteAll(query)
274 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/CacheRepository.swift:273:34: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
271 |         case is CacheSyncOperation:
272 |             return cache.deleteAll(query).flatMap {
273 |                 return self.main.deleteAll(query)
    |                                  `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
274 |             }
275 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryAssembler.swift:64:33: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 62 |     @discardableResult
 63 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
 64 |         return deleteRepository.deleteAll(query, operation: operation)
    |                                 `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 65 |     }
 66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RepositoryMapper.swift:167:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
165 |     @discardableResult
166 |     public func deleteAll(_ query: Query, operation: Operation) -> Future<Void> {
167 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
168 |     }
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:185:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
183 |         switch operation {
184 |         case let retryOp as RetryOperation:
185 |             return repository.deleteAll(query, operation: retryOp.operation).recover { error in
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
186 |                 if retryOp.canRetry(error) {
187 |                     return self.deleteAll(query, operation: retryOp.next())
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/RetryRepository.swift:193:31: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
191 |             }
192 |         default:
193 |             return repository.deleteAll(query, operation: RetryOperation(operation, retryRule))
    |                               `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
194 |         }
195 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:112:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
110 |     @discardableResult
111 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
112 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
113 |     }
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/Repository/Future/SingleDataSourceRepository.swift:166:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     @discardableResult
165 |     public func deleteAll(_ query: Query, operation: Operation = DefaultOperation()) -> Future<Void> {
166 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
167 |     }
168 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[70/113] Compiling Harmony AsyncDataSourceWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[71/113] Compiling Harmony AsyncInMemoryDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[72/113] Compiling Harmony AsyncVoidDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[73/113] Compiling Harmony AnyDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[74/113] Compiling Harmony AnyGetDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[75/113] Compiling Harmony AnyPutDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[76/113] Compiling Harmony DataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[77/113] Compiling Harmony DataSourceAssembler.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[78/113] Compiling Harmony DataSourceMapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[79/113] Compiling Harmony DataSourceValidator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[80/113] Compiling Harmony DebugDataSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/AnyDataSource.swift:121:21: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
119 |
120 |     override func deleteAll(_ query: Query) -> Future<Void> {
121 |         return base.deleteAll(query)
    |                     `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
122 |     }
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceAssembler.swift:65:33: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 63 |     @discardableResult
 64 |     public func deleteAll(_ query: Query) -> Future<Void> {
 65 |         return deleteDataSource.deleteAll(query)
    |                                 `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 66 |     }
 67 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceMapper.swift:163:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
161 |     @discardableResult
162 |     public func deleteAll(_ query: Query) -> Future<Void> {
163 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
164 |     }
165 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DataSourceValidator.swift:72:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
70 |     @discardableResult
71 |     public func deleteAll(_ query: Query) -> Future<Void> {
72 |         return dataSource.deleteAll(query)
   |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
73 |     }
74 | }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Data/DataSource/Future/DebugDataSource.swift:156:39: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
154 |         log(.deleteAll, token, String(describing: query))
155 |         token.start()
156 |         return postprocess(dataSource.deleteAll(query), .deleteAll, token)
    |                                       `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
157 |     }
158 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[81/113] Compiling Harmony AsyncPutInteractor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[82/113] Compiling Harmony Interactor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[83/113] Compiling Harmony InteractorDelete.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[84/113] Compiling Harmony InteractorGet.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[85/113] Compiling Harmony InteractorPut.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[86/113] Compiling Harmony Collections+Executor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[87/113] Compiling Harmony DirectExecutor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[88/113] Compiling Harmony DispatchQueueExecutor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[89/113] Compiling Harmony Executor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[90/113] Compiling Harmony ExecutorFactory.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[91/113] Compiling Harmony OperationQueueExecutor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:92:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 90 |             let executor = executor ?? self.executor
 91 |             return executor.submit { resolver in
 92 |                 resolver.set(self.repository.deleteAll(query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 93 |             }
 94 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:100:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
 98 |             let executor = executor ?? self.executor
 99 |             return executor.submit { resolver in
100 |                 resolver.set(self.repository.deleteAll(id, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete instead [#DeprecatedDeclaration]
101 |             }
102 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Domain/Future/InteractorDelete.swift:127:46: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
125 |             let executor = executor ?? self.executor
126 |             return executor.submit { resolver in
127 |                 resolver.set(self.repository.deleteAll(self.query, operation: operation))
    |                                              `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |             }
129 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[92/113] Compiling Harmony ClassError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[93/113] Compiling Harmony CoreError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[94/113] Compiling Harmony ErrorHelper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[95/113] Compiling Harmony Data+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[96/113] Compiling Harmony JSONDecoding.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[97/113] Compiling Harmony Number+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[98/113] Compiling Harmony String+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[99/113] Compiling Harmony CodingKeyStrategies.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[100/113] Compiling Harmony MutableCodingKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[101/113] Compiling Harmony KeyValueObserver.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[102/113] Compiling Harmony LinkRecognizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/Extensions/String+Extensions.swift:95:13: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 93 |         #if swift(>=5.0)
 94 |         _ = data.withUnsafeBytes { (bytes: UnsafeRawBufferPointer) in
 95 |             CC_MD5(bytes.baseAddress, CC_LONG(data.count), &digest)
    |             `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger). [#DeprecatedDeclaration]
 96 |         }
 97 |         #else
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:52:84: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
50 |         self.context = "com.mobilejazz.KeyValueObserver<\(String(describing: V.self))>.\(keyPath)"
51 |         super.init()
52 |         self.target.addObserver(self, forKeyPath: keyPath, options: .new, context: &context)
   |                                                                                    `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
53 |     }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/Harmony/Common/KeyValueObserver.swift:60:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
58 |
59 |     override public func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey: Any]?, context: UnsafeMutableRawPointer?) {
60 |         if context == &self.context, let path = keyPath, path == self.keyPath {
   |                       `- warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
61 |             if let value = change?[NSKeyValueChangeKey.newKey] {
62 |                 resolver.set(value as! V)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[103/113] Compiling Harmony Executor+Future.swift
[104/113] Compiling Harmony Future+Async.swift
[105/113] Compiling Harmony Future+Batch.swift
[106/113] Compiling Harmony Future+Extensions.swift
[107/113] Compiling Harmony Future+Functional.swift
[108/113] Compiling Harmony Future+Operators.swift
[109/113] Compiling Harmony Future+Optionals.swift
[110/113] Compiling Harmony Future+Time.swift
[111/113] Compiling Harmony Future.swift
[112/113] Compiling Harmony Observable+Batch.swift
[113/113] Compiling Harmony Observable+Extensions.swift
[114/130] Compiling HarmonyTesting IntegerObjectModel.swift
[115/130] Compiling HarmonyTesting StringObjectMother.swift
[116/130] Compiling HarmonyTesting URLObjectMother.swift
[117/130] Compiling HarmonyTesting UUIDObjectMother.swift
[118/131] Compiling HarmonyTesting EntityObjectMother.swift
[119/131] Compiling HarmonyTesting ErrorObjectMother.swift
[120/131] Compiling HarmonyTesting BoolObjectMother.swift
[121/131] Compiling HarmonyTesting DoubleObjectMother.swift
[122/131] Compiling HarmonyTesting MockObjectValidation.swift
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:25:31: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// Mock ObjectValidation implementation with custom return definition.
12 | public struct MockObjectValidation<T>: ObjectValidation {
   |                                    `- note: 'T' previously declared here
13 |     public let objectValid: Bool
14 |     public let arrayValid: Bool
   :
23 |     }
24 |
25 |     public func isObjectValid<T>(_ object: T) -> Bool {
   |                               `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |         return objectValid
27 |     }
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:29:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// Mock ObjectValidation implementation with custom return definition.
12 | public struct MockObjectValidation<T>: ObjectValidation {
   |                                    `- note: 'T' previously declared here
13 |     public let objectValid: Bool
14 |     public let arrayValid: Bool
   :
27 |     }
28 |
29 |     public func isArrayValid<T>(_ objects: [T]) -> Bool {
   |                              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
30 |         return arrayValid
31 |     }
[123/131] Compiling HarmonyTesting MockUrlProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:25:31: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// Mock ObjectValidation implementation with custom return definition.
12 | public struct MockObjectValidation<T>: ObjectValidation {
   |                                    `- note: 'T' previously declared here
13 |     public let objectValid: Bool
14 |     public let arrayValid: Bool
   :
23 |     }
24 |
25 |     public func isObjectValid<T>(_ object: T) -> Bool {
   |                               `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |         return objectValid
27 |     }
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:29:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// Mock ObjectValidation implementation with custom return definition.
12 | public struct MockObjectValidation<T>: ObjectValidation {
   |                                    `- note: 'T' previously declared here
13 |     public let objectValid: Bool
14 |     public let arrayValid: Bool
   :
27 |     }
28 |
29 |     public func isArrayValid<T>(_ objects: [T]) -> Bool {
   |                              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
30 |         return arrayValid
31 |     }
[124/131] Compiling HarmonyTesting RepositorySpy.swift
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/RepositorySpy.swift:82:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 80 |     public func deleteAll(_ query: Query, operation: Harmony.Operation) -> Future<Void> {
 81 |         deleteAllCalls.append((query, operation))
 82 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 83 |     }
 84 | }
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/RepositorySpy.swift:130:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |     public func deleteAll(_ query: Query, operation: Harmony.Operation) -> Future<Void> {
129 |         deleteAllCalls.append((query, operation))
130 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
131 |     }
132 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[125/131] Compiling HarmonyTesting MockInteractorDelete.swift
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/RepositorySpy.swift:82:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 80 |     public func deleteAll(_ query: Query, operation: Harmony.Operation) -> Future<Void> {
 81 |         deleteAllCalls.append((query, operation))
 82 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 83 |     }
 84 | }
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/RepositorySpy.swift:130:27: warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |     public func deleteAll(_ query: Query, operation: Harmony.Operation) -> Future<Void> {
129 |         deleteAllCalls.append((query, operation))
130 |         return repository.deleteAll(query, operation: operation)
    |                           `- warning: 'deleteAll(_:operation:)' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
131 |     }
132 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[126/131] Compiling HarmonyTesting CodableEntity.swift
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/DataSourceSpy.swift:82:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 80 |     public func deleteAll(_ query: Query) -> Future<Void> {
 81 |         deleteAllCalls.append(query)
 82 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 83 |     }
 84 | }
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/DataSourceSpy.swift:130:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |     public func deleteAll(_ query: Query) -> Future<Void> {
129 |         deleteAllCalls.append(query)
130 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
131 |     }
132 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[127/131] Compiling HarmonyTesting DataSourceSpy.swift
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/DataSourceSpy.swift:82:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 80 |     public func deleteAll(_ query: Query) -> Future<Void> {
 81 |         deleteAllCalls.append(query)
 82 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
 83 |     }
 84 | }
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/DataSourceSpy.swift:130:27: warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
128 |     public func deleteAll(_ query: Query) -> Future<Void> {
129 |         deleteAllCalls.append(query)
130 |         return dataSource.deleteAll(query)
    |                           `- warning: 'deleteAll' is deprecated: Use delete with AllObjectsQuery to remove all entries or with any other Query to remove one or more entries [#DeprecatedDeclaration]
131 |     }
132 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[128/131] Compiling HarmonyTesting MockInteractorGet.swift
[129/131] Compiling HarmonyTesting MockInteractorPut.swift
[130/131] Emitting module HarmonyTesting
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:25:31: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// Mock ObjectValidation implementation with custom return definition.
12 | public struct MockObjectValidation<T>: ObjectValidation {
   |                                    `- note: 'T' previously declared here
13 |     public let objectValid: Bool
14 |     public let arrayValid: Bool
   :
23 |     }
24 |
25 |     public func isObjectValid<T>(_ object: T) -> Bool {
   |                               `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
26 |         return objectValid
27 |     }
/Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/MockObjectValidation.swift:29:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// Mock ObjectValidation implementation with custom return definition.
12 | public struct MockObjectValidation<T>: ObjectValidation {
   |                                    `- note: 'T' previously declared here
13 |     public let objectValid: Bool
14 |     public let arrayValid: Bool
   :
27 |     }
28 |
29 |     public func isArrayValid<T>(_ objects: [T]) -> Bool {
   |                              `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
30 |         return arrayValid
31 |     }
[131/131] Compiling HarmonyTesting TestUtils.swift
Build complete! (6.63s)
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/Sources/HarmonyTesting/Data/EntityList.json
    /Users/admin/builder/spi-builder-workspace/Sources/HarmonyTesting/Data/Entity.json
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Harmony",
  "name" : "Harmony",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "Harmony",
      "targets" : [
        "Harmony"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "HarmonyTesting",
      "targets" : [
        "HarmonyTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HarmonyTests",
      "module_type" : "SwiftTarget",
      "name" : "HarmonyTests",
      "path" : "Tests/HarmonyTests",
      "sources" : [
        "AsyncExecutorTests.swift",
        "AsyncInMemoryDataSourceTests.swift",
        "CacheRepositoryTests.swift",
        "DelayedMainQueueExecutorTests.swift",
        "DeleteNetworkDataSourceTests.swift",
        "DeviceStorageDataSourcePrefixTests.swift",
        "DeviceStorageDataSourceRegularTests.swift",
        "DeviceStorageDataSourceRootKeyTests.swift",
        "DeviceStorageDataSourceTester.swift",
        "FileSystemStorageDataSourceTests.swift",
        "FutureTests.swift",
        "GenericNetworkDataSourceUtils.swift",
        "GetNetworkDataSourceTests.swift",
        "InMemoryDataSourceTests.swift",
        "NetworkQueryTests.swift",
        "PutNetworkDataSourceTests.swift",
        "TimedCacheDataSourceTests.swift"
      ],
      "target_dependencies" : [
        "Harmony"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HarmonyTesting",
      "module_type" : "SwiftTarget",
      "name" : "HarmonyTesting",
      "path" : "Sources/HarmonyTesting",
      "product_memberships" : [
        "HarmonyTesting"
      ],
      "sources" : [
        "Data/CodableEntity.swift",
        "Data/DataSourceSpy.swift",
        "Data/MockObjectValidation.swift",
        "Data/MockUrlProtocol.swift",
        "Data/RepositorySpy.swift",
        "Interactor/MockInteractorDelete.swift",
        "Interactor/MockInteractorGet.swift",
        "Interactor/MockInteractorPut.swift",
        "ObjectMother/BoolObjectMother.swift",
        "ObjectMother/DoubleObjectMother.swift",
        "ObjectMother/EntityObjectMother.swift",
        "ObjectMother/ErrorObjectMother.swift",
        "ObjectMother/IntegerObjectModel.swift",
        "ObjectMother/StringObjectMother.swift",
        "ObjectMother/URLObjectMother.swift",
        "ObjectMother/UUIDObjectMother.swift",
        "TestUtils.swift"
      ],
      "target_dependencies" : [
        "Harmony"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Harmony",
      "module_type" : "SwiftTarget",
      "name" : "Harmony",
      "path" : "Sources/Harmony",
      "product_memberships" : [
        "Harmony",
        "HarmonyTesting"
      ],
      "sources" : [
        "Common/Error/ClassError.swift",
        "Common/Error/CoreError.swift",
        "Common/Error/ErrorHelper.swift",
        "Common/Extensions/Data+Extensions.swift",
        "Common/Extensions/JSONDecoding.swift",
        "Common/Extensions/Number+Extensions.swift",
        "Common/Extensions/String+Extensions.swift",
        "Common/JSON/CodingKeyStrategies.swift",
        "Common/JSON/MutableCodingKey.swift",
        "Common/KeyValueObserver.swift",
        "Common/LinkRecognizer.swift",
        "Common/Logger/DeviceConsoleLogger.swift",
        "Common/Logger/Logger.swift",
        "Common/Network/URL+URLRequest.swift",
        "Common/Network/URLSession+ResponseValidation.swift",
        "Common/ScopeLock/ScopeLock.swift",
        "Common/ScopeLock/ScopeLockFuture.swift",
        "Data/DataSource/Async/AsyncAnyGetDataSource.swift",
        "Data/DataSource/Async/AsyncAnyPutDataSource.swift",
        "Data/DataSource/Async/AsyncDataSource.swift",
        "Data/DataSource/Async/AsyncDataSourceAssembler.swift",
        "Data/DataSource/Async/AsyncDataSourceMapper.swift",
        "Data/DataSource/Async/AsyncDataSourceWrapper.swift",
        "Data/DataSource/Async/AsyncInMemoryDataSource.swift",
        "Data/DataSource/Async/AsyncVoidDataSource.swift",
        "Data/DataSource/Future/AnyDataSource.swift",
        "Data/DataSource/Future/AnyGetDataSource.swift",
        "Data/DataSource/Future/AnyPutDataSource.swift",
        "Data/DataSource/Future/DataSource.swift",
        "Data/DataSource/Future/DataSourceAssembler.swift",
        "Data/DataSource/Future/DataSourceMapper.swift",
        "Data/DataSource/Future/DataSourceValidator.swift",
        "Data/DataSource/Future/DebugDataSource.swift",
        "Data/DataSource/Future/DeleteNetworkDataSource.swift",
        "Data/DataSource/Future/DeviceStorageDataSource.swift",
        "Data/DataSource/Future/FileSystemStorageDataSource.swift",
        "Data/DataSource/Future/GetNetworkDataSource.swift",
        "Data/DataSource/Future/InMemoryDataSource.swift",
        "Data/DataSource/Future/PutNetworkDataSource.swift",
        "Data/DataSource/Future/RetryDataSource.swift",
        "Data/DataSource/Future/TimedCacheDataSource.swift",
        "Data/DataSource/Future/VoidDataSource.swift",
        "Data/Mapper/Mapper+Codable.swift",
        "Data/Mapper/Mapper+NSCoding.swift",
        "Data/Mapper/Mapper.swift",
        "Data/Operation/Operation.swift",
        "Data/Query/NetworkQuery.swift",
        "Data/Query/Query.swift",
        "Data/Repository/Async/AsyncAnyGetRepository.swift",
        "Data/Repository/Async/AsyncAnyPutRepository.swift",
        "Data/Repository/Async/AsyncRepository.swift",
        "Data/Repository/Async/AsyncRepositoryAssembler.swift",
        "Data/Repository/Async/AsyncRepositoryMapper.swift",
        "Data/Repository/Async/AsyncRepositoryWrapper.swift",
        "Data/Repository/Async/AsyncSingleDataSourceRepository.swift",
        "Data/Repository/Async/AsyncVoidRepository.swift",
        "Data/Repository/Future/AnyGetRepository.swift",
        "Data/Repository/Future/AnyPutRepository.swift",
        "Data/Repository/Future/AnyRepository.swift",
        "Data/Repository/Future/CacheRepository.swift",
        "Data/Repository/Future/Repository.swift",
        "Data/Repository/Future/RepositoryAssembler.swift",
        "Data/Repository/Future/RepositoryMapper.swift",
        "Data/Repository/Future/RetryRepository.swift",
        "Data/Repository/Future/SingleDataSourceRepository.swift",
        "Data/Repository/Future/VoidRepository.swift",
        "Data/Validator/ObjectValidation.swift",
        "Data/Validator/VastraInvalidationStrategy.swift",
        "Data/Validator/VastraReachabilityStrategy.swift",
        "Data/Validator/VastraService.swift",
        "Data/Validator/VastraStrategy.swift",
        "Data/Validator/VastraTimestampStrategy.swift",
        "Data/Validator/VastraValidationStrategy.swift",
        "Domain/Async/AsyncDeleteInteractor.swift",
        "Domain/Async/AsyncExecutor.swift",
        "Domain/Async/AsyncGetInteractor.swift",
        "Domain/Async/AsyncInteractor.swift",
        "Domain/Async/AsyncPutInteractor.swift",
        "Domain/Future/Interactor.swift",
        "Domain/Future/InteractorDelete.swift",
        "Domain/Future/InteractorGet.swift",
        "Domain/Future/InteractorPut.swift",
        "Future/Executor/Collections+Executor.swift",
        "Future/Executor/DirectExecutor.swift",
        "Future/Executor/DispatchQueueExecutor.swift",
        "Future/Executor/Executor.swift",
        "Future/Executor/ExecutorFactory.swift",
        "Future/Executor/OperationQueueExecutor.swift",
        "Future/Future/Executor+Future.swift",
        "Future/Future/Future+Async.swift",
        "Future/Future/Future+Batch.swift",
        "Future/Future/Future+Extensions.swift",
        "Future/Future/Future+Functional.swift",
        "Future/Future/Future+Operators.swift",
        "Future/Future/Future+Optionals.swift",
        "Future/Future/Future+Time.swift",
        "Future/Future/Future.swift",
        "Future/Observable/Observable+Batch.swift",
        "Future/Observable/Observable+Extensions.swift",
        "Future/Observable/Observable+Functional.swift",
        "Future/Observable/Observable+Optionals.swift",
        "Future/Observable/Observable+Time.swift",
        "Future/Observable/Observable.swift",
        "Future/Observable/ObservableHub.swift",
        "Security/KeychainDataSource.swift",
        "Security/KeychainGetInteractor.swift",
        "Security/KeychainService.swift",
        "Security/KeychainSetInteractor.swift",
        "Security/SecureKey.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.