@cakemail-org/ui-components-v2 2.1.25 → 2.1.27
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.
package/dist/cjs/index.js
CHANGED
|
@@ -16678,6 +16678,8 @@ var ListCampaignModel = /** @class */ (function () {
|
|
|
16678
16678
|
this.suspended = params.suspended || false;
|
|
16679
16679
|
this.web_email_link = params.web_email_link || "";
|
|
16680
16680
|
this.thumbnail_url = params.thumbnail_url || "";
|
|
16681
|
+
this.over_limit = params.over_limit || false;
|
|
16682
|
+
this.under_review = params.under_review || false;
|
|
16681
16683
|
}
|
|
16682
16684
|
ListCampaignModel.prototype.toJson = function () {
|
|
16683
16685
|
return modelToJson(this);
|
|
@@ -16930,7 +16932,7 @@ var CampaignModel = /** @class */ (function (_super) {
|
|
|
16930
16932
|
opens: true
|
|
16931
16933
|
};
|
|
16932
16934
|
_this.delivery_finished_on = params.delivery_finished_on || 0;
|
|
16933
|
-
_this.reply_to_email = params.reply_to_email ||
|
|
16935
|
+
_this.reply_to_email = params.reply_to_email || undefined;
|
|
16934
16936
|
_this.content = params.content || {};
|
|
16935
16937
|
_this.heatmap_link = params.heatmap_link || "";
|
|
16936
16938
|
return _this;
|
|
@@ -19,6 +19,8 @@ export declare class ListCampaignModel {
|
|
|
19
19
|
suspended: boolean;
|
|
20
20
|
web_email_link: string;
|
|
21
21
|
thumbnail_url: string;
|
|
22
|
+
over_limit: boolean;
|
|
23
|
+
under_review: boolean;
|
|
22
24
|
constructor(params: Partial<TListCampaignModel>);
|
|
23
25
|
toJson(): any;
|
|
24
26
|
set<T extends keyof this>(property: T, value: this[T]): void;
|
|
@@ -64,7 +66,7 @@ export declare class ListCampaignModel {
|
|
|
64
66
|
export declare class CampaignModel extends ListCampaignModel {
|
|
65
67
|
tracking: TCampaignTracking;
|
|
66
68
|
delivery_finished_on: number;
|
|
67
|
-
reply_to_email
|
|
69
|
+
reply_to_email?: string;
|
|
68
70
|
content: TCampaignContent;
|
|
69
71
|
heatmap_link: string;
|
|
70
72
|
constructor(params: Partial<TCampaignModel>);
|
|
@@ -27,6 +27,8 @@ export type TListCampaignModel = {
|
|
|
27
27
|
suspended: boolean;
|
|
28
28
|
web_email_link: string;
|
|
29
29
|
thumbnail_url: string;
|
|
30
|
+
over_limit: boolean;
|
|
31
|
+
under_review: boolean;
|
|
30
32
|
};
|
|
31
33
|
export interface TCampaignModel extends TListCampaignModel {
|
|
32
34
|
tracking?: TCampaignTracking;
|
package/dist/esm/index.js
CHANGED
|
@@ -16658,6 +16658,8 @@ var ListCampaignModel = /** @class */ (function () {
|
|
|
16658
16658
|
this.suspended = params.suspended || false;
|
|
16659
16659
|
this.web_email_link = params.web_email_link || "";
|
|
16660
16660
|
this.thumbnail_url = params.thumbnail_url || "";
|
|
16661
|
+
this.over_limit = params.over_limit || false;
|
|
16662
|
+
this.under_review = params.under_review || false;
|
|
16661
16663
|
}
|
|
16662
16664
|
ListCampaignModel.prototype.toJson = function () {
|
|
16663
16665
|
return modelToJson(this);
|
|
@@ -16910,7 +16912,7 @@ var CampaignModel = /** @class */ (function (_super) {
|
|
|
16910
16912
|
opens: true
|
|
16911
16913
|
};
|
|
16912
16914
|
_this.delivery_finished_on = params.delivery_finished_on || 0;
|
|
16913
|
-
_this.reply_to_email = params.reply_to_email ||
|
|
16915
|
+
_this.reply_to_email = params.reply_to_email || undefined;
|
|
16914
16916
|
_this.content = params.content || {};
|
|
16915
16917
|
_this.heatmap_link = params.heatmap_link || "";
|
|
16916
16918
|
return _this;
|
|
@@ -19,6 +19,8 @@ export declare class ListCampaignModel {
|
|
|
19
19
|
suspended: boolean;
|
|
20
20
|
web_email_link: string;
|
|
21
21
|
thumbnail_url: string;
|
|
22
|
+
over_limit: boolean;
|
|
23
|
+
under_review: boolean;
|
|
22
24
|
constructor(params: Partial<TListCampaignModel>);
|
|
23
25
|
toJson(): any;
|
|
24
26
|
set<T extends keyof this>(property: T, value: this[T]): void;
|
|
@@ -64,7 +66,7 @@ export declare class ListCampaignModel {
|
|
|
64
66
|
export declare class CampaignModel extends ListCampaignModel {
|
|
65
67
|
tracking: TCampaignTracking;
|
|
66
68
|
delivery_finished_on: number;
|
|
67
|
-
reply_to_email
|
|
69
|
+
reply_to_email?: string;
|
|
68
70
|
content: TCampaignContent;
|
|
69
71
|
heatmap_link: string;
|
|
70
72
|
constructor(params: Partial<TCampaignModel>);
|
|
@@ -27,6 +27,8 @@ export type TListCampaignModel = {
|
|
|
27
27
|
suspended: boolean;
|
|
28
28
|
web_email_link: string;
|
|
29
29
|
thumbnail_url: string;
|
|
30
|
+
over_limit: boolean;
|
|
31
|
+
under_review: boolean;
|
|
30
32
|
};
|
|
31
33
|
export interface TCampaignModel extends TListCampaignModel {
|
|
32
34
|
tracking?: TCampaignTracking;
|