@azure/search-documents 12.0.0-alpha.20240118.1 → 12.0.0-alpha.20240208.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -406,7 +406,7 @@ async function main() {
406
406
  const searchResults = await client.search("WiFi", {
407
407
  filter: odata`Rooms/any(room: room/BaseRate lt ${baseRateMax}) and Rating ge ${ratingMin}`,
408
408
  orderBy: ["Rating desc"],
409
- select: ["hotelId", "hotelName", "rating"],
409
+ select: ["hotelId", "hotelName", "Rating"],
410
410
  });
411
411
  for await (const result of searchResults.results) {
412
412
  // Each result will have "HotelId", "HotelName", and "Rating"