placementt-core 1.400.928 → 1.400.930
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
|
@@ -2860,6 +2860,8 @@ export type SkillAssessmentRequest = {
|
|
|
2860
2860
|
title: string;
|
|
2861
2861
|
description: string;
|
|
2862
2862
|
oId: string;
|
|
2863
|
+
academicYear?: string;
|
|
2864
|
+
yearGroup?: number;
|
|
2863
2865
|
sendTime?: string;
|
|
2864
2866
|
students: string;
|
|
2865
2867
|
requestParents?: boolean;
|
|
@@ -2966,6 +2968,10 @@ export type Lead = {
|
|
|
2966
2968
|
wex?: boolean;
|
|
2967
2969
|
events?: boolean;
|
|
2968
2970
|
docCheck?: boolean;
|
|
2971
|
+
careersActivityTracking?: boolean;
|
|
2972
|
+
destinationsAndAlumni?: boolean;
|
|
2973
|
+
bookedCall?: boolean;
|
|
2974
|
+
bookedCallAt?: string;
|
|
2969
2975
|
oId?: string;
|
|
2970
2976
|
source: string;
|
|
2971
2977
|
dateAdded?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2777,6 +2777,10 @@ export type SkillAssessmentRequest = {
|
|
|
2777
2777
|
title: string,
|
|
2778
2778
|
description: string,
|
|
2779
2779
|
oId: string,
|
|
2780
|
+
// Additive grouping fields (mirrors AspirationCycle). Optional so existing
|
|
2781
|
+
// documents stay valid — legacy requests without them surface as "Ungrouped".
|
|
2782
|
+
academicYear?: string, // e.g. "2024-25", derived from sendTime/creation
|
|
2783
|
+
yearGroup?: number, // the single year group this request targets
|
|
2780
2784
|
sendTime?: string,
|
|
2781
2785
|
students: string // JSON stringify
|
|
2782
2786
|
// {
|
|
@@ -2942,6 +2946,10 @@ export type Lead = {
|
|
|
2942
2946
|
wex?: boolean,
|
|
2943
2947
|
events?: boolean,
|
|
2944
2948
|
docCheck?: boolean,
|
|
2949
|
+
careersActivityTracking?: boolean,
|
|
2950
|
+
destinationsAndAlumni?: boolean,
|
|
2951
|
+
bookedCall?: boolean,
|
|
2952
|
+
bookedCallAt?: string,
|
|
2945
2953
|
oId?: string,
|
|
2946
2954
|
source: string,
|
|
2947
2955
|
dateAdded?: string,
|