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.
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -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
package/src/typeDefinitions.ts
CHANGED
|
@@ -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";
|