placementt-core 1.400.899 → 1.400.901
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 +13 -0
- package/package.json +1 -1
- package/src/typeDefinitions.ts +15 -1
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -619,6 +619,7 @@ export type StaffUserPermissions = UserGroupData & {
|
|
|
619
619
|
deleteActivity?: boolean;
|
|
620
620
|
readGuidance?: boolean;
|
|
621
621
|
uploadGuidance?: boolean;
|
|
622
|
+
createLeaverGroup?: boolean;
|
|
622
623
|
};
|
|
623
624
|
export type ProviderUserPermissions = {
|
|
624
625
|
viewStaff: boolean;
|
|
@@ -2845,4 +2846,16 @@ export type DfESchoolContact = {
|
|
|
2845
2846
|
type: string;
|
|
2846
2847
|
ofsted: string;
|
|
2847
2848
|
};
|
|
2849
|
+
export type LeaverGroup = {
|
|
2850
|
+
title: string;
|
|
2851
|
+
academicYear: string;
|
|
2852
|
+
yearGroup: number;
|
|
2853
|
+
oId: string;
|
|
2854
|
+
created: string;
|
|
2855
|
+
stage: "review" | "created" | "scheduled" | "sent" | "archived";
|
|
2856
|
+
emailTemplate?: string;
|
|
2857
|
+
students: string;
|
|
2858
|
+
sendAt?: string;
|
|
2859
|
+
aggregates?: AspirationAggregates;
|
|
2860
|
+
};
|
|
2848
2861
|
export {};
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -595,7 +595,8 @@ export type StaffUserPermissions =
|
|
|
595
595
|
editActivity?: boolean,
|
|
596
596
|
deleteActivity?: boolean,
|
|
597
597
|
readGuidance?: boolean,
|
|
598
|
-
uploadGuidance?: boolean
|
|
598
|
+
uploadGuidance?: boolean,
|
|
599
|
+
createLeaverGroup?: boolean
|
|
599
600
|
}
|
|
600
601
|
|
|
601
602
|
export type ProviderUserPermissions = {
|
|
@@ -2818,3 +2819,16 @@ export type DfESchoolContact = {
|
|
|
2818
2819
|
type: string,
|
|
2819
2820
|
ofsted: string,
|
|
2820
2821
|
}
|
|
2822
|
+
|
|
2823
|
+
export type LeaverGroup = {
|
|
2824
|
+
title: string;
|
|
2825
|
+
academicYear: string;
|
|
2826
|
+
yearGroup: number;
|
|
2827
|
+
oId: string,
|
|
2828
|
+
created: string;
|
|
2829
|
+
stage: "review" | "created" | "scheduled" | "sent" | "archived"; // Sent means we have sent the request to the students.
|
|
2830
|
+
emailTemplate?: string, // What template to use for the request?
|
|
2831
|
+
students: string, // Data Viewer Backend
|
|
2832
|
+
sendAt?: string,
|
|
2833
|
+
aggregates?: AspirationAggregates, // pre-aggregated response data for dashboard charts
|
|
2834
|
+
}
|