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.
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -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
|
-
|
|
1853
|
-
|
|
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
package/src/typeDefinitions.ts
CHANGED
|
@@ -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
|
-
|
|
1763
|
-
|
|
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,
|