Skip to content

Commit 31666b2

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 5c5ae5f commit 31666b2

21 files changed

+124
-124
lines changed

algoliasearch/analytics/client.py

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

algoliasearch/analytics/models/daily_add_to_cart_rates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DailyAddToCartRates(BaseModel):
3636
"""
3737

3838
rate: float
39-
""" 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. """
39+
""" 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. """
4040
tracked_search_count: int
4141
""" Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. """
4242
add_to_cart_count: int

algoliasearch/analytics/models/daily_click_through_rates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DailyClickThroughRates(BaseModel):
3636
"""
3737

3838
rate: float
39-
""" 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. """
39+
""" 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. """
4040
click_count: int
4141
""" Number of clicks associated with this search. """
4242
tracked_search_count: int

algoliasearch/analytics/models/daily_conversion_rates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DailyConversionRates(BaseModel):
3636
"""
3737

3838
rate: float
39-
""" 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. """
39+
""" 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. """
4040
tracked_search_count: int
4141
""" Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. """
4242
conversion_count: int

algoliasearch/analytics/models/daily_no_click_rates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DailyNoClickRates(BaseModel):
3636
"""
3737

3838
rate: float
39-
""" No click rate, calculated as number of tracked searches without any click divided by the number of tracked searches. """
39+
""" No click rate: calculated as the number of tracked searches without clicks divided by the number of tracked searches. """
4040
count: int
4141
""" Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. """
4242
no_click_count: int

algoliasearch/analytics/models/daily_no_results_rates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class DailyNoResultsRates(BaseModel):
4242
count: int
4343
""" Number of searches. """
4444
rate: float
45-
""" No results rate, calculated as number of searches with zero results divided by the total number of searches. """
45+
""" No results rate: calculated as the number of searches with zero results divided by the total number of searches. """
4646

4747
model_config = ConfigDict(
4848
strict=False,

algoliasearch/analytics/models/daily_purchase_rates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DailyPurchaseRates(BaseModel):
3636
"""
3737

3838
rate: float
39-
""" 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. """
39+
""" 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. """
4040
tracked_search_count: int
4141
""" Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. """
4242
purchase_count: int

algoliasearch/analytics/models/daily_revenue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DailyRevenue(BaseModel):
3636
"""
3737

3838
currencies: Dict[str, CurrencyCode]
39-
""" Revenue associated with this search, broken-down by currencies. """
39+
""" Revenue associated with this search: broken down by currency. """
4040
var_date: str
4141
""" Date in the format YYYY-MM-DD. """
4242

algoliasearch/analytics/models/get_add_to_cart_rate_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class GetAddToCartRateResponse(BaseModel):
3838
"""
3939

4040
rate: float
41-
""" 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. """
41+
""" 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. """
4242
tracked_search_count: int
4343
""" Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true. """
4444
add_to_cart_count: int

algoliasearch/analytics/models/get_click_through_rate_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class GetClickThroughRateResponse(BaseModel):
4040
"""
4141

4242
rate: float
43-
""" 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. """
43+
""" 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. """
4444
click_count: int
4545
""" Number of clicks associated with this search. """
4646
tracked_search_count: int

0 commit comments

Comments
 (0)