placementt-core 1.400.403 → 1.400.405
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 +13 -4
- package/package.json +1 -1
- package/src/typeDefinitions.ts +6 -5
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -771,6 +771,7 @@ export type InstituteData = {
|
|
|
771
771
|
anonymiseAlumniConvoStudents?: boolean;
|
|
772
772
|
alumniConversations?: boolean;
|
|
773
773
|
activityInvitesSent?: string;
|
|
774
|
+
schoolCanViewEmployerEmail?: boolean;
|
|
774
775
|
} & Address;
|
|
775
776
|
export type ExternalActivity = {
|
|
776
777
|
title?: string;
|
|
@@ -1401,8 +1402,12 @@ export type ExternalEvent = {
|
|
|
1401
1402
|
shareable?: boolean;
|
|
1402
1403
|
filters: {
|
|
1403
1404
|
allSelected: boolean;
|
|
1404
|
-
search
|
|
1405
|
-
filters
|
|
1405
|
+
search?: string;
|
|
1406
|
+
filters?: {
|
|
1407
|
+
k: string;
|
|
1408
|
+
e: string;
|
|
1409
|
+
v: unknown;
|
|
1410
|
+
}[];
|
|
1406
1411
|
} | (string | {
|
|
1407
1412
|
[key: string]: unknown;
|
|
1408
1413
|
})[];
|
|
@@ -1413,8 +1418,12 @@ export type ExternalEvent = {
|
|
|
1413
1418
|
shareable?: boolean;
|
|
1414
1419
|
filters: {
|
|
1415
1420
|
allSelected: boolean;
|
|
1416
|
-
search
|
|
1417
|
-
filters
|
|
1421
|
+
search?: string;
|
|
1422
|
+
filters?: {
|
|
1423
|
+
k: string;
|
|
1424
|
+
e: string;
|
|
1425
|
+
v: unknown;
|
|
1426
|
+
}[];
|
|
1418
1427
|
source: "institute" | "hub";
|
|
1419
1428
|
} | (string | {
|
|
1420
1429
|
[key: string]: unknown;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -770,7 +770,8 @@ export type InstituteData = {
|
|
|
770
770
|
approveAlumniMessages?: boolean,
|
|
771
771
|
anonymiseAlumniConvoStudents?: boolean,
|
|
772
772
|
alumniConversations?: boolean,
|
|
773
|
-
activityInvitesSent?: string
|
|
773
|
+
activityInvitesSent?: string,
|
|
774
|
+
schoolCanViewEmployerEmail?: boolean,
|
|
774
775
|
}&Address;
|
|
775
776
|
|
|
776
777
|
export type ExternalActivity = {
|
|
@@ -1380,8 +1381,8 @@ export type ExternalEvent = {
|
|
|
1380
1381
|
shareable?: boolean,
|
|
1381
1382
|
filters: {
|
|
1382
1383
|
allSelected: boolean;
|
|
1383
|
-
search
|
|
1384
|
-
filters: unknown[]
|
|
1384
|
+
search?: string;
|
|
1385
|
+
filters?: {k: string, e: string, v: unknown}[];
|
|
1385
1386
|
}|(string|{[key: string]: unknown})[]
|
|
1386
1387
|
}
|
|
1387
1388
|
employers: {
|
|
@@ -1390,8 +1391,8 @@ export type ExternalEvent = {
|
|
|
1390
1391
|
shareable?: boolean,
|
|
1391
1392
|
filters: {
|
|
1392
1393
|
allSelected: boolean;
|
|
1393
|
-
search
|
|
1394
|
-
filters: unknown[]
|
|
1394
|
+
search?: string;
|
|
1395
|
+
filters?: {k: string, e: string, v: unknown}[];
|
|
1395
1396
|
source: "institute"|"hub";
|
|
1396
1397
|
}|(string|{[key: string]: unknown})[],
|
|
1397
1398
|
public: boolean,
|