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.
@@ -1865,8 +1865,10 @@ export type YearScoreData = {
1865
1865
  export type EmailInteraction = {
1866
1866
  messageId: string;
1867
1867
  collectionLink: string;
1868
- collectionId: string;
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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.300.331",
5
+ "version": "1.300.334",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1810,8 +1810,10 @@ export type YearScoreData = {
1810
1810
  export type EmailInteraction = {
1811
1811
  messageId: string,
1812
1812
  collectionLink: string,
1813
- collectionId: string,
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
  }