placementt-core 1.400.647 → 1.400.649

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.
@@ -1300,6 +1300,8 @@ export type EmailCampaign = {
1300
1300
  recurringFrequency?: "daily" | "monthly" | "fortnightly" | "weekly";
1301
1301
  recurringStartDate?: string;
1302
1302
  recurringEndDate?: string;
1303
+ recurringIndefinitely?: boolean;
1304
+ recurringParentCampaignId?: string;
1303
1305
  description?: string;
1304
1306
  created: string;
1305
1307
  emailTemplateId?: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.647",
5
+ "version": "1.400.649",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1273,6 +1273,8 @@ export type EmailCampaign = {
1273
1273
  recurringFrequency?: "daily"|"monthly"|"fortnightly"|"weekly",
1274
1274
  recurringStartDate?: string,
1275
1275
  recurringEndDate?: string,
1276
+ recurringIndefinitely?: boolean,
1277
+ recurringParentCampaignId?: string, // Recurring campaigns create separate email campaigns for every email sent. This links to the parent.
1276
1278
  description?: string,
1277
1279
  created: string,
1278
1280
  emailTemplateId?: string,