Skip to content

Commit 2d621ef

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 7fa7800 commit 2d621ef

22 files changed

+55
-55
lines changed

packages/client-analytics/model/clientMethodProps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ export type GetTopHitsProps = {
511511
*/
512512
clickAnalytics?: boolean;
513513
/**
514-
* Whether to include revenue-related metrics in the response. If true, metrics related to click and conversion events are also included in the response.
514+
* Whether to include metrics related to revenue events in the response.
515515
*/
516516
revenueAnalytics?: boolean;
517517
/**
@@ -549,7 +549,7 @@ export type GetTopSearchesProps = {
549549
*/
550550
clickAnalytics?: boolean;
551551
/**
552-
* Whether to include revenue-related metrics in the response. If true, metrics related to click and conversion events are also included in the response.
552+
* Whether to include metrics related to revenue events in the response.
553553
*/
554554
revenueAnalytics?: boolean;
555555
/**

packages/client-analytics/model/dailyAddToCartRates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export type DailyAddToCartRates = {
44
/**
5-
* 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.
5+
* 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.
66
*/
77
rate: number | null;
88

packages/client-analytics/model/dailyClickThroughRates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export type DailyClickThroughRates = {
44
/**
5-
* 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.
5+
* 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.
66
*/
77
rate: number | null;
88

packages/client-analytics/model/dailyConversionRates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export type DailyConversionRates = {
44
/**
5-
* 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.
5+
* 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.
66
*/
77
rate: number | null;
88

packages/client-analytics/model/dailyNoClickRates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export type DailyNoClickRates = {
44
/**
5-
* No click rate, calculated as number of tracked searches without any click divided by the number of tracked searches.
5+
* No click rate: calculated as the number of tracked searches without clicks divided by the number of tracked searches.
66
*/
77
rate: number;
88

packages/client-analytics/model/dailyNoResultsRates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export type DailyNoResultsRates = {
1717
count: number;
1818

1919
/**
20-
* No results rate, calculated as number of searches with zero results divided by the total number of searches.
20+
* No results rate: calculated as the number of searches with zero results divided by the total number of searches.
2121
*/
2222
rate: number;
2323
};

packages/client-analytics/model/dailyPurchaseRates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export type DailyPurchaseRates = {
44
/**
5-
* 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.
5+
* 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.
66
*/
77
rate: number | null;
88

packages/client-analytics/model/dailyRevenue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { CurrencyCode } from './currencyCode';
44

55
export type DailyRevenue = {
66
/**
7-
* Revenue associated with this search, broken-down by currencies.
7+
* Revenue associated with this search: broken down by currency.
88
*/
99
currencies: { [key: string]: CurrencyCode };
1010

packages/client-analytics/model/getAddToCartRateResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { DailyAddToCartRates } from './dailyAddToCartRates';
44

55
export type GetAddToCartRateResponse = {
66
/**
7-
* 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.
7+
* 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.
88
*/
99
rate: number | null;
1010

packages/client-analytics/model/getClickThroughRateResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { DailyClickThroughRates } from './dailyClickThroughRates';
44

55
export type GetClickThroughRateResponse = {
66
/**
7-
* 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.
7+
* 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.
88
*/
99
rate: number | null;
1010

0 commit comments

Comments
 (0)