-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenums.json
More file actions
1913 lines (1913 loc) · 63.2 KB
/
enums.json
File metadata and controls
1913 lines (1913 loc) · 63.2 KB
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"ArchivalMode": {
"disabled": {
"description": "This email is not visible in the archive.",
"name": "Disabled",
"variant": "info"
},
"enabled": {
"description": "This email is visible in the archive to everyone.",
"name": "Enabled",
"variant": "info"
},
"enabled_for_paid_subscribers": {
"description": "This email is visible in the archive to paid subscribers only.",
"name": "Enabled for paid subscribers",
"variant": "info"
},
"enabled_for_subscribers": {
"description": "This email is visible in the archive to subscribers only.",
"name": "Enabled for subscribers",
"variant": "info"
}
},
"AutomationActionType": {
"add_metadata": {
"description": "Add metadata to a subscriber.",
"name": "Apply metadata",
"variant": "info"
},
"add_tags": {
"description": "Add tags to a subscriber.",
"name": "Add tags",
"variant": "info"
},
"change_email_address": {
"description": "Change the email address of a subscriber.",
"name": "Change email address",
"variant": "info"
},
"create_arena_post": {
"description": "Posts a block to a specific Arena channel. See our [Are.na integration docs](https://docs.buttondown.com/arena) for more details.",
"name": "Create Arena post",
"variant": "info"
},
"create_bluesky_post": {
"description": "Create a Bluesky post. See our [Bluesky integration docs](https://docs.buttondown.com/bsky) for more details.",
"name": "Create Bluesky post",
"variant": "info"
},
"create_export": {
"description": "Create an export.",
"name": "Create export",
"variant": "info"
},
"create_gift_subscriber": {
"description": "Create a gift subscriber based on metadata from the triggering event.",
"name": "Create gift subscriber",
"variant": "info"
},
"create_linkedin_post": {
"description": "Create a LinkedIn post. See our [LinkedIn integration docs](https://docs.buttondown.com/linkedin) for more details.",
"name": "Create LinkedIn post",
"variant": "info"
},
"create_mastodon_post": {
"description": "Create a Mastodon post. See our [Mastodon integration docs](https://docs.buttondown.com/mastodon) for more details.",
"name": "Create Mastodon post",
"variant": "info"
},
"create_subscriber": {
"description": "Create a new subscriber.",
"name": "Create subscriber",
"variant": "info"
},
"create_tumblr_post": {
"description": "Create a Tumblr post. See our [Tumblr integration docs](https://docs.buttondown.com/tumblr) for more details.",
"name": "Create Tumblr post",
"variant": "info"
},
"create_twitter_post": {
"description": "Create a Twitter post. See our [Twitter integration docs](https://docs.buttondown.com/twitter) for more details.",
"name": "Create Twitter post",
"variant": "info"
},
"forward_reply": {
"description": "Forward the reply to a given recipient.",
"name": "Forward reply",
"variant": "info"
},
"gift_premium_subscription": {
"description": "Gift a premium subscription to a subscriber.",
"name": "Gift premium subscription",
"variant": "info"
},
"remove_tags": {
"description": "Remove tags from a subscriber.",
"name": "Remove tags",
"variant": "info"
},
"send_discord_invitation": {
"description": "Send a Discord invitation to a subscriber.",
"name": "Send Discord invitation",
"variant": "info"
},
"send_email": {
"description": "Send an email to a subscriber.",
"name": "Send email",
"variant": "info"
},
"send_github_invitation": {
"description": "Send a GitHub invitation to a subscriber.",
"name": "Send GitHub invitation",
"variant": "info"
},
"send_notification": {
"description": "Send a notification to the newsletter author.",
"name": "Send notification",
"variant": "info"
},
"send_post_request": {
"description": "Send a POST request to a specified URL.",
"name": "Send POST request",
"variant": "info"
},
"send_confirmation_reminder": {
"description": "Send a confirmation reminder to a subscriber.",
"name": "Send confirmation reminder",
"variant": "info"
},
"shopify_create_customer": {
"description": "Create a new customer in your Shopify store from a newsletter subscriber.",
"name": "Create Shopify customer",
"variant": "info"
},
"shopify_resubscribe": {
"description": "Resubscribe a subscriber to your Shopify store marketing emails.",
"name": "Resubscribe to Shopify",
"variant": "info"
},
"shopify_set_tags": {
"description": "Set tags for a subscriber in your Shopify store.",
"name": "Set Shopify tags",
"variant": "info"
},
"shopify_unsubscribe": {
"description": "Unsubscribe a subscriber from your Shopify store.",
"name": "Unsubscribe from Shopify",
"variant": "info"
},
"ungift_premium_subscription": {
"description": "Remove a gifted premium subscription from a subscriber.",
"name": "Ungift premium subscription",
"variant": "info"
},
"unsubscribe_subscriber": {
"description": "Unsubscribe a subscriber from your newsletter.",
"name": "Unsubscribe from Buttondown",
"variant": "info"
},
"update_email_type": {
"description": "Update the visibility of an email.",
"name": "Update email visibility",
"variant": "info"
}
},
"AccessLevel": {
"none": {
"description": "No access to this functionality.",
"name": "None",
"variant": "info"
},
"read": {
"description": "Read-only access to this functionality.",
"name": "Read",
"variant": "info"
},
"write": {
"description": "Full read and write access to this functionality.",
"name": "Write",
"variant": "success"
}
},
"AutomationStatus": {
"active": {
"description": "Active.",
"name": "Active",
"variant": "info"
},
"inactive": {
"description": "Inactive.",
"name": "Inactive",
"variant": "warning"
}
},
"BulkActionStatus": {
"failed": {
"description": "The bulk action was unable to be completed. Buttondown is looking into it.",
"name": "Error",
"variant": "error"
},
"in_progress": {
"description": "The bulk action is currently being processed.",
"name": "In progress",
"variant": "info"
},
"not_started": {
"description": "The bulk action has not yet started.",
"name": "Not started",
"variant": "info"
},
"processed": {
"description": "The bulk action has completed.",
"name": "Success",
"variant": "success"
}
},
"BulkActionType": {
"add_notes": {
"description": "Add notes to multiple subscribers in bulk.",
"name": "Add notes",
"variant": "info"
},
"apply_metadata": {
"description": "This action requires two additional parameters within `metadata`: `action` (which can be either `add`, `set`, or `remove`), and `metadata` (the value of the metadata which you'd like to either add or remove to the list of subscribers).",
"name": "Apply metadata (to subscribers)",
"variant": "info"
},
"apply_tags": {
"description": "This action requires two additional parameters within `metadata`: `tag_id` (the ID of the tag which you'd like to either add or remove to the list of subscribers) and `action` (which can be either `add` or `remove`).",
"name": "Apply tags",
"variant": "info"
},
"ban_subscribers": {
"description": "Ban subscribers from your newsletter.",
"name": "Ban subscribers",
"variant": "info"
},
"cancel_stripe_subscriptions": {
"description": "Cancel the Stripe subscriptions for multiple subscribers in bulk.",
"name": "Cancel Stripe subscriptions",
"variant": "info"
},
"change_tags_colors": {
"description": "Change the color of multiple tags in bulk.",
"name": "Change tags colors",
"variant": "info"
},
"delete_comments": {
"description": "Delete multiple comments in bulk.",
"name": "Delete comments",
"variant": "info"
},
"delete_emails": {
"description": "Delete multiple emails in bulk.",
"name": "Delete emails",
"variant": "info"
},
"delete_inbox_items": {
"description": "Delete multiple inbox items in bulk.",
"name": "Delete inbox items",
"variant": "info"
},
"delete_subscribers": {
"description": "Delete multiple subscribers in bulk.",
"name": "Delete subscribers",
"variant": "info"
},
"delete_survey_responses": {
"description": "Delete multiple survey responses in bulk.",
"name": "Delete survey responses",
"variant": "info"
},
"delete_surveys": {
"description": "Delete multiple surveys in bulk.",
"name": "Delete surveys",
"variant": "info"
},
"delete_tags": {
"description": "Delete multiple tags in bulk.",
"name": "Delete tags",
"variant": "info"
},
"gift_subscribers": {
"description": "Gift premium subscriptions to multiple subscribers in bulk.",
"name": "Gift subscribers",
"variant": "info"
},
"mark_comments_as_active": {
"description": "Mark multiple comments as active.",
"name": "Mark comments as active",
"variant": "info"
},
"mark_comments_as_spammy": {
"description": "Mark multiple comments as spam.",
"name": "Mark comments as spammy",
"variant": "info"
},
"mark_inbox_items_read": {
"description": "Mark multiple inbox items as read.",
"name": "Mark inbox items as read",
"variant": "info"
},
"mark_subscribers_as_not_spammy": {
"description": "Restore the status of multiple subscribers. Their exact type will depend on their history with your newsletter, but in general Buttondown will do the 'right' thing (e.g. restoring their premium subscription if they had one.)",
"name": "Mark subscribers as not spammy",
"variant": "info"
},
"modify_stripe_subscriptions": {
"description": "Modify the Stripe subscriptions for multiple subscribers in bulk.",
"name": "Modify Stripe subscriptions",
"variant": "info"
},
"pause_stripe_subscriptions": {
"description": "Pause or unpause the Stripe subscriptions for multiple subscribers in bulk.",
"name": "Pause Stripe subscriptions",
"variant": "info"
},
"reactivate_subscribers": {
"description": "Reactivate multiple subscribers in bulk.",
"name": "Reactivate subscribers",
"variant": "info"
},
"rename_metadata": {
"description": "Rename multiple metadata fields in bulk. This action requires two additional parameters within `metadata`: `rename_mapping` field and an `ids` field (either a list of specific subscriber IDs for whom you want to rename metadata, or `all`).",
"name": "Rename metadata",
"variant": "info"
},
"replay_events": {
"description": "Replay multiple events in bulk.",
"name": "Replay events",
"variant": "info"
},
"resubscribe_subscribers": {
"description": "Resubscribe multiple unsubscribed subscribers in bulk.",
"name": "Resubscribe subscribers",
"variant": "info"
},
"send_emails": {
"description": "This action requires one additional parameter within `metadata`: `email_id` (the ID of the email which you'd like to send).",
"name": "Send emails",
"variant": "info"
},
"send_reminders": {
"description": "Send reminders to multiple subscribers in bulk.",
"name": "Send reminders",
"variant": "info"
},
"unban_subscribers": {
"description": "Unban multiple subscribers in bulk.",
"name": "Unban subscribers",
"variant": "info"
},
"ungift_subscribers": {
"description": "Remove gifted premium subscriptions from multiple subscribers in bulk.",
"name": "Ungift subscribers",
"variant": "info"
},
"unsubscribe_subscribers": {
"description": "Unsubscribe multiple subscribers in bulk.",
"name": "Unsubscribe subscribers",
"variant": "info"
},
"update_archival_modes": {
"description": "Update the archival modes for multiple emails in bulk.",
"name": "Update archival modes",
"variant": "info"
},
"update_commenting_modes": {
"description": "Update the commenting modes for multiple emails in bulk.",
"name": "Update commenting modes",
"variant": "info"
},
"update_email_types": {
"description": "Update the email types for multiple emails in bulk.",
"name": "Update email types",
"variant": "info"
},
"update_survey_statuses": {
"description": "Update the status types for multiple surveys in bulk.",
"name": "Update status types",
"variant": "info"
}
},
"CreateExportErrorCode": {
"collection_empty_invalid": {
"description": "You must pass in at least one collection to export.",
"name": "No collections passed in",
"variant": "error"
},
"columns_empty_invalid": {
"description": "You must pass in at least one column to export; otherwise, omit the parameter entirely.",
"name": "No columns passed in",
"variant": "error"
},
"columns_invalid": {
"description": "You passed in at least one column that is not valid for the collection you're exporting.",
"name": "Invalid columns passed in",
"variant": "error"
}
},
"CreateNewsletterErrorCode": {
"username_already_exists": {
"description": "A newsletter already exists with that username.",
"name": "Username already exists",
"variant": "error"
},
"username_malformed": {
"description": "The username is malformed.",
"name": "Username malformed",
"variant": "error"
}
},
"CommentStatus": {
"active": {
"description": "The comment has been approved and is visible.",
"name": "Active",
"variant": "success"
},
"pending": {
"description": "The comment is awaiting moderation.",
"name": "Pending",
"variant": "info"
},
"spammy": {
"description": "The comment has been marked as spam.",
"name": "Spam",
"variant": "error"
}
},
"EmailCommentingMode": {
"disabled": {
"description": "Commenting is disabled for this email.",
"name": "Disabled",
"variant": "info"
},
"enabled": {
"description": "Commenting is enabled for this email.",
"name": "Enabled",
"variant": "info"
},
"enabled_for_paid_subscribers": {
"description": "Commenting is enabled for paid subscribers only.",
"name": "Enabled for paid subscribers",
"variant": "info"
}
},
"EmailCreationErrorCode": {
"body_contains_frontmatter": {
"description": "The email body starts with YAML frontmatter (a `---` delimiter followed by key-value pairs). This is almost always a sign of a bug in your integration rather than intentional email content.",
"name": "Body contains frontmatter",
"variant": "error"
},
"body_invalid": {
"description": "The email body provided is invalid or cannot be parsed.",
"name": "Body invalid",
"variant": "error"
},
"canonical_url_invalid": {
"description": "The canonical URL provided is not a valid URL.",
"name": "Canonical URL invalid",
"variant": "error"
},
"email_duplicate": {
"description": "An email with the same identifiers already exists.",
"name": "Duplicate email",
"variant": "error"
},
"email_invalid": {
"description": "The email is invalid.",
"name": "Invalid email",
"variant": "error"
},
"publish_date_invalid": {
"description": "The publish date provided is not valid or is in an incorrect format.",
"name": "Publish date invalid",
"variant": "error"
},
"publish_date_missing": {
"description": "A publish date is required but was not provided.",
"name": "Publish date missing",
"variant": "error"
},
"sending_requires_confirmation": {
"description": "Creating an email with status 'about_to_send' on API version 2026-04-01 or later requires the X-Buttondown-Live-Dangerously header on first use per API key.",
"name": "Sending requires confirmation",
"variant": "error"
},
"slug_invalid": {
"description": "The slug provided is invalid or already in use.",
"name": "Slug invalid",
"variant": "error"
},
"status_invalid": {
"description": "The status provided is not valid.",
"name": "Status invalid",
"variant": "error"
},
"subject_invalid": {
"description": "The subject provided is invalid or missing.",
"name": "Invalid subject",
"variant": "error"
},
"tag_invalid": {
"description": "The tag provided is invalid or does not exist.",
"name": "Invalid tag",
"variant": "error"
}
},
"EmailListErrorCode": {
"creation_date_invalid": {
"description": "The creation date provided is not valid or is in an incorrect format.",
"name": "Creation date invalid",
"variant": "error"
},
"publish_date_invalid": {
"description": "The publish date provided is not valid or is in an incorrect format.",
"name": "Publish date invalid",
"variant": "error"
}
},
"EmailSource": {
"api": {
"description": "This email was created via the API.",
"name": "API",
"variant": "info"
},
"app": {
"description": "This email was created via the Buttondown web app.",
"name": "App",
"variant": "info"
},
"external_feed": {
"description": "This email was created by an external RSS feed.",
"name": "External feed",
"variant": "info"
},
"import": {
"description": "This email was imported from another service.",
"name": "Import",
"variant": "info"
}
},
"EmailStatus": {
"about_to_send": {
"description": "This email has been queued to send out to subscribers, and will be sent automatically within a few minutes.\n\nIf you're seeing that an email you just sent out is 'stuck' here, worry not — Buttondown sometimes takes a little bit longer to send out emails to ensure deliverability, but once it's marked as 'about to send' it will get sent out.",
"name": "About to send",
"variant": "info"
},
"deleted": {
"description": "This email has been deleted, and is no longer visible in your web archives.",
"name": "Deleted",
"variant": "warning"
},
"draft": {
"description": "Draft emails are only visible to you and are not sent out to subscribers.",
"name": "Draft",
"variant": "info"
},
"errored": {
"description": "This email has encountered an error while sending out to subscribers, and is not visible in your web archives.",
"name": "Errored",
"variant": "error"
},
"imported": {
"description": "This email was imported from another service, and is visible in your web archives if enabled.",
"name": "Imported",
"variant": "info"
},
"in_flight": {
"description": "This email is currently being sent out to subscribers, and is visible in your web archives if enabled.\n\nSome emails, especially those with large subscriber lists, may take a while to send out — Buttondown sends emails out in batches to ensure deliverability, so if you're seeing an email 'stuck' here, it's because our systems have detected that that's the optimal way to reach your subscribers.",
"name": "In flight",
"variant": "info"
},
"managed_by_rss": {
"description": "This email was created by an external feed, and has not yet been finalized and sent out by Buttondown.",
"name": "Managed by RSS",
"variant": "info"
},
"paused": {
"description": "This email has been paused, and is not visible in your web archives.",
"name": "Paused",
"variant": "warning"
},
"resending": {
"description": "This email is in the process of automatically being resent to subscribers by Buttondown's systems in order to make sure all subscribers have received it.",
"name": "Resending",
"variant": "warning"
},
"scheduled": {
"description": "This email has been scheduled to send out to subscribers at a specific time. This specific time is available on the email as its `publish_date`.",
"name": "Scheduled",
"variant": "info"
},
"sent": {
"description": "This email has been sent out to subscribers, and is visible in your web archives if enabled.",
"name": "Sent",
"variant": "success"
},
"suppressed": {
"description": "This email has been suppressed and is not visible to subscribers.",
"name": "Suppressed",
"variant": "warning"
},
"throttled": {
"description": "This email is in the process of being sent out, but is being intentionally sent slowly to ensure deliverability.",
"name": "Throttled",
"variant": "warning"
},
"transactional": {
"description": "This email is a transactional email used by a core workflow in your newsletter or Automations, and is not visible in your web archives nor sent out to subscribers.",
"name": "Transactional",
"variant": "info"
}
},
"EmailType": {
"archival": {
"description": "Emails that are only available in the archive and not sent to subscribers.",
"name": "Archival",
"variant": "info"
},
"churned": {
"description": "Emails sent specifically to subscribers who were previously premium but have since churned.",
"name": "Churned",
"variant": "info"
},
"free": {
"description": "Free emails are sent out only to subscribers who are not paying for your newsletter (so you can send specific emails to convince them to pay, for instance!)",
"name": "Free",
"variant": "info"
},
"premium": {
"description": "Premium emails are sent out to only paying subscribers (including those with gift subscriptions or on a free trial), and only premium subscribers can view them in online archives.",
"name": "Premium",
"variant": "info"
},
"private": {
"description": "Private emails are sent out to all of your subscribers but are not viewable in your web archives.",
"name": "Private",
"variant": "info"
},
"public": {
"description": "Public emails are sent out to all of your subscribers and are available in your web archives.",
"name": "Public",
"variant": "info"
}
},
"ExportCollection": {
"comments": {
"name": "Comments",
"variant": "info"
},
"conversations": {
"name": "Conversations",
"variant": "info"
},
"emails": {
"name": "Emails",
"variant": "info"
},
"events": {
"name": "Events",
"variant": "info"
},
"images": {
"name": "Images",
"variant": "info"
},
"mentions": {
"name": "Mentions",
"variant": "info"
},
"referrals": {
"name": "Referrals",
"variant": "info"
},
"requests": {
"name": "API Requests",
"variant": "info"
},
"stripe_charges": {
"name": "Stripe Charges",
"variant": "info"
},
"stripe_customers": {
"name": "Stripe Customers",
"variant": "info"
},
"stripe_prices": {
"name": "Stripe Prices",
"variant": "info"
},
"stripe_products": {
"name": "Stripe Products",
"variant": "info"
},
"stripe_subscriptions": {
"name": "Stripe Subscriptions",
"variant": "info"
},
"subscribers": {
"name": "Subscribers",
"variant": "info"
},
"surveys": {
"name": "Surveys",
"variant": "info"
}
},
"ExportFormat": {
"csv": {
"description": "Comma-separated values.",
"name": "CSV",
"variant": "info"
},
"json": {
"description": "JavaScript Object Notation.",
"name": "JSON",
"variant": "info"
}
},
"ExportStatus": {
"error": {
"description": "The export was unable to be completed. Buttondown is looking into it.",
"name": "Error",
"variant": "error"
},
"in_progress": {
"description": "The export is currently being processed.",
"name": "In progress",
"variant": "info"
},
"not_started": {
"description": "The export has not yet started.",
"name": "Not started",
"variant": "info"
},
"ready": {
"description": "The export has completed.",
"name": "Ready",
"variant": "success"
}
},
"ImportSource": {
"bare": {
"description": "A single-column CSV containing only email addresses.",
"name": "Bare",
"variant": "info"
},
"buttondown": {
"description": "A CSV exported from Buttondown.",
"name": "Buttondown",
"variant": "info"
},
"custom": {
"description": "A CSV that requires manual column mapping.",
"name": "Custom",
"variant": "info"
},
"flodesk": {
"description": "A CSV exported from Flodesk.",
"name": "Flodesk",
"variant": "info"
},
"ghost": {
"description": "A CSV exported from Ghost.",
"name": "Ghost",
"variant": "info"
},
"google": {
"description": "A CSV exported from Google.",
"name": "Google",
"variant": "info"
},
"mailchimp": {
"description": "A CSV exported from Mailchimp.",
"name": "Mailchimp",
"variant": "info"
},
"mailerlite": {
"description": "A CSV exported from MailerLite.",
"name": "MailerLite",
"variant": "info"
},
"memberful": {
"description": "A CSV exported from Memberful.",
"name": "Memberful",
"variant": "info"
},
"sender_dot_net": {
"description": "A CSV exported from Sender.net.",
"name": "Sender.net",
"variant": "info"
},
"sendy": {
"description": "A CSV exported from Sendy.",
"name": "Sendy",
"variant": "info"
},
"shopify": {
"description": "A CSV exported from Shopify.",
"name": "Shopify",
"variant": "info"
},
"sparkloop": {
"description": "A CSV exported from SparkLoop.",
"name": "SparkLoop",
"variant": "info"
},
"squarespace": {
"description": "A CSV exported from Squarespace.",
"name": "Squarespace",
"variant": "info"
},
"standard": {
"description": "A CSV with standard column names that was auto-mapped.",
"name": "Standard",
"variant": "info"
},
"substack": {
"description": "A CSV exported from Substack.",
"name": "Substack",
"variant": "info"
},
"tinyletter": {
"description": "A CSV exported from TinyLetter.",
"name": "TinyLetter",
"variant": "info"
}
},
"ImportStatus": {
"failed": {
"description": "The import encountered an error and could not be completed.",
"name": "Failed",
"variant": "error"
},
"in_progress": {
"description": "The import is currently being processed.",
"name": "In progress",
"variant": "info"
},
"not_started": {
"description": "The import has been created but processing has not yet begun.",
"name": "Not started",
"variant": "info"
},
"succeeded": {
"description": "The import completed successfully.",
"name": "Succeeded",
"variant": "success"
},
"validating": {
"description": "The import is being validated before processing.",
"name": "Validating",
"variant": "info"
}
},
"ImportType": {
"subscriber_import": {
"description": "An import of subscribers from a CSV file.",
"name": "Subscriber import",
"variant": "info"
}
},
"ExternalEventType": {
"advertising_slot.inquiry": {
"description": "Whenever a sponsor submits an inquiry for an advertising slot.",
"name": "advertising_slot.inquiry"
},
"advertising_slot.purchased": {
"description": "Whenever an advertising slot in your newsletter is purchased.",
"name": "advertising_slot.purchased"
},
"automation.invoked": {
"description": "Whenever an automation is manually invoked (e.g. by a webhook or API call).",
"name": "automation.invoked"
},
"bigcommerce.customer.created": {
"description": "Whenever a new customer is synced from BigCommerce.",
"name": "bigcommerce.customer.created"
},
"bigcommerce.customer.updated": {
"description": "Whenever a customer's data is updated in BigCommerce.",
"name": "bigcommerce.customer.updated"
},
"bigcommerce.order.created": {
"description": "Whenever a new order is synced from BigCommerce.",
"name": "bigcommerce.order.created"
},
"bigcommerce.order.updated": {
"description": "Whenever an order's data is updated in BigCommerce.",
"name": "bigcommerce.order.updated"
},
"date.day.started": {
"description": "Whenever a new day starts. This event is fired at midnight UTC.",
"name": "date.day.started"
},
"date.month.started": {
"description": "Whenever a new month starts. This event is fired at midnight UTC on the first day of each month.",
"name": "date.month.started"
},
"date.week.started": {
"description": "Whenever a new week starts. This event is fired at midnight UTC on Monday.",
"name": "date.week.started"
},
"date.year.started": {
"description": "Whenever a new year starts. This event is fired at midnight UTC on January 1st.",
"name": "date.year.started"
},
"email.created": {
"description": "Whenever a new email is created and begins delivery. Note that event happens immediately before the emails themselves are sent.",
"name": "email.created"
},
"email.deleted": {
"description": "Whenever an email has been deleted.",
"name": "email.deleted"
},
"email.sent": {
"description": "Whenever an email has finished its delivery. Note that event happens immediately after all emails have been sent, but some email events may not have finished processing.",
"name": "email.sent"
},
"email.status.changed": {
"description": "Whenever an email's status has changed (e.g. from 'draft' to 'sent'.) The `metadata` field will contain the previous and new statii in 'old_value' and 'new_value' respectively.",
"name": "email.status.changed"
},
"email.updated": {
"description": "Whenever an email's content or metadata has been updated.",
"name": "email.updated"
},
"export.completed": {
"description": "Whenever an export is completed.",
"name": "export.completed"
},
"export.created": {
"description": "Whenever an export is created.",
"name": "export.created"
},
"export.failed": {
"description": "Whenever an export fails.",
"name": "export.failed"
},
"external_feed_item.created": {
"description": "Whenever a new item is created in an [RSS feed](https://docs.buttondown.com/rss-to-email).",
"name": "external_feed_item.created"
},
"firewall.blocked": {
"description": "Represents an incoming request that was blocked by the [firewall](https://docs.buttondown.com/firewall).",
"name": "firewall.blocked"
},
"memberful.member.updated": {
"description": "Whenever a member changes their email address in Memberful.",
"name": "memberful.member.updated"
},
"memberful.subscription.created": {
"description": "Whenever a new subscription is created in Memberful.",
"name": "memberful.subscription.created"
},
"memberful.subscription.deleted": {
"description": "Whenever a subscription is deleted in Memberful.",
"name": "memberful.subscription.deleted"
},
"mention.created": {
"description": "Whenever your newsletter is mentioned elsewhere.",
"name": "mention.created"
},
"note.created": {
"description": "Whenever a note is created.",
"name": "note.created"
},
"note.deleted": {
"description": "Whenever a note is deleted.",
"name": "note.deleted"
},
"patreon.member.updated": {
"description": "Whenever a member changes their email address in Patreon.",
"name": "patreon.member.updated"
},
"patreon.membership.created": {
"description": "Whenever a new membership is created in Patreon.",
"name": "patreon.membership.created"
},
"patreon.membership.deleted": {
"description": "Whenever a membership is deleted in Patreon.",
"name": "patreon.membership.deleted"
},
"shopify.customer.created": {
"description": "Whenever a new customer is created in Shopify.",
"name": "shopify.customer.created"
},
"shopify.customer.updated": {
"description": "Whenever a customer changes their email address in Shopify.",
"name": "shopify.customer.updated"
},
"social_mention.created": {
"description": "Whenever your newsletter is mentioned on another website such as Reddit, Twitter, Bluesky, etc.",
"name": "social_mention.created"
},
"stripe.checkout.session.completed": {
"description": "Whenever a Stripe checkout session is completed successfully.",
"name": "stripe.checkout.session.completed"
},