placementt-core 1.400.620 → 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.
@@ -2217,6 +2217,7 @@ export type Lead = {
2217
2217
  wex?: boolean;
2218
2218
  events?: boolean;
2219
2219
  docCheck?: boolean;
2220
+ oId?: string;
2220
2221
  source: string;
2221
2222
  dateAdded?: string;
2222
2223
  addedBy: string;
@@ -2309,4 +2310,17 @@ export type LeadStageData = {
2309
2310
  [key: string]: unknown;
2310
2311
  };
2311
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
+ };
2312
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.620",
5
+ "version": "1.400.622",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2180,6 +2180,7 @@ export type Lead = {
2180
2180
  wex?: boolean,
2181
2181
  events?: boolean,
2182
2182
  docCheck?: boolean,
2183
+ oId?: string,
2183
2184
  source: string,
2184
2185
  dateAdded?: string,
2185
2186
  addedBy: string,
@@ -2274,4 +2275,16 @@ export type LeadStageData = {
2274
2275
  }
2275
2276
 
2276
2277
 
2277
-
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
+ }