placementt-core 1.400.686 → 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
|
@@ -2317,7 +2317,12 @@ export type SupportTask = {
|
|
|
2317
2317
|
resolvedAt?: string;
|
|
2318
2318
|
assignee: string;
|
|
2319
2319
|
commId?: string;
|
|
2320
|
+
commType?: "leads" | "users";
|
|
2321
|
+
dueAt: string;
|
|
2322
|
+
inbox: SupportInbox;
|
|
2323
|
+
messageId?: string;
|
|
2320
2324
|
};
|
|
2325
|
+
export type SupportInbox = "oneDay" | "threeDay" | "oneWeek";
|
|
2321
2326
|
export type CommSchemaItem = {
|
|
2322
2327
|
name: string;
|
|
2323
2328
|
label: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2276,8 +2276,14 @@ export type SupportTask = {
|
|
|
2276
2276
|
resolvedAt?: string; // ISO string
|
|
2277
2277
|
assignee: string; // uid of the assigned team member
|
|
2278
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
|
|
2279
2283
|
};
|
|
2280
2284
|
|
|
2285
|
+
export type SupportInbox = "oneDay" | "threeDay" | "oneWeek";
|
|
2286
|
+
|
|
2281
2287
|
export type CommSchemaItem = {
|
|
2282
2288
|
name: string;
|
|
2283
2289
|
label: string;
|