@pipedream/salesforce_rest_api 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/README.md +92 -0
  2. package/actions/add-contact-to-campaign/add-contact-to-campaign.mjs +25 -25
  3. package/actions/add-lead-to-campaign/add-lead-to-campaign.mjs +25 -24
  4. package/actions/common/base-create-update.mjs +108 -0
  5. package/actions/convert-soap-xml-to-json/convert-soap-xml-to-json.mjs +11 -3
  6. package/actions/create-account/create-account.mjs +33 -36
  7. package/actions/create-attachment/create-attachment.mjs +36 -50
  8. package/actions/create-campaign/create-campaign.mjs +41 -37
  9. package/actions/create-case/create-case.mjs +41 -37
  10. package/actions/create-casecomment/create-casecomment.mjs +26 -38
  11. package/actions/create-contact/create-contact.mjs +38 -35
  12. package/actions/create-event/create-event.mjs +57 -66
  13. package/actions/create-lead/create-lead.mjs +34 -42
  14. package/actions/create-note/create-note.mjs +24 -43
  15. package/actions/create-opportunity/create-opportunity.mjs +38 -47
  16. package/actions/create-record/create-record.mjs +49 -15
  17. package/actions/create-task/create-task.mjs +50 -42
  18. package/actions/create-user/create-user.mjs +33 -196
  19. package/actions/delete-opportunity/delete-opportunity.mjs +17 -13
  20. package/actions/delete-record/delete-record.mjs +18 -16
  21. package/actions/find-records/find-records.mjs +41 -26
  22. package/actions/insert-blob-data/insert-blob-data.mjs +3 -7
  23. package/actions/post-feed-to-chatter/post-feed-to-chatter.mjs +45 -20
  24. package/actions/search-string/search-string.mjs +22 -20
  25. package/actions/soql-search/soql-search.mjs +13 -8
  26. package/actions/sosl-search/sosl-search.mjs +19 -9
  27. package/actions/update-account/update-account.mjs +54 -41
  28. package/actions/update-contact/update-contact.mjs +59 -40
  29. package/actions/update-opportunity/update-opportunity.mjs +56 -54
  30. package/actions/update-record/update-record.mjs +67 -20
  31. package/common/all-sobjects.mjs +3812 -0
  32. package/common/constants-props.mjs +1539 -0
  33. package/common/props-async-options.mjs +154 -0
  34. package/common/props-utils.mjs +88 -31
  35. package/common/sobjects/account.mjs +349 -22
  36. package/common/sobjects/attachment.mjs +56 -17
  37. package/common/sobjects/campaign.mjs +125 -23
  38. package/common/sobjects/case.mjs +193 -13
  39. package/common/sobjects/caseComment.mjs +28 -4
  40. package/common/sobjects/contact.mjs +207 -43
  41. package/common/sobjects/event.mjs +218 -18
  42. package/common/sobjects/lead.mjs +245 -22
  43. package/common/sobjects/note.mjs +37 -14
  44. package/common/sobjects/opportunity.mjs +148 -22
  45. package/common/sobjects/task.mjs +240 -19
  46. package/common/sobjects/user.mjs +965 -0
  47. package/package.json +2 -2
  48. package/salesforce_rest_api.app.mjs +77 -254
  49. package/sources/common-webhook-methods.mjs +71 -0
  50. package/sources/common.mjs +85 -22
  51. package/sources/new-outbound-message/new-outbound-message.mjs +11 -3
  52. package/sources/new-record-instant/new-record-instant.mjs +77 -6
  53. package/sources/record-deleted-instant/record-deleted-instant.mjs +40 -5
  54. package/sources/record-updated-instant/record-updated-instant.mjs +168 -0
  55. package/actions/common/base.mjs +0 -18
  56. package/actions/find-create-record/find-create-record.mjs +0 -89
  57. package/actions/get-sobject-fields-values/get-sobject-fields-values.mjs +0 -57
  58. package/common/utils.mjs +0 -51
  59. package/sources/common-instant.mjs +0 -146
  60. package/sources/new-record/new-record.mjs +0 -91
  61. package/sources/object-updated/object-updated.mjs +0 -94
  62. package/sources/object-updated-instant/object-updated-instant.mjs +0 -36
  63. package/sources/record-deleted/record-deleted.mjs +0 -51
  64. package/sources/updated-field-on-record/updated-field-on-record.mjs +0 -161
  65. package/sources/updated-field-on-record-instant/updated-field-on-record-instant.mjs +0 -76
