placementt-core 1.400.684 → 1.400.686
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
|
@@ -2301,7 +2301,9 @@ export type Communication = {
|
|
|
2301
2301
|
completedOn?: string;
|
|
2302
2302
|
linkedCommId?: string;
|
|
2303
2303
|
parentCommId?: string;
|
|
2304
|
+
supportTaskId?: string;
|
|
2304
2305
|
uid?: string;
|
|
2306
|
+
oId?: string;
|
|
2305
2307
|
emailMessages?: EmailMessage[];
|
|
2306
2308
|
};
|
|
2307
2309
|
export type SupportTask = {
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2259,7 +2259,9 @@ export type Communication = {
|
|
|
2259
2259
|
completedOn?: string // ISO date
|
|
2260
2260
|
linkedCommId?: string,
|
|
2261
2261
|
parentCommId?: string,
|
|
2262
|
+
supportTaskId?: string,
|
|
2262
2263
|
uid?: string,
|
|
2264
|
+
oId?: string,
|
|
2263
2265
|
emailMessages?: EmailMessage[];
|
|
2264
2266
|
};
|
|
2265
2267
|
|