placementt-core 1.400.683 → 1.400.685
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
|
@@ -2283,6 +2283,7 @@ export type EmailMessage = {
|
|
|
2283
2283
|
body: string;
|
|
2284
2284
|
timestamp: string;
|
|
2285
2285
|
direction: "inbound" | "outbound";
|
|
2286
|
+
uid: string;
|
|
2286
2287
|
};
|
|
2287
2288
|
export type Communication = {
|
|
2288
2289
|
title: string;
|
|
@@ -2301,6 +2302,7 @@ export type Communication = {
|
|
|
2301
2302
|
linkedCommId?: string;
|
|
2302
2303
|
parentCommId?: string;
|
|
2303
2304
|
uid?: string;
|
|
2305
|
+
oId?: string;
|
|
2304
2306
|
emailMessages?: EmailMessage[];
|
|
2305
2307
|
};
|
|
2306
2308
|
export type SupportTask = {
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2242,6 +2242,7 @@ export type EmailMessage = {
|
|
|
2242
2242
|
body: string; // plain text or HTML body
|
|
2243
2243
|
timestamp: string; // ISO string
|
|
2244
2244
|
direction: "inbound" | "outbound";
|
|
2245
|
+
uid: string; // Which staff member is associated with this message?
|
|
2245
2246
|
};
|
|
2246
2247
|
|
|
2247
2248
|
export type Communication = {
|
|
@@ -2259,6 +2260,7 @@ export type Communication = {
|
|
|
2259
2260
|
linkedCommId?: string,
|
|
2260
2261
|
parentCommId?: string,
|
|
2261
2262
|
uid?: string,
|
|
2263
|
+
oId?: string,
|
|
2262
2264
|
emailMessages?: EmailMessage[];
|
|
2263
2265
|
};
|
|
2264
2266
|
|