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.
- package/lib/typeDefinitions.d.ts +27 -10
- package/package.json +1 -1
- package/src/typeDefinitions.ts +12 -19
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -1491,33 +1491,50 @@ export type ExternalEvent = {
|
|
|
1491
1491
|
link?: boolean;
|
|
1492
1492
|
matchStudents?: boolean | "multiple";
|
|
1493
1493
|
studentsMatchSelves?: boolean;
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
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
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
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
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
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
package/src/typeDefinitions.ts
CHANGED
|
@@ -1454,33 +1454,26 @@ export type ExternalEvent = {
|
|
|
1454
1454
|
link?: boolean,
|
|
1455
1455
|
matchStudents?: boolean|"multiple",
|
|
1456
1456
|
studentsMatchSelves?: boolean,
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
requiredFiles:
|
|
1460
|
-
|
|
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
|
-
|
|
1470
|
-
|
|
1471
|
-
requiredFiles:
|
|
1472
|
-
|
|
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
|
-
|
|
1478
|
-
files
|
|
1479
|
-
|
|
1480
|
-
|
|
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[],
|