The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of AlgoliaSearchClient, reference main (64c477), with Swift 6.2 (beta) for Linux on 11 Sep 2025 22:41:23 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:100:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 98 |         self.exhaustive = exhaustive
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:101:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
 99 |         self.appliedRules = appliedRules
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
102 |         self.exhaustiveTypo = exhaustiveTypo
103 |         self.facets = facets
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:102:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
100 |         self.exhaustiveFacetsCount = exhaustiveFacetsCount
101 |         self.exhaustiveNbHits = exhaustiveNbHits
102 |         self.exhaustiveTypo = exhaustiveTypo
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
103 |         self.facets = facets
104 |         self.facetsStats = facetsStats
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:179:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
177 |         self.appliedRules = dictionary["appliedRules"]?.value as? [AnyCodable]
178 |
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:181:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
179 |         self.exhaustiveFacetsCount = dictionary["exhaustiveFacetsCount"]?.value as? Bool
180 |
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:183:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
181 |         self.exhaustiveNbHits = dictionary["exhaustiveNbHits"]?.value as? Bool
182 |
183 |         self.exhaustiveTypo = dictionary["exhaustiveTypo"]?.value as? Bool
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
184 |
185 |         self.facets = dictionary["facets"]?.value as? [String: [String: Int]]
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:245:44: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
243 |         try container.encodeIfPresent(self.exhaustive, forKey: .exhaustive)
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
    |                                            `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:246:44: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
244 |         try container.encodeIfPresent(self.appliedRules, forKey: .appliedRules)
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
    |                                            `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:247:44: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
245 |         try container.encodeIfPresent(self.exhaustiveFacetsCount, forKey: .exhaustiveFacetsCount)
246 |         try container.encodeIfPresent(self.exhaustiveNbHits, forKey: .exhaustiveNbHits)
247 |         try container.encodeIfPresent(self.exhaustiveTypo, forKey: .exhaustiveTypo)
    |                                            `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
248 |         try container.encodeIfPresent(self.facets, forKey: .facets)
249 |         try container.encodeIfPresent(self.facetsStats, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:280:14: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
278 |         self.exhaustive = try container.decodeIfPresent(SearchExhaustive.self, forKey: .exhaustive)
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
    |              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:281:14: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
279 |         self.appliedRules = try container.decodeIfPresent([AnyCodable].self, forKey: .appliedRules)
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
    |              `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:282:14: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
280 |         self.exhaustiveFacetsCount = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveFacetsCount)
281 |         self.exhaustiveNbHits = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveNbHits)
282 |         self.exhaustiveTypo = try container.decodeIfPresent(Bool.self, forKey: .exhaustiveTypo)
    |              `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
283 |         self.facets = try container.decodeIfPresent([String: [String: Int]].self, forKey: .facets)
284 |         self.facetsStats = try container.decodeIfPresent([String: SearchFacetStats].self, forKey: .facetsStats)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:17: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                 `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:343:46: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
341 |             lhs.exhaustive == rhs.exhaustive &&
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
    |                                              `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:17: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                 `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:344:41: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
342 |             lhs.appliedRules == rhs.appliedRules &&
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
    |                                         `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
346 |             lhs.facets == rhs.facets &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:17: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                 `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:345:39: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
343 |             lhs.exhaustiveFacetsCount == rhs.exhaustiveFacetsCount &&
344 |             lhs.exhaustiveNbHits == rhs.exhaustiveNbHits &&
345 |             lhs.exhaustiveTypo == rhs.exhaustiveTypo &&
    |                                       `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
346 |             lhs.facets == rhs.facets &&
347 |             lhs.facetsStats == rhs.facetsStats &&
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:375:29: warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
373 |         hasher.combine(self.exhaustive?.hashValue)
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
    |                             `- warning: 'exhaustiveFacetsCount' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:376:29: warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
