@cakemail-org/ui-components-v2 2.0.42 → 2.0.43

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.
@@ -35,9 +35,21 @@ export declare enum EEmailSummaryEngagement {
35
35
  "none" = "none",
36
36
  "open_not_click" = "open_not_click"
37
37
  }
38
+ export declare enum EEMailSummaryStatuses {
39
+ "submitted" = "submitted",
40
+ "delivered" = "delivered",
41
+ "queued" = "queued",
42
+ "rejected" = "rejected",
43
+ "error" = "error",
44
+ "bounced" = "bounced",
45
+ "spam" = "spam",
46
+ "unsubscribed" = "unsubscribed",
47
+ "global_unsubscribed" = "global_unsubscribed",
48
+ "other" = "other"
49
+ }
38
50
  export type TGetEmailActivitySummary = {
39
51
  emailId?: string;
40
- engagement?: EEmailSummaryEngagement;
52
+ engagement?: EEMailSummaryStatuses;
41
53
  status?: "submitted" | "delivered" | "queued" | "rejected" | "error" | "bounced" | "spam" | "unsubscribed" | "global_unsubscribed" | "other";
42
54
  isoTime?: boolean;
43
55
  tags?: any;
@@ -1681,7 +1681,7 @@ export default function getMuiTextField(theme: Theme): {
1681
1681
  borderRadius: number;
1682
1682
  borderColor: string;
1683
1683
  legend: {
1684
- [k: string]: unknown;
1684
+ [x: string]: unknown;
1685
1685
  '@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[];
1686
1686
  accentColor?: import("csstype").Property.AccentColor | undefined;
1687
1687
  alignContent?: import("csstype").Property.AlignContent | undefined;