placementt-core 1.400.484 → 1.400.485
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
|
@@ -791,6 +791,14 @@ export type InstituteData = {
|
|
|
791
791
|
parent?: string;
|
|
792
792
|
provider?: string;
|
|
793
793
|
};
|
|
794
|
+
skillsAssessments?: boolean;
|
|
795
|
+
skills: {
|
|
796
|
+
[skill: string]: {
|
|
797
|
+
employers?: boolean;
|
|
798
|
+
parents?: boolean;
|
|
799
|
+
};
|
|
800
|
+
};
|
|
801
|
+
scheduledSkillsAssessments?: ("yearStart" | "yearEnd" | "eachTerm" | "preWorkExperience" | "postWorkExperience" | "employerInteraction")[];
|
|
794
802
|
} & Address;
|
|
795
803
|
export type ExternalActivity = {
|
|
796
804
|
title?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -790,7 +790,14 @@ export type InstituteData = {
|
|
|
790
790
|
staff?: string,
|
|
791
791
|
parent?: string,
|
|
792
792
|
provider?: string,
|
|
793
|
-
}
|
|
793
|
+
},
|
|
794
|
+
// SKILLS ASSESSMENT CONFIGURATION
|
|
795
|
+
skillsAssessments?: boolean,
|
|
796
|
+
skills: {[skill: string]: {
|
|
797
|
+
employers?: boolean,
|
|
798
|
+
parents?: boolean,
|
|
799
|
+
}},
|
|
800
|
+
scheduledSkillsAssessments?: ("yearStart"|"yearEnd"|"eachTerm"|"preWorkExperience"|"postWorkExperience"|"employerInteraction")[]
|
|
794
801
|
}&Address;
|
|
795
802
|
|
|
796
803
|
export type ExternalActivity = {
|