placementt-core 1.400.404 → 1.400.405
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
|
@@ -771,6 +771,7 @@ export type InstituteData = {
|
|
|
771
771
|
anonymiseAlumniConvoStudents?: boolean;
|
|
772
772
|
alumniConversations?: boolean;
|
|
773
773
|
activityInvitesSent?: string;
|
|
774
|
+
schoolCanViewEmployerEmail?: boolean;
|
|
774
775
|
} & Address;
|
|
775
776
|
export type ExternalActivity = {
|
|
776
777
|
title?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -770,7 +770,8 @@ export type InstituteData = {
|
|
|
770
770
|
approveAlumniMessages?: boolean,
|
|
771
771
|
anonymiseAlumniConvoStudents?: boolean,
|
|
772
772
|
alumniConversations?: boolean,
|
|
773
|
-
activityInvitesSent?: string
|
|
773
|
+
activityInvitesSent?: string,
|
|
774
|
+
schoolCanViewEmployerEmail?: boolean,
|
|
774
775
|
}&Address;
|
|
775
776
|
|
|
776
777
|
export type ExternalActivity = {
|