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.
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -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
package/src/typeDefinitions.ts
CHANGED
|
@@ -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,
|