placementt-core 1.400.647 → 1.400.648
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
|
@@ -1300,6 +1300,7 @@ export type EmailCampaign = {
|
|
|
1300
1300
|
recurringFrequency?: "daily" | "monthly" | "fortnightly" | "weekly";
|
|
1301
1301
|
recurringStartDate?: string;
|
|
1302
1302
|
recurringEndDate?: string;
|
|
1303
|
+
recurringIndefinitely?: boolean;
|
|
1303
1304
|
description?: string;
|
|
1304
1305
|
created: string;
|
|
1305
1306
|
emailTemplateId?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1273,6 +1273,7 @@ export type EmailCampaign = {
|
|
|
1273
1273
|
recurringFrequency?: "daily"|"monthly"|"fortnightly"|"weekly",
|
|
1274
1274
|
recurringStartDate?: string,
|
|
1275
1275
|
recurringEndDate?: string,
|
|
1276
|
+
recurringIndefinitely?: boolean,
|
|
1276
1277
|
description?: string,
|
|
1277
1278
|
created: string,
|
|
1278
1279
|
emailTemplateId?: string,
|