placementt-core 1.400.618 → 1.400.619
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
|
@@ -2236,7 +2236,7 @@ export type Communication = {
|
|
|
2236
2236
|
title: string;
|
|
2237
2237
|
date: string;
|
|
2238
2238
|
contactedBy: string;
|
|
2239
|
-
contactMethod: "email" | "phone" | "in-person" | "other";
|
|
2239
|
+
contactMethod: "email" | "phone" | "in-person" | "other" | "video";
|
|
2240
2240
|
gotReply: boolean;
|
|
2241
2241
|
meetingType: CommMeetingType;
|
|
2242
2242
|
additionalInfo: {
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2201,7 +2201,7 @@ export type Communication = {
|
|
|
2201
2201
|
title: string,
|
|
2202
2202
|
date: string; // ISO string
|
|
2203
2203
|
contactedBy: string; // uid
|
|
2204
|
-
contactMethod: "email" | "phone" | "in-person" | "other";
|
|
2204
|
+
contactMethod: "email" | "phone" | "in-person" | "other" | "video";
|
|
2205
2205
|
gotReply: boolean;
|
|
2206
2206
|
meetingType: CommMeetingType;
|
|
2207
2207
|
additionalInfo: {[key: string]: unknown};
|