mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
22 lines
498 B
TypeScript
22 lines
498 B
TypeScript
|
export const TelemetryTemplateSignupCookieName = 'gr_template_signup_trk';
|
||
|
|
||
|
export const TelemetryEventNames = [
|
||
|
'apiUsage',
|
||
|
'beaconOpen',
|
||
|
'beaconArticleViewed',
|
||
|
'beaconEmailSent',
|
||
|
'beaconSearch',
|
||
|
'documentForked',
|
||
|
'documentOpened',
|
||
|
'documentUsage',
|
||
|
'sendingWebhooks',
|
||
|
'signupVerified',
|
||
|
'siteMembership',
|
||
|
'siteUsage',
|
||
|
'tutorialProgressChanged',
|
||
|
'tutorialRestarted',
|
||
|
'watchedVideoTour',
|
||
|
] as const;
|
||
|
|
||
|
export type TelemetryEventName = typeof TelemetryEventNames[number];
|