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