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.
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -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
package/src/typeDefinitions.ts
CHANGED
|
@@ -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
|
/**
|