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.
@@ -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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.618",
5
+ "version": "1.400.619",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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};