placementt-core 1.400.417 → 1.400.418
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
|
@@ -1962,6 +1962,7 @@ export type EmailInteraction = {
|
|
|
1962
1962
|
};
|
|
1963
1963
|
topInteraction: "invalid_email" | "hard_bounce" | "soft_bounce" | "blocked" | "error" | "deferred" | "unsubscribed" | "click" | "unique_opened" | "delivered" | "request" | "sent";
|
|
1964
1964
|
body: EmailContentObject;
|
|
1965
|
+
templateId?: string;
|
|
1965
1966
|
interactions?: string[];
|
|
1966
1967
|
reminderNumber?: number;
|
|
1967
1968
|
sendReminders?: boolean;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1880,6 +1880,7 @@ export type EmailInteraction = {
|
|
|
1880
1880
|
}
|
|
1881
1881
|
topInteraction: "invalid_email"|"hard_bounce"|"soft_bounce"|"blocked"|"error"|"deferred"|"unsubscribed"|"click"|"unique_opened"|"delivered"|"request"|"sent",
|
|
1882
1882
|
body: EmailContentObject,
|
|
1883
|
+
templateId?: string,
|
|
1883
1884
|
interactions?: string[],
|
|
1884
1885
|
// Email reminders values
|
|
1885
1886
|
reminderNumber?: number, // Which of the reminders is this?
|