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