placementt-core 1.400.845 → 1.400.847
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
|
@@ -500,6 +500,7 @@ export type UserData = {
|
|
|
500
500
|
};
|
|
501
501
|
additionalNeeds?: string;
|
|
502
502
|
demo?: boolean;
|
|
503
|
+
workExperienceHours?: number;
|
|
503
504
|
};
|
|
504
505
|
export type DataViewerFilterView = {
|
|
505
506
|
title: string;
|
|
@@ -873,6 +874,10 @@ export type InstituteData = {
|
|
|
873
874
|
employers?: boolean;
|
|
874
875
|
};
|
|
875
876
|
};
|
|
877
|
+
riskAssessmentTemplate?: Timestamp;
|
|
878
|
+
riskAssessmentFields?: {
|
|
879
|
+
[key: string]: unknown;
|
|
880
|
+
}[];
|
|
876
881
|
privacyPolicy: Timestamp;
|
|
877
882
|
demo?: boolean;
|
|
878
883
|
emailTemplates?: {
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -489,6 +489,7 @@ export type UserData = {
|
|
|
489
489
|
scheduledEventsPerBenchmark?: {[benchmarkNumber: number]: number},
|
|
490
490
|
additionalNeeds?: string,
|
|
491
491
|
demo?: boolean,
|
|
492
|
+
workExperienceHours?: number
|
|
492
493
|
};
|
|
493
494
|
|
|
494
495
|
export type DataViewerFilterView = {
|
|
@@ -860,6 +861,8 @@ export type InstituteData = {
|
|
|
860
861
|
employers?: boolean,
|
|
861
862
|
}
|
|
862
863
|
},
|
|
864
|
+
riskAssessmentTemplate?: Timestamp,
|
|
865
|
+
riskAssessmentFields?: {[key:string]: unknown}[],
|
|
863
866
|
privacyPolicy: Timestamp,
|
|
864
867
|
demo?: boolean,
|
|
865
868
|
emailTemplates?: {
|