mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
a19ba0813a
Test Plan: Server tests. Reviewers: jarek Differential Revision: https://phab.getgrist.com/D3818
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];
|