placementt-core 1.400.677 → 1.400.679
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
|
@@ -387,6 +387,7 @@ export type UserData = {
|
|
|
387
387
|
visibleSchools?: string[];
|
|
388
388
|
workExperience?: boolean;
|
|
389
389
|
employerEvents?: boolean;
|
|
390
|
+
docCheck?: boolean;
|
|
390
391
|
viewSchoolGroups?: "all" | "none" | "some";
|
|
391
392
|
visibleSchoolGroups?: string[];
|
|
392
393
|
visibleListings?: string[];
|
|
@@ -776,6 +777,7 @@ export type InstituteData = {
|
|
|
776
777
|
adminBillingContactId?: string;
|
|
777
778
|
employerEvents?: boolean;
|
|
778
779
|
workExperience?: boolean;
|
|
780
|
+
docCheck?: boolean;
|
|
779
781
|
alumniManagement?: boolean;
|
|
780
782
|
authorisedMISSystem?: {
|
|
781
783
|
name: "arbor";
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -406,7 +406,7 @@ export type UserData = {
|
|
|
406
406
|
visibleSchools?: string[],
|
|
407
407
|
workExperience?: boolean, // Used when school staff not admins. Filters what they view.
|
|
408
408
|
employerEvents?: boolean, // Used when school staff not admins. Filters what they view.
|
|
409
|
-
|
|
409
|
+
docCheck?: boolean,
|
|
410
410
|
viewSchoolGroups?: "all"|"none"|"some", // For careers hubs
|
|
411
411
|
visibleSchoolGroups?: string[], // For careers hubs
|
|
412
412
|
|
|
@@ -775,6 +775,7 @@ export type InstituteData = {
|
|
|
775
775
|
// Packages institutes can be signed up to
|
|
776
776
|
employerEvents?: boolean,
|
|
777
777
|
workExperience?: boolean,
|
|
778
|
+
docCheck?: boolean,
|
|
778
779
|
alumniManagement?: boolean,
|
|
779
780
|
// ------------------------
|
|
780
781
|
authorisedMISSystem?: {
|