@cakemail-org/ui-components-v2 2.1.36 → 2.1.37
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,5 +1,5 @@
|
|
|
1
1
|
import { TApiV2LogType, TApiV2LogUserAgent } from "../../types";
|
|
2
|
-
import {
|
|
2
|
+
import { TTask } from "../tasks/types";
|
|
3
3
|
export declare enum ECampaignStatuses {
|
|
4
4
|
"active" = "active",
|
|
5
5
|
"delivering" = "delivering",
|
|
@@ -88,7 +88,7 @@ export type TCampaignLogs = {
|
|
|
88
88
|
clickthru_url: string;
|
|
89
89
|
user_agent: TCampaignUserAgent;
|
|
90
90
|
};
|
|
91
|
-
export interface TCampaignLogsExport extends
|
|
91
|
+
export interface TCampaignLogsExport extends TTask {
|
|
92
92
|
campaign_id: number;
|
|
93
93
|
}
|
|
94
94
|
export type TCampaignLogType = TApiV2LogType;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TApiV2LogType, TApiV2LogUserAgent } from "../../types";
|
|
2
|
-
import {
|
|
2
|
+
import { TTask } from "../tasks/types";
|
|
3
3
|
export declare enum ECampaignStatuses {
|
|
4
4
|
"active" = "active",
|
|
5
5
|
"delivering" = "delivering",
|
|
@@ -88,7 +88,7 @@ export type TCampaignLogs = {
|
|
|
88
88
|
clickthru_url: string;
|
|
89
89
|
user_agent: TCampaignUserAgent;
|
|
90
90
|
};
|
|
91
|
-
export interface TCampaignLogsExport extends
|
|
91
|
+
export interface TCampaignLogsExport extends TTask {
|
|
92
92
|
campaign_id: number;
|
|
93
93
|
}
|
|
94
94
|
export type TCampaignLogType = TApiV2LogType;
|