placementt-core 1.400.858 → 1.400.859
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
|
@@ -1066,6 +1066,7 @@ export type CohortData = {
|
|
|
1066
1066
|
allowOverlappingDates?: boolean;
|
|
1067
1067
|
notifyStaffOnEditChange?: boolean;
|
|
1068
1068
|
trackAttendance?: boolean;
|
|
1069
|
+
attendanceReportingEmail?: string;
|
|
1069
1070
|
};
|
|
1070
1071
|
export type ArrowObject = {
|
|
1071
1072
|
start: number | string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1061,6 +1061,7 @@ export type CohortData = {
|
|
|
1061
1061
|
allowOverlappingDates?: boolean,
|
|
1062
1062
|
notifyStaffOnEditChange?: boolean,
|
|
1063
1063
|
trackAttendance?: boolean,
|
|
1064
|
+
attendanceReportingEmail?: string // Optionally set email address
|
|
1064
1065
|
}
|
|
1065
1066
|
|
|
1066
1067
|
export type ArrowObject = {
|