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.
@@ -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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.792",
5
+ "version": "1.400.793",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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
  }