placementt-core 1.400.677 → 1.400.678
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[];
|
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
|
|