Skip to content

Commit b1f0128

Browse files
algolia-botgazconroyGary Conroykai687
committed
fix(specs): extend Analytics descriptions (generated)
algolia/api-clients-automation#4360 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: gazconroy <[email protected]> Co-authored-by: Gary Conroy <[email protected]> Co-authored-by: Kai Welke <[email protected]>
1 parent bb51b5a commit b1f0128

21 files changed

+85
-85
lines changed

client/src/commonMain/kotlin/com/algolia/client/api/AnalyticsClient.kt

Lines changed: 21 additions & 21 deletions
Large diffs are not rendered by default.

client/src/commonMain/kotlin/com/algolia/client/model/analytics/DailyAddToCartRates.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* DailyAddToCartRates
99
*
10-
* @param rate Add-to-cart rate, calculated as number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
10+
* @param rate Add-to-cart rate: calculated as the number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1111
* @param trackedSearchCount Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1212
* @param addToCartCount Number of add-to-cart events from this search.
1313
* @param date Date in the format YYYY-MM-DD.
1414
*/
1515
@Serializable
1616
public data class DailyAddToCartRates(
1717

18-
/** Add-to-cart rate, calculated as number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
18+
/** Add-to-cart rate: calculated as the number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/DailyClickThroughRates.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* DailyClickThroughRates
99
*
10-
* @param rate Click-through rate, calculated as number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
10+
* @param rate Click-through rate: calculated as the number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1111
* @param clickCount Number of clicks associated with this search.
1212
* @param trackedSearchCount Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1313
* @param date Date in the format YYYY-MM-DD.
1414
*/
1515
@Serializable
1616
public data class DailyClickThroughRates(
1717

18-
/** Click-through rate, calculated as number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
18+
/** Click-through rate: calculated as the number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of clicks associated with this search. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/DailyConversionRates.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* DailyConversionRates
99
*
10-
* @param rate Conversion rate, calculated as number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
10+
* @param rate Conversion rate: calculated as the number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1111
* @param trackedSearchCount Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1212
* @param conversionCount Number of conversions from this search.
1313
* @param date Date in the format YYYY-MM-DD.
1414
*/
1515
@Serializable
1616
public data class DailyConversionRates(
1717

18-
/** Conversion rate, calculated as number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
18+
/** Conversion rate: calculated as the number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/DailyNoClickRates.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* DailyNoClickRates
99
*
10-
* @param rate No click rate, calculated as number of tracked searches without any click divided by the number of tracked searches.
10+
* @param rate No click rate: calculated as the number of tracked searches without clicks divided by the number of tracked searches.
1111
* @param count Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1212
* @param noClickCount Number of times this search was returned as a result without any click.
1313
* @param date Date in the format YYYY-MM-DD.
1414
*/
1515
@Serializable
1616
public data class DailyNoClickRates(
1717

18-
/** No click rate, calculated as number of tracked searches without any click divided by the number of tracked searches. */
18+
/** No click rate: calculated as the number of tracked searches without clicks divided by the number of tracked searches. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/DailyNoResultsRates.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import kotlinx.serialization.json.*
1010
* @param date Date in the format YYYY-MM-DD.
1111
* @param noResultCount Number of searches without any results.
1212
* @param count Number of searches.
13-
* @param rate No results rate, calculated as number of searches with zero results divided by the total number of searches.
13+
* @param rate No results rate: calculated as the number of searches with zero results divided by the total number of searches.
1414
*/
1515
@Serializable
1616
public data class DailyNoResultsRates(
@@ -24,6 +24,6 @@ public data class DailyNoResultsRates(
2424
/** Number of searches. */
2525
@SerialName(value = "count") val count: Int,
2626

27-
/** No results rate, calculated as number of searches with zero results divided by the total number of searches. */
27+
/** No results rate: calculated as the number of searches with zero results divided by the total number of searches. */
2828
@SerialName(value = "rate") val rate: Double,
2929
)

client/src/commonMain/kotlin/com/algolia/client/model/analytics/DailyPurchaseRates.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* DailyPurchaseRates
99
*
10-
* @param rate Purchase rate, calculated as number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
10+
* @param rate Purchase rate: calculated as the number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1111
* @param trackedSearchCount Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1212
* @param purchaseCount Number of purchase events from this search.
1313
* @param date Date in the format YYYY-MM-DD.
1414
*/
1515
@Serializable
1616
public data class DailyPurchaseRates(
1717

18-
/** Purchase rate, calculated as number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
18+
/** Purchase rate: calculated as the number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/DailyRevenue.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import kotlinx.serialization.json.*
77
/**
88
* DailyRevenue
99
*
10-
* @param currencies Revenue associated with this search, broken-down by currencies.
10+
* @param currencies Revenue associated with this search: broken down by currency.
1111
* @param date Date in the format YYYY-MM-DD.
1212
*/
1313
@Serializable
1414
public data class DailyRevenue(
1515

16-
/** Revenue associated with this search, broken-down by currencies. */
16+
/** Revenue associated with this search: broken down by currency. */
1717
@SerialName(value = "currencies") val currencies: Map<kotlin.String, CurrencyCode>,
1818

1919
/** Date in the format YYYY-MM-DD. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetAddToCartRateResponse.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* GetAddToCartRateResponse
99
*
10-
* @param rate Add-to-cart rate, calculated as number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
10+
* @param rate Add-to-cart rate: calculated as the number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1111
* @param trackedSearchCount Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1212
* @param addToCartCount Number of add-to-cart events from this search.
1313
* @param dates Daily add-to-cart rates.
1414
*/
1515
@Serializable
1616
public data class GetAddToCartRateResponse(
1717

18-
/** Add-to-cart rate, calculated as number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
18+
/** Add-to-cart rate: calculated as the number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetClickThroughRateResponse.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* GetClickThroughRateResponse
99
*
10-
* @param rate Click-through rate, calculated as number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
10+
* @param rate Click-through rate: calculated as the number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1111
* @param clickCount Number of clicks associated with this search.
1212
* @param trackedSearchCount Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1313
* @param dates Daily click-through rates.
1414
*/
1515
@Serializable
1616
public data class GetClickThroughRateResponse(
1717

18-
/** Click-through rate, calculated as number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
18+
/** Click-through rate: calculated as the number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of clicks associated with this search. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetConversionRateResponse.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* GetConversionRateResponse
99
*
10-
* @param rate Conversion rate, calculated as number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
10+
* @param rate Conversion rate: calculated as the number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1111
* @param trackedSearchCount Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1212
* @param conversionCount Number of conversions from this search.
1313
* @param dates Daily conversion rates.
1414
*/
1515
@Serializable
1616
public data class GetConversionRateResponse(
1717

18-
/** Conversion rate, calculated as number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
18+
/** Conversion rate: calculated as the number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetNoClickRateResponse.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* GetNoClickRateResponse
99
*
10-
* @param rate No click rate, calculated as number of tracked searches without any click divided by the number of tracked searches.
10+
* @param rate No click rate: calculated as the number of tracked searches without clicks divided by the number of tracked searches.
1111
* @param count Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1212
* @param noClickCount Number of times this search was returned as a result without any click.
1313
* @param dates Daily no click rates.
1414
*/
1515
@Serializable
1616
public data class GetNoClickRateResponse(
1717

18-
/** No click rate, calculated as number of tracked searches without any click divided by the number of tracked searches. */
18+
/** No click rate: calculated as the number of tracked searches without clicks divided by the number of tracked searches. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetNoResultsRateResponse.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* GetNoResultsRateResponse
99
*
10-
* @param rate No results rate, calculated as number of searches with zero results divided by the total number of searches.
10+
* @param rate No results rate: calculated as the number of searches with zero results divided by the total number of searches.
1111
* @param count Number of searches.
1212
* @param noResultCount Number of searches without any results.
1313
* @param dates Daily no results rates.
1414
*/
1515
@Serializable
1616
public data class GetNoResultsRateResponse(
1717

18-
/** No results rate, calculated as number of searches with zero results divided by the total number of searches. */
18+
/** No results rate: calculated as the number of searches with zero results divided by the total number of searches. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of searches. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetPurchaseRateResponse.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ import kotlinx.serialization.json.*
77
/**
88
* GetPurchaseRateResponse
99
*
10-
* @param rate Purchase rate, calculated as number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
10+
* @param rate Purchase rate: calculated as the number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1111
* @param trackedSearchCount Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.
1212
* @param purchaseCount Number of purchase events from this search.
1313
* @param dates Daily purchase rates.
1414
*/
1515
@Serializable
1616
public data class GetPurchaseRateResponse(
1717

18-
/** Purchase rate, calculated as number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
18+
/** Purchase rate: calculated as the number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true. */
1919
@SerialName(value = "rate") val rate: Double,
2020

2121
/** Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetRevenue.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import kotlinx.serialization.json.*
77
/**
88
* GetRevenue
99
*
10-
* @param currencies Revenue associated with this search, broken-down by currencies.
10+
* @param currencies Revenue associated with this search: broken down by currency.
1111
* @param dates Daily revenue.
1212
*/
1313
@Serializable
1414
public data class GetRevenue(
1515

16-
/** Revenue associated with this search, broken-down by currencies. */
16+
/** Revenue associated with this search: broken down by currency. */
1717
@SerialName(value = "currencies") val currencies: Map<kotlin.String, CurrencyCode>,
1818

1919
/** Daily revenue. */

client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetTopFiltersNoResultsResponse.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import kotlinx.serialization.json.*
77
/**
88
* GetTopFiltersNoResultsResponse
99
*
10-
* @param values Filters for searches without any results. If null, the search term specified with the `search` parameter is not a search without results, or the `search` parameter is absent from the request.
10+
* @param values Filters for searches without any results. If null, the search term specified with the `search` parameter isn't a search without results, or the `search` parameter is absent from the request.
1111
*/
1212
@Serializable
1313
public data class GetTopFiltersNoResultsResponse(
1414

15-
/** Filters for searches without any results. If null, the search term specified with the `search` parameter is not a search without results, or the `search` parameter is absent from the request. */
15+
/** Filters for searches without any results. If null, the search term specified with the `search` parameter isn't a search without results, or the `search` parameter is absent from the request. */
1616
@SerialName(value = "values") val values: List<GetTopFiltersNoResultsValues>,
1717
)

client/src/commonMain/kotlin/com/algolia/client/model/analytics/TopHit.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import kotlinx.serialization.json.*
77
/**
88
* TopHit
99
*
10-
* @param hit Object ID of a record that's returned as a search result.
10+
* @param hit Object ID of a record returned as a search result.
1111
* @param count Number of occurrences.
1212
*/
1313
@Serializable
1414
public data class TopHit(
1515

16-
/** Object ID of a record that's returned as a search result. */
16+
/** Object ID of a record returned as a search result. */
1717
@SerialName(value = "hit") val hit: String,
1818

1919
/** Number of occurrences. */

0 commit comments

Comments
 (0)