placementt-core 1.400.621 → 1.400.622

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.
@@ -2310,4 +2310,17 @@ export type LeadStageData = {
2310
2310
  [key: string]: unknown;
2311
2311
  };
2312
2312
  };
2313
+ export type ProviderFeedback = {
2314
+ created: string;
2315
+ ease: string;
2316
+ email: string | "parent";
2317
+ gripe?: string;
2318
+ improvement?: string;
2319
+ pId?: string;
2320
+ assignee?: string;
2321
+ hasTask?: string;
2322
+ workDescription?: string;
2323
+ resolved?: boolean;
2324
+ resolvedDate?: string;
2325
+ };
2313
2326
  export {};
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.621",
5
+ "version": "1.400.622",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2275,4 +2275,16 @@ export type LeadStageData = {
2275
2275
  }
2276
2276
 
2277
2277
 
2278
-
2278
+ export type ProviderFeedback = {
2279
+ created: string,
2280
+ ease: string, // 0 - 5
2281
+ email: string|"parent",
2282
+ gripe?: string,
2283
+ improvement?: string,
2284
+ pId?: string,
2285
+ assignee?: string,
2286
+ hasTask?: string,
2287
+ workDescription?: string,
2288
+ resolved?: boolean,
2289
+ resolvedDate?: string
2290
+ }