placementt-core 1.400.706 → 1.400.708
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
|
@@ -1004,6 +1004,7 @@ export type CohortData = {
|
|
|
1004
1004
|
filters: [string, unknown][] | undefined;
|
|
1005
1005
|
};
|
|
1006
1006
|
allowOverlappingDates?: boolean;
|
|
1007
|
+
notifyStaffOnEditChange?: boolean;
|
|
1007
1008
|
};
|
|
1008
1009
|
export type ArrowObject = {
|
|
1009
1010
|
start: number | string;
|
|
@@ -2328,6 +2329,7 @@ export type Communication = {
|
|
|
2328
2329
|
linkedCommId?: string;
|
|
2329
2330
|
parentCommId?: string;
|
|
2330
2331
|
supportTaskId?: string;
|
|
2332
|
+
emailThreadId?: string;
|
|
2331
2333
|
uid?: string;
|
|
2332
2334
|
oId?: string;
|
|
2333
2335
|
emailMessages?: EmailMessage[];
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1015,6 +1015,7 @@ export type CohortData = {
|
|
|
1015
1015
|
filters: [string, unknown][] | undefined;
|
|
1016
1016
|
},
|
|
1017
1017
|
allowOverlappingDates?: boolean,
|
|
1018
|
+
notifyStaffOnEditChange?: boolean
|
|
1018
1019
|
}
|
|
1019
1020
|
|
|
1020
1021
|
export type ArrowObject = {
|
|
@@ -2283,6 +2284,7 @@ export type Communication = {
|
|
|
2283
2284
|
linkedCommId?: string,
|
|
2284
2285
|
parentCommId?: string,
|
|
2285
2286
|
supportTaskId?: string,
|
|
2287
|
+
emailThreadId?: string,
|
|
2286
2288
|
uid?: string,
|
|
2287
2289
|
oId?: string,
|
|
2288
2290
|
emailMessages?: EmailMessage[];
|