placementt-core 1.400.488 → 1.400.489
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
|
@@ -795,6 +795,7 @@ export type InstituteData = {
|
|
|
795
795
|
skills: string[];
|
|
796
796
|
scheduledSkillsAssessments?: {
|
|
797
797
|
[key in "yearStart" | "yearEnd" | "eachTerm" | "preWorkExperience" | "postWorkExperience" | "employerInteraction"]?: {
|
|
798
|
+
students?: boolean;
|
|
798
799
|
parents?: boolean;
|
|
799
800
|
employers?: boolean;
|
|
800
801
|
};
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -796,6 +796,7 @@ export type InstituteData = {
|
|
|
796
796
|
skills: string[]
|
|
797
797
|
scheduledSkillsAssessments?: {
|
|
798
798
|
[key in "yearStart" | "yearEnd" | "eachTerm" | "preWorkExperience" | "postWorkExperience" | "employerInteraction"]?: {
|
|
799
|
+
students?: boolean,
|
|
799
800
|
parents?: boolean,
|
|
800
801
|
employers?: boolean,
|
|
801
802
|
}
|