-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenums.ts
157 lines (134 loc) · 2.44 KB
/
enums.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
export enum TrackableEventNameEnum {
/**
* Tracks the number of completed purchases.
*
* @requirement Recommended
*/
PURCHASE = 'PURCHASE',
/**
* Tracks the number of saves of items or content.
*
*/
SAVE = 'SAVE',
/**
* Tracks the number of checkout initiations.
*
*/
START_CHECKOUT = 'START_CHECKOUT',
/**
* Tracks the number of times item(s) have been added to cart.
*
* @requirement Recommended
*
*/
ADD_CART = 'ADD_CART',
/**
* Track app opens.
*
*/
APP_OPEN = 'APP_OPEN',
/**
* Tracks the number of views of specific content or product details.
*
*/
VIEW_CONTENT = 'VIEW_CONTENT',
/**
* Tracks the number of times billing information was added or updated.
*
*/
ADD_BILLING = 'ADD_BILLING',
/**
* Tracks the number of user sign-ups.
*
* @requirement Recommended
*/
SIGN_UP = 'SIGN_UP',
/**
* Tracks the number of user searches.
*
*/
SEARCH = 'SEARCH',
/**
* Tracks the number of times a page is viewed.
*
* @requirement Recommended
*/
PAGE_VIEW = 'PAGE_VIEW',
/**
* Tracks the number of new subscriptions.
*
*/
SUBSCRIBE = 'SUBSCRIBE',
/**
* Tracks the number of ad clicks.
*
*/
AD_CLICK = 'AD_CLICK',
/**
* Tracks the number of ad views.
*
*/
AD_VIEW = 'AD_VIEW',
/**
* Tracks the number of tutorials completed.
*
*/
COMPLETE_TUTORIAL = 'COMPLETE_TUTORIAL',
/**
* Tracks the number of levels completed in games or apps.
*
*
*
*/
LEVEL_COMPLETE = 'LEVEL_COMPLETE',
/**
* Tracks the number of invites sent.
*
*/
INVITE = 'INVITE',
/**
* Tracks the number of logins.
*
*/
LOGIN = 'LOGIN',
/**
* Tracks the number of shares by users.
*
*/
SHARE = 'SHARE',
/**
* Tracks the number of reservations made.
*
*/
RESERVE = 'RESERVE',
/**
* Tracks the number of achievements unlocked.
*
*/
ACHIEVEMENT_UNLOCKED = 'ACHIEVEMENT_UNLOCKED',
/**
* Tracks the number of adds to a wishlist.
*
*/
ADD_TO_WISHLIST = 'ADD_TO_WISHLIST',
/**
* Tracks the amount of time a user spent credits.
*
*/
SPENT_CREDITS = 'SPENT_CREDITS',
/**
* Tracks the number of submitted ratings.
*
*/
RATE = 'RATE',
/**
* Tracks the number of trial periods started.
*
*/
START_TRIAL = 'START_TRIAL',
/**
* Tracks the number of list views.
*
*/
LIST_VIEW = 'LIST_VIEW',
}