placementt-core 1.400.903 → 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.
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -1850,8 +1850,8 @@ export type CheckInEntry = {
|
|
|
1850
1850
|
wellbeingScore?: 1 | 2 | 3 | 4 | 5;
|
|
1851
1851
|
biggestChallenge?: "findingWork" | "money" | "social" | "homesickness" | "other";
|
|
1852
1852
|
biggestChallengeNotes?: string;
|
|
1853
|
-
|
|
1854
|
-
|
|
1853
|
+
/** IDs of the institute's externalActivities this alumni is willing to support — mirrors the employer/alumni-join activity model. */
|
|
1854
|
+
activities?: string[];
|
|
1855
1855
|
linkedinUrl?: string;
|
|
1856
1856
|
currentPostcode?: string;
|
|
1857
1857
|
currentCountry?: string;
|
|
@@ -1997,6 +1997,7 @@ export type LeaverTransitionData = {
|
|
|
1997
1997
|
personalEmail?: string;
|
|
1998
1998
|
mobile?: string;
|
|
1999
1999
|
linkedinUrl?: string;
|
|
2000
|
+
activities?: string[];
|
|
2000
2001
|
intendedDestination: DestinationCode;
|
|
2001
2002
|
intendedDestinationDetails?: EducationDetails | EmploymentDetails | ApprenticeshipDetails;
|
|
2002
2003
|
intendedStartDate?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1760,8 +1760,8 @@ export type CheckInEntry = {
|
|
|
1760
1760
|
wellbeingScore?: 1|2|3|4|5,
|
|
1761
1761
|
biggestChallenge?: "findingWork"|"money"|"social"|"homesickness"|"other",
|
|
1762
1762
|
biggestChallengeNotes?: string,
|
|
1763
|
-
|
|
1764
|
-
|
|
1763
|
+
/** IDs of the institute's externalActivities this alumni is willing to support — mirrors the employer/alumni-join activity model. */
|
|
1764
|
+
activities?: string[],
|
|
1765
1765
|
linkedinUrl?: string,
|
|
1766
1766
|
currentPostcode?: string, // Alumni location at time of check-in — for map/mobility analysis
|
|
1767
1767
|
currentCountry?: string, // Populated when alumni is outside UK
|
|
@@ -1905,6 +1905,11 @@ export type LeaverTransitionData = {
|
|
|
1905
1905
|
mobile?: string,
|
|
1906
1906
|
linkedinUrl?: string,
|
|
1907
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
|
+
|
|
1908
1913
|
// Destination (NCCIS / Gatsby BM3)
|
|
1909
1914
|
intendedDestination: DestinationCode,
|
|
1910
1915
|
intendedDestinationDetails?: EducationDetails|EmploymentDetails|ApprenticeshipDetails,
|