placementt-core 1.400.984 → 1.400.985
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
|
@@ -1964,6 +1964,7 @@ export type CheckInEntry = {
|
|
|
1964
1964
|
activities?: string[];
|
|
1965
1965
|
linkedinUrl?: string;
|
|
1966
1966
|
currentPostcode?: string;
|
|
1967
|
+
currentCity?: string;
|
|
1967
1968
|
currentCountry?: string;
|
|
1968
1969
|
};
|
|
1969
1970
|
/** Trusted contact / parent fallback stored on the Alumni record */
|
|
@@ -2372,6 +2373,7 @@ export type Alumni = {
|
|
|
2372
2373
|
linkedinUrl?: string;
|
|
2373
2374
|
homePostcode?: string;
|
|
2374
2375
|
currentPostcode?: string;
|
|
2376
|
+
currentCity?: string;
|
|
2375
2377
|
currentCountry?: string;
|
|
2376
2378
|
linkCode: string;
|
|
2377
2379
|
linkCodeExpiry: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1909,7 +1909,8 @@ export type CheckInEntry = {
|
|
|
1909
1909
|
/** IDs of the institute's externalActivities this alumni is willing to support — mirrors the employer/alumni-join activity model. */
|
|
1910
1910
|
activities?: string[],
|
|
1911
1911
|
linkedinUrl?: string,
|
|
1912
|
-
currentPostcode?: string, //
|
|
1912
|
+
currentPostcode?: string, // Legacy — no longer collected; annual check-in asks for city instead
|
|
1913
|
+
currentCity?: string, // Alumni town/city at time of check-in
|
|
1913
1914
|
currentCountry?: string, // Populated when alumni is outside UK
|
|
1914
1915
|
}
|
|
1915
1916
|
|
|
@@ -2332,7 +2333,8 @@ export type Alumni = {
|
|
|
2332
2333
|
|
|
2333
2334
|
// Location (alumni-only — enables alumni map view)
|
|
2334
2335
|
homePostcode?: string, // Frozen from MIS at leaver export
|
|
2335
|
-
currentPostcode?: string, //
|
|
2336
|
+
currentPostcode?: string, // Legacy — check-in now asks for city, not postcode
|
|
2337
|
+
currentCity?: string, // Self-reported town/city via the annual check-in
|
|
2336
2338
|
currentCountry?: string, // Populated when alumni has moved abroad; otherwise UK assumed
|
|
2337
2339
|
|
|
2338
2340
|
// Auth
|