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.
@@ -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
@@ -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.485",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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 = {