placementt-core 1.300.599 → 1.300.600
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
|
@@ -2221,6 +2221,7 @@ export type Lead = {
|
|
|
2221
2221
|
};
|
|
2222
2222
|
export type CommMeetingType = "default" | "demo";
|
|
2223
2223
|
export type Communication = {
|
|
2224
|
+
title: string;
|
|
2224
2225
|
date: string;
|
|
2225
2226
|
contactedBy: string;
|
|
2226
2227
|
contactMethod: "email" | "phone" | "in-person" | "other";
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2186,6 +2186,7 @@ export type Lead = {
|
|
|
2186
2186
|
export type CommMeetingType = "default" | "demo";
|
|
2187
2187
|
|
|
2188
2188
|
export type Communication = {
|
|
2189
|
+
title: string,
|
|
2189
2190
|
date: string; // ISO string
|
|
2190
2191
|
contactedBy: string; // uid
|
|
2191
2192
|
contactMethod: "email" | "phone" | "in-person" | "other";
|