This repository has been archived by the owner on Jan 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
constants.ts
337 lines (307 loc) · 7.02 KB
/
constants.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
export const CONVERSATION_STATUSES = {
NEW: 'new',
OPEN: 'open',
CLOSED: 'closed',
ALL: ['new', 'open', 'closed'],
};
export const TAG_TYPES = {
CONVERSATION: 'conversation',
CUSTOMER: 'customer',
ENGAGE_MESSAGE: 'engageMessage',
COMPANY: 'company',
INTEGRATION: 'integration',
ALL: ['conversation', 'customer', 'engageMessage', 'company', 'integration'],
};
export const MESSENGER_KINDS = {
CHAT: 'chat',
NOTE: 'note',
POST: 'post',
ALL: ['chat', 'note', 'post'],
};
export const SENT_AS_CHOICES = {
BADGE: 'badge',
SNIPPET: 'snippet',
FULL_MESSAGE: 'fullMessage',
ALL: ['badge', 'snippet', 'fullMessage'],
};
export const METHODS = {
MESSENGER: 'messenger',
EMAIL: 'email',
ALL: ['messenger', 'email'],
};
export const FORM_LOAD_TYPES = {
SHOUTBOX: 'shoutbox',
POPUP: 'popup',
EMBEDDED: 'embedded',
DROPDOWN: 'dropdown',
SLIDEINLEFT: 'slideInLeft',
SLIDEINRIGHT: 'slideInRight',
ALL: ['', 'shoutbox', 'popup', 'embedded', 'dropdown', 'slideInLeft', 'slideInRight'],
};
export const FORM_SUCCESS_ACTIONS = {
EMAIL: 'email',
REDIRECT: 'redirect',
ONPAGE: 'onPage',
ALL: ['', 'email', 'redirect', 'onPage'],
};
export const KIND_CHOICES = {
MESSENGER: 'messenger',
FORM: 'form',
FACEBOOK: 'facebook',
GMAIL: 'gmail',
ALL: ['messenger', 'form', 'facebook', 'gmail'],
};
// messenger data availability constants
export const MESSENGER_DATA_AVAILABILITY = {
MANUAL: 'manual',
AUTO: 'auto',
ALL: ['manual', 'auto'],
};
export const ACTIVITY_CONTENT_TYPES = {
CUSTOMER: 'customer',
COMPANY: 'company',
USER: 'user',
DEAL: 'deal',
TICKET: 'ticket',
TASK: 'task',
ALL: ['customer', 'company', 'user', 'deal', 'ticket', 'task'],
};
export const PUBLISH_STATUSES = {
DRAFT: 'draft',
PUBLISH: 'publish',
ALL: ['draft', 'publish'],
};
export const ACTIVITY_TYPES = {
CUSTOMER: 'customer',
COMPANY: 'company',
INTERNAL_NOTE: 'internal_note',
CONVERSATION: 'conversation',
SEGMENT: 'segment',
DEAL: 'deal',
EMAIL: 'email',
TICKET: 'ticket',
TASK: 'task',
BRAND: 'brand',
ALL: ['customer', 'company', 'internal_note', 'conversation', 'segment', 'deal', 'email', 'ticket', 'task', 'brand'],
};
export const ACTIVITY_ACTIONS = {
CREATE: 'create',
UPDATE: 'update',
DELETE: 'delete',
MERGE: 'merge',
SEND: 'send',
ALL: ['create', 'update', 'delete', 'merge', 'send'],
};
export const ACTIVITY_PERFORMER_TYPES = {
SYSTEM: 'SYSTEM',
USER: 'USER',
CUSTOMER: 'CUSTOMER',
DEAL: 'DEAL',
ALL: ['SYSTEM', 'USER', 'CUSTOMER', 'DEAL'],
};
export const PRODUCT_TYPES = {
PRODUCT: 'product',
SERVICE: 'service',
ALL: ['product', 'service'],
};
export const PIPELINE_VISIBLITIES = {
PUBLIC: 'public',
PRIVATE: 'private',
ALL: ['public', 'private'],
};
export const FIELDS_GROUPS_CONTENT_TYPES = {
CUSTOMER: 'customer',
COMPANY: 'company',
ALL: ['customer', 'company'],
};
export const CUSTOMER_LEAD_STATUS_TYPES = [
'',
'new',
'open',
'inProgress',
'openDeal',
'unqualified',
'attemptedToContact',
'connected',
'badTiming',
];
export const CUSTOMER_LIFECYCLE_STATE_TYPES = [
'',
'subscriber',
'lead',
'marketingQualifiedLead',
'salesQualifiedLead',
'opportunity',
'customer',
'evangelist',
'other',
];
export const COMPANY_LEAD_STATUS_TYPES = [
'',
'new',
'open',
'inProgress',
'openDeal',
'unqualified',
'attemptedToContact',
'connected',
'badTiming',
];
export const COMPANY_LIFECYCLE_STATE_TYPES = [
'',
'subscriber',
'lead',
'marketingQualifiedLead',
'salesQualifiedLead',
'opportunity',
'customer',
'evangelist',
'other',
];
export const COMPANY_BUSINESS_TYPES = [
'',
'Analyst',
'Competitor',
'Customer',
'Integrator',
'Investor',
'Partner',
'Press',
'Prospect',
'Reseller',
'Other',
];
export const COMPANY_INDUSTRY_TYPES = [
'',
'Advertising/Public Relations',
'Aerospace, Defense Contractors',
'Agriculture',
'Airlines',
'Alcoholic Beverages',
'Alternative Energy Production & Services',
'Architectural Services',
'Attorneys/Law Firms',
'Automotive',
'Banks',
'Bars & Restaurants',
'Books, Magazines & Newspapers',
'Builders/General Contractors',
'Business Services',
'Car Manufacturers',
'Coal Mining',
'Colleges, Universities & Schools',
'Commercial TV & Radio Stations',
'Computer Software',
'Construction',
'Dairy',
'Doctors & Other Health Professionals',
'Education',
'Energy & Natural Resources',
'Finance, Insurance & Real Estate',
'Food & Beverage',
'Foundations, Philanthropists & Non-Profits',
'Health',
'Hotels, Motels & Tourism',
'Insurance',
'Internet',
'Lawyers / Law Firms',
'Meat processing & products',
'Medical Supplies',
'Mining',
'Mortgage Bankers & Brokers',
'Music Production',
'Natural Gas Pipelines',
'Nursing Homes/Hospitals',
'Phone Companies',
'Postal Unions',
'Printing & Publishing',
'Private Equity & Investment Firms',
'Publishing & Printing',
'Real Estate',
'Retail Sales',
'Schools/Education',
'Sports, Professional',
'Telecom Services & Equipment',
'Textiles',
'Tobacco',
'Transportation',
'TV / Movies / Music',
];
export const PROBABILITY = {
TEN: '10%',
TWENTY: '20%',
THIRTY: '30%',
FOURTY: '40%',
FIFTY: '50%',
SIXTY: '60%',
SEVENTY: '70%',
EIGHTY: '80%',
NINETY: '90%',
WON: 'Won',
LOST: 'Lost',
ALL: ['10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', 'Won', 'Lost'],
};
export const STATUSES = {
ACTIVE: 'Active',
DELETED: 'Deleted',
ALL: ['Active', 'Deleted'],
};
export const BOARD_TYPES = {
DEAL: 'deal',
TICKET: 'ticket',
TASK: 'task',
ALL: ['deal', 'ticket', 'task'],
};
// module constants
export const NOTIFICATION_TYPES = {
CHANNEL_MEMBERS_CHANGE: 'channelMembersChange',
CONVERSATION_ADD_MESSAGE: 'conversationAddMessage',
CONVERSATION_ASSIGNEE_CHANGE: 'conversationAssigneeChange',
CONVERSATION_STATE_CHANGE: 'conversationStateChange',
DEAL_ADD: 'dealAdd',
DEAL_REMOVE_ASSIGN: 'dealRemoveAssign',
DEAL_EDIT: 'dealEdit',
DEAL_CHANGE: 'dealChange',
DEAL_DUE_DATE: 'dealDueDate',
DEAL_DELETE: 'dealDelete',
TICKET_ADD: 'ticketAdd',
TICKET_REMOVE_ASSIGN: 'ticketRemoveAssign',
TICKET_EDIT: 'ticketEdit',
TICKET_CHANGE: 'ticketChange',
TICKET_DUE_DATE: 'ticketDueDate',
TICKET_DELETE: 'ticketDelete',
TASK_ADD: 'taskAdd',
TASK_REMOVE_ASSIGN: 'taskRemoveAssign',
TASK_EDIT: 'taskEdit',
TASK_CHANGE: 'taskChange',
TASK_DUE_DATE: 'taskDueDate',
TASK_DELETE: 'taskDelete',
CUSTOMER_MENTION: 'customerMention',
COMPANY_MENTION: 'companyMention',
ALL: [
'channelMembersChange',
'conversationAddMessage',
'conversationAssigneeChange',
'conversationStateChange',
'dealAdd',
'dealRemoveAssign',
'dealEdit',
'dealChange',
'dealDueDate',
'dealDelete',
'ticketAdd',
'ticketRemoveAssign',
'ticketEdit',
'ticketChange',
'ticketDueDate',
'ticketDelete',
'taskAdd',
'taskRemoveAssign',
'taskEdit',
'taskChange',
'taskDueDate',
'taskDelete',
'customerMention',
'companyMention',
],
};