placementt-core 1.400.903 → 1.400.905
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 +8 -2
- package/package.json +1 -1
- package/src/typeDefinitions.ts +13 -2
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -774,6 +774,11 @@ export type ProviderContactData = {
|
|
|
774
774
|
};
|
|
775
775
|
};
|
|
776
776
|
} & Address;
|
|
777
|
+
export type RiskAssessmentFieldDef = {
|
|
778
|
+
label: string;
|
|
779
|
+
type: "string" | "dropdown";
|
|
780
|
+
options?: string[];
|
|
781
|
+
};
|
|
777
782
|
export type InstituteData = {
|
|
778
783
|
students: number;
|
|
779
784
|
staff: number;
|
|
@@ -1850,8 +1855,8 @@ export type CheckInEntry = {
|
|
|
1850
1855
|
wellbeingScore?: 1 | 2 | 3 | 4 | 5;
|
|
1851
1856
|
biggestChallenge?: "findingWork" | "money" | "social" | "homesickness" | "other";
|
|
1852
1857
|
biggestChallengeNotes?: string;
|
|
1853
|
-
|
|
1854
|
-
|
|
1858
|
+
/** IDs of the institute's externalActivities this alumni is willing to support — mirrors the employer/alumni-join activity model. */
|
|
1859
|
+
activities?: string[];
|
|
1855
1860
|
linkedinUrl?: string;
|
|
1856
1861
|
currentPostcode?: string;
|
|
1857
1862
|
currentCountry?: string;
|
|
@@ -1997,6 +2002,7 @@ export type LeaverTransitionData = {
|
|
|
1997
2002
|
personalEmail?: string;
|
|
1998
2003
|
mobile?: string;
|
|
1999
2004
|
linkedinUrl?: string;
|
|
2005
|
+
activities?: string[];
|
|
2000
2006
|
intendedDestination: DestinationCode;
|
|
2001
2007
|
intendedDestinationDetails?: EducationDetails | EmploymentDetails | ApprenticeshipDetails;
|
|
2002
2008
|
intendedStartDate?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -769,6 +769,12 @@ export type ProviderContactData = {
|
|
|
769
769
|
status: "uploaded"|"approved"|"rejected"|"providerReviewed"|"blocked"}},
|
|
770
770
|
}&Address
|
|
771
771
|
|
|
772
|
+
export type RiskAssessmentFieldDef = {
|
|
773
|
+
label: string,
|
|
774
|
+
type: "string" | "dropdown",
|
|
775
|
+
options?: string[]
|
|
776
|
+
}
|
|
777
|
+
|
|
772
778
|
export type InstituteData = {
|
|
773
779
|
students: number,
|
|
774
780
|
staff: number,
|
|
@@ -1760,8 +1766,8 @@ export type CheckInEntry = {
|
|
|
1760
1766
|
wellbeingScore?: 1|2|3|4|5,
|
|
1761
1767
|
biggestChallenge?: "findingWork"|"money"|"social"|"homesickness"|"other",
|
|
1762
1768
|
biggestChallengeNotes?: string,
|
|
1763
|
-
|
|
1764
|
-
|
|
1769
|
+
/** IDs of the institute's externalActivities this alumni is willing to support — mirrors the employer/alumni-join activity model. */
|
|
1770
|
+
activities?: string[],
|
|
1765
1771
|
linkedinUrl?: string,
|
|
1766
1772
|
currentPostcode?: string, // Alumni location at time of check-in — for map/mobility analysis
|
|
1767
1773
|
currentCountry?: string, // Populated when alumni is outside UK
|
|
@@ -1905,6 +1911,11 @@ export type LeaverTransitionData = {
|
|
|
1905
1911
|
mobile?: string,
|
|
1906
1912
|
linkedinUrl?: string,
|
|
1907
1913
|
|
|
1914
|
+
// Alumni engagement — IDs of the institute's externalActivities the leaver is
|
|
1915
|
+
// willing to support (work experience, mentoring, mock interviews, etc.).
|
|
1916
|
+
// Mirrors what employers are offered; only captured when becomeAlumni is true.
|
|
1917
|
+
activities?: string[],
|
|
1918
|
+
|
|
1908
1919
|
// Destination (NCCIS / Gatsby BM3)
|
|
1909
1920
|
intendedDestination: DestinationCode,
|
|
1910
1921
|
intendedDestinationDetails?: EducationDetails|EmploymentDetails|ApprenticeshipDetails,
|