placementt-core 1.400.1049 → 1.400.1050

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.
@@ -2796,6 +2796,15 @@ export type Alumni = {
2796
2796
  nextCheckInDue?: string;
2797
2797
  /** ISO — when the most recent annual check-in invite was emailed; cron double-send guard. */
2798
2798
  checkInInviteSentAt?: string;
2799
+ /** Magic-link token for the annual check-in form, and its expiry.
2800
+ *
2801
+ * On the alumnus, not on a survey request: a check-in is one long-running
2802
+ * conversation with one person — asked on their own anniversary, years after they
2803
+ * left — and every answer it produces is written back here anyway. A per-year
2804
+ * request document parented to a cycle carried nothing but this token and a
2805
+ * completed flag, so the token lives where the data does. */
2806
+ checkInToken?: string;
2807
+ checkInTokenExpiry?: string;
2799
2808
  trustedContact?: TrustedContact;
2800
2809
  trustedContactConsent?: boolean;
2801
2810
  trustedContactConsentDate?: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.1049",
5
+ "version": "1.400.1050",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2769,6 +2769,15 @@ export type Alumni = {
2769
2769
  nextCheckInDue?: string, // ISO date
2770
2770
  /** ISO — when the most recent annual check-in invite was emailed; cron double-send guard. */
2771
2771
  checkInInviteSentAt?: string,
2772
+ /** Magic-link token for the annual check-in form, and its expiry.
2773
+ *
2774
+ * On the alumnus, not on a survey request: a check-in is one long-running
2775
+ * conversation with one person — asked on their own anniversary, years after they
2776
+ * left — and every answer it produces is written back here anyway. A per-year
2777
+ * request document parented to a cycle carried nothing but this token and a
2778
+ * completed flag, so the token lives where the data does. */
2779
+ checkInToken?: string,
2780
+ checkInTokenExpiry?: string,
2772
2781
 
2773
2782
  // Trusted contact
2774
2783
  trustedContact?: TrustedContact,