2019-11-27 16:57:59 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
export enum SegmentEvent {
|
2020-02-06 11:46:59 +00:00
|
|
|
PROJECT_CREATED = 'Project Created',
|
|
|
|
PROJECT_DELETED = 'Project Deleted',
|
|
|
|
PROJECT_VIEWED = 'Project Viewed',
|
|
|
|
USER_DELETED = 'User Deleted',
|
|
|
|
USER_LOGGED_IN = 'User Logged In',
|
|
|
|
EMAIL_VERIFIED = 'Email Verified',
|
|
|
|
API_KEY_CREATED = 'API Key Created',
|
|
|
|
API_KEY_DELETED = 'API Key Deleted',
|
|
|
|
API_KEYS_VIEWED = 'API Key Viewed',
|
|
|
|
PAYMENT_METHODS_VIEWED = 'Payment Methods Viewed',
|
|
|
|
PAYMENT_METHOD_ADDED = 'Payment Method Added',
|
|
|
|
REPORT_DOWNLOADED = 'Report Downloaded',
|
|
|
|
REPORT_VIEWED = 'Report Viewed',
|
|
|
|
BILLING_HISTORY_VIEWED = 'Billing History Viewed',
|
|
|
|
TEAM_MEMBER_INVITED = 'Team Member Invited',
|
|
|
|
TEAM_VIEWED = 'Team Viewed',
|
|
|
|
CLI_DOCS_VIEWED = 'Uplink CLI Docs Viewed',
|
2021-02-08 14:48:13 +00:00
|
|
|
GENERATE_GATEWAY_CREDENTIALS_CLICKED = 'Generate Gateway Credentials Clicked',
|
2019-11-27 16:57:59 +00:00
|
|
|
}
|
2021-03-31 19:34:44 +01:00
|
|
|
|
|
|
|
// Make sure these event names match up with the client-side event names in satellite/analytics/service.go
|
|
|
|
export enum AnalyticsEvent {
|
|
|
|
GATEWAY_CREDENTIALS_CREATED = 'Credentials Created',
|
|
|
|
}
|