@coveo/relay-event-types 6.30.3 → 6.31.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 +0 -21
package/package.json
CHANGED
package/relay-event-types.d.ts
CHANGED
|
@@ -207,24 +207,3 @@ export interface Search extends Base {
|
|
|
207
207
|
responseTimeInMs?: number;
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
-
interface User {
|
|
211
|
-
/**
|
|
212
|
-
* User ID serves as a unique identifier for the user. As the user performs actions, this is enriched on the resulting events. For authenticated users, this typically appears as their email address, making it easily readable.
|
|
213
|
-
*/
|
|
214
|
-
id: string;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
/**
|
|
218
|
-
* Represents the Coveo Analytics User Login Event. This should be sent when a user logs in to a website.
|
|
219
|
-
*/
|
|
220
|
-
export interface UserLogin extends Base {
|
|
221
|
-
user: User;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
/**
|
|
225
|
-
* Represents the Coveo Analytics User Logout Event. This should be sent when a user logs out of a website.
|
|
226
|
-
*/
|
|
227
|
-
export interface UserLogout extends Base {
|
|
228
|
-
user: User;
|
|
229
|
-
}
|
|
230
|
-
|