placementt-core 1.300.616 → 1.300.617
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
|
@@ -2231,7 +2231,7 @@ export type Lead = {
|
|
|
2231
2231
|
stageChanges?: string[];
|
|
2232
2232
|
stageData?: LeadStageData;
|
|
2233
2233
|
};
|
|
2234
|
-
export type CommMeetingType = "default" | "demo" | "onboarding";
|
|
2234
|
+
export type CommMeetingType = "default" | "demo" | "onboarding" | "email";
|
|
2235
2235
|
export type Communication = {
|
|
2236
2236
|
title: string;
|
|
2237
2237
|
date: string;
|
|
@@ -2246,6 +2246,8 @@ export type Communication = {
|
|
|
2246
2246
|
changes?: string[];
|
|
2247
2247
|
completed?: boolean;
|
|
2248
2248
|
completedOn?: string;
|
|
2249
|
+
linkedCommId?: string;
|
|
2250
|
+
parentCommId?: string;
|
|
2249
2251
|
};
|
|
2250
2252
|
export type CommSchemaItem = {
|
|
2251
2253
|
name: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2195,7 +2195,7 @@ export type Lead = {
|
|
|
2195
2195
|
stageData?: LeadStageData;
|
|
2196
2196
|
}
|
|
2197
2197
|
|
|
2198
|
-
export type CommMeetingType = "default" | "demo" | "onboarding";
|
|
2198
|
+
export type CommMeetingType = "default" | "demo" | "onboarding" | "email";
|
|
2199
2199
|
|
|
2200
2200
|
export type Communication = {
|
|
2201
2201
|
title: string,
|
|
@@ -2209,6 +2209,8 @@ export type Communication = {
|
|
|
2209
2209
|
changes?: string[],
|
|
2210
2210
|
completed?: boolean,
|
|
2211
2211
|
completedOn?: string // ISO date
|
|
2212
|
+
linkedCommId?: string,
|
|
2213
|
+
parentCommId?: string,
|
|
2212
2214
|
};
|
|
2213
2215
|
|
|
2214
2216
|
export type CommSchemaItem = {
|