placementt-core 1.300.270 → 1.300.271
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
|
@@ -1519,6 +1519,7 @@ export type ExternalEventAttendee = {
|
|
|
1519
1519
|
schoolId?: string;
|
|
1520
1520
|
eventId: string;
|
|
1521
1521
|
providerContactId: string;
|
|
1522
|
+
finished?: boolean;
|
|
1522
1523
|
students?: string[];
|
|
1523
1524
|
schools?: {
|
|
1524
1525
|
[key: string]: number;
|
|
@@ -1607,6 +1608,7 @@ export type ExternalEventCareersSchool = {
|
|
|
1607
1608
|
endDate: string;
|
|
1608
1609
|
};
|
|
1609
1610
|
created: string;
|
|
1611
|
+
finished?: boolean;
|
|
1610
1612
|
emails: {
|
|
1611
1613
|
[k in "invited" | "finalConfirmationSent" | "feedbackSent"]: {
|
|
1612
1614
|
sent: number;
|
|
@@ -1689,6 +1691,7 @@ export type ExternalEventStudent = {
|
|
|
1689
1691
|
oId: string;
|
|
1690
1692
|
uid: string;
|
|
1691
1693
|
schoolId?: string;
|
|
1694
|
+
finished?: boolean;
|
|
1692
1695
|
eventId: string;
|
|
1693
1696
|
status: "invited" | "joined" | "confirmed" | "removed";
|
|
1694
1697
|
created: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1504,6 +1504,7 @@ export type ExternalEventAttendee = {
|
|
|
1504
1504
|
schoolId?: string,
|
|
1505
1505
|
eventId: string,
|
|
1506
1506
|
providerContactId: string,
|
|
1507
|
+
finished?: boolean,
|
|
1507
1508
|
students?: string[],
|
|
1508
1509
|
schools?: {[key: string]: number}, // NOTE ID with number of students
|
|
1509
1510
|
capacity?: number,
|
|
@@ -1579,6 +1580,7 @@ export type ExternalEventCareersSchool = {
|
|
|
1579
1580
|
endDate: string,
|
|
1580
1581
|
}
|
|
1581
1582
|
created: string,
|
|
1583
|
+
finished?: boolean,
|
|
1582
1584
|
emails: {
|
|
1583
1585
|
[k in "invited"|"finalConfirmationSent"|"feedbackSent"]: {
|
|
1584
1586
|
sent: number, // If below 3, keep sending reminders.
|
|
@@ -1641,6 +1643,7 @@ export type ExternalEventStudent = {
|
|
|
1641
1643
|
oId: string,
|
|
1642
1644
|
uid: string,
|
|
1643
1645
|
schoolId?: string,
|
|
1646
|
+
finished?: boolean,
|
|
1644
1647
|
eventId: string,
|
|
1645
1648
|
status: "invited"|"joined"|"confirmed"|"removed",
|
|
1646
1649
|
created: string,
|