placementt-core 1.400.792 → 1.400.793
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
|
@@ -1410,7 +1410,7 @@ export type EmailCampaignRecipient = {
|
|
|
1410
1410
|
type: "employers" | "alumni" | "schools" | "students" | "parents";
|
|
1411
1411
|
sent: string;
|
|
1412
1412
|
messageId?: string;
|
|
1413
|
-
topInteraction: "invalid_email" | "hard_bounce" | "soft_bounce" | "blocked" | "error" | "deferred" | "unsubscribed" | "click" | "unique_opened" | "delivered" | "request" | "sent";
|
|
1413
|
+
topInteraction: "invalid_email" | "hard_bounce" | "soft_bounce" | "blocked" | "error" | "deferred" | "unsubscribed" | "click" | "unique_opened" | "delivered" | "request" | "sent" | "not_sent";
|
|
1414
1414
|
log: {
|
|
1415
1415
|
[k: string]: string;
|
|
1416
1416
|
};
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1370,7 +1370,7 @@ export type EmailCampaignRecipient = {
|
|
|
1370
1370
|
type: "employers"|"alumni"|"schools"|"students"|"parents",
|
|
1371
1371
|
sent: string, // ISO string
|
|
1372
1372
|
messageId?: string,
|
|
1373
|
-
topInteraction: "invalid_email"|"hard_bounce"|"soft_bounce"|"blocked"|"error"|"deferred"|"unsubscribed"|"click"|"unique_opened"|"delivered"|"request"|"sent",
|
|
1373
|
+
topInteraction: "invalid_email"|"hard_bounce"|"soft_bounce"|"blocked"|"error"|"deferred"|"unsubscribed"|"click"|"unique_opened"|"delivered"|"request"|"sent"|"not_sent",
|
|
1374
1374
|
log: {
|
|
1375
1375
|
[k: string]: string // dateTimeString : eventType
|
|
1376
1376
|
}
|