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