placementt-core 1.400.682 → 1.400.683

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.
@@ -2303,6 +2303,18 @@ export type Communication = {
2303
2303
  uid?: string;
2304
2304
  emailMessages?: EmailMessage[];
2305
2305
  };
2306
+ export type SupportTask = {
2307
+ uid: string;
2308
+ oId?: string;
2309
+ email: string;
2310
+ title: string;
2311
+ description?: string;
2312
+ createdAt: string;
2313
+ resolved: boolean;
2314
+ resolvedAt?: string;
2315
+ assignee: string;
2316
+ commId?: string;
2317
+ };
2306
2318
  export type CommSchemaItem = {
2307
2319
  name: string;
2308
2320
  label: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.682",
5
+ "version": "1.400.683",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2262,6 +2262,19 @@ export type Communication = {
2262
2262
  emailMessages?: EmailMessage[];
2263
2263
  };
2264
2264
 
2265
+ export type SupportTask = {
2266
+ uid: string; // user ID the task relates to
2267
+ oId?: string; // organisation ID, if the user has one
2268
+ email: string; // email address associated with the task
2269
+ title: string;
2270
+ description?: string;
2271
+ createdAt: string; // ISO string
2272
+ resolved: boolean;
2273
+ resolvedAt?: string; // ISO string
2274
+ assignee: string; // uid of the assigned team member
2275
+ commId?: string; // optional link to a Communication doc
2276
+ };
2277
+
2265
2278
  export type CommSchemaItem = {
2266
2279
  name: string;
2267
2280
  label: string;