placementt-core 1.400.676 → 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[];
|
|
@@ -2376,7 +2377,7 @@ export type DfESchoolContact = {
|
|
|
2376
2377
|
city: string;
|
|
2377
2378
|
doesWex?: boolean;
|
|
2378
2379
|
notes?: string;
|
|
2379
|
-
group?: string;
|
|
2380
|
+
group?: string | false;
|
|
2380
2381
|
url: string;
|
|
2381
2382
|
potential: string;
|
|
2382
2383
|
role: 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
|
|
|
@@ -2337,7 +2337,7 @@ export type DfESchoolContact = {
|
|
|
2337
2337
|
city: string,
|
|
2338
2338
|
doesWex?: boolean,
|
|
2339
2339
|
notes?: string,
|
|
2340
|
-
group?: string,
|
|
2340
|
+
group?: string|false,
|
|
2341
2341
|
url: string,
|
|
2342
2342
|
potential: string,
|
|
2343
2343
|
role: string,
|