placementt-core 1.400.269 → 1.400.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.
@@ -1519,12 +1519,17 @@ 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;
1525
1526
  };
1526
1527
  capacity?: number;
1527
1528
  created: string;
1529
+ eventDates?: {
1530
+ startDate: string;
1531
+ endDate: string;
1532
+ };
1528
1533
  dates?: {
1529
1534
  startDate: string;
1530
1535
  endDate?: string;
@@ -1598,7 +1603,12 @@ export type ExternalEventCareersSchool = {
1598
1603
  }[];
1599
1604
  };
1600
1605
  };
1606
+ eventDates?: {
1607
+ startDate: string;
1608
+ endDate: string;
1609
+ };
1601
1610
  created: string;
1611
+ finished?: boolean;
1602
1612
  emails: {
1603
1613
  [k in "invited" | "finalConfirmationSent" | "feedbackSent"]: {
1604
1614
  sent: number;
@@ -1681,10 +1691,15 @@ export type ExternalEventStudent = {
1681
1691
  oId: string;
1682
1692
  uid: string;
1683
1693
  schoolId?: string;
1694
+ finished?: boolean;
1684
1695
  eventId: string;
1685
1696
  status: "invited" | "joined" | "confirmed" | "removed";
1686
1697
  created: string;
1687
1698
  joined?: string;
1699
+ eventDates?: {
1700
+ startDate: string;
1701
+ endDate: string;
1702
+ };
1688
1703
  emailTemplates?: {
1689
1704
  invited?: string;
1690
1705
  finalConfirmationSent?: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.269",
5
+ "version": "1.400.271",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1504,10 +1504,15 @@ 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,
1510
1511
  created: string,
1512
+ eventDates?: {
1513
+ startDate: string,
1514
+ endDate: string,
1515
+ }
1511
1516
  dates?: {
1512
1517
  startDate: string,
1513
1518
  endDate?: string,
@@ -1570,7 +1575,12 @@ export type ExternalEventCareersSchool = {
1570
1575
  endDate?: string,
1571
1576
  }[]
1572
1577
  }},
1578
+ eventDates?: {
1579
+ startDate: string,
1580
+ endDate: string,
1581
+ }
1573
1582
  created: string,
1583
+ finished?: boolean,
1574
1584
  emails: {
1575
1585
  [k in "invited"|"finalConfirmationSent"|"feedbackSent"]: {
1576
1586
  sent: number, // If below 3, keep sending reminders.
@@ -1633,10 +1643,15 @@ export type ExternalEventStudent = {
1633
1643
  oId: string,
1634
1644
  uid: string,
1635
1645
  schoolId?: string,
1646
+ finished?: boolean,
1636
1647
  eventId: string,
1637
1648
  status: "invited"|"joined"|"confirmed"|"removed",
1638
1649
  created: string,
1639
1650
  joined?: string,
1651
+ eventDates?: {
1652
+ startDate: string,
1653
+ endDate: string,
1654
+ }
1640
1655
  emailTemplates?: {
1641
1656
  invited?: string,
1642
1657
  finalConfirmationSent?: string,