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.
- package/lib/typeDefinitions.d.ts +13 -0
- package/package.json +1 -1
- package/src/typeDefinitions.ts +13 -1
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -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
package/src/typeDefinitions.ts
CHANGED
|
@@ -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
|
+
}
|