placementt-core 1.300.586 → 1.300.587

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.
@@ -1491,33 +1491,50 @@ export type ExternalEvent = {
1491
1491
  link?: boolean;
1492
1492
  matchStudents?: boolean | "multiple";
1493
1493
  studentsMatchSelves?: boolean;
1494
- files: string[];
1495
- forms: string[];
1496
- requiredFiles: {
1494
+ forms?: {
1495
+ form: string;
1496
+ relatedToUpload?: string;
1497
+ visibleTo?: ("employers" | "students" | "parents" | "school")[];
1498
+ }[];
1499
+ files?: string[];
1500
+ requiredFiles?: {
1497
1501
  fileName: string;
1498
1502
  fileType: string;
1503
+ visibleTo?: ("employers" | "students" | "parents" | "school")[];
1499
1504
  }[];
1505
+ exists?: boolean;
1500
1506
  };
1501
1507
  schoolInvites?: {
1502
1508
  completed?: boolean;
1503
1509
  link?: boolean;
1504
1510
  matchSchools?: boolean | "multiple";
1505
1511
  schoolsMatchSelves?: boolean;
1506
- files: string[];
1507
- forms: string[];
1508
- requiredFiles: {
1512
+ forms?: {
1513
+ form: string;
1514
+ relatedToUpload?: string;
1515
+ visibleTo?: ("employers" | "students" | "parents" | "school")[];
1516
+ }[];
1517
+ files?: string[];
1518
+ requiredFiles?: {
1509
1519
  fileName: string;
1510
1520
  fileType: string;
1521
+ visibleTo?: ("employers" | "students" | "parents" | "school")[];
1511
1522
  }[];
1523
+ exists?: boolean;
1512
1524
  };
1513
1525
  employerInvites: {
1514
- completed?: boolean;
1515
- files: string[];
1516
- forms: string[];
1517
- requiredFiles: {
1526
+ forms?: {
1527
+ form: string;
1528
+ relatedToUpload?: string;
1529
+ visibleTo?: ("employers" | "students" | "parents" | "school")[];
1530
+ }[];
1531
+ files?: string[];
1532
+ requiredFiles?: {
1518
1533
  fileName: string;
1519
1534
  fileType: string;
1535
+ visibleTo?: ("employers" | "students" | "parents" | "school")[];
1520
1536
  }[];
1537
+ exists?: boolean;
1521
1538
  };
1522
1539
  employerFeedback?: {
1523
1540
  files: string[];
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.300.586",
5
+ "version": "1.300.587",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1454,33 +1454,26 @@ export type ExternalEvent = {
1454
1454
  link?: boolean,
1455
1455
  matchStudents?: boolean|"multiple",
1456
1456
  studentsMatchSelves?: boolean,
1457
- files: string[],
1458
- forms: string[],
1459
- requiredFiles: {
1460
- fileName: string,
1461
- fileType: string
1462
- }[],
1457
+ forms?: {form: string, relatedToUpload?: string, visibleTo?: ("employers"|"students"|"parents"|"school")[]}[],
1458
+ files?: string[],
1459
+ requiredFiles?: {fileName: string, fileType: string, visibleTo?: ("employers"|"students"|"parents"|"school")[]}[],
1460
+ exists?: boolean,
1463
1461
  },
1464
1462
  schoolInvites?: {
1465
1463
  completed?: boolean,
1466
1464
  link?: boolean,
1467
1465
  matchSchools?: boolean|"multiple",
1468
1466
  schoolsMatchSelves?: boolean,
1469
- files: string[],
1470
- forms: string[],
1471
- requiredFiles: {
1472
- fileName: string,
1473
- fileType: string
1474
- }[],
1467
+ forms?: {form: string, relatedToUpload?: string, visibleTo?: ("employers"|"students"|"parents"|"school")[]}[],
1468
+ files?: string[],
1469
+ requiredFiles?: {fileName: string, fileType: string, visibleTo?: ("employers"|"students"|"parents"|"school")[]}[],
1470
+ exists?: boolean,
1475
1471
  },
1476
1472
  employerInvites: {
1477
- completed?: boolean
1478
- files: string[],
1479
- forms: string[],
1480
- requiredFiles: {
1481
- fileName: string,
1482
- fileType: string
1483
- }[],
1473
+ forms?: {form: string, relatedToUpload?: string, visibleTo?: ("employers"|"students"|"parents"|"school")[]}[],
1474
+ files?: string[],
1475
+ requiredFiles?: {fileName: string, fileType: string, visibleTo?: ("employers"|"students"|"parents"|"school")[]}[],
1476
+ exists?: boolean,
1484
1477
  },
1485
1478
  employerFeedback?: {
1486
1479
  files: string[],