placementt-core 1.300.255 → 1.300.256
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
|
@@ -1584,7 +1584,14 @@ export type ExternalEventCareersSchool = {
|
|
|
1584
1584
|
instituteId: string;
|
|
1585
1585
|
eventId: string;
|
|
1586
1586
|
status: "invited" | "available" | "finalConfirmationSent" | "confirmed" | "feedbackSent" | "declined";
|
|
1587
|
-
employers?:
|
|
1587
|
+
employers?: {
|
|
1588
|
+
[key: string]: {
|
|
1589
|
+
dates?: {
|
|
1590
|
+
startDate: string;
|
|
1591
|
+
endDate?: string;
|
|
1592
|
+
}[];
|
|
1593
|
+
};
|
|
1594
|
+
};
|
|
1588
1595
|
emails: {
|
|
1589
1596
|
[k in "invited" | "finalConfirmationSent" | "feedbackSent"]: {
|
|
1590
1597
|
sent: number;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1558,7 +1558,12 @@ export type ExternalEventCareersSchool = {
|
|
|
1558
1558
|
instituteId: string,
|
|
1559
1559
|
eventId: string,
|
|
1560
1560
|
status: "invited"|"available"|"finalConfirmationSent"|"confirmed"|"feedbackSent"|"declined",
|
|
1561
|
-
employers?: string
|
|
1561
|
+
employers?: {[key: string]: {
|
|
1562
|
+
dates?: {
|
|
1563
|
+
startDate: string,
|
|
1564
|
+
endDate?: string,
|
|
1565
|
+
}[],
|
|
1566
|
+
}},
|
|
1562
1567
|
emails: {
|
|
1563
1568
|
[k in "invited"|"finalConfirmationSent"|"feedbackSent"]: {
|
|
1564
1569
|
sent: number, // If below 3, keep sending reminders.
|