Skip to content

Commit

Permalink
chore(deps): dependencies 2025-01-06 [skip-bc] (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4299

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Algolia Bot <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
4 people committed Jan 6, 2025
1 parent 826cb2a commit 4d9b926
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ package algoliasearch.personalization

import algoliasearch.personalization.EventType._

/** EventScoring
/** EventsScoring
*
* @param score
* Event score.
* @param eventName
* Event name.
*/
case class EventScoring(
case class EventsScoring(
score: Int,
eventName: String,
eventType: EventType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
*/
package algoliasearch.personalization

/** FacetScoring
/** FacetsScoring
*
* @param score
* Event score.
* @param facetName
* Facet attribute name.
*/
case class FacetScoring(
case class FacetsScoring(
score: Int,
facetName: String
)
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ package algoliasearch.personalization

/** PersonalizationStrategyParams
*
* @param eventScoring
* @param eventsScoring
* Scores associated with each event. The higher the scores, the higher the impact of those events on the
* personalization of search results.
* @param facetScoring
* @param facetsScoring
* Scores associated with each facet. The higher the scores, the higher the impact of those events on the
* personalization of search results.
* @param personalizationImpact
* Impact of personalization on the search results. If set to 0, personalization has no impact on the search results.
*/
case class PersonalizationStrategyParams(
eventScoring: Seq[EventScoring],
facetScoring: Seq[FacetScoring],
eventsScoring: Seq[EventsScoring],
facetsScoring: Seq[FacetsScoring],
personalizationImpact: Int
)

0 comments on commit 4d9b926

Please sign in to comment.