placementt-core 1.300.261 → 1.300.263
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
|
@@ -1435,7 +1435,7 @@ export type ExternalEventRequest = {
|
|
|
1435
1435
|
consent: boolean;
|
|
1436
1436
|
files?: FileList;
|
|
1437
1437
|
oId: string;
|
|
1438
|
-
|
|
1438
|
+
instituteId?: string;
|
|
1439
1439
|
providerContactId?: string;
|
|
1440
1440
|
providerId?: string;
|
|
1441
1441
|
dates?: {
|
|
@@ -1522,6 +1522,7 @@ export type ExternalEventAttendee = {
|
|
|
1522
1522
|
[key: string]: number;
|
|
1523
1523
|
};
|
|
1524
1524
|
capacity?: number;
|
|
1525
|
+
created: string;
|
|
1525
1526
|
dates?: {
|
|
1526
1527
|
startDate: string;
|
|
1527
1528
|
endDate?: string;
|
|
@@ -1595,6 +1596,7 @@ export type ExternalEventCareersSchool = {
|
|
|
1595
1596
|
}[];
|
|
1596
1597
|
};
|
|
1597
1598
|
};
|
|
1599
|
+
created: string;
|
|
1598
1600
|
emails: {
|
|
1599
1601
|
[k in "invited" | "finalConfirmationSent" | "feedbackSent"]: {
|
|
1600
1602
|
sent: number;
|
|
@@ -1678,7 +1680,8 @@ export type ExternalEventStudent = {
|
|
|
1678
1680
|
uid: string;
|
|
1679
1681
|
schoolId?: string;
|
|
1680
1682
|
eventId: string;
|
|
1681
|
-
status: "joined" | "confirmed" | "removed";
|
|
1683
|
+
status: "invited" | "joined" | "confirmed" | "removed";
|
|
1684
|
+
created: string;
|
|
1682
1685
|
joined?: string;
|
|
1683
1686
|
emailTemplates?: {
|
|
1684
1687
|
invited?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1417,7 +1417,7 @@ export type ExternalEventRequest = {
|
|
|
1417
1417
|
consent: boolean,
|
|
1418
1418
|
files?: FileList,
|
|
1419
1419
|
oId: string,
|
|
1420
|
-
|
|
1420
|
+
instituteId?: string, // School requesting it.
|
|
1421
1421
|
providerContactId?: string,
|
|
1422
1422
|
providerId?: string,
|
|
1423
1423
|
dates?: {startDate: string, endDate?: string}[],
|
|
@@ -1505,6 +1505,7 @@ export type ExternalEventAttendee = {
|
|
|
1505
1505
|
students?: string[],
|
|
1506
1506
|
schools?: {[key: string]: number}, // NOTE ID with number of students
|
|
1507
1507
|
capacity?: number,
|
|
1508
|
+
created: string,
|
|
1508
1509
|
dates?: {
|
|
1509
1510
|
startDate: string,
|
|
1510
1511
|
endDate?: string,
|
|
@@ -1567,6 +1568,7 @@ export type ExternalEventCareersSchool = {
|
|
|
1567
1568
|
endDate?: string,
|
|
1568
1569
|
}[]
|
|
1569
1570
|
}},
|
|
1571
|
+
created: string,
|
|
1570
1572
|
emails: {
|
|
1571
1573
|
[k in "invited"|"finalConfirmationSent"|"feedbackSent"]: {
|
|
1572
1574
|
sent: number, // If below 3, keep sending reminders.
|
|
@@ -1630,7 +1632,8 @@ export type ExternalEventStudent = {
|
|
|
1630
1632
|
uid: string,
|
|
1631
1633
|
schoolId?: string,
|
|
1632
1634
|
eventId: string,
|
|
1633
|
-
status: "joined"|"confirmed"|"removed"
|
|
1635
|
+
status: "invited"|"joined"|"confirmed"|"removed",
|
|
1636
|
+
created: string,
|
|
1634
1637
|
joined?: string,
|
|
1635
1638
|
emailTemplates?: {
|
|
1636
1639
|
invited?: string,
|