placementt-core 1.400.263 → 1.400.265
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
|
@@ -1201,6 +1201,7 @@ export type EmailCampaign = {
|
|
|
1201
1201
|
export type EmailCampaignRecipient = {
|
|
1202
1202
|
oId: string;
|
|
1203
1203
|
campaignId?: string;
|
|
1204
|
+
created: string;
|
|
1204
1205
|
contactId: string;
|
|
1205
1206
|
type: "alumni" | "employer";
|
|
1206
1207
|
sent: string;
|
|
@@ -1432,6 +1433,7 @@ export type ExternalEventRequest = {
|
|
|
1432
1433
|
year?: string[];
|
|
1433
1434
|
requestedBy: "employer" | "school";
|
|
1434
1435
|
email?: string;
|
|
1436
|
+
created: string;
|
|
1435
1437
|
consent: boolean;
|
|
1436
1438
|
files?: FileList;
|
|
1437
1439
|
oId: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1187,6 +1187,7 @@ export type EmailCampaign = {
|
|
|
1187
1187
|
export type EmailCampaignRecipient = {
|
|
1188
1188
|
oId: string,
|
|
1189
1189
|
campaignId?: string,
|
|
1190
|
+
created: string,
|
|
1190
1191
|
contactId: string,
|
|
1191
1192
|
type: "alumni"|"employer"
|
|
1192
1193
|
sent: string, // ISO string
|
|
@@ -1414,6 +1415,7 @@ export type ExternalEventRequest = {
|
|
|
1414
1415
|
year?: string[],
|
|
1415
1416
|
requestedBy: "employer"|"school",
|
|
1416
1417
|
email?: string,
|
|
1418
|
+
created: string,
|
|
1417
1419
|
consent: boolean,
|
|
1418
1420
|
files?: FileList,
|
|
1419
1421
|
oId: string,
|