placementt-core 1.300.488 → 1.300.490

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.
@@ -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
  };
@@ -2016,21 +2017,24 @@ export type SkillLabel = {
2016
2017
  category: keyof typeof skillLabelColours;
2017
2018
  public: boolean;
2018
2019
  };
2019
- export type SkillAssessmentRequest = {
2020
+ export type SkillAssessment = {
2020
2021
  title: string;
2021
2022
  description: string;
2022
2023
  oId: string;
2023
- requestDate: string;
2024
- createdDate: string;
2024
+ dateRequested: string;
2025
+ dateCompleted: Timestamp;
2025
2026
  uid: string;
2026
2027
  scores: {
2027
2028
  [skill: string]: number;
2028
2029
  };
2030
+ externalKey?: string;
2031
+ userType: "parents" | "employers" | "students";
2029
2032
  };
2030
- export type SkillAssessment = {
2031
- dateCompleted: Timestamp;
2033
+ export type SkillAssessmentRequest = {
2034
+ dateCreated: Timestamp;
2032
2035
  dateRequested: Timestamp;
2033
2036
  skillRequest?: string;
2037
+ sendTime?: string;
2034
2038
  students: {
2035
2039
  allSelected: boolean;
2036
2040
  search?: 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.300.488",
5
+ "version": "1.300.490",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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
  }
@@ -1945,22 +1946,25 @@ export type SkillLabel = {
1945
1946
  public: boolean,
1946
1947
  }
1947
1948
 
1948
- export type SkillAssessmentRequest = {
1949
+ export type SkillAssessment = {
1949
1950
  title: string,
1950
1951
  description: string,
1951
1952
  oId: string,
1952
- requestDate: string,
1953
- createdDate: string,
1953
+ dateRequested: string,
1954
+ dateCompleted: Timestamp,
1954
1955
  uid: string,
1955
1956
  scores: {
1956
1957
  [skill: string]: number,
1957
- }
1958
+ },
1959
+ externalKey?: string,
1960
+ userType: "parents"|"employers"|"students",
1958
1961
  }
1959
1962
 
1960
- export type SkillAssessment = {
1961
- dateCompleted: Timestamp,
1963
+ export type SkillAssessmentRequest = {
1964
+ dateCreated: Timestamp,
1962
1965
  dateRequested: Timestamp,
1963
1966
  skillRequest?: string,
1967
+ sendTime?: string,
1964
1968
  students: {
1965
1969
  allSelected: boolean;
1966
1970
  search?: string;