placementt-core 1.300.331 → 1.300.334
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
|
@@ -1865,8 +1865,10 @@ export type YearScoreData = {
|
|
|
1865
1865
|
export type EmailInteraction = {
|
|
1866
1866
|
messageId: string;
|
|
1867
1867
|
collectionLink: string;
|
|
1868
|
-
|
|
1868
|
+
collectionItemId: string;
|
|
1869
|
+
recipientId?: string;
|
|
1869
1870
|
sent?: Timestamp;
|
|
1871
|
+
visibleTo: string[];
|
|
1870
1872
|
log: {
|
|
1871
1873
|
[k: string]: string;
|
|
1872
1874
|
};
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1810,8 +1810,10 @@ export type YearScoreData = {
|
|
|
1810
1810
|
export type EmailInteraction = {
|
|
1811
1811
|
messageId: string,
|
|
1812
1812
|
collectionLink: string,
|
|
1813
|
-
|
|
1813
|
+
collectionItemId: string,
|
|
1814
|
+
recipientId?: string,
|
|
1814
1815
|
sent?: Timestamp,
|
|
1816
|
+
visibleTo: string[],
|
|
1815
1817
|
log: {
|
|
1816
1818
|
[k: string]: string // dateTimeString : eventType
|
|
1817
1819
|
}
|