@cakemail-org/ui-components-v2 2.2.109 → 2.2.111
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Stoppable, UsesConcurrency } from "@supercharge/promise-pool";
|
|
2
2
|
import { Dispatch, RefObject, SetStateAction } from "react";
|
|
3
|
-
import { TCampaignReport, TListModel, TListReport, TUserModel } from "../models";
|
|
3
|
+
import { ETrackedEventType, TCampaignReport, TListModel, TListReport, TUserModel } from "../models";
|
|
4
4
|
import { TSenderModel } from "../models/sender";
|
|
5
5
|
import { TListTemplateModel, TTemplateModel } from "../models/templates";
|
|
6
6
|
import { TNumStr } from "./generic";
|
|
@@ -37,7 +37,7 @@ export declare enum EPartialInfoPool {
|
|
|
37
37
|
"partialPageEventSummaries" = "partialPageEventSummaries",
|
|
38
38
|
"partialPopupEventSummaries" = "partialPopupEventSummaries"
|
|
39
39
|
}
|
|
40
|
-
export type TPromisePoolPartialEventSummary = Partial<Record<
|
|
40
|
+
export type TPromisePoolPartialEventSummary = Partial<Record<ETrackedEventType, number>>;
|
|
41
41
|
export type TPromisePoolPartialUser = Pick<TUserModel, "id" | "email" | "status" | "last_activity_on" | "first_name" | "last_name" | "language" | "timezone"> | undefined;
|
|
42
42
|
export type TPromisePoolPartialSender = Pick<TSenderModel, "email" | "name" | "confirmed"> | undefined;
|
|
43
43
|
export type TPromisePoolPartialTemplates = Pick<TTemplateModel | TListTemplateModel, "name" | "thumbnail_url" | "description"> | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Stoppable, UsesConcurrency } from "@supercharge/promise-pool";
|
|
2
2
|
import { Dispatch, RefObject, SetStateAction } from "react";
|
|
3
|
-
import { TCampaignReport, TListModel, TListReport, TUserModel } from "../models";
|
|
3
|
+
import { ETrackedEventType, TCampaignReport, TListModel, TListReport, TUserModel } from "../models";
|
|
4
4
|
import { TSenderModel } from "../models/sender";
|
|
5
5
|
import { TListTemplateModel, TTemplateModel } from "../models/templates";
|
|
6
6
|
import { TNumStr } from "./generic";
|
|
@@ -37,7 +37,7 @@ export declare enum EPartialInfoPool {
|
|
|
37
37
|
"partialPageEventSummaries" = "partialPageEventSummaries",
|
|
38
38
|
"partialPopupEventSummaries" = "partialPopupEventSummaries"
|
|
39
39
|
}
|
|
40
|
-
export type TPromisePoolPartialEventSummary = Partial<Record<
|
|
40
|
+
export type TPromisePoolPartialEventSummary = Partial<Record<ETrackedEventType, number>>;
|
|
41
41
|
export type TPromisePoolPartialUser = Pick<TUserModel, "id" | "email" | "status" | "last_activity_on" | "first_name" | "last_name" | "language" | "timezone"> | undefined;
|
|
42
42
|
export type TPromisePoolPartialSender = Pick<TSenderModel, "email" | "name" | "confirmed"> | undefined;
|
|
43
43
|
export type TPromisePoolPartialTemplates = Pick<TTemplateModel | TListTemplateModel, "name" | "thumbnail_url" | "description"> | undefined;
|