mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
13 lines
488 B
TypeScript
13 lines
488 B
TypeScript
export enum StatisticsMeasure {
|
|
Income = 'income',
|
|
SubscriptionLength = 'subscription-length',
|
|
RegistrationLength = 'registration-length',
|
|
RegistrationToSubscriptionTime = 'registration-to-subscription-time',
|
|
RemainingSubscriptionTimePercentage = 'remaining-subscription-time-percentage',
|
|
Refunds = 'refunds',
|
|
NotesCountFreeUsers = 'notes-count-free-users',
|
|
NotesCountPaidUsers = 'notes-count-paid-users',
|
|
FilesCount = 'files-count',
|
|
NewCustomers = 'new-customers',
|
|
}
|