placementt-core 1.400.894 → 1.400.895

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.
@@ -1934,6 +1934,7 @@ export type AspirationCycle = {
1934
1934
  reminderSentAt?: string;
1935
1935
  aggregates?: AspirationAggregates;
1936
1936
  emailTemplateId?: string;
1937
+ studentSelection?: string;
1937
1938
  };
1938
1939
  /**
1939
1940
  * One per student per AspirationCycle. Tracks whether the student has responded
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.894",
5
+ "version": "1.400.895",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1841,6 +1841,7 @@ export type AspirationCycle = {
1841
1841
  reminderSentAt?: string, // ISO — day-14 reminder fire time
1842
1842
  aggregates?: AspirationAggregates, // pre-aggregated response data for dashboard charts
1843
1843
  emailTemplateId?: string, // optional custom email template; falls back to system default
1844
+ studentSelection?: string, // JSON-serialised DataViewerSelectionBackend — audit of staff-picked recipients
1844
1845
  }
1845
1846
 
1846
1847
  /**