@coveo/relay-event-types 12.0.1 → 12.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/relay-event-types.d.ts +2 -2
package/package.json
CHANGED
package/relay-event-types.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ interface BaseItemClick extends Base {
|
|
|
21
21
|
*/
|
|
22
22
|
searchUid: string;
|
|
23
23
|
/**
|
|
24
|
-
* Indicates the clicked item
|
|
24
|
+
* Indicates the position of the clicked item using a 1-based index that accounts for pagination. For example, with 10 items per page, the first item on the second page has a position of 11.
|
|
25
25
|
*/
|
|
26
26
|
position: number;
|
|
27
27
|
itemMetadata: ItemMetaData;
|
|
@@ -221,7 +221,7 @@ export namespace Ec {
|
|
|
221
221
|
*/
|
|
222
222
|
export interface ProductClick extends Base {
|
|
223
223
|
/**
|
|
224
|
-
* Indicates the product
|
|
224
|
+
* Indicates the position of the clicked product using a 1-based index that accounts for pagination. For example, with 10 products per page, the first product on the second page has a position of 11.
|
|
225
225
|
*/
|
|
226
226
|
position: number;
|
|
227
227
|
/**
|