placementt-core 1.300.606 → 1.300.607

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.
@@ -2295,4 +2295,10 @@ export type LeadStageInputs = {
2295
2295
  [key: string]: unknown;
2296
2296
  };
2297
2297
  };
2298
+ export type LeadStageData = {
2299
+ [stageId: string]: {
2300
+ linkedCommId?: string;
2301
+ [key: string]: unknown;
2302
+ };
2303
+ };
2298
2304
  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.607",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2258,6 +2258,12 @@ export type LeadStageInputs = {
2258
2258
  };
2259
2259
  };
2260
2260
 
2261
+ export type LeadStageData = {
2262
+ [stageId: string]: {
2263
+ linkedCommId?: string;
2264
+ [key: string]: unknown;
2265
+ };
2266
+ }
2261
2267
 
2262
2268
 
2263
2269