placementt-core 1.400.685 → 1.400.687
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,6 +2301,7 @@ export type Communication = {
|
|
|
2301
2301
|
completedOn?: string;
|
|
2302
2302
|
linkedCommId?: string;
|
|
2303
2303
|
parentCommId?: string;
|
|
2304
|
+
supportTaskId?: string;
|
|
2304
2305
|
uid?: string;
|
|
2305
2306
|
oId?: string;
|
|
2306
2307
|
emailMessages?: EmailMessage[];
|
|
@@ -2316,7 +2317,12 @@ export type SupportTask = {
|
|
|
2316
2317
|
resolvedAt?: string;
|
|
2317
2318
|
assignee: string;
|
|
2318
2319
|
commId?: string;
|
|
2320
|
+
commType?: "leads" | "users";
|
|
2321
|
+
dueAt: string;
|
|
2322
|
+
inbox: SupportInbox;
|
|
2323
|
+
messageId?: string;
|
|
2319
2324
|
};
|
|
2325
|
+
export type SupportInbox = "oneDay" | "threeDay" | "oneWeek";
|
|
2320
2326
|
export type CommSchemaItem = {
|
|
2321
2327
|
name: string;
|
|
2322
2328
|
label: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2259,6 +2259,7 @@ export type Communication = {
|
|
|
2259
2259
|
completedOn?: string // ISO date
|
|
2260
2260
|
linkedCommId?: string,
|
|
2261
2261
|
parentCommId?: string,
|
|
2262
|
+
supportTaskId?: string,
|
|
2262
2263
|
uid?: string,
|
|
2263
2264
|
oId?: string,
|
|
2264
2265
|
emailMessages?: EmailMessage[];
|
|
@@ -2275,8 +2276,14 @@ export type SupportTask = {
|
|
|
2275
2276
|
resolvedAt?: string; // ISO string
|
|
2276
2277
|
assignee: string; // uid of the assigned team member
|
|
2277
2278
|
commId?: string; // optional link to a Communication doc
|
|
2279
|
+
commType?: "leads" | "users"; // collection the comm lives in
|
|
2280
|
+
dueAt: string; // ISO string
|
|
2281
|
+
inbox: SupportInbox; // which task inbox triggered this
|
|
2282
|
+
messageId?: string; // Graph message ID — used to prevent duplicates
|
|
2278
2283
|
};
|
|
2279
2284
|
|
|
2285
|
+
export type SupportInbox = "oneDay" | "threeDay" | "oneWeek";
|
|
2286
|
+
|
|
2280
2287
|
export type CommSchemaItem = {
|
|
2281
2288
|
name: string;
|
|
2282
2289
|
label: string;
|