placementt-core 1.400.599 → 1.400.601
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";
|
|
@@ -2229,6 +2230,8 @@ export type Communication = {
|
|
|
2229
2230
|
additionalInfo: {
|
|
2230
2231
|
[key: string]: unknown;
|
|
2231
2232
|
};
|
|
2233
|
+
lastUpdated: string;
|
|
2234
|
+
changes?: string[];
|
|
2232
2235
|
};
|
|
2233
2236
|
export type CommSchemaItem = {
|
|
2234
2237
|
name: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2186,12 +2186,15 @@ 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";
|
|
2192
2193
|
gotReply: boolean;
|
|
2193
2194
|
meetingType: CommMeetingType;
|
|
2194
2195
|
additionalInfo: {[key: string]: unknown};
|
|
2196
|
+
lastUpdated: string,
|
|
2197
|
+
changes?: string[]
|
|
2195
2198
|
};
|
|
2196
2199
|
|
|
2197
2200
|
export type CommSchemaItem = {
|