@threadbase-sh/streamer 1.61.2 → 1.62.0

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/dist/cli.cjs CHANGED
@@ -146949,7 +146949,10 @@ var ConversationHandlers = class {
146949
146949
  score: r.score,
146950
146950
  matches: Array.isArray(r.matches) ? r.matches.map((m2) => ({
146951
146951
  field: m2.field,
146952
- snippet: m2.snippet
146952
+ snippet: m2.snippet,
146953
+ // Offsets into `snippet` for the matched tokens. Absent on metadata
146954
+ // hits, and on scanners older than the one that added them.
146955
+ highlights: m2.highlights
146953
146956
  })) : []
146954
146957
  }));
146955
146958
  const page = paginate(applyFilters(adapted, filters), offset, limit);