Skip to content

Commit a61fcd7

Browse files
algolia-botrenovate[bot]shortcuts
committed
chore(deps): dependencies 2025-01-06 [skip-bc] (generated)
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]>
1 parent c74f7de commit a61fcd7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

client/src/commonMain/kotlin/com/algolia/client/model/personalization/EventScoring.kt renamed to client/src/commonMain/kotlin/com/algolia/client/model/personalization/EventsScoring.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import kotlinx.serialization.*
55
import kotlinx.serialization.json.*
66

77
/**
8-
* EventScoring
8+
* EventsScoring
99
*
1010
* @param score Event score.
1111
* @param eventName Event name.
1212
* @param eventType
1313
*/
1414
@Serializable
15-
public data class EventScoring(
15+
public data class EventsScoring(
1616

1717
/** Event score. */
1818
@SerialName(value = "score") val score: Int,

client/src/commonMain/kotlin/com/algolia/client/model/personalization/FacetScoring.kt renamed to client/src/commonMain/kotlin/com/algolia/client/model/personalization/FacetsScoring.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import kotlinx.serialization.*
55
import kotlinx.serialization.json.*
66

77
/**
8-
* FacetScoring
8+
* FacetsScoring
99
*
1010
* @param score Event score.
1111
* @param facetName Facet attribute name.
1212
*/
1313
@Serializable
14-
public data class FacetScoring(
14+
public data class FacetsScoring(
1515

1616
/** Event score. */
1717
@SerialName(value = "score") val score: Int,

client/src/commonMain/kotlin/com/algolia/client/model/personalization/PersonalizationStrategyParams.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ import kotlinx.serialization.json.*
77
/**
88
* PersonalizationStrategyParams
99
*
10-
* @param eventScoring Scores associated with each event. The higher the scores, the higher the impact of those events on the personalization of search results.
11-
* @param facetScoring Scores associated with each facet. The higher the scores, the higher the impact of those events on the personalization of search results.
10+
* @param eventsScoring Scores associated with each event. The higher the scores, the higher the impact of those events on the personalization of search results.
11+
* @param facetsScoring Scores associated with each facet. The higher the scores, the higher the impact of those events on the personalization of search results.
1212
* @param personalizationImpact Impact of personalization on the search results. If set to 0, personalization has no impact on the search results.
1313
*/
1414
@Serializable
1515
public data class PersonalizationStrategyParams(
1616

1717
/** Scores associated with each event. The higher the scores, the higher the impact of those events on the personalization of search results. */
18-
@SerialName(value = "eventScoring") val eventScoring: List<EventScoring>,
18+
@SerialName(value = "eventsScoring") val eventsScoring: List<EventsScoring>,
1919

2020
/** Scores associated with each facet. The higher the scores, the higher the impact of those events on the personalization of search results. */
21-
@SerialName(value = "facetScoring") val facetScoring: List<FacetScoring>,
21+
@SerialName(value = "facetsScoring") val facetsScoring: List<FacetsScoring>,
2222

2323
/** Impact of personalization on the search results. If set to 0, personalization has no impact on the search results. */
2424
@SerialName(value = "personalizationImpact") val personalizationImpact: Int,

0 commit comments

Comments
 (0)