@coveo/relay-event-types 7.8.0 → 7.9.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": "7.8.0",
3
+ "version": "7.9.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",
@@ -115,7 +115,7 @@ interface QnaAnswer {
115
115
  /**
116
116
  * The type of the answer.
117
117
  */
118
- type: "SmartSnippet" | "SmartSnippetSuggestion" | "CRGA";
118
+ type: "SmartSnippet" | "SmartSnippetSuggestion" | "RGA";
119
119
  }
120
120
 
121
121
  interface QnaCitation {
@@ -125,19 +125,6 @@ interface QnaCitation {
125
125
  id: string;
126
126
  }
127
127
 
128
- /**
129
- * Represents the Coveo Analytics Search Event. Send this schema exclusively when conducting A/B tests against a competitor's search solution.
130
- */
131
- export interface Search extends Base {
132
- /**
133
- * A unique identifier identifying the query made to a search system.
134
- */
135
- searchUid: string;
136
- queryText: string;
137
- numberOfResults?: number;
138
- responseTimeInMs?: number;
139
- }
140
-
141
128
  /**
142
129
  * A support ticket.
143
130
  */