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.
@@ -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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.484",
5
+ "version": "1.400.486",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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