placementt-core 1.400.929 → 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.
@@ -2968,6 +2970,10 @@ export type Lead = {
2968
2970
  wex?: boolean;
2969
2971
  events?: boolean;
2970
2972
  docCheck?: boolean;
2973
+ careersActivityTracking?: boolean;
2974
+ destinationsAndAlumni?: boolean;
2975
+ bookedCall?: boolean;
2976
+ bookedCallAt?: string;
2971
2977
  oId?: string;
2972
2978
  source: string;
2973
2979
  dateAdded?: 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.929",
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
  /**
@@ -2946,6 +2948,10 @@ export type Lead = {
2946
2948
  wex?: boolean,
2947
2949
  events?: boolean,
2948
2950
  docCheck?: boolean,
2951
+ careersActivityTracking?: boolean,
2952
+ destinationsAndAlumni?: boolean,
2953
+ bookedCall?: boolean,
2954
+ bookedCallAt?: string,
2949
2955
  oId?: string,
2950
2956
  source: string,
2951
2957
  dateAdded?: string,