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.
@@ -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?: string[];
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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.300.255",
5
+ "version": "1.300.256",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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.