Release govoplan-campaign v0.1.28: stabilize saving, review and delivery recovery
Module Package Release / publish-packages (push) Successful in 12s
Module Package Release / publish-packages (push) Successful in 12s
This commit is contained in:
@@ -8,6 +8,8 @@ export const DEFAULT_REPORT_GRID_SORT = { columnId: "number", direction: "asc" a
|
||||
export type ReportGridShortcutId =
|
||||
| "all"
|
||||
| "smtp_accepted"
|
||||
| "smtp_active"
|
||||
| "smtp_queued"
|
||||
| "postbox_accepted"
|
||||
| "print_accepted"
|
||||
| "failed"
|
||||
@@ -17,11 +19,16 @@ export type ReportGridShortcutId =
|
||||
| "cancelled"
|
||||
| "imap_appended"
|
||||
| "imap_failed"
|
||||
| "imap_pending"
|
||||
| "imap_active"
|
||||
| "imap_unknown"
|
||||
| "imap_skipped";
|
||||
|
||||
const REPORT_GRID_SHORTCUT_FILTERS: Record<ReportGridShortcutId, Record<string, string>> = {
|
||||
all: {},
|
||||
smtp_accepted: { send: listFilter(["smtp_accepted", "sent"]) },
|
||||
smtp_active: { send: listFilter(["claimed", "sending"]) },
|
||||
smtp_queued: { send: listFilter(["queued"]) },
|
||||
postbox_accepted: { send: listFilter(["postbox_accepted"]) },
|
||||
print_accepted: { send: listFilter(["print_accepted"]) },
|
||||
failed: { send: listFilter(["failed_temporary", "failed_permanent"]) },
|
||||
@@ -31,6 +38,9 @@ const REPORT_GRID_SHORTCUT_FILTERS: Record<ReportGridShortcutId, Record<string,
|
||||
cancelled: { send: listFilter(["cancelled"]) },
|
||||
imap_appended: { imap: listFilter(["appended"]) },
|
||||
imap_failed: { imap: listFilter(["failed"]) },
|
||||
imap_pending: { imap: listFilter(["pending"]) },
|
||||
imap_active: { imap: listFilter(["appending"]) },
|
||||
imap_unknown: { imap: listFilter(["outcome_unknown"]) },
|
||||
imap_skipped: { imap: listFilter(["skipped"]) }
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user