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