placementt-core 1.300.618 → 1.300.620
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
|
@@ -2217,6 +2217,7 @@ export type Lead = {
|
|
|
2217
2217
|
wex?: boolean;
|
|
2218
2218
|
events?: boolean;
|
|
2219
2219
|
docCheck?: boolean;
|
|
2220
|
+
source: string;
|
|
2220
2221
|
dateAdded?: string;
|
|
2221
2222
|
addedBy: string;
|
|
2222
2223
|
assignee: string;
|
|
@@ -2236,7 +2237,7 @@ export type Communication = {
|
|
|
2236
2237
|
title: string;
|
|
2237
2238
|
date: string;
|
|
2238
2239
|
contactedBy: string;
|
|
2239
|
-
contactMethod: "email" | "phone" | "in-person" | "other";
|
|
2240
|
+
contactMethod: "email" | "phone" | "in-person" | "other" | "video";
|
|
2240
2241
|
gotReply: boolean;
|
|
2241
2242
|
meetingType: CommMeetingType;
|
|
2242
2243
|
additionalInfo: {
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2180,6 +2180,7 @@ export type Lead = {
|
|
|
2180
2180
|
wex?: boolean,
|
|
2181
2181
|
events?: boolean,
|
|
2182
2182
|
docCheck?: boolean,
|
|
2183
|
+
source: string,
|
|
2183
2184
|
dateAdded?: string,
|
|
2184
2185
|
addedBy: string,
|
|
2185
2186
|
assignee: string,
|
|
@@ -2201,7 +2202,7 @@ export type Communication = {
|
|
|
2201
2202
|
title: string,
|
|
2202
2203
|
date: string; // ISO string
|
|
2203
2204
|
contactedBy: string; // uid
|
|
2204
|
-
contactMethod: "email" | "phone" | "in-person" | "other";
|
|
2205
|
+
contactMethod: "email" | "phone" | "in-person" | "other" | "video";
|
|
2205
2206
|
gotReply: boolean;
|
|
2206
2207
|
meetingType: CommMeetingType;
|
|
2207
2208
|
additionalInfo: {[key: string]: unknown};
|