placementt-core 1.400.653 → 1.400.654
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/lib/typeDefinitions.d.ts
CHANGED
|
@@ -1302,6 +1302,7 @@ export type EmailCampaign = {
|
|
|
1302
1302
|
recurringEndDate?: string;
|
|
1303
1303
|
recurringIndefinitely?: boolean;
|
|
1304
1304
|
recurringParentCampaignId?: string;
|
|
1305
|
+
sendRecurringNow?: boolean;
|
|
1305
1306
|
description?: string;
|
|
1306
1307
|
created: string;
|
|
1307
1308
|
emailTemplateId?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1275,6 +1275,7 @@ export type EmailCampaign = {
|
|
|
1275
1275
|
recurringEndDate?: string,
|
|
1276
1276
|
recurringIndefinitely?: boolean,
|
|
1277
1277
|
recurringParentCampaignId?: string, // Recurring campaigns create separate email campaigns for every email sent. This links to the parent.
|
|
1278
|
+
sendRecurringNow?: boolean,
|
|
1278
1279
|
description?: string,
|
|
1279
1280
|
created: string,
|
|
1280
1281
|
emailTemplateId?: string,
|