@cakemail-org/ui-components-v2 2.1.25 → 2.1.26

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
@@ -16930,7 +16930,7 @@ var CampaignModel = /** @class */ (function (_super) {
16930
16930
  opens: true
16931
16931
  };
16932
16932
  _this.delivery_finished_on = params.delivery_finished_on || 0;
16933
- _this.reply_to_email = params.reply_to_email || "";
16933
+ _this.reply_to_email = params.reply_to_email || undefined;
16934
16934
  _this.content = params.content || {};
16935
16935
  _this.heatmap_link = params.heatmap_link || "";
16936
16936
  return _this;
@@ -64,7 +64,7 @@ export declare class ListCampaignModel {
64
64
  export declare class CampaignModel extends ListCampaignModel {
65
65
  tracking: TCampaignTracking;
66
66
  delivery_finished_on: number;
67
- reply_to_email: string;
67
+ reply_to_email?: string;
68
68
  content: TCampaignContent;
69
69
  heatmap_link: string;
70
70
  constructor(params: Partial<TCampaignModel>);
package/dist/esm/index.js CHANGED
@@ -16910,7 +16910,7 @@ var CampaignModel = /** @class */ (function (_super) {
16910
16910
  opens: true
16911
16911
  };
16912
16912
  _this.delivery_finished_on = params.delivery_finished_on || 0;
16913
- _this.reply_to_email = params.reply_to_email || "";
16913
+ _this.reply_to_email = params.reply_to_email || undefined;
16914
16914
  _this.content = params.content || {};
16915
16915
  _this.heatmap_link = params.heatmap_link || "";
16916
16916
  return _this;
@@ -64,7 +64,7 @@ export declare class ListCampaignModel {
64
64
  export declare class CampaignModel extends ListCampaignModel {
65
65
  tracking: TCampaignTracking;
66
66
  delivery_finished_on: number;
67
- reply_to_email: string;
67
+ reply_to_email?: string;
68
68
  content: TCampaignContent;
69
69
  heatmap_link: string;
70
70
  constructor(params: Partial<TCampaignModel>);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cakemail-org/ui-components-v2",
3
- "version": "2.1.25",
3
+ "version": "2.1.26",
4
4
  "description": "ui library kit made with material UI",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",