placementt-core 1.400.705 → 1.400.707
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
|
@@ -2328,9 +2328,11 @@ export type Communication = {
|
|
|
2328
2328
|
linkedCommId?: string;
|
|
2329
2329
|
parentCommId?: string;
|
|
2330
2330
|
supportTaskId?: string;
|
|
2331
|
+
emailThreadId?: string;
|
|
2331
2332
|
uid?: string;
|
|
2332
2333
|
oId?: string;
|
|
2333
2334
|
emailMessages?: EmailMessage[];
|
|
2335
|
+
lastMessageDirection?: "inbound" | "outbound";
|
|
2334
2336
|
};
|
|
2335
2337
|
export type SupportTask = {
|
|
2336
2338
|
uid: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2283,9 +2283,11 @@ export type Communication = {
|
|
|
2283
2283
|
linkedCommId?: string,
|
|
2284
2284
|
parentCommId?: string,
|
|
2285
2285
|
supportTaskId?: string,
|
|
2286
|
+
emailThreadId?: string,
|
|
2286
2287
|
uid?: string,
|
|
2287
2288
|
oId?: string,
|
|
2288
2289
|
emailMessages?: EmailMessage[];
|
|
2290
|
+
lastMessageDirection?: "inbound" | "outbound"
|
|
2289
2291
|
};
|
|
2290
2292
|
|
|
2291
2293
|
export type SupportTask = {
|