placementt-core 1.400.992 → 1.400.993
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
|
@@ -2161,6 +2161,11 @@ export type DestinationsConfig = {
|
|
|
2161
2161
|
approveAlumni: boolean;
|
|
2162
2162
|
alumniConversations: boolean;
|
|
2163
2163
|
visibleToStudents: boolean;
|
|
2164
|
+
/** Chase each alumnus once a year for an update. Deliberately the only
|
|
2165
|
+
* scheduling a check-in has: unlike every other kind it isn't a cohort send,
|
|
2166
|
+
* so its date is a year on from that person's last reply, not a date the
|
|
2167
|
+
* school picks. Absent = on, matching the behaviour before the toggle. */
|
|
2168
|
+
annualCheckIns?: boolean;
|
|
2164
2169
|
};
|
|
2165
2170
|
/** MM-DD on which each new academic year's objects are created. Default "09-01". */
|
|
2166
2171
|
provisionMMDD: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2089,6 +2089,11 @@ export type DestinationsConfig = {
|
|
|
2089
2089
|
approveAlumni: boolean,
|
|
2090
2090
|
alumniConversations: boolean,
|
|
2091
2091
|
visibleToStudents: boolean, // default visibility for new alumni records
|
|
2092
|
+
/** Chase each alumnus once a year for an update. Deliberately the only
|
|
2093
|
+
* scheduling a check-in has: unlike every other kind it isn't a cohort send,
|
|
2094
|
+
* so its date is a year on from that person's last reply, not a date the
|
|
2095
|
+
* school picks. Absent = on, matching the behaviour before the toggle. */
|
|
2096
|
+
annualCheckIns?: boolean,
|
|
2092
2097
|
},
|
|
2093
2098
|
/** MM-DD on which each new academic year's objects are created. Default "09-01". */
|
|
2094
2099
|
provisionMMDD: string,
|