374 |         hasher.combine(self.appliedRules?.hashValue)
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
    |                             `- warning: 'exhaustiveNbHits' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
378 |         hasher.combine(self.facets?.hashValue)
/host/spi-builder-workspace/Sources/Search/Models/SearchBaseSearchResponse.swift:377:29: warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
375 |         hasher.combine(self.exhaustiveFacetsCount?.hashValue)
376 |         hasher.combine(self.exhaustiveNbHits?.hashValue)
377 |         hasher.combine(self.exhaustiveTypo?.hashValue)
    |                             `- warning: 'exhaustiveTypo' is deprecated: This property is deprecated. [#DeprecatedDeclaration]
378 |         hasher.combine(self.facets?.hashValue)
379 |         hasher.combine(self.facetsStats?.hashValue)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1203/1249] Compiling Search SearchTypeDefault.swift
[1204/1249] Compiling Search SearchTypeFacet.swift
[1205/1249] Compiling Search SearchTypoTolerance.swift
[1206/1249] Compiling Search SearchTypoToleranceEnum.swift
[1207/1249] Compiling Search SearchUserIdsParams.swift
[1208/1249] Compiling Search SearchUserIdsResponse.swift
[1209/1249] Compiling Search SearchValue.swift
[1210/1249] Compiling Search SearchWatchResponse.swift
[1211/1249] Compiling Search SearchWidgets.swift
[1212/1249] Compiling Search SecuredApiKeyRestrictions.swift
[1213/1249] Compiling Search SettingsResponse.swift
[1214/1249] Compiling Search StandardEntries.swift
[1215/1249] Compiling Search SynonymHit.swift
[1216/1249] Compiling Search SynonymType.swift
[1217/1249] Compiling Search UpdateApiKeyResponse.swift
[1218/1249] Compiling Search UpdatedAtResponse.swift
[1219/1249] Compiling Search UpdatedAtWithObjectIdResponse.swift
[1220/1249] Compiling Search UserHighlightResult.swift
[1221/1249] Compiling Search UserHit.swift
[1222/1249] Compiling Search UserId.swift
[1223/1249] Compiling Search WithPrimary.swift
[1224/1249] Compiling Search SearchClient.swift
[1225/1249] Compiling Search SearchClientConfiguration.swift
[1234/1249] Compiling Search SearchExhaustive.swift
[1235/1249] Compiling Search SearchFacetFilters.swift
[1236/1249] Compiling Search SearchFacetOrdering.swift
[1237/1249] Compiling Search SearchFacetStats.swift
[1238/1249] Compiling Search SearchFacets.swift
[1239/1249] Compiling Search SearchForFacetValuesRequest.swift
[1240/1249] Compiling Search SearchForFacetValuesResponse.swift
[1241/1249] Compiling Search SearchForFacets.swift
[1242/1249] Compiling Search SearchForFacetsOptions.swift
[1243/1249] Compiling Search SearchForHits.swift
[1244/1249] Compiling Search SearchForHitsOptions.swift
[1245/1249] Compiling Search SearchHighlightResult.swift
[1246/1249] Compiling Search SearchHighlightResultOption.swift
[1247/1249] Compiling Search SearchHits.swift
[1248/1249] Compiling Search SearchIgnorePlurals.swift
[1249/1249] Compiling Search SearchIndexSettingsAsSearchParams.swift
Build complete! (344.01s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.2.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.4",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    }
  ],
  "manifest_display_name" : "AlgoliaSearchClient",
  "name" : "AlgoliaSearchClient",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "Core",
      "targets" : [
        "Core"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Abtesting",
      "targets" : [
        "Abtesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "AbtestingV3",
      "targets" : [
        "AbtestingV3"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Analytics",
      "targets" : [
        "Analytics"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Composition",
      "targets" : [
        "Composition"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Ingestion",
      "targets" : [
        "Ingestion"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Insights",
      "targets" : [
        "Insights"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Monitoring",
      "targets" : [
        "Monitoring"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Personalization",
      "targets" : [
        "Personalization"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "QuerySuggestions",
      "targets" : [
        "QuerySuggestions"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Recommend",
      "targets" : [
        "Recommend"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Search",
      "targets" : [
        "Search"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "zlib",
      "module_type" : "SystemLibraryTarget",
      "name" : "zlib",
      "path" : "Sources/zlib",
      "product_memberships" : [
        "Core",
        "Abtesting",
        "AbtestingV3",
        "Analytics",
        "Composition",
        "Ingestion",
        "Insights",
        "Monitoring",
        "Personalization",
        "QuerySuggestions",
        "Recommend",
        "Search"
      ],
      "sources" : [
      ],
      "type" : "system-target"
    },
    {
      "c99name" : "Search",
      "module_type" : "SwiftTarget",
      "name" : "Search",
      "path" : "Sources/Search",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Search"
      ],
      "sources" : [
        "Extra/DisjunctiveFaceting.swift",
        "Extra/SearchClientExtension.swift",
        "Extra/SearchQueryExtension.swift",
        "Extra/SecuredApiKeyRestrictionExtension.swift",
        "Models/Acl.swift",
        "Models/AddApiKeyResponse.swift",
        "Models/ApiKey.swift",
        "Models/ApiKeyOperation.swift",
        "Models/AssignUserIdParams.swift",
        "Models/AttributeToUpdate.swift",
        "Models/BaseGetApiKeyResponse.swift",
        "Models/BatchAssignUserIdsParams.swift",
        "Models/BatchDictionaryEntriesParams.swift",
        "Models/BatchDictionaryEntriesRequest.swift",
        "Models/BatchParams.swift",
        "Models/BatchResponse.swift",
        "Models/BrowsePagination.swift",
        "Models/BrowseParams.swift",
        "Models/BrowseParamsObject.swift",
        "Models/BrowseResponse.swift",
        "Models/BuiltInOperation.swift",
        "Models/BuiltInOperationType.swift",
        "Models/BuiltInOperationValue.swift",
        "Models/CreatedAtResponse.swift",
        "Models/Cursor.swift",
        "Models/DeleteApiKeyResponse.swift",
        "Models/DeleteByParams.swift",
        "Models/DeleteSourceResponse.swift",
        "Models/DictionaryAction.swift",
        "Models/DictionaryEntry.swift",
        "Models/DictionaryEntryState.swift",
        "Models/DictionaryEntryType.swift",
        "Models/DictionaryLanguage.swift",
        "Models/DictionarySettingsParams.swift",
        "Models/DictionaryType.swift",
        "Models/FacetHits.swift",
        "Models/FetchedIndex.swift",
        "Models/GetApiKeyResponse.swift",
        "Models/GetDictionarySettingsResponse.swift",
        "Models/GetLogsResponse.swift",
        "Models/GetObjectsParams.swift",
        "Models/GetObjectsRequest.swift",
        "Models/GetObjectsResponse.swift",
        "Models/GetTaskResponse.swift",
        "Models/GetTopUserIdsResponse.swift",
        "Models/HasPendingMappingsResponse.swift",
        "Models/Hit.swift",
        "Models/IndexSettings.swift",
        "Models/ListApiKeysResponse.swift",
        "Models/ListClustersResponse.swift",
        "Models/ListIndicesResponse.swift",
        "Models/ListUserIdsResponse.swift",
        "Models/Log.swift",
        "Models/LogQuery.swift",
        "Models/LogType.swift",
        "Models/MultipleBatchRequest.swift",
        "Models/MultipleBatchResponse.swift",
        "Models/OperationIndexParams.swift",
        "Models/OperationType.swift",
        "Models/RemoveUserIdResponse.swift",
        "Models/ReplaceAllObjectsResponse.swift",
        "Models/ReplaceAllObjectsWithTransformationResponse.swift",
        "Models/ReplaceSourceResponse.swift",
        "Models/Rule.swift",
        "Models/SaveObjectResponse.swift",
        "Models/SaveSynonymResponse.swift",
        "Models/ScopeType.swift",
        "Models/SearchAction.swift",
        "Models/SearchAdvancedSyntaxFeatures.swift",
        "Models/SearchAlternativesAsExact.swift",
        "Models/SearchAnchoring.swift",
        "Models/SearchAroundPrecision.swift",
        "Models/SearchAroundRadius.swift",
        "Models/SearchAroundRadiusAll.swift",
        "Models/SearchAutomaticFacetFilter.swift",
        "Models/SearchAutomaticFacetFilters.swift",
        "Models/SearchBanner.swift",
        "Models/SearchBannerImage.swift",
        "Models/SearchBannerImageUrl.swift",
        "Models/SearchBannerLink.swift",
        "Models/SearchBaseIndexSettings.swift",
        "Models/SearchBaseSearchParams.swift",
        "Models/SearchBaseSearchParamsWithoutQuery.swift",
        "Models/SearchBaseSearchResponse.swift",
        "Models/SearchBatchRequest.swift",
        "Models/SearchBatchWriteParams.swift",
        "Models/SearchBooleanString.swift",
        "Models/SearchCondition.swift",
        "Models/SearchConsequence.swift",
        "Models/SearchConsequenceHide.swift",
        "Models/SearchConsequenceParams.swift",
        "Models/SearchConsequenceQuery.swift",
        "Models/SearchConsequenceQueryObject.swift",
        "Models/SearchDeletedAtResponse.swift",
        "Models/SearchDictionaryEntriesParams.swift",
        "Models/SearchDictionaryEntriesResponse.swift",
        "Models/SearchDistinct.swift",
        "Models/SearchEdit.swift",
        "Models/SearchEditType.swift",
        "Models/SearchErrorBase.swift",
        "Models/SearchEvent.swift",
        "Models/SearchEventStatus.swift",
        "Models/SearchEventType.swift",
        "Models/SearchExactOnSingleWordQuery.swift",
        "Models/SearchExhaustive.swift",
        "Models/SearchFacetFilters.swift",
        "Models/SearchFacetOrdering.swift",
        "Models/SearchFacetStats.swift",
        "Models/SearchFacets.swift",
        "Models/SearchForFacetValuesRequest.swift",
        "Models/SearchForFacetValuesResponse.swift",
        "Models/SearchForFacets.swift",
        "Models/SearchForFacetsOptions.swift",
        "Models/SearchForHits.swift",
        "Models/SearchForHitsOptions.swift",
        "Models/SearchHighlightResult.swift",
        "Models/SearchHighlightResultOption.swift",
        "Models/SearchHits.swift",
        "Models/SearchIgnorePlurals.swift",
        "Models/SearchIndexSettingsAsSearchParams.swift",
        "Models/SearchInsideBoundingBox.swift",
        "Models/SearchLanguages.swift",
        "Models/SearchMatchLevel.swift",
        "Models/SearchMatchedGeoLocation.swift",
        "Models/SearchMethodParams.swift",
        "Models/SearchMode.swift",
        "Models/SearchNumericFilters.swift",
        "Models/SearchOptionalFilters.swift",
        "Models/SearchOptionalWords.swift",
        "Models/SearchParams.swift",
        "Models/SearchParamsString.swift",
        "Models/SearchPersonalization.swift",
        "Models/SearchPromote.swift",
        "Models/SearchPromoteObjectID.swift",
        "Models/SearchPromoteObjectIDs.swift",
        "Models/SearchQuery.swift",
        "Models/SearchQueryType.swift",
        "Models/SearchRange.swift",
        "Models/SearchRankingInfo.swift",
        "Models/SearchReRankingApplyFilter.swift",
        "Models/SearchRedirect.swift",
        "Models/SearchRedirectRuleIndexData.swift",
        "Models/SearchRedirectRuleIndexMetadata.swift",
        "Models/SearchRedirectURL.swift",
        "Models/SearchRemoveStopWords.swift",
        "Models/SearchRemoveWordsIfNoResults.swift",
        "Models/SearchRenderingContent.swift",
        "Models/SearchResponse.swift",
        "Models/SearchResponses.swift",
        "Models/SearchResult.swift",
        "Models/SearchRulesParams.swift",
        "Models/SearchRulesResponse.swift",
        "Models/SearchSearchPagination.swift",
        "Models/SearchSearchParams.swift",
        "Models/SearchSearchParamsObject.swift",
        "Models/SearchSearchParamsQuery.swift",
        "Models/SearchSemanticSearch.swift",
        "Models/SearchSnippetResult.swift",
        "Models/SearchSnippetResultOption.swift",
        "Models/SearchSortRemainingBy.swift",
        "Models/SearchSource.swift",
        "Models/SearchStrategy.swift",
        "Models/SearchSupportedLanguage.swift",
        "Models/SearchSynonymsParams.swift",
        "Models/SearchSynonymsResponse.swift",
        "Models/SearchTagFilters.swift",
        "Models/SearchTaskStatus.swift",
        "Models/SearchTimeRange.swift",
        "Models/SearchTypeDefault.swift",
        "Models/SearchTypeFacet.swift",
        "Models/SearchTypoTolerance.swift",
        "Models/SearchTypoToleranceEnum.swift",
        "Models/SearchUserIdsParams.swift",
        "Models/SearchUserIdsResponse.swift",
        "Models/SearchValue.swift",
        "Models/SearchWatchResponse.swift",
        "Models/SearchWidgets.swift",
        "Models/SecuredApiKeyRestrictions.swift",
        "Models/SettingsResponse.swift",
        "Models/StandardEntries.swift",
        "Models/SynonymHit.swift",
        "Models/SynonymType.swift",
        "Models/UpdateApiKeyResponse.swift",
        "Models/UpdatedAtResponse.swift",
        "Models/UpdatedAtWithObjectIdResponse.swift",
        "Models/UserHighlightResult.swift",
        "Models/UserHit.swift",
        "Models/UserId.swift",
        "Models/WithPrimary.swift",
        "SearchClient.swift",
        "SearchClientConfiguration.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Recommend",
      "module_type" : "SwiftTarget",
      "name" : "Recommend",
      "path" : "Sources/Recommend",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Recommend"
      ],
      "sources" : [
        "Models/AutoFacetFilter.swift",
        "Models/BaseRecommendIndexSettings.swift",
        "Models/BaseRecommendRequest.swift",
        "Models/BaseRecommendSearchParams.swift",
        "Models/BoughtTogetherQuery.swift",
        "Models/FallbackParams.swift",
        "Models/FbtModel.swift",
        "Models/FrequentlyBoughtTogether.swift",
        "Models/GetRecommendTaskResponse.swift",
        "Models/GetRecommendationsParams.swift",
        "Models/GetRecommendationsResponse.swift",
        "Models/HideConsequenceObject.swift",
        "Models/IndexSettingsFacets.swift",
        "Models/LookingSimilar.swift",
        "Models/LookingSimilarModel.swift",
        "Models/LookingSimilarQuery.swift",
        "Models/ParamsConsequence.swift",
        "Models/PromoteConsequenceObject.swift",
        "Models/RecommendAdvancedSyntaxFeatures.swift",
        "Models/RecommendAlternativesAsExact.swift",
        "Models/RecommendAroundPrecision.swift",
        "Models/RecommendAroundRadius.swift",
        "Models/RecommendAroundRadiusAll.swift",
        "Models/RecommendBanner.swift",
        "Models/RecommendBannerImage.swift",
        "Models/RecommendBannerImageUrl.swift",
        "Models/RecommendBannerLink.swift",
        "Models/RecommendBaseIndexSettings.swift",
        "Models/RecommendBaseSearchResponse.swift",
        "Models/RecommendBooleanString.swift",
        "Models/RecommendCondition.swift",
        "Models/RecommendConsequence.swift",
        "Models/RecommendDeletedAtResponse.swift",
        "Models/RecommendDistinct.swift",
        "Models/RecommendErrorBase.swift",
        "Models/RecommendExactOnSingleWordQuery.swift",
        "Models/RecommendExhaustive.swift",
        "Models/RecommendFacetFilters.swift",
        "Models/RecommendFacetOrdering.swift",
        "Models/RecommendFacetStats.swift",
        "Models/RecommendHighlightResult.swift",
        "Models/RecommendHighlightResultOption.swift",
        "Models/RecommendHit.swift",
        "Models/RecommendIgnorePlurals.swift",
        "Models/RecommendIndexSettings.swift",
        "Models/RecommendInsideBoundingBox.swift",
        "Models/RecommendMatchLevel.swift",
        "Models/RecommendMatchedGeoLocation.swift",
        "Models/RecommendModels.swift",
        "Models/RecommendNumericFilters.swift",
        "Models/RecommendOptionalFilters.swift",
        "Models/RecommendOptionalWords.swift",
        "Models/RecommendPersonalization.swift",
        "Models/RecommendQueryType.swift",
        "Models/RecommendRange.swift",
        "Models/RecommendRankingInfo.swift",
        "Models/RecommendReRankingApplyFilter.swift",
        "Models/RecommendRedirect.swift",
        "Models/RecommendRedirectRuleIndexData.swift",
        "Models/RecommendRedirectRuleIndexMetadata.swift",
        "Models/RecommendRedirectURL.swift",
        "Models/RecommendRemoveStopWords.swift",
        "Models/RecommendRemoveWordsIfNoResults.swift",
        "Models/RecommendRenderingContent.swift",
        "Models/RecommendRule.swift",
        "Models/RecommendSearchPagination.swift",
        "Models/RecommendSearchParams.swift",
        "Models/RecommendSearchParamsQuery.swift",
        "Models/RecommendSnippetResult.swift",
        "Models/RecommendSnippetResultOption.swift",
        "Models/RecommendSortRemainingBy.swift",
        "Models/RecommendSupportedLanguage.swift",
        "Models/RecommendTagFilters.swift",
        "Models/RecommendTaskStatus.swift",
        "Models/RecommendTimeRange.swift",
        "Models/RecommendTypoTolerance.swift",
        "Models/RecommendTypoToleranceEnum.swift",
        "Models/RecommendUpdatedAtResponse.swift",
        "Models/RecommendValue.swift",
        "Models/RecommendWidgets.swift",
        "Models/RecommendationsHit.swift",
        "Models/RecommendationsHits.swift",
        "Models/RecommendationsRequest.swift",
        "Models/RecommendationsResults.swift",
        "Models/RelatedModel.swift",
        "Models/RelatedProducts.swift",
        "Models/RelatedQuery.swift",
        "Models/RuleMetadata.swift",
        "Models/SearchRecommendRulesParams.swift",
        "Models/SearchRecommendRulesResponse.swift",
        "Models/TrendingFacetHit.swift",
        "Models/TrendingFacets.swift",
        "Models/TrendingFacetsModel.swift",
        "Models/TrendingFacetsQuery.swift",
        "Models/TrendingItems.swift",
        "Models/TrendingItemsModel.swift",
        "Models/TrendingItemsQuery.swift",
        "RecommendClient.swift",
        "RecommendClientConfiguration.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "QuerySuggestions",
      "module_type" : "SwiftTarget",
      "name" : "QuerySuggestions",
      "path" : "Sources/QuerySuggestions",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "QuerySuggestions"
      ],
      "sources" : [
        "Models/AppID.swift",
        "Models/BaseResponse.swift",
        "Models/ConfigStatus.swift",
        "Models/ConfigurationResponse.swift",
        "Models/ConfigurationWithIndex.swift",
        "Models/Facet.swift",
        "Models/LogFile.swift",
        "Models/QuerySuggestionsConfiguration.swift",
        "Models/QuerySuggestionsErrorBase.swift",
        "Models/QuerySuggestionsLanguages.swift",
        "Models/QuerySuggestionsLogLevel.swift",
        "Models/SourceIndex.swift",
        "QuerySuggestionsClient.swift",
        "QuerySuggestionsClientConfiguration.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Personalization",
      "module_type" : "SwiftTarget",
      "name" : "Personalization",
      "path" : "Sources/Personalization",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Personalization"
      ],
      "sources" : [
        "Models/DeleteUserProfileResponse.swift",
        "Models/EventsScoring.swift",
        "Models/FacetsScoring.swift",
        "Models/GetUserTokenResponse.swift",
        "Models/PersonalizationErrorBase.swift",
        "Models/PersonalizationEventType.swift",
        "Models/PersonalizationStrategyParams.swift",
        "Models/SetPersonalizationStrategyResponse.swift",
        "PersonalizationClient.swift",
        "PersonalizationClientConfiguration.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Monitoring",
      "module_type" : "SwiftTarget",
      "name" : "Monitoring",
      "path" : "Sources/Monitoring",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Monitoring"
      ],
      "sources" : [
        "Models/BadRequest.swift",
        "Models/Incident.swift",
        "Models/IncidentEntry.swift",
        "Models/IncidentsResponse.swift",
        "Models/IndexingMetric.swift",
        "Models/IndexingTimeResponse.swift",
        "Models/InfrastructureResponse.swift",
        "Models/InventoryResponse.swift",
        "Models/LatencyMetric.swift",
        "Models/LatencyResponse.swift",
        "Models/Metric.swift",
        "Models/Metrics.swift",
        "Models/ModelType.swift",
        "Models/MonitoringErrorBase.swift",
        "Models/MonitoringForbidden.swift",
        "Models/MonitoringRegion.swift",
        "Models/MonitoringStatus.swift",
        "Models/Period.swift",
        "Models/ProbesMetric.swift",
        "Models/Server.swift",
        "Models/ServerStatus.swift",
        "Models/StatusResponse.swift",
        "Models/TimeEntry.swift",
        "Models/Unauthorized.swift",
        "MonitoringClient.swift",
        "MonitoringClientConfiguration.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Insights",
      "module_type" : "SwiftTarget",
      "name" : "Insights",
      "path" : "Sources/Insights",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Insights"
      ],
      "sources" : [
        "InsightsClient.swift",
        "InsightsClientConfiguration.swift",
        "Models/AddToCartEvent.swift",
        "Models/AddedToCartObjectIDs.swift",
        "Models/AddedToCartObjectIDsAfterSearch.swift",
        "Models/ClickEvent.swift",
        "Models/ClickedFilters.swift",
        "Models/ClickedObjectIDs.swift",
        "Models/ClickedObjectIDsAfterSearch.swift",
        "Models/ConversionEvent.swift",
        "Models/ConvertedFilters.swift",
        "Models/ConvertedObjectIDs.swift",
        "Models/ConvertedObjectIDsAfterSearch.swift",
        "Models/Discount.swift",
        "Models/EventsItems.swift",
        "Models/EventsResponse.swift",
        "Models/InsightsErrorBase.swift",
        "Models/InsightsEvents.swift",
        "Models/InsightsValue.swift",
        "Models/ObjectData.swift",
        "Models/ObjectDataAfterSearch.swift",
        "Models/Price.swift",
        "Models/PurchaseEvent.swift",
        "Models/PurchasedObjectIDs.swift",
        "Models/PurchasedObjectIDsAfterSearch.swift",
        "Models/ViewEvent.swift",
        "Models/ViewedFilters.swift",
        "Models/ViewedObjectIDs.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Ingestion",
      "module_type" : "SwiftTarget",
      "name" : "Ingestion",
      "path" : "Sources/Ingestion",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Ingestion"
      ],
      "sources" : [
        "IngestionClient.swift",
        "IngestionClientConfiguration.swift",
        "Models/ActionType.swift",
        "Models/AuthAPIKey.swift",
        "Models/AuthAPIKeyPartial.swift",
        "Models/AuthAlgolia.swift",
        "Models/AuthAlgoliaInsights.swift",
        "Models/AuthAlgoliaInsightsPartial.swift",
        "Models/AuthAlgoliaPartial.swift",
        "Models/AuthBasic.swift",
        "Models/AuthBasicPartial.swift",
        "Models/AuthGoogleServiceAccount.swift",
        "Models/AuthGoogleServiceAccountPartial.swift",
        "Models/AuthInput.swift",
        "Models/AuthInputPartial.swift",
        "Models/AuthOAuth.swift",
        "Models/AuthOAuthPartial.swift",
        "Models/Authentication.swift",
        "Models/AuthenticationCreate.swift",
        "Models/AuthenticationCreateResponse.swift",
        "Models/AuthenticationSearch.swift",
        "Models/AuthenticationSortKeys.swift",
        "Models/AuthenticationType.swift",
        "Models/AuthenticationUpdate.swift",
        "Models/AuthenticationUpdateResponse.swift",
        "Models/BigCommerceChannel.swift",
        "Models/BigCommerceMetafield.swift",
        "Models/BigQueryDataType.swift",
        "Models/CommercetoolsCustomFields.swift",
        "Models/DeleteResponse.swift",
        "Models/Destination.swift",
        "Models/DestinationCreate.swift",
        "Models/DestinationCreateResponse.swift",
        "Models/DestinationInput.swift",
        "Models/DestinationSearch.swift",
        "Models/DestinationSortKeys.swift",
        "Models/DestinationType.swift",
        "Models/DestinationUpdate.swift",
        "Models/DestinationUpdateResponse.swift",
        "Models/DockerStreams.swift",
        "Models/DockerStreamsInput.swift",
        "Models/DockerStreamsSyncMode.swift",
        "Models/EmailNotifications.swift",
        "Models/EntityType.swift",
        "Models/EventSortKeys.swift",
        "Models/IngestionAction.swift",
        "Models/IngestionErrorBase.swift",
        "Models/IngestionEvent.swift",
        "Models/IngestionEventStatus.swift",
        "Models/IngestionEventType.swift",
        "Models/IngestionSource.swift",
        "Models/IngestionTask.swift",
        "Models/IngestionWatchResponse.swift",
        "Models/ListAuthenticationsResponse.swift",
        "Models/ListDestinationsResponse.swift",
        "Models/ListEventsResponse.swift",
        "Models/ListSourcesResponse.swift",
        "Models/ListTasksResponse.swift",
        "Models/ListTasksResponseV1.swift",
        "Models/ListTransformationsResponse.swift",
        "Models/MappingFieldDirective.swift",
        "Models/MappingFormatSchema.swift",
        "Models/MappingInput.swift",
        "Models/MappingKitAction.swift",
        "Models/MappingTypeCSV.swift",
        "Models/MethodType.swift",
        "Models/Notifications.swift",
        "Models/OnDemandTrigger.swift",
        "Models/OnDemandTriggerInput.swift",
        "Models/OnDemandTriggerType.swift",
        "Models/OrderKeys.swift",
        "Models/Pagination.swift",
        "Models/Platform.swift",
        "Models/PlatformNone.swift",
        "Models/PlatformWithNone.swift",
        "Models/Policies.swift",
        "Models/PushTaskPayload.swift",
        "Models/PushTaskRecords.swift",
        "Models/RecordType.swift",
        "Models/Run.swift",
        "Models/RunListResponse.swift",
        "Models/RunOutcome.swift",
        "Models/RunProgress.swift",
        "Models/RunReasonCode.swift",
        "Models/RunResponse.swift",
        "Models/RunSortKeys.swift",
        "Models/RunSourcePayload.swift",
        "Models/RunSourceResponse.swift",
        "Models/RunStatus.swift",
        "Models/RunTaskPayload.swift",
        "Models/RunType.swift",
        "Models/ScheduleTrigger.swift",
        "Models/ScheduleTriggerInput.swift",
        "Models/ScheduleTriggerType.swift",
        "Models/ShopifyInput.swift",
        "Models/ShopifyMarket.swift",
        "Models/ShopifyMetafield.swift",
        "Models/SourceBigCommerce.swift",
        "Models/SourceBigQuery.swift",
        "Models/SourceCSV.swift",
        "Models/SourceCommercetools.swift",
        "Models/SourceCreate.swift",
        "Models/SourceCreateResponse.swift",
        "Models/SourceDocker.swift",
        "Models/SourceGA4BigQueryExport.swift",
        "Models/SourceInput.swift",
        "Models/SourceJSON.swift",
        "Models/SourceSearch.swift",
        "Models/SourceShopify.swift",
        "Models/SourceShopifyBase.swift",
        "Models/SourceSortKeys.swift",
        "Models/SourceType.swift",
        "Models/SourceUpdate.swift",
        "Models/SourceUpdateCommercetools.swift",
        "Models/SourceUpdateDocker.swift",
        "Models/SourceUpdateInput.swift",
        "Models/SourceUpdateResponse.swift",
        "Models/SourceUpdateShopify.swift",
        "Models/StreamingInput.swift",
        "Models/StreamingTrigger.swift",
        "Models/StreamingTriggerType.swift",
        "Models/SubscriptionTrigger.swift",
        "Models/SubscriptionTriggerType.swift",
        "Models/TaskCreate.swift",
        "Models/TaskCreateResponse.swift",
        "Models/TaskCreateTrigger.swift",
        "Models/TaskCreateV1.swift",
        "Models/TaskInput.swift",
        "Models/TaskReplace.swift",
        "Models/TaskSearch.swift",
        "Models/TaskSortKeys.swift",
        "Models/TaskUpdate.swift",
        "Models/TaskUpdateResponse.swift",
        "Models/TaskUpdateV1.swift",
        "Models/TaskV1.swift",
        "Models/Transformation.swift",
        "Models/TransformationCode.swift",
        "Models/TransformationCreate.swift",
        "Models/TransformationCreateResponse.swift",
        "Models/TransformationError.swift",
        "Models/TransformationInput.swift",
        "Models/TransformationNoCode.swift",
        "Models/TransformationSearch.swift",
        "Models/TransformationSortKeys.swift",
        "Models/TransformationTry.swift",
        "Models/TransformationTryResponse.swift",
        "Models/TransformationType.swift",
        "Models/TransformationUpdateResponse.swift",
        "Models/Trigger.swift",
        "Models/TriggerType.swift",
        "Models/TriggerUpdateInput.swift",
        "Models/Window.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Core",
      "module_type" : "SwiftTarget",
      "name" : "Core",
      "path" : "Sources/Core",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Core",
        "Abtesting",
        "AbtestingV3",
        "Analytics",
        "Composition",
        "Ingestion",
        "Insights",
        "Monitoring",
        "Personalization",
        "QuerySuggestions",
        "Recommend",
        "Search"
      ],
      "sources" : [
        "AnyCodable/AnyCodable.swift",
        "AnyCodable/AnyDecodable.swift",
        "AnyCodable/AnyEncodable.swift",
        "Common/BridgedTask.swift",
        "Common/CallType.swift",
        "Common/Credentials.swift",
        "Common/DecodingErrorPrettyPrinter.swift",
        "Common/ErrorMessage.swift",
        "Common/Logging.swift",
        "Common/Region.swift",
        "Common/RequestOptions.swift",
        "Common/StringOption.swift",
        "Helpers/APIHelper.swift",
        "Helpers/CharacterSet.swift",
        "Helpers/CodableHelper.swift",
        "Helpers/Encoding.swift",
        "Helpers/Extensions.swift",
        "Helpers/Iterable.swift",
        "Helpers/Models.swift",
        "Helpers/OpenISO8601DateFormatter.swift",
        "Helpers/Random.swift",
        "Helpers/SynchronizedDictionary.swift",
        "Helpers/TimeInterval.swift",
        "Helpers/Version.swift",
        "Networking/BaseConfiguration.swift",
        "Networking/Compression/CompressionAlgorithm.swift",
        "Networking/Compression/Gzip.swift",
        "Networking/HTTP/AlgoliaError.swift",
        "Networking/HTTP/HTTPError.swift",
        "Networking/HTTP/HTTPMethod.swift",
        "Networking/HTTP/HTTPStatusCode.swift",
        "Networking/RequestBuilder/EchoRequestBuilder.swift",
        "Networking/RequestBuilder/RequestBuilder.swift",
        "Networking/RequestBuilder/URLSessionRequestBuilder.swift",
        "Networking/RetryStrategy/AlgoliaRetryStrategy.swift",
        "Networking/RetryStrategy/HostIterator.swift",
        "Networking/RetryStrategy/RetryStrategy.swift",
        "Networking/RetryStrategy/RetryableHost.swift",
        "Networking/Transporter.swift",
        "Networking/URLSessionLinux.swift",
        "Networking/UserAgent/UserAgent.swift",
        "Networking/UserAgent/UserAgentController.swift"
      ],
      "target_dependencies" : [
        "zlib"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Composition",
      "module_type" : "SwiftTarget",
      "name" : "Composition",
      "path" : "Sources/Composition",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Composition"
      ],
      "sources" : [
        "CompositionClient.swift",
        "CompositionClientConfiguration.swift",
        "Models/CompositionAroundPrecision.swift",
        "Models/CompositionAroundRadius.swift",
        "Models/CompositionAroundRadiusAll.swift",
        "Models/CompositionBanner.swift",
        "Models/CompositionBannerImage.swift",
        "Models/CompositionBannerImageUrl.swift",
        "Models/CompositionBannerLink.swift",
        "Models/CompositionBaseSearchResponse.swift",
        "Models/CompositionCompositionBaseSearchResponse.swift",
        "Models/CompositionCompositionIdRankingInfo.swift",
        "Models/CompositionCompositionRankingInfo.swift",
        "Models/CompositionCompositionRunAppliedRules.swift",
        "Models/CompositionCompositionRunSearchResponse.swift",
        "Models/CompositionCompositionsSearchResponse.swift",
        "Models/CompositionErrorBase.swift",
        "Models/CompositionExhaustive.swift",
        "Models/CompositionExternalInjectedItem.swift",
        "Models/CompositionExternalInjection.swift",
        "Models/CompositionFacetFilters.swift",
        "Models/CompositionFacetHits.swift",
        "Models/CompositionFacetOrdering.swift",
        "Models/CompositionFacetStats.swift",
        "Models/CompositionFacets.swift",
        "Models/CompositionHighlightResult.swift",
        "Models/CompositionHighlightResultOption.swift",
        "Models/CompositionHit.swift",
        "Models/CompositionHitMetadata.swift",
        "Models/CompositionHitRankingInfo.swift",
        "Models/CompositionInsideBoundingBox.swift",
        "Models/CompositionMatchLevel.swift",
        "Models/CompositionMatchedGeoLocation.swift",
        "Models/CompositionNumericFilters.swift",
        "Models/CompositionOptionalFilters.swift",
        "Models/CompositionParams.swift",
        "Models/CompositionPersonalization.swift",
        "Models/CompositionRange.swift",
        "Models/CompositionRankingInfo.swift",
        "Models/CompositionRedirect.swift",
        "Models/CompositionRedirectRuleIndexData.swift",
        "Models/CompositionRedirectRuleIndexMetadata.swift",
        "Models/CompositionRedirectURL.swift",
        "Models/CompositionRenderingContent.swift",
        "Models/CompositionRequestBody.swift",
        "Models/CompositionResultsCompositionInfoResponse.swift",
        "Models/CompositionResultsCompositionsResponse.swift",
        "Models/CompositionResultsInjectedItemAppliedRulesInfoResponse.swift",
        "Models/CompositionResultsInjectedItemInfoResponse.swift",
        "Models/CompositionSearchForFacetValuesParams.swift",
        "Models/CompositionSearchForFacetValuesRequest.swift",
        "Models/CompositionSearchForFacetValuesResponse.swift",
        "Models/CompositionSearchForFacetValuesResults.swift",
        "Models/CompositionSearchHits.swift",
        "Models/CompositionSearchPagination.swift",
        "Models/CompositionSearchResponse.swift",
        "Models/CompositionSearchResults.swift",
        "Models/CompositionSearchResultsItem.swift",
        "Models/CompositionSnippetResult.swift",
        "Models/CompositionSnippetResultOption.swift",
        "Models/CompositionSortRemainingBy.swift",
        "Models/CompositionSupportedLanguage.swift",
        "Models/CompositionValue.swift",
        "Models/CompositionWidgets.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Analytics",
      "module_type" : "SwiftTarget",
      "name" : "Analytics",
      "path" : "Sources/Analytics",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Analytics"
      ],
      "sources" : [
        "AnalyticsClient.swift",
        "AnalyticsClientConfiguration.swift",
        "Models/AnalyticsDirection.swift",
        "Models/AnalyticsErrorBase.swift",
        "Models/ClickPosition.swift",
        "Models/CurrencyCode.swift",
        "Models/DailyAddToCartRates.swift",
        "Models/DailyAverageClicks.swift",
        "Models/DailyClickThroughRates.swift",
        "Models/DailyConversionRates.swift",
        "Models/DailyNoClickRates.swift",
        "Models/DailyNoResultsRates.swift",
        "Models/DailyPurchaseRates.swift",
        "Models/DailyRevenue.swift",
        "Models/DailySearches.swift",
        "Models/DailySearchesNoClicks.swift",
        "Models/DailySearchesNoResults.swift",
        "Models/DailyUsers.swift",
        "Models/GetAddToCartRateResponse.swift",
        "Models/GetAverageClickPositionResponse.swift",
        "Models/GetClickPositionsResponse.swift",
        "Models/GetClickThroughRateResponse.swift",
        "Models/GetConversionRateResponse.swift",
        "Models/GetNoClickRateResponse.swift",
        "Models/GetNoResultsRateResponse.swift",
        "Models/GetPurchaseRateResponse.swift",
        "Models/GetRevenue.swift",
        "Models/GetSearchesCountResponse.swift",
        "Models/GetSearchesNoClicksResponse.swift",
        "Models/GetSearchesNoResultsResponse.swift",
        "Models/GetStatusResponse.swift",
        "Models/GetTopCountriesResponse.swift",
        "Models/GetTopFilterAttribute.swift",
        "Models/GetTopFilterAttributesResponse.swift",
        "Models/GetTopFilterForAttribute.swift",
        "Models/GetTopFilterForAttributeResponse.swift",
        "Models/GetTopFiltersNoResultsResponse.swift",
        "Models/GetTopFiltersNoResultsValue.swift",
        "Models/GetTopFiltersNoResultsValues.swift",
        "Models/GetTopHitsResponse.swift",
        "Models/GetTopSearchesResponse.swift",
        "Models/GetUsersCountResponse.swift",
        "Models/Operator.swift",
        "Models/OrderBy.swift",
        "Models/TopCountry.swift",
        "Models/TopHit.swift",
        "Models/TopHitWithAnalytics.swift",
        "Models/TopHitWithRevenueAnalytics.swift",
        "Models/TopHitsResponse.swift",
        "Models/TopHitsResponseWithAnalytics.swift",
        "Models/TopHitsResponseWithRevenueAnalytics.swift",
        "Models/TopSearch.swift",
        "Models/TopSearchWithAnalytics.swift",
        "Models/TopSearchWithRevenueAnalytics.swift",
        "Models/TopSearchesResponse.swift",
        "Models/TopSearchesResponseWithAnalytics.swift",
        "Models/TopSearchesResponseWithRevenueAnalytics.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AbtestingV3",
      "module_type" : "SwiftTarget",
      "name" : "AbtestingV3",
      "path" : "Sources/AbtestingV3",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "AbtestingV3"
      ],
      "sources" : [
        "AbtestingV3Client.swift",
        "AbtestingV3ClientConfiguration.swift",
        "Models/AbtestingV3ABTest.swift",
        "Models/AbtestingV3ABTestConfiguration.swift",
        "Models/AbtestingV3ABTestResponse.swift",
        "Models/AbtestingV3AbTestsVariant.swift",
        "Models/AbtestingV3AbTestsVariantSearchParams.swift",
        "Models/AbtestingV3AddABTestsRequest.swift",
        "Models/AbtestingV3AddABTestsVariant.swift",
        "Models/AbtestingV3CustomSearchParams.swift",
        "Models/AbtestingV3Direction.swift",
        "Models/AbtestingV3EffectMetric.swift",
        "Models/AbtestingV3EmptySearchFilter.swift",
        "Models/AbtestingV3ErrorBase.swift",
        "Models/AbtestingV3EstimateABTestRequest.swift",
        "Models/AbtestingV3EstimateABTestResponse.swift",
        "Models/AbtestingV3EstimateConfiguration.swift",
        "Models/AbtestingV3FilterEffects.swift",
        "Models/AbtestingV3ListABTestsResponse.swift",
        "Models/AbtestingV3MinimumDetectableEffect.swift",
        "Models/AbtestingV3OutliersFilter.swift",
        "Models/AbtestingV3ScheduleABTestResponse.swift",
        "Models/AbtestingV3ScheduleABTestsRequest.swift",
        "Models/AbtestingV3Status.swift",
        "Models/AbtestingV3Variant.swift",
        "Models/CreateMetric.swift",
        "Models/ErrorCorrectionType.swift",
        "Models/MetricDate.swift",
        "Models/MetricMetadata.swift",
        "Models/MetricName.swift",
        "Models/MetricResult.swift",
        "Models/MetricsFilter.swift",
        "Models/Timeseries.swift",
        "Models/TimeseriesVariant.swift",
        "Models/VariantMetadata.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Abtesting",
      "module_type" : "SwiftTarget",
      "name" : "Abtesting",
      "path" : "Sources/Abtesting",
      "product_dependencies" : [
        "Crypto",
        "Logging"
      ],
      "product_memberships" : [
        "Abtesting"
      ],
      "sources" : [
        "AbtestingClient.swift",
        "AbtestingClientConfiguration.swift",
        "Models/AbtestingABTest.swift",
        "Models/AbtestingABTestConfiguration.swift",
        "Models/AbtestingABTestResponse.swift",
        "Models/AbtestingAbTestsVariant.swift",
        "Models/AbtestingAbTestsVariantSearchParams.swift",
        "Models/AbtestingAddABTestsRequest.swift",
        "Models/AbtestingAddABTestsVariant.swift",
        "Models/AbtestingCustomSearchParams.swift",
        "Models/AbtestingEffectMetric.swift",
        "Models/AbtestingEmptySearchFilter.swift",
        "Models/AbtestingErrorBase.swift",
        "Models/AbtestingEstimateABTestRequest.swift",
        "Models/AbtestingEstimateABTestResponse.swift",
        "Models/AbtestingEstimateConfiguration.swift",
        "Models/AbtestingFilterEffects.swift",
        "Models/AbtestingListABTestsResponse.swift",
        "Models/AbtestingMinimumDetectableEffect.swift",
        "Models/AbtestingOutliersFilter.swift",
        "Models/AbtestingScheduleABTestResponse.swift",
        "Models/AbtestingScheduleABTestsRequest.swift",
        "Models/AbtestingStatus.swift",
        "Models/AbtestingVariant.swift",
        "Models/Currency.swift",
        "Models/EmptySearch.swift",
        "Models/Outliers.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:c6c8e08ea30bca759adf847aac87887750120fe9b6eaea09f5af37036a41e81a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.