placementt-core 1.400.646 → 1.400.647
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
|
@@ -1295,6 +1295,11 @@ export type EmailCampaign = {
|
|
|
1295
1295
|
schoolId?: string;
|
|
1296
1296
|
type: "employer" | "alumni";
|
|
1297
1297
|
title: string;
|
|
1298
|
+
templateId?: string;
|
|
1299
|
+
recurring?: boolean;
|
|
1300
|
+
recurringFrequency?: "daily" | "monthly" | "fortnightly" | "weekly";
|
|
1301
|
+
recurringStartDate?: string;
|
|
1302
|
+
recurringEndDate?: string;
|
|
1298
1303
|
description?: string;
|
|
1299
1304
|
created: string;
|
|
1300
1305
|
emailTemplateId?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1268,6 +1268,11 @@ export type EmailCampaign = {
|
|
|
1268
1268
|
schoolId?: string,
|
|
1269
1269
|
type: "employer"|"alumni",
|
|
1270
1270
|
title: string,
|
|
1271
|
+
templateId?: string,
|
|
1272
|
+
recurring?: boolean,
|
|
1273
|
+
recurringFrequency?: "daily"|"monthly"|"fortnightly"|"weekly",
|
|
1274
|
+
recurringStartDate?: string,
|
|
1275
|
+
recurringEndDate?: string,
|
|
1271
1276
|
description?: string,
|
|
1272
1277
|
created: string,
|
|
1273
1278
|
emailTemplateId?: string,
|