browsertrix/frontend/src/trackEvents.ts
sua yoo b36ed9f730
feat: Track collection events (#2256)
- Renames `inject_analytics` to `inject_extra` and updates docs
- Manually tracks page views to enable passing custom props
- Tracks copying collection share link and downloading a public
collection

---------

Co-authored-by: emma <hi@emma.cafe>
2025-01-13 15:15:49 -08:00

10 lines
230 B
TypeScript

/**
* All available analytics tracking events
*/
export enum AnalyticsTrackEvent {
PageView = "pageview",
CopyShareCollectionLink = "Copy share collection link",
DownloadPublicCollection = "Download public collection",
}