@coveo/relay-event-types 7.7.1 → 7.7.3

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": "7.7.1",
3
+ "version": "7.7.3",
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",
@@ -379,20 +379,20 @@ export namespace Qna {
379
379
  }
380
380
 
381
381
  /**
382
- * Event to emit when a Q&A answer citation has been hovered.
382
+ * Event to emit when a Q&A answer citation item has been clicked.
383
383
  */
384
- export interface CitationHover extends Base {
384
+ export interface CitationClick extends Base {
385
385
  answer: QnaAnswer;
386
386
  citation: QnaCitation;
387
- citationHoverTimeInMs?: number;
388
387
  }
389
388
 
390
389
  /**
391
- * Event to emit when a Q&A answer citation item has been clicked.
390
+ * Event to emit when a Q&A answer citation has been hovered.
392
391
  */
393
- export interface CitationItemClick extends Base {
392
+ export interface CitationHover extends Base {
394
393
  answer: QnaAnswer;
395
394
  citation: QnaCitation;
395
+ citationHoverTimeInMs?: number;
396
396
  }
397
397
 
398
398
  /**