placementt-core 1.400.596 → 1.400.597

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.
@@ -2216,7 +2216,7 @@ export type Leads = {
2216
2216
  dateAdded?: string;
2217
2217
  addedBy: string;
2218
2218
  assignee: string;
2219
- personalNotes: string;
2220
- generalNotes: string;
2219
+ personalNotes: Descendant[];
2220
+ generalNotes: Descendant[];
2221
2221
  };
2222
2222
  export {};
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.596",
5
+ "version": "1.400.597",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2179,6 +2179,6 @@ export type Leads = {
2179
2179
  dateAdded?: string,
2180
2180
  addedBy: string,
2181
2181
  assignee: string,
2182
- personalNotes: string,
2183
- generalNotes: string,
2182
+ personalNotes: Descendant[],
2183
+ generalNotes: Descendant[],
2184
2184
  }