placementt-core 1.400.984 → 1.400.986
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
|
@@ -1918,6 +1918,8 @@ export type EmploymentDetails = {
|
|
|
1918
1918
|
sicSection?: string;
|
|
1919
1919
|
sicLabel?: string;
|
|
1920
1920
|
employmentStatus: "fullTime" | "partTime" | "selfEmployed" | "contractor" | "zeroHours";
|
|
1921
|
+
/** Optional short free-text description of what the role entails — shown on the journey timeline. */
|
|
1922
|
+
roleDescription?: string;
|
|
1921
1923
|
employerName?: string;
|
|
1922
1924
|
employerSize?: "<10" | "10-49" | "50-249" | "250+" | "publicSector";
|
|
1923
1925
|
isPrimaryJob?: boolean;
|
|
@@ -1964,6 +1966,7 @@ export type CheckInEntry = {
|
|
|
1964
1966
|
activities?: string[];
|
|
1965
1967
|
linkedinUrl?: string;
|
|
1966
1968
|
currentPostcode?: string;
|
|
1969
|
+
currentCity?: string;
|
|
1967
1970
|
currentCountry?: string;
|
|
1968
1971
|
};
|
|
1969
1972
|
/** Trusted contact / parent fallback stored on the Alumni record */
|
|
@@ -2372,6 +2375,7 @@ export type Alumni = {
|
|
|
2372
2375
|
linkedinUrl?: string;
|
|
2373
2376
|
homePostcode?: string;
|
|
2374
2377
|
currentPostcode?: string;
|
|
2378
|
+
currentCity?: string;
|
|
2375
2379
|
currentCountry?: string;
|
|
2376
2380
|
linkCode: string;
|
|
2377
2381
|
linkCodeExpiry: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1861,6 +1861,8 @@ export type EmploymentDetails = {
|
|
|
1861
1861
|
sicSection?: string, // SIC 2007 section letter e.g. "J"
|
|
1862
1862
|
sicLabel?: string, // e.g. "Information and Communication"
|
|
1863
1863
|
employmentStatus: "fullTime"|"partTime"|"selfEmployed"|"contractor"|"zeroHours",
|
|
1864
|
+
/** Optional short free-text description of what the role entails — shown on the journey timeline. */
|
|
1865
|
+
roleDescription?: string,
|
|
1864
1866
|
employerName?: string,
|
|
1865
1867
|
employerSize?: "<10"|"10-49"|"50-249"|"250+"|"publicSector",
|
|
1866
1868
|
isPrimaryJob?: boolean,
|
|
@@ -1909,7 +1911,8 @@ export type CheckInEntry = {
|
|
|
1909
1911
|
/** IDs of the institute's externalActivities this alumni is willing to support — mirrors the employer/alumni-join activity model. */
|
|
1910
1912
|
activities?: string[],
|
|
1911
1913
|
linkedinUrl?: string,
|
|
1912
|
-
currentPostcode?: string, //
|
|
1914
|
+
currentPostcode?: string, // Legacy — no longer collected; annual check-in asks for city instead
|
|
1915
|
+
currentCity?: string, // Alumni town/city at time of check-in
|
|
1913
1916
|
currentCountry?: string, // Populated when alumni is outside UK
|
|
1914
1917
|
}
|
|
1915
1918
|
|
|
@@ -2332,7 +2335,8 @@ export type Alumni = {
|
|
|
2332
2335
|
|
|
2333
2336
|
// Location (alumni-only — enables alumni map view)
|
|
2334
2337
|
homePostcode?: string, // Frozen from MIS at leaver export
|
|
2335
|
-
currentPostcode?: string, //
|
|
2338
|
+
currentPostcode?: string, // Legacy — check-in now asks for city, not postcode
|
|
2339
|
+
currentCity?: string, // Self-reported town/city via the annual check-in
|
|
2336
2340
|
currentCountry?: string, // Populated when alumni has moved abroad; otherwise UK assumed
|
|
2337
2341
|
|
|
2338
2342
|
// Auth
|