placementt-core 1.400.603 → 1.400.604

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.
@@ -2219,6 +2219,13 @@ export type Lead = {
2219
2219
  assignee: string;
2220
2220
  personalNotes: Descendant[];
2221
2221
  generalNotes: Descendant[];
2222
+ stage?: string;
2223
+ stageInputs?: {
2224
+ [stageId: string]: {
2225
+ [key: string]: unknown;
2226
+ };
2227
+ };
2228
+ stageChanges?: string[];
2222
2229
  };
2223
2230
  export type CommMeetingType = "default" | "demo";
2224
2231
  export type Communication = {
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.603",
5
+ "version": "1.400.604",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2182,6 +2182,13 @@ export type Lead = {
2182
2182
  assignee: string,
2183
2183
  personalNotes: Descendant[],
2184
2184
  generalNotes: Descendant[],
2185
+ stage?: string;
2186
+ stageInputs?: {
2187
+ [stageId: string]: {
2188
+ [key: string]: unknown;
2189
+ };
2190
+ };
2191
+ stageChanges?: string[];
2185
2192
  }
2186
2193
 
2187
2194
  export type CommMeetingType = "default" | "demo";