@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 +1 -1
- package/relay-event-types.d.ts +1 -14
package/package.json
CHANGED
package/relay-event-types.d.ts
CHANGED
|
@@ -115,7 +115,7 @@ interface QnaAnswer {
|
|
|
115
115
|
/**
|
|
116
116
|
* The type of the answer.
|
|
117
117
|
*/
|
|
118
|
-
type: "SmartSnippet" | "SmartSnippetSuggestion" | "
|
|
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
|
*/
|