placementt-core 1.300.113 → 1.300.114
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
|
@@ -1159,6 +1159,7 @@ export type EmailCampaignRecipient = {
|
|
|
1159
1159
|
log: {
|
|
1160
1160
|
[k: string]: string;
|
|
1161
1161
|
};
|
|
1162
|
+
interactions?: string[];
|
|
1162
1163
|
};
|
|
1163
1164
|
export type Reminder = {
|
|
1164
1165
|
collection: "users" | "placements" | "placementListings";
|
|
@@ -1379,6 +1380,7 @@ export type ExternalEventAttendee = {
|
|
|
1379
1380
|
};
|
|
1380
1381
|
topInteraction: "sent" | "bounced" | "delivered" | "opened" | "clicked";
|
|
1381
1382
|
messageId?: string;
|
|
1383
|
+
interactions?: string[];
|
|
1382
1384
|
};
|
|
1383
1385
|
};
|
|
1384
1386
|
initialJobId?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1144,6 +1144,7 @@ export type EmailCampaignRecipient = {
|
|
|
1144
1144
|
log: {
|
|
1145
1145
|
[k: string]: string // dateTimeString : eventType
|
|
1146
1146
|
}
|
|
1147
|
+
interactions?: string[]
|
|
1147
1148
|
}
|
|
1148
1149
|
|
|
1149
1150
|
|
|
@@ -1372,6 +1373,7 @@ export type ExternalEventAttendee = {
|
|
|
1372
1373
|
}
|
|
1373
1374
|
topInteraction: "sent"|"bounced"|"delivered"|"opened"|"clicked",
|
|
1374
1375
|
messageId?: string,
|
|
1376
|
+
interactions?: string[]
|
|
1375
1377
|
}
|
|
1376
1378
|
}
|
|
1377
1379
|
initialJobId?: string,
|