placementt-core 1.300.606 → 1.300.608

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.
@@ -2226,6 +2226,7 @@ export type Lead = {
2226
2226
  };
2227
2227
  };
2228
2228
  stageChanges?: string[];
2229
+ stageData?: LeadStageData;
2229
2230
  };
2230
2231
  export type CommMeetingType = "default" | "demo";
2231
2232
  export type Communication = {
@@ -2295,4 +2296,10 @@ export type LeadStageInputs = {
2295
2296
  [key: string]: unknown;
2296
2297
  };
2297
2298
  };
2299
+ export type LeadStageData = {
2300
+ [stageId: string]: {
2301
+ linkedCommId?: string;
2302
+ [key: string]: unknown;
2303
+ };
2304
+ };
2298
2305
  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.300.606",
5
+ "version": "1.300.608",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2189,6 +2189,7 @@ export type Lead = {
2189
2189
  };
2190
2190
  };
2191
2191
  stageChanges?: string[];
2192
+ stageData?: LeadStageData;
2192
2193
  }
2193
2194
 
2194
2195
  export type CommMeetingType = "default" | "demo";
@@ -2258,6 +2259,12 @@ export type LeadStageInputs = {
2258
2259
  };
2259
2260
  };
2260
2261
 
2262
+ export type LeadStageData = {
2263
+ [stageId: string]: {
2264
+ linkedCommId?: string;
2265
+ [key: string]: unknown;
2266
+ };
2267
+ }
2261
2268
 
2262
2269
 
2263
2270