placementt-core 1.400.931 → 1.400.932

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.
@@ -2237,10 +2237,12 @@ export type LeaverRequest = Omit<AspirationRequest, "cycleId" | "response"> & {
2237
2237
  resultsCompleted?: boolean;
2238
2238
  resultsCompletedAt?: string;
2239
2239
  resultsResponse?: LeaverCheckpointResponse;
2240
+ resultsCompletedByStaff?: boolean;
2240
2241
  christmasStatus?: "pending" | "sent" | "completed" | "bounced";
2241
2242
  christmasCompleted?: boolean;
2242
2243
  christmasCompletedAt?: string;
2243
2244
  christmasResponse?: LeaverCheckpointResponse;
2245
+ christmasCompletedByStaff?: boolean;
2244
2246
  };
2245
2247
  export type Alumni = {
2246
2248
  forename: 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.931",
5
+ "version": "1.400.932",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2147,12 +2147,14 @@ export type LeaverRequest = Omit<AspirationRequest, "cycleId"|"response"> & {
2147
2147
  resultsCompleted?: boolean, // denormalised for compound queries
2148
2148
  resultsCompletedAt?: string,
2149
2149
  resultsResponse?: LeaverCheckpointResponse,
2150
+ resultsCompletedByStaff?: boolean, // true when a staff member submitted this checkpoint on the student's behalf
2150
2151
 
2151
2152
  // ── Checkpoint 3 — Christmas ──
2152
2153
  christmasStatus?: "pending"|"sent"|"completed"|"bounced",
2153
2154
  christmasCompleted?: boolean,
2154
2155
  christmasCompletedAt?: string,
2155
2156
  christmasResponse?: LeaverCheckpointResponse,
2157
+ christmasCompletedByStaff?: boolean, // true when a staff member submitted this checkpoint on the student's behalf
2156
2158
  }
2157
2159
 
2158
2160
  export type Alumni = {