placementt-core 1.400.930 → 1.400.931

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.
@@ -2144,6 +2144,8 @@ export type AspirationRequest = {
2144
2144
  completedAt?: string;
2145
2145
  lastResentAt?: string;
2146
2146
  response?: AspirationEntry;
2147
+ completedByStaff?: boolean;
2148
+ completedByStaffId?: string;
2147
2149
  };
2148
2150
  /**
2149
2151
  * Form B payload — what the student actually submits in the Leaver Transition form.
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.930",
5
+ "version": "1.400.931",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2033,6 +2033,8 @@ export type AspirationRequest = {
2033
2033
  completedAt?: string,
2034
2034
  lastResentAt?: string, // ISO — staff manual resend guard (1 resend/hour)
2035
2035
  response?: AspirationEntry,
2036
+ completedByStaff?: boolean, // true when a staff member submitted the form on the student's behalf
2037
+ completedByStaffId?: string, // uid of the staff member who submitted
2036
2038
  }
2037
2039
 
2038
2040
  /**