@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coveo/relay-event-types",
3
- "version": "12.0.1",
3
+ "version": "12.2.0",
4
4
  "description": "Typescript types for Coveo Events, intended to be used with the Relay package.",
5
5
  "types": "./relay-event-types.d.ts",
6
6
  "author": "Coveo",
@@ -21,7 +21,7 @@ interface BaseItemClick extends Base {
21
21
  */
22
22
  searchUid: string;
23
23
  /**
24
- * Indicates the clicked item's 1-based position within the returned results.
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's position using a 1-based index. Maximum possible value is 32767.
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
  /**