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.
@@ -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: string | undefined;
1405
- filters: unknown[][] | undefined;
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: string | undefined;
1417
- filters: unknown[][] | undefined;
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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.403",
5
+ "version": "1.400.405",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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: string | undefined;
1384
- filters: unknown[][] | undefined;
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: string | undefined;
1394
- filters: unknown[][] | undefined;
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,