placementt-core 1.400.932 → 1.400.933
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
|
@@ -2857,6 +2857,8 @@ export type SkillAssessment = {
|
|
|
2857
2857
|
email: string;
|
|
2858
2858
|
forename: string;
|
|
2859
2859
|
surname: string;
|
|
2860
|
+
completedByStaff?: boolean;
|
|
2861
|
+
completedByStaffId?: string;
|
|
2860
2862
|
};
|
|
2861
2863
|
export type SkillAssessmentRequest = {
|
|
2862
2864
|
dateCreated: Timestamp;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2764,7 +2764,7 @@ export type SkillAssessment = {
|
|
|
2764
2764
|
dateCompleted: Timestamp,
|
|
2765
2765
|
uid: string,
|
|
2766
2766
|
scores: {
|
|
2767
|
-
[skill: string]: number,
|
|
2767
|
+
[skill: string]: number,
|
|
2768
2768
|
},
|
|
2769
2769
|
externalKey?: string,
|
|
2770
2770
|
userType: "parents"|"employers"|"students",
|
|
@@ -2773,6 +2773,8 @@ export type SkillAssessment = {
|
|
|
2773
2773
|
email: string,
|
|
2774
2774
|
forename: string,
|
|
2775
2775
|
surname: string,
|
|
2776
|
+
completedByStaff?: boolean, // true when a staff member submitted scores on the student's behalf
|
|
2777
|
+
completedByStaffId?: string, // uid of the staff member who submitted
|
|
2776
2778
|
}
|
|
2777
2779
|
|
|
2778
2780
|
export type SkillAssessmentRequest = {
|