placementt-core 1.400.902 → 1.400.904

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.
@@ -848,6 +848,7 @@ export type InstituteData = {
848
848
  adminBillingContactId?: string;
849
849
  employerEvents?: boolean;
850
850
  workExperience?: boolean;
851
+ destinationTracking?: boolean;
851
852
  docCheck?: boolean;
852
853
  adminLastCheckedDocs?: string;
853
854
  alumniManagement?: boolean;
@@ -1849,8 +1850,8 @@ export type CheckInEntry = {
1849
1850
  wellbeingScore?: 1 | 2 | 3 | 4 | 5;
1850
1851
  biggestChallenge?: "findingWork" | "money" | "social" | "homesickness" | "other";
1851
1852
  biggestChallengeNotes?: string;
1852
- willingToMentor?: boolean;
1853
- willingToAttendEvents?: boolean;
1853
+ /** IDs of the institute's externalActivities this alumni is willing to support — mirrors the employer/alumni-join activity model. */
1854
+ activities?: string[];
1854
1855
  linkedinUrl?: string;
1855
1856
  currentPostcode?: string;
1856
1857
  currentCountry?: string;
@@ -1996,6 +1997,7 @@ export type LeaverTransitionData = {
1996
1997
  personalEmail?: string;
1997
1998
  mobile?: string;
1998
1999
  linkedinUrl?: string;
2000
+ activities?: string[];
1999
2001
  intendedDestination: DestinationCode;
2000
2002
  intendedDestinationDetails?: EducationDetails | EmploymentDetails | ApprenticeshipDetails;
2001
2003
  intendedStartDate?: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.902",
5
+ "version": "1.400.904",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -832,6 +832,7 @@ export type InstituteData = {
832
832
  // Packages institutes can be signed up to
833
833
  employerEvents?: boolean,
834
834
  workExperience?: boolean,
835
+ destinationTracking?: boolean,
835
836
  docCheck?: boolean,
836
837
  adminLastCheckedDocs?: string,
837
838
  alumniManagement?: boolean,
@@ -1759,8 +1760,8 @@ export type CheckInEntry = {
1759
1760
  wellbeingScore?: 1|2|3|4|5,
1760
1761
  biggestChallenge?: "findingWork"|"money"|"social"|"homesickness"|"other",
1761
1762
  biggestChallengeNotes?: string,
1762
- willingToMentor?: boolean,
1763
- willingToAttendEvents?: boolean,
1763
+ /** IDs of the institute's externalActivities this alumni is willing to support — mirrors the employer/alumni-join activity model. */
1764
+ activities?: string[],
1764
1765
  linkedinUrl?: string,
1765
1766
  currentPostcode?: string, // Alumni location at time of check-in — for map/mobility analysis
1766
1767
  currentCountry?: string, // Populated when alumni is outside UK
@@ -1904,6 +1905,11 @@ export type LeaverTransitionData = {
1904
1905
  mobile?: string,
1905
1906
  linkedinUrl?: string,
1906
1907
 
1908
+ // Alumni engagement — IDs of the institute's externalActivities the leaver is
1909
+ // willing to support (work experience, mentoring, mock interviews, etc.).
1910
+ // Mirrors what employers are offered; only captured when becomeAlumni is true.
1911
+ activities?: string[],
1912
+
1907
1913
  // Destination (NCCIS / Gatsby BM3)
1908
1914
  intendedDestination: DestinationCode,
1909
1915
  intendedDestinationDetails?: EducationDetails|EmploymentDetails|ApprenticeshipDetails,