@coveo/relay-event-types 14.3.0 → 14.3.2

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": "14.3.0",
3
+ "version": "14.3.2",
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",
@@ -19,7 +19,11 @@ interface BaseItemClick extends Base {
19
19
  /**
20
20
  * A unique identifier for the response of a service which returned the list of relevant items. E.g. a searchId or similar.
21
21
  */
22
- responseId: UuidNotNull;
22
+ responseId?: UuidNotNull;
23
+ /**
24
+ * Deprecated - use responseId instead. A unique identifier identifying the query made to a search system.
25
+ */
26
+ searchUid?: UuidNotNull;
23
27
  /**
24
28
  * 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
29
  */