placementt-core 1.400.904 → 1.400.905

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.
@@ -774,6 +774,11 @@ export type ProviderContactData = {
774
774
  };
775
775
  };
776
776
  } & Address;
777
+ export type RiskAssessmentFieldDef = {
778
+ label: string;
779
+ type: "string" | "dropdown";
780
+ options?: string[];
781
+ };
777
782
  export type InstituteData = {
778
783
  students: number;
779
784
  staff: number;
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.904",
5
+ "version": "1.400.905",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -769,6 +769,12 @@ export type ProviderContactData = {
769
769
  status: "uploaded"|"approved"|"rejected"|"providerReviewed"|"blocked"}},
770
770
  }&Address
771
771
 
772
+ export type RiskAssessmentFieldDef = {
773
+ label: string,
774
+ type: "string" | "dropdown",
775
+ options?: string[]
776
+ }
777
+
772
778
  export type InstituteData = {
773
779
  students: number,
774
780
  staff: number,