@@ -0,0 +1,1539 @@
1
+ export const WEEKDAY_MASK_OPTIONS = [
2
+ {
3
+ label: "Sunday",
4
+ value: 1,
5
+ },
6
+ {
7
+ label: "Monday",
8
+ value: 2,
9
+ },
10
+ {
11
+ label: "Tuesday",
12
+ value: 4,
13
+ },
14
+ {
15
+ label: "Wednesday",
16
+ value: 8,
17
+ },
18
+ {
19
+ label: "Thursday",
20
+ value: 16,
21
+ },
22
+ {
23
+ label: "Friday",
24
+ value: 32,
25
+ },
26
+ {
27
+ label: "Saturday",
28
+ value: 64,
29
+ },
30
+ ];
31
+
32
+ export const RECURRENCE_INSTANCE_OPTIONS = [
33
+ {
34
+ label: "1st",
35
+ value: "First",
36
+ },
37
+ {
38
+ label: "2nd",
39
+ value: "Second",
40
+ },
41
+ {
42
+ label: "3rd",
43
+ value: "Third",
44
+ },
45
+ {
46
+ label: "4th",
47
+ value: "Fourth",
48
+ },
49
+ {
50
+ label: "last",
51
+ value: "Last",
52
+ },
53
+ ];
54
+
55
+ export const RECURRENCE_MONTH_OPTIONS = [
56
+ "January",
57
+ "February",
58
+ "March",
59
+ "April",
60
+ "May",
61
+ "June",
62
+ "July",
63
+ "August",
64
+ "September",
65
+ "October",
66
+ "November",
67
+ "December",
68
+ ];
69
+
70
+ export const TIMEZONE_OPTIONS = [
71
+ {
72
+ label: "(GMT+14:00) Line Islands Time (Pacific/Kiritimati)",
73
+ value: "Pacific/Kiritimati",
74
+ },
75
+ {
76
+ label: "(GMT+13:00) Phoenix Islands Time (Pacific/Enderbury)",
77
+ value: "Pacific/Enderbury",
78
+ },
79
+ {
80
+ label: "(GMT+13:00) Tonga Standard Time (Pacific/Tongatapu)",
81
+ value: "Pacific/Tongatapu",
82
+ },
83
+ {
84
+ label: "(GMT+12:45) Chatham Standard Time (Pacific/Chatham)",
85
+ value: "Pacific/Chatham",
86
+ },
87
+ {
88
+ label:
89
+ "(GMT+12:00) Petropavlovsk-Kamchatski Standard Time (Asia/Kamchatka)",
90
+ value: "Asia/Kamchatka",
91
+ },
92
+ {
93
+ label: "(GMT+12:00) New Zealand Standard Time (Pacific/Auckland)",
94
+ value: "Pacific/Auckland",
95
+ },
96
+ {
97
+ label: "(GMT+12:00) Fiji Standard Time (Pacific/Fiji)",
98
+ value: "Pacific/Fiji",
99
+ },
100
+ {
101
+ label: "(GMT+11:00) Solomon Islands Time (Pacific/Guadalcanal)",
102
+ value: "Pacific/Guadalcanal",
103
+ },
104
+ {
105
+ label: "(GMT+11:00) Norfolk Island Standard Time (Pacific/Norfolk)",
106
+ value: "Pacific/Norfolk",
107
+ },
108
+ {
109
+ label: "(GMT+10:30) Lord Howe Standard Time (Australia/Lord_Howe)",
110
+ value: "Australia/Lord_Howe",
111
+ },
112
+ {
113
+ label: "(GMT+10:00) Australian Eastern Standard Time (Australia/Brisbane)",
114
+ value: "Australia/Brisbane",
115
+ },
116
+ {
117
+ label: "(GMT+10:00) Australian Eastern Standard Time (Australia/Sydney)",
118
+ value: "Australia/Sydney",
119
+ },
120
+ {
121
+ label: "(GMT+09:30) Australian Central Standard Time (Australia/Adelaide)",
122
+ value: "Australia/Adelaide",
123
+ },
124
+ {
125
+ label: "(GMT+09:30) Australian Central Standard Time (Australia/Darwin)",
126
+ value: "Australia/Darwin",
127
+ },
128
+ {
129
+ label: "(GMT+09:00) Korean Standard Time (Asia/Seoul)",
130
+ value: "Asia/Seoul",
131
+ },
132
+ {
133
+ label: "(GMT+09:00) Japan Standard Time (Asia/Tokyo)",
134
+ value: "Asia/Tokyo",
135
+ },
136
+ {
137
+ label: "(GMT+08:00) Hong Kong Standard Time (Asia/Hong_Kong)",
138
+ value: "Asia/Hong_Kong",
139
+ },
140
+ {
141
+ label: "(GMT+08:00) Malaysia Time (Asia/Kuala_Lumpur)",
142
+ value: "Asia/Kuala_Lumpur",
143
+ },
144
+ {
145
+ label: "(GMT+08:00) Philippine Standard Time (Asia/Manila)",
146
+ value: "Asia/Manila",
147
+ },
148
+ {
149
+ label: "(GMT+08:00) China Standard Time (Asia/Shanghai)",
150
+ value: "Asia/Shanghai",
151
+ },
152
+ {
153
+ label: "(GMT+08:00) Singapore Standard Time (Asia/Singapore)",
154
+ value: "Asia/Singapore",
155
+ },
156
+ {
157
+ label: "(GMT+08:00) Taipei Standard Time (Asia/Taipei)",
158
+ value: "Asia/Taipei",
159
+ },
160
+ {
161
+ label: "(GMT+08:00) Australian Western Standard Time (Australia/Perth)",
162
+ value: "Australia/Perth",
163
+ },
164
+ {
165
+ label: "(GMT+07:00) Indochina Time (Asia/Bangkok)",
166
+ value: "Asia/Bangkok",
167
+ },
168
+ {
169
+ label: "(GMT+07:00) Indochina Time (Asia/Ho_Chi_Minh)",
170
+ value: "Asia/Ho_Chi_Minh",
171
+ },
172
+ {
173
+ label: "(GMT+07:00) Western Indonesia Time (Asia/Jakarta)",
174
+ value: "Asia/Jakarta",
175
+ },
176
+ {
177
+ label: "(GMT+06:30) Myanmar Time (Asia/Rangoon)",
178
+ value: "Asia/Rangoon",
179
+ },
180
+ {
181
+ label: "(GMT+06:00) Bangladesh Standard Time (Asia/Dhaka)",
182
+ value: "Asia/Dhaka",
183
+ },
184
+ {
185
+ label: "(GMT+05:45) Nepal Time (Asia/Kathmandu)",
186
+ value: "Asia/Kathmandu",
187
+ },
188
+ {
189
+ label: "(GMT+05:30) India Standard Time (Asia/Colombo)",
190
+ value: "Asia/Colombo",
191
+ },
192
+ {
193
+ label: "(GMT+05:30) India Standard Time (Asia/Kolkata)",
194
+ value: "Asia/Kolkata",
195
+ },
196
+ {
197
+ label: "(GMT+05:00) Pakistan Standard Time (Asia/Karachi)",
198
+ value: "Asia/Karachi",
199
+ },
200
+ {
201
+ label: "(GMT+05:00) Uzbekistan Standard Time (Asia/Tashkent)",
202
+ value: "Asia/Tashkent",
203
+ },
204
+ {
205
+ label: "(GMT+05:00) Yekaterinburg Standard Time (Asia/Yekaterinburg)",
206
+ value: "Asia/Yekaterinburg",
207
+ },
208
+ {
209
+ label: "(GMT+04:30) Afghanistan Time (Asia/Kabul)",
210
+ value: "Asia/Kabul",
211
+ },
212
+ {
213
+ label: "(GMT+04:00) Azerbaijan Standard Time (Asia/Baku)",
214
+ value: "Asia/Baku",
215
+ },
216
+ {
217
+ label: "(GMT+04:00) Gulf Standard Time (Asia/Dubai)",
218
+ value: "Asia/Dubai",
219
+ },
220
+ {
221
+ label: "(GMT+04:00) Georgia Standard Time (Asia/Tbilisi)",
222
+ value: "Asia/Tbilisi",
223
+ },
224
+ {
225
+ label: "(GMT+04:00) Armenia Standard Time (Asia/Yerevan)",
226
+ value: "Asia/Yerevan",
227
+ },
228
+ {
229
+ label: "(GMT+03:00) Eastern European Standard Time (Africa/Cairo)",
230
+ value: "Africa/Cairo",
231
+ },
232
+ {
233
+ label: "(GMT+03:00) East Africa Time (Africa/Nairobi)",
234
+ value: "Africa/Nairobi",
235
+ },
236
+ {
237
+ label: "(GMT+03:00) Arabian Standard Time (Asia/Baghdad)",
238
+ value: "Asia/Baghdad",
239
+ },
240
+ {
241
+ label: "(GMT+03:00) Eastern European Summer Time (Asia/Beirut)",
242
+ value: "Asia/Beirut",
243
+ },
244
+ {
245
+ label: "(GMT+03:00) Israel Daylight Time (Asia/Jerusalem)",
246
+ value: "Asia/Jerusalem",
247
+ },
248
+ {
249
+ label: "(GMT+03:00) Arabian Standard Time (Asia/Kuwait)",
250
+ value: "Asia/Kuwait",
251
+ },
252
+ {
253
+ label: "(GMT+03:00) Arabian Standard Time (Asia/Riyadh)",
254
+ value: "Asia/Riyadh",
255
+ },
256
+ {
257
+ label: "(GMT+03:00) Eastern European Summer Time (Europe/Athens)",
258
+ value: "Europe/Athens",
259
+ },
260
+ {
261
+ label: "(GMT+03:00) Eastern European Summer Time (Europe/Bucharest)",
262
+ value: "Europe/Bucharest",
263
+ },
264
+ {
265
+ label: "(GMT+03:00) Eastern European Summer Time (Europe/Helsinki)",
266
+ value: "Europe/Helsinki",
267
+ },
268
+ {
269
+ label: "(GMT+03:00) Eastern European Standard Time (Europe/Istanbul)",
270
+ value: "Europe/Istanbul",
271
+ },
272
+ {
273
+ label: "(GMT+03:00) Moscow Standard Time (Europe/Minsk)",
274
+ value: "Europe/Minsk",
275
+ },
276
+ {
277
+ label: "(GMT+03:00) Moscow Standard Time (Europe/Moscow)",
278
+ value: "Europe/Moscow",
279
+ },
280
+ {
281
+ label: "(GMT+02:00) South Africa Standard Time (Africa/Johannesburg)",
282
+ value: "Africa/Johannesburg",
283
+ },
284
+ {
285
+ label: "(GMT+02:00) Central European Summer Time (Europe/Amsterdam)",
286
+ value: "Europe/Amsterdam",
287
+ },
288
+ {
289
+ label: "(GMT+02:00) Central European Summer Time (Europe/Berlin)",
290
+ value: "Europe/Berlin",
291
+ },
292
+ {
293
+ label: "(GMT+02:00) Central European Summer Time (Europe/Brussels)",
294
+ value: "Europe/Brussels",
295
+ },
296
+ {
297
+ label: "(GMT+02:00) Central European Summer Time (Europe/Paris)",
298
+ value: "Europe/Paris",
299
+ },
300
+ {
301
+ label: "(GMT+02:00) Central European Summer Time (Europe/Prague)",
302
+ value: "Europe/Prague",
303
+ },
304
+ {
305
+ label: "(GMT+02:00) Central European Summer Time (Europe/Rome)",
306
+ value: "Europe/Rome",
307
+ },
308
+ {
309
+ label: "(GMT+01:00) Central European Standard Time (Africa/Algiers)",
310
+ value: "Africa/Algiers",
311
+ },
312
+ {
313
+ label: "(GMT+01:00) Western European Summer Time (Africa/Casablanca)",
314
+ value: "Africa/Casablanca",
315
+ },
316
+ {
317
+ label: "(GMT+01:00) Irish Standard Time (Europe/Dublin)",
318
+ value: "Europe/Dublin",
319
+ },
320
+ {
321
+ label: "(GMT+01:00) Western European Summer Time (Europe/Lisbon)",
322
+ value: "Europe/Lisbon",
323
+ },
324
+ {
325
+ label: "(GMT+01:00) British Summer Time (Europe/London)",
326
+ value: "Europe/London",
327
+ },
328
+ {
329
+ label: "(GMT+00:00) Azores Summer Time (Atlantic/Azores)",
330
+ value: "Atlantic/Azores",
331
+ },
332
+ {
333
+ label: "(GMT+00:00) Greenwich Mean Time (GMT)",
334
+ value: "GMT",
335
+ },
336
+ {
337
+ label: "(GMT-01:00) East Greenland Summer Time (America/Scoresbysund)",
338
+ value: "America/Scoresbysund",
339
+ },
340
+ {
341
+ label: "(GMT-01:00) Cape Verde Standard Time (Atlantic/Cape_Verde)",
342
+ value: "Atlantic/Cape_Verde",
343
+ },
344
+ {
345
+ label: "(GMT-02:00) South Georgia Time (Atlantic/South_Georgia)",
346
+ value: "Atlantic/South_Georgia",
347
+ },
348
+ {
349
+ label: "(GMT-02:30) Newfoundland Daylight Time (America/St_Johns)",
350
+ value: "America/St_Johns",
351
+ },
352
+ {
353
+ label:
354
+ "(GMT-03:00) Argentina Standard Time (America/Argentina/Buenos_Aires)",
355
+ value: "America/Argentina/Buenos_Aires",
356
+ },
357
+ {
358
+ label: "(GMT-03:00) Atlantic Daylight Time (America/Halifax)",
359
+ value: "America/Halifax",
360
+ },
361
+ {
362
+ label: "(GMT-03:00) Brasilia Standard Time (America/Sao_Paulo)",
363
+ value: "America/Sao_Paulo",
364
+ },
365
+ {
366
+ label: "(GMT-03:00) Atlantic Daylight Time (Atlantic/Bermuda)",
367
+ value: "Atlantic/Bermuda",
368
+ },
369
+ {
370
+ label: "(GMT-04:00) Venezuela Time (America/Caracas)",
371
+ value: "America/Caracas",
372
+ },
373
+ {
374
+ label: "(GMT-04:00) Eastern Daylight Time (America/Indiana/Indianapolis)",
375
+ value: "America/Indiana/Indianapolis",
376
+ },
377
+ {
378
+ label: "(GMT-04:00) Eastern Daylight Time (America/New_York)",
379
+ value: "America/New_York",
380
+ },
381
+ {
382
+ label: "(GMT-04:00) Atlantic Standard Time (America/Puerto_Rico)",
383
+ value: "America/Puerto_Rico",
384
+ },
385
+ {
386
+ label: "(GMT-04:00) Chile Standard Time (America/Santiago)",
387
+ value: "America/Santiago",
388
+ },
389
+ {
390
+ label: "(GMT-05:00) Colombia Standard Time (America/Bogota)",
391
+ value: "America/Bogota",
392
+ },
393
+ {
394
+ label: "(GMT-05:00) Central Daylight Time (America/Chicago)",
395
+ value: "America/Chicago",
396
+ },
397
+ {
398
+ label: "(GMT-05:00) Peru Standard Time (America/Lima)",
399
+ value: "America/Lima",
400
+ },
401
+ {
402
+ label: "(GMT-05:00) Eastern Standard Time (America/Panama)",
403
+ value: "America/Panama",
404
+ },
405
+ {
406
+ label: "(GMT-06:00) Mountain Daylight Time (America/Denver)",
407
+ value: "America/Denver",
408
+ },
409
+ {
410
+ label: "(GMT-06:00) Central Standard Time (America/El_Salvador)",
411
+ value: "America/El_Salvador",
412
+ },
413
+ {
414
+ label: "(GMT-06:00) Central Standard Time (America/Mexico_City)",
415
+ value: "America/Mexico_City",
416
+ },
417
+ {
418
+ label: "(GMT-07:00) Pacific Daylight Time (America/Los_Angeles)",
419
+ value: "America/Los_Angeles",
420
+ },
421
+ {
422
+ label: "(GMT-07:00) Mexican Pacific Standard Time (America/Mazatlan)",
423
+ value: "America/Mazatlan",
424
+ },
425
+ {
426
+ label: "(GMT-07:00) Mountain Standard Time (America/Phoenix)",
427
+ value: "America/Phoenix",
428
+ },
429
+ {
430
+ label: "(GMT-07:00) Pacific Daylight Time (America/Tijuana)",
431
+ value: "America/Tijuana",
432
+ },
433
+ {
434
+ label: "(GMT-08:00) Alaska Daylight Time (America/Anchorage)",
435
+ value: "America/Anchorage",
436
+ },
437
+ {
438
+ label: "(GMT-08:00) Pitcairn Time (Pacific/Pitcairn)",
439
+ value: "Pacific/Pitcairn",
440
+ },
441
+ {
442
+ label: "(GMT-09:00) Hawaii-Aleutian Daylight Time (America/Adak)",
443
+ value: "America/Adak",
444
+ },
445
+ {
446
+ label: "(GMT-09:00) Gambier Time (Pacific/Gambier)",
447
+ value: "Pacific/Gambier",
448
+ },
449
+ {
450
+ label: "(GMT-09:30) Marquesas Time (Pacific/Marquesas)",
451
+ value: "Pacific/Marquesas",
452
+ },
453
+ {
454
+ label: "(GMT-10:00) Hawaii-Aleutian Standard Time (Pacific/Honolulu)",
455
+ value: "Pacific/Honolulu",
456
+ },
457
+ {
458
+ label: "(GMT-11:00) Niue Time (Pacific/Niue)",
459
+ value: "Pacific/Niue",
460
+ },
461
+ {
462
+ label: "(GMT-11:00) Samoa Standard Time (Pacific/Pago_Pago)",
463
+ value: "Pacific/Pago_Pago",
464
+ },
465
+ ];
466
+
467
+ export const RECURRENCE_TYPE_OPTIONS = [
468
+ {
469
+ label: "Recurs Daily",
470
+ value: "RecursDaily",
471
+ },
472
+ {
473
+ label: "Recurs Every Weekday",
474
+ value: "RecursEveryWeekday",
475
+ },
476
+ {
477
+ label: "Recurs Monthly",
478
+ value: "RecursMonthly",
479
+ },
480
+ {
481
+ label: "Recurs Monthly Nth",
482
+ value: "RecursMonthlyNth",
483
+ },
484
+ {
485
+ label: "Recurs Weekly",
486
+ value: "RecursWeekly",
487
+ },
488
+ {
489
+ label: "Recurs Yearly",
490
+ value: "RecursYearly",
491
+ },
492
+ {
493
+ label: "Recurs Yearly Nth",
494
+ value: "RecursYearlyNth",
495
+ },
496
+ ];
497
+
498
+ export const GEOCODE_ACCURACY_OPTIONS = [
499
+ {
500
+ label: "Address",
501
+ value: "Address",
502
+ },
503
+ {
504
+ label: "Near Address",
505
+ value: "NearAddress",
506
+ },
507
+ {
508
+ label: "Block",
509
+ value: "Block",
510
+ },
511
+ {
512
+ label: "Street",
513
+ value: "Street",
514
+ },
515
+ {
516
+ label: "Extended Zip",
517
+ value: "ExtendedZip",
518
+ },
519
+ {
520
+ label: "Zip",
521
+ value: "Zip",
522
+ },
523
+ {
524
+ label: "Neighborhood",
525
+ value: "Neighborhood",
526
+ },
527
+ {
528
+ label: "City",
529
+ value: "City",
530
+ },
531
+ {
532
+ label: "County",
533
+ value: "County",
534
+ },
535
+ {
536
+ label: "State",
537
+ value: "State",
538
+ },
539
+ {
540
+ label: "Unknown",
541
+ value: "Unknown",
542
+ },
543
+ ];
544
+
545
+ export const CLEAN_STATUS_OPTIONS = [
546
+ {
547
+ label: "In Sync",
548
+ value: "Matched",
549
+ },
550
+ {
551
+ label: "Different",
552
+ value: "Different",
553
+ },
554
+ {
555
+ label: "Reviewed",
556
+ value: "Acknowledged",
557
+ },
558
+ {
559
+ label: "Not Found",
560
+ value: "NotFound",
561
+ },
562
+ {
563
+ label: "Inactive",
564
+ value: "Inactive",
565
+ },
566
+ {
567
+ label: "Not Compared",
568
+ value: "Pending",
569
+ },
570
+ {
571
+ label: "Select Match",
572
+ value: "SelectMatch",
573
+ },
574
+ {
575
+ label: "Skipped",
576
+ value: "Skipped",
577
+ },
578
+ ];
579
+
580
+ export const RECORD_SOURCE_OPTIONS = [
581
+ "Web",
582
+ "Phone Inquiry",
583
+ "Partner Referral",
584
+ "Purchased List",
585
+ "Other",
586
+ ];
587
+
588
+ export const EMAIL_ENCODING_OPTIONS = [
589
+ {
590
+ label: "Unicode (UTF-8)",
591
+ value: "UTF-8",
592
+ },
593
+ {
594
+ label: "General US & Western Europe (ISO-8859-1, ISO-LATIN-1)",
595
+ value: "ISO-8859-1",
596
+ },
597
+ {
598
+ label: "Japanese (Shift-JIS)",
599
+ value: "Shift_JIS",
600
+ },
601
+ {
602
+ label: "Japanese (JIS)",
603
+ value: "ISO-2022-JP",
604
+ },
605
+ {
606
+ label: "Japanese (EUC)",
607
+ value: "EUC-JP",
608
+ },
609
+ {
610
+ label: "Korean (ks_c_5601-1987)",
611
+ value: "ks_c_5601-1987",
612
+ },
613
+ {
614
+ label: "Traditional Chinese (Big5)",
615
+ value: "Big5",
616
+ },
617
+ {
618
+ label: "Simplified Chinese (GB2312)",
619
+ value: "GB2312",
620
+ },
621
+ {
622
+ label: "Traditional Chinese Hong Kong (Big5-HKSCS)",
623
+ value: "Big5-HKSCS",
624
+ },
625
+ {
626
+ label: "Japanese (Shift-JIS_2004)",
627
+ value: "x-SJIS_0213",
628
+ },
629
+ ];
630
+
631
+ export const LANGUAGE_OPTIONS = [
632
+ {
633
+ label: "English",
634
+ value: "en_US",
635
+ },
636
+ {
637
+ label: "German",
638
+ value: "de",
639
+ },
640
+ {
641
+ label: "Spanish",
642
+ value: "es",
643
+ },
644
+ {
645
+ label: "French",
646
+ value: "fr",
647
+ },
648
+ {
649
+ label: "Italian",
650
+ value: "it",
651
+ },
652
+ {
653
+ label: "Japanese",
654
+ value: "ja",
655
+ },
656
+ {
657
+ label: "Swedish",
658
+ value: "sv",
659
+ },
660
+ {
661
+ label: "Korean",
662
+ value: "ko",
663
+ },
664
+ {
665
+ label: "Chinese (Traditional)",
666
+ value: "zh_TW",
667
+ },
668
+ {
669
+ label: "Chinese (Simplified)",
670
+ value: "zh_CN",
671
+ },
672
+ {
673
+ label: "Portuguese (Brazil)",
674
+ value: "pt_BR",
675
+ },
676
+ {
677
+ label: "Dutch",
678
+ value: "nl_NL",
679
+ },
680
+ {
681
+ label: "Danish",
682
+ value: "da",
683
+ },
684
+ {
685
+ label: "Thai",
686
+ value: "th",
687
+ },
688
+ {
689
+ label: "Finnish",
690
+ value: "fi",
691
+ },
692
+ {
693
+ label: "Russian",
694
+ value: "ru",
695
+ },
696
+ {
697
+ label: "Spanish (Mexico)",
698
+ value: "es_MX",
699
+ },
700
+ {
701
+ label: "Norwegian",
702
+ value: "no",
703
+ },
704
+ ];
705
+
706
+ export const LOCALE_OPTIONS = [
707
+ {
708
+ label: "Afrikaans (South Africa)",
709
+ value: "af_ZA",
710
+ },
711
+ {
712
+ label: "Albanian (Albania)",
713
+ value: "sq_AL",
714
+ },
715
+ {
716
+ label: "Arabic (Algeria)",
717
+ value: "ar_DZ",
718
+ },
719
+ {
720
+ label: "Arabic (Bahrain)",
721
+ value: "ar_BH",
722
+ },
723
+ {
724
+ label: "Arabic (Egypt)",
725
+ value: "ar_EG",
726
+ },
727
+ {
728
+ label: "Arabic (Iraq)",
729
+ value: "ar_IQ",
730
+ },
731
+ {
732
+ label: "Arabic (Jordan)",
733
+ value: "ar_JO",
734
+ },
735
+ {
736
+ label: "Arabic (Kuwait)",
737
+ value: "ar_KW",
738
+ },
739
+ {
740
+ label: "Arabic (Lebanon)",
741
+ value: "ar_LB",
742
+ },
743
+ {
744
+ label: "Arabic (Libya)",
745
+ value: "ar_LY",
746
+ },
747
+ {
748
+ label: "Arabic (Morocco)",
749
+ value: "ar_MA",
750
+ },
751
+ {
752
+ label: "Arabic (Oman)",
753
+ value: "ar_OM",
754
+ },
755
+ {
756
+ label: "Arabic (Qatar)",
757
+ value: "ar_QA",
758
+ },
759
+ {
760
+ label: "Arabic (Saudi Arabia)",
761
+ value: "ar_SA",
762
+ },
763
+ {
764
+ label: "Arabic (Sudan)",
765
+ value: "ar_SD",
766
+ },
767
+ {
768
+ label: "Arabic (Tunisia)",
769
+ value: "ar_TN",
770
+ },
771
+ {
772
+ label: "Arabic (United Arab Emirates)",
773
+ value: "ar_AE",
774
+ },
775
+ {
776
+ label: "Arabic (Yemen)",
777
+ value: "ar_YE",
778
+ },
779
+ {
780
+ label: "Armenian (Armenia)",
781
+ value: "hy_AM",
782
+ },
783
+ {
784
+ label: "Azerbaijani (Azerbaijan)",
785
+ value: "az_AZ",
786
+ },
787
+ {
788
+ label: "Bangla (Bangladesh)",
789
+ value: "bn_BD",
790
+ },
791
+ {
792
+ label: "Bangla (India)",
793
+ value: "bn_IN",
794
+ },
795
+ {
796
+ label: "Basque (Spain)",
797
+ value: "eu_ES",
798
+ },
799
+ {
800
+ label: "Belarusian (Belarus)",
801
+ value: "be_BY",
802
+ },
803
+ {
804
+ label: "Bosnian (Bosnia & Herzegovina)",
805
+ value: "bs_BA",
806
+ },
807
+ {
808
+ label: "Bulgarian (Bulgaria)",
809
+ value: "bg_BG",
810
+ },
811
+ {
812
+ label: "Burmese (Myanmar [Burma])",
813
+ value: "my_MM",
814
+ },
815
+ {
816
+ label: "Catalan (Spain)",
817
+ value: "ca_ES",
818
+ },
819
+ {
820
+ label: "Chinese (China, Pinyin Ordering)",
821
+ value: "zh_CN_PINYIN",
822
+ },
823
+ {
824
+ label: "Chinese (China, Stroke Ordering)",
825
+ value: "zh_CN_STROKE",
826
+ },
827
+ {
828
+ label: "Chinese (China)",
829
+ value: "zh_CN",
830
+ },
831
+ {
832
+ label: "Chinese (Hong Kong SAR China, Stroke Ordering)",
833
+ value: "zh_HK_STROKE",
834
+ },
835
+ {
836
+ label: "Chinese (Hong Kong SAR China)",
837
+ value: "zh_HK",
838
+ },
839
+ {
840
+ label: "Chinese (Macao SAR China)",
841
+ value: "zh_MO",
842
+ },
843
+ {
844
+ label: "Chinese (Singapore)",
845
+ value: "zh_SG",
846
+ },
847
+ {
848
+ label: "Chinese (Taiwan, Stroke Ordering)",
849
+ value: "zh_TW_STROKE",
850
+ },
851
+ {
852
+ label: "Chinese (Taiwan)",
853
+ value: "zh_TW",
854
+ },
855
+ {
856
+ label: "Croatian (Croatia)",
857
+ value: "hr_HR",
858
+ },
859
+ {
860
+ label: "Czech (Czechia)",
861
+ value: "cs_CZ",
862
+ },
863
+ {
864
+ label: "Danish (Denmark)",
865
+ value: "da_DK",
866
+ },
867
+ {
868
+ label: "Dutch (Aruba)",
869
+ value: "nl_AW",
870
+ },
871
+ {
872
+ label: "Dutch (Belgium)",
873
+ value: "nl_BE",
874
+ },
875
+ {
876
+ label: "Dutch (Netherlands)",
877
+ value: "nl_NL",
878
+ },
879
+ {
880
+ label: "Dutch (Suriname)",
881
+ value: "nl_SR",
882
+ },
883
+ {
884
+ label: "Dzongkha (Bhutan)",
885
+ value: "dz_BT",
886
+ },
887
+ {
888
+ label: "English (Antigua & Barbuda)",
889
+ value: "en_AG",
890
+ },
891
+ {
892
+ label: "English (Australia)",
893
+ value: "en_AU",
894
+ },
895
+ {
896
+ label: "English (Bahamas)",
897
+ value: "en_BS",
898
+ },
899
+ {
900
+ label: "English (Barbados)",
901
+ value: "en_BB",
902
+ },
903
+ {
904
+ label: "English (Belize)",
905
+ value: "en_BZ",
906
+ },
907
+ {
908
+ label: "English (Bermuda)",
909
+ value: "en_BM",
910
+ },
911
+ {
912
+ label: "English (Botswana)",
913
+ value: "en_BW",
914
+ },
915
+ {
916
+ label: "English (Cameroon)",
917
+ value: "en_CM",
918
+ },
919
+ {
920
+ label: "English (Canada)",
921
+ value: "en_CA",
922
+ },
923
+ {
924
+ label: "English (Cayman Islands)",
925
+ value: "en_KY",
926
+ },
927
+ {
928
+ label: "English (Eritrea)",
929
+ value: "en_ER",
930
+ },
931
+ {
932
+ label: "English (Eswatini)",
933
+ value: "en_SZ",
934
+ },
935
+ {
936
+ label: "English (Falkland Islands)",
937
+ value: "en_FK",
938
+ },
939
+ {
940
+ label: "English (Fiji)",
941
+ value: "en_FJ",
942
+ },
943
+ {
944
+ label: "English (Gambia)",
945
+ value: "en_GM",
946
+ },
947
+ {
948
+ label: "English (Ghana)",
949
+ value: "en_GH",
950
+ },
951
+ {
952
+ label: "English (Gibraltar)",
953
+ value: "en_GI",
954
+ },
955
+ {
956
+ label: "English (Guyana)",
957
+ value: "en_GY",
958
+ },
959
+ {
960
+ label: "English (Hong Kong SAR China)",
961
+ value: "en_HK",
962
+ },
963
+ {
964
+ label: "English (India)",
965
+ value: "en_IN",
966
+ },
967
+ {
968
+ label: "English (Indonesia)",
969
+ value: "en_ID",
970
+ },
971
+ {
972
+ label: "English (Ireland)",
973
+ value: "en_IE",
974
+ },
975
+ {
976
+ label: "English (Jamaica)",
977
+ value: "en_JM",
978
+ },
979
+ {
980
+ label: "English (Kenya)",
981
+ value: "en_KE",
982
+ },
983
+ {
984
+ label: "English (Liberia)",
985
+ value: "en_LR",
986
+ },
987
+ {
988
+ label: "English (Madagascar)",
989
+ value: "en_MG",
990
+ },
991
+ {
992
+ label: "English (Malawi)",
993
+ value: "en_MW",
994
+ },
995
+ {
996
+ label: "English (Malaysia)",
997
+ value: "en_MY",
998
+ },
999
+ {
1000
+ label: "English (Mauritius)",
1001
+ value: "en_MU",
1002
+ },
1003
+ {
1004
+ label: "English (Namibia)",
1005
+ value: "en_NA",
1006
+ },
1007
+ {
1008
+ label: "English (New Zealand)",
1009
+ value: "en_NZ",
1010
+ },
1011
+ {
1012
+ label: "English (Nigeria)",
1013
+ value: "en_NG",
1014
+ },
1015
+ {
1016
+ label: "English (Pakistan)",
1017
+ value: "en_PK",
1018
+ },
1019
+ {
1020
+ label: "English (Papua New Guinea)",
1021
+ value: "en_PG",
1022
+ },
1023
+ {
1024
+ label: "English (Philippines)",
1025
+ value: "en_PH",
1026
+ },
1027
+ {
1028
+ label: "English (Rwanda)",
1029
+ value: "en_RW",
1030
+ },
1031
+ {
1032
+ label: "English (Samoa)",
1033
+ value: "en_WS",
1034
+ },
1035
+ {
1036
+ label: "English (Seychelles)",
1037
+ value: "en_SC",
1038
+ },
1039
+ {
1040
+ label: "English (Sierra Leone)",
1041
+ value: "en_SL",
1042
+ },
1043
+ {
1044
+ label: "English (Singapore)",
1045
+ value: "en_SG",
1046
+ },
1047
+ {
1048
+ label: "English (Sint Maarten)",
1049
+ value: "en_SX",
1050
+ },
1051
+ {
1052
+ label: "English (Solomon Islands)",
1053
+ value: "en_SB",
1054
+ },
1055
+ {
1056
+ label: "English (South Africa)",
1057
+ value: "en_ZA",
1058
+ },
1059
+ {
1060
+ label: "English (St. Helena)",
1061
+ value: "en_SH",
1062
+ },
1063
+ {
1064
+ label: "English (Tanzania)",
1065
+ value: "en_TZ",
1066
+ },
1067
+ {
1068
+ label: "English (Tonga)",
1069
+ value: "en_TO",
1070
+ },
1071
+ {
1072
+ label: "English (Trinidad & Tobago)",
1073
+ value: "en_TT",
1074
+ },
1075
+ {
1076
+ label: "English (Uganda)",
1077
+ value: "en_UG",
1078
+ },
1079
+ {
1080
+ label: "English (United Kingdom)",
1081
+ value: "en_GB",
1082
+ },
1083
+ {
1084
+ label: "English (United States)",
1085
+ value: "en_US",
1086
+ },
1087
+ {
1088
+ label: "English (Vanuatu)",
1089
+ value: "en_VU",
1090
+ },
1091
+ {
1092
+ label: "Estonian (Estonia)",
1093
+ value: "et_EE",
1094
+ },
1095
+ {
1096
+ label: "Finnish (Finland)",
1097
+ value: "fi_FI",
1098
+ },
1099
+ {
1100
+ label: "French (Belgium)",
1101
+ value: "fr_BE",
1102
+ },
1103
+ {
1104
+ label: "French (Canada)",
1105
+ value: "fr_CA",
1106
+ },
1107
+ {
1108
+ label: "French (Comoros)",
1109
+ value: "fr_KM",
1110
+ },
1111
+ {
1112
+ label: "French (France)",
1113
+ value: "fr_FR",
1114
+ },
1115
+ {
1116
+ label: "French (Guinea)",
1117
+ value: "fr_GN",
1118
+ },
1119
+ {
1120
+ label: "French (Haiti)",
1121
+ value: "fr_HT",
1122
+ },
1123
+ {
1124
+ label: "French (Luxembourg)",
1125
+ value: "fr_LU",
1126
+ },
1127
+ {
1128
+ label: "French (Mauritania)",
1129
+ value: "fr_MR",
1130
+ },
1131
+ {
1132
+ label: "French (Monaco)",
1133
+ value: "fr_MC",
1134
+ },
1135
+ {
1136
+ label: "French (Switzerland)",
1137
+ value: "fr_CH",
1138
+ },
1139
+ {
1140
+ label: "French (Wallis & Futuna)",
1141
+ value: "fr_WF",
1142
+ },
1143
+ {
1144
+ label: "Georgian (Georgia)",
1145
+ value: "ka_GE",
1146
+ },
1147
+ {
1148
+ label: "German (Austria)",
1149
+ value: "de_AT",
1150
+ },
1151
+ {
1152
+ label: "German (Belgium)",
1153
+ value: "de_BE",
1154
+ },
1155
+ {
1156
+ label: "German (Germany)",
1157
+ value: "de_DE",
1158
+ },
1159
+ {
1160
+ label: "German (Luxembourg)",
1161
+ value: "de_LU",
1162
+ },
1163
+ {
1164
+ label: "German (Switzerland)",
1165
+ value: "de_CH",
1166
+ },
1167
+ {
1168
+ label: "Greek (Greece)",
1169
+ value: "el_GR",
1170
+ },
1171
+ {
1172
+ label: "Gujarati (India)",
1173
+ value: "gu_IN",
1174
+ },
1175
+ {
1176
+ label: "Hebrew (Israel)",
1177
+ value: "iw_IL",
1178
+ },
1179
+ {
1180
+ label: "Hindi (India)",
1181
+ value: "hi_IN",
1182
+ },
1183
+ {
1184
+ label: "Hungarian (Hungary)",
1185
+ value: "hu_HU",
1186
+ },
1187
+ {
1188
+ label: "Icelandic (Iceland)",
1189
+ value: "is_IS",
1190
+ },
1191
+ {
1192
+ label: "Indonesian (Indonesia)",
1193
+ value: "in_ID",
1194
+ },
1195
+ {
1196
+ label: "Irish (Ireland)",
1197
+ value: "ga_IE",
1198
+ },
1199
+ {
1200
+ label: "Italian (Italy)",
1201
+ value: "it_IT",
1202
+ },
1203
+ {
1204
+ label: "Italian (Switzerland)",
1205
+ value: "it_CH",
1206
+ },
1207
+ {
1208
+ label: "Japanese (Japan)",
1209
+ value: "ja_JP",
1210
+ },
1211
+ {
1212
+ label: "Kannada (India)",
1213
+ value: "kn_IN",
1214
+ },
1215
+ {
1216
+ label: "Kazakh (Kazakhstan)",
1217
+ value: "kk_KZ",
1218
+ },
1219
+ {
1220
+ label: "Khmer (Cambodia)",
1221
+ value: "km_KH",
1222
+ },
1223
+ {
1224
+ label: "Korean (South Korea)",
1225
+ value: "ko_KR",
1226
+ },
1227
+ {
1228
+ label: "Kyrgyz (Kyrgyzstan)",
1229
+ value: "ky_KG",
1230
+ },
1231
+ {
1232
+ label: "Lao (Laos)",
1233
+ value: "lo_LA",
1234
+ },
1235
+ {
1236
+ label: "Latvian (Latvia)",
1237
+ value: "lv_LV",
1238
+ },
1239
+ {
1240
+ label: "Lithuanian (Lithuania)",
1241
+ value: "lt_LT",
1242
+ },
1243
+ {
1244
+ label: "Luba-Katanga (Congo - Kinshasa)",
1245
+ value: "lu_CD",
1246
+ },
1247
+ {
1248
+ label: "Luxembourgish (Luxembourg)",
1249
+ value: "lb_LU",
1250
+ },
1251
+ {
1252
+ label: "Macedonian (North Macedonia)",
1253
+ value: "mk_MK",
1254
+ },
1255
+ {
1256
+ label: "Malay (Brunei)",
1257
+ value: "ms_BN",
1258
+ },
1259
+ {
1260
+ label: "Malay (Malaysia)",
1261
+ value: "ms_MY",
1262
+ },
1263
+ {
1264
+ label: "Malayalam (India)",
1265
+ value: "ml_IN",
1266
+ },
1267
+ {
1268
+ label: "Maltese (Malta)",
1269
+ value: "mt_MT",
1270
+ },
1271
+ {
1272
+ label: "Marathi (India)",
1273
+ value: "mr_IN",
1274
+ },
1275
+ {
1276
+ label: "Montenegrin (Montenegro, USD)",
1277
+ value: "sh_ME_USD",
1278
+ },
1279
+ {
1280
+ label: "Montenegrin (Montenegro)",
1281
+ value: "sh_ME",
1282
+ },
1283
+ {
1284
+ label: "Nepali (Nepal)",
1285
+ value: "ne_NP",
1286
+ },
1287
+ {
1288
+ label: "Norwegian (Norway)",
1289
+ value: "no_NO",
1290
+ },
1291
+ {
1292
+ label: "Pashto (Afghanistan)",
1293
+ value: "ps_AF",
1294
+ },
1295
+ {
1296
+ label: "Polish (Poland)",
1297
+ value: "pl_PL",
1298
+ },
1299
+ {
1300
+ label: "Portuguese (Angola)",
1301
+ value: "pt_AO",
1302
+ },
1303
+ {
1304
+ label: "Portuguese (Brazil)",
1305
+ value: "pt_BR",
1306
+ },
1307
+ {
1308
+ label: "Portuguese (Cape Verde)",
1309
+ value: "pt_CV",
1310
+ },
1311
+ {
1312
+ label: "Portuguese (Mozambique)",
1313
+ value: "pt_MZ",
1314
+ },
1315
+ {
1316
+ label: "Portuguese (Portugal)",
1317
+ value: "pt_PT",
1318
+ },
1319
+ {
1320
+ label: "Portuguese (São Tomé & Príncipe)",
1321
+ value: "pt_ST",
1322
+ },
1323
+ {
1324
+ label: "Romanian (Moldova)",
1325
+ value: "ro_MD",
1326
+ },
1327
+ {
1328
+ label: "Romanian (Romania)",
1329
+ value: "ro_RO",
1330
+ },
1331
+ {
1332
+ label: "Romansh (Switzerland)",
1333
+ value: "rm_CH",
1334
+ },
1335
+ {
1336
+ label: "Rundi (Burundi)",
1337
+ value: "rn_BI",
1338
+ },
1339
+ {
1340
+ label: "Russian (Kazakhstan)",
1341
+ value: "ru_KZ",
1342
+ },
1343
+ {
1344
+ label: "Russian (Russia)",
1345
+ value: "ru_RU",
1346
+ },
1347
+ {
1348
+ label: "Serbian (Cyrillic) (Bosnia and Herzegovina)",
1349
+ value: "sr_BA",
1350
+ },
1351
+ {
1352
+ label: "Serbian (Cyrillic) (Serbia)",
1353
+ value: "sr_CS",
1354
+ },
1355
+ {
1356
+ label: "Serbian (Latin) (Bosnia and Herzegovina)",
1357
+ value: "sh_BA",
1358
+ },
1359
+ {
1360
+ label: "Serbian (Latin) (Serbia)",
1361
+ value: "sh_CS",
1362
+ },
1363
+ {
1364
+ label: "Serbian (Serbia)",
1365
+ value: "sr_RS",
1366
+ },
1367
+ {
1368
+ label: "Slovak (Slovakia)",
1369
+ value: "sk_SK",
1370
+ },
1371
+ {
1372
+ label: "Slovenian (Slovenia)",
1373
+ value: "sl_SI",
1374
+ },
1375
+ {
1376
+ label: "Somali (Djibouti)",
1377
+ value: "so_DJ",
1378
+ },
1379
+ {
1380
+ label: "Somali (Somalia)",
1381
+ value: "so_SO",
1382
+ },
1383
+ {
1384
+ label: "Spanish (Argentina)",
1385
+ value: "es_AR",
1386
+ },
1387
+ {
1388
+ label: "Spanish (Bolivia)",
1389
+ value: "es_BO",
1390
+ },
1391
+ {
1392
+ label: "Spanish (Chile)",
1393
+ value: "es_CL",
1394
+ },
1395
+ {
1396
+ label: "Spanish (Colombia)",
1397
+ value: "es_CO",
1398
+ },
1399
+ {
1400
+ label: "Spanish (Costa Rica)",
1401
+ value: "es_CR",
1402
+ },
1403
+ {
1404
+ label: "Spanish (Dominican Republic)",
1405
+ value: "es_DO",
1406
+ },
1407
+ {
1408
+ label: "Spanish (Ecuador)",
1409
+ value: "es_EC",
1410
+ },
1411
+ {
1412
+ label: "Spanish (El Salvador)",
1413
+ value: "es_SV",
1414
+ },
1415
+ {
1416
+ label: "Spanish (Guatemala)",
1417
+ value: "es_GT",
1418
+ },
1419
+ {
1420
+ label: "Spanish (Honduras)",
1421
+ value: "es_HN",
1422
+ },
1423
+ {
1424
+ label: "Spanish (Mexico)",
1425
+ value: "es_MX",
1426
+ },
1427
+ {
1428
+ label: "Spanish (Nicaragua)",
1429
+ value: "es_NI",
1430
+ },
1431
+ {
1432
+ label: "Spanish (Panama)",
1433
+ value: "es_PA",
1434
+ },
1435
+ {
1436
+ label: "Spanish (Paraguay)",
1437
+ value: "es_PY",
1438
+ },
1439
+ {
1440
+ label: "Spanish (Peru)",
1441
+ value: "es_PE",
1442
+ },
1443
+ {
1444
+ label: "Spanish (Puerto Rico)",
1445
+ value: "es_PR",
1446
+ },
1447
+ {
1448
+ label: "Spanish (Spain)",
1449
+ value: "es_ES",
1450
+ },
1451
+ {
1452
+ label: "Spanish (United States)",
1453
+ value: "es_US",
1454
+ },
1455
+ {
1456
+ label: "Spanish (Uruguay)",
1457
+ value: "es_UY",
1458
+ },
1459
+ {
1460
+ label: "Spanish (Venezuela)",
1461
+ value: "es_VE",
1462
+ },
1463
+ {
1464
+ label: "Swahili (Kenya)",
1465
+ value: "sw_KE",
1466
+ },
1467
+ {
1468
+ label: "Swedish (Sweden)",
1469
+ value: "sv_SE",
1470
+ },
1471
+ {
1472
+ label: "Tagalog (Philippines)",
1473
+ value: "tl_PH",
1474
+ },
1475
+ {
1476
+ label: "Tajik (Tajikistan)",
1477
+ value: "tg_TJ",
1478
+ },
1479
+ {
1480
+ label: "Tamil (India)",
1481
+ value: "ta_IN",
1482
+ },
1483
+ {
1484
+ label: "Tamil (Sri Lanka)",
1485
+ value: "ta_LK",
1486
+ },
1487
+ {
1488
+ label: "Telugu (India)",
1489
+ value: "te_IN",
1490
+ },
1491
+ {
1492
+ label: "Te reo (New Zealand)",
1493
+ value: "mi_NZ",
1494
+ },
1495
+ {
1496
+ label: "Thai (Thailand)",
1497
+ value: "th_TH",
1498
+ },
1499
+ {
1500
+ label: "Tigrinya (Ethiopia)",
1501
+ value: "ti_ET",
1502
+ },
1503
+ {
1504
+ label: "Turkish (Türkiye)",
1505
+ value: "tr_TR",
1506
+ },
1507
+ {
1508
+ label: "Ukrainian (Ukraine)",
1509
+ value: "uk_UA",
1510
+ },
1511
+ {
1512
+ label: "Urdu (Pakistan)",
1513
+ value: "ur_PK",
1514
+ },
1515
+ {
1516
+ label: "Uzbek (Latin, Uzbekistan)",
1517
+ value: "uz_LATN_UZ",
1518
+ },
1519
+ {
1520
+ label: "Vietnamese (Vietnam)",
1521
+ value: "vi_VN",
1522
+ },
1523
+ {
1524
+ label: "Welsh (United Kingdom)",
1525
+ value: "cy_GB",
1526
+ },
1527
+ {
1528
+ label: "Xhosa (South Africa)",
1529
+ value: "xh_ZA",
1530
+ },
1531
+ {
1532
+ label: "Yoruba (Benin)",
1533
+ value: "yo_BJ",
1534
+ },
1535
+ {
1536
+ label: "Zulu (South Africa)",
1537
+ value: "zu_ZA",
1538
+ },
1539
+ ];