mirror of
https://github.com/standardnotes/server
synced 2026-07-30 20:16:37 -04:00
16 lines
644 B
TypeScript
16 lines
644 B
TypeScript
export enum AnalyticsActivity {
|
|
Register = 'register',
|
|
DeleteAccount = 'DeleteAccount',
|
|
SubscriptionPurchased = 'subscription-purchased',
|
|
SubscriptionRenewed = 'subscription-renewed',
|
|
SubscriptionRefunded = 'subscription-refunded',
|
|
SubscriptionCancelled = 'subscription-cancelled',
|
|
SubscriptionExpired = 'subscription-expired',
|
|
SubscriptionReactivated = 'subscription-reactivated',
|
|
LimitedDiscountOfferPurchased = 'limited-discount-offer-purchased',
|
|
PaymentFailed = 'payment-failed',
|
|
PaymentSuccess = 'payment-success',
|
|
NewCustomersChurn = 'new-customers-churn',
|
|
ExistingCustomersChurn = 'existing-customers-churn',
|
|
}
|