placementt-core 1.400.281 → 1.400.282
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
|
@@ -1532,6 +1532,8 @@ export type ExternalEventAttendee = {
|
|
|
1532
1532
|
endDate: string;
|
|
1533
1533
|
};
|
|
1534
1534
|
yearGroups?: string[];
|
|
1535
|
+
activityId?: string;
|
|
1536
|
+
gatsbyBenchmarks?: number[];
|
|
1535
1537
|
dates?: {
|
|
1536
1538
|
startDate: string;
|
|
1537
1539
|
endDate?: string;
|
|
@@ -1610,6 +1612,8 @@ export type ExternalEventCareersSchool = {
|
|
|
1610
1612
|
endDate: string;
|
|
1611
1613
|
};
|
|
1612
1614
|
yearGroups?: string[];
|
|
1615
|
+
activityId?: string;
|
|
1616
|
+
gatsbyBenchmarks?: number[];
|
|
1613
1617
|
created: string;
|
|
1614
1618
|
finished?: boolean;
|
|
1615
1619
|
emails: {
|
|
@@ -1700,6 +1704,8 @@ export type ExternalEventStudent = {
|
|
|
1700
1704
|
created: string;
|
|
1701
1705
|
joined?: string;
|
|
1702
1706
|
yearGroups?: string[];
|
|
1707
|
+
activityId?: string;
|
|
1708
|
+
gatsbyBenchmarks?: number[];
|
|
1703
1709
|
eventDates?: {
|
|
1704
1710
|
startDate: string;
|
|
1705
1711
|
endDate: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1515,6 +1515,8 @@ export type ExternalEventAttendee = {
|
|
|
1515
1515
|
endDate: string,
|
|
1516
1516
|
},
|
|
1517
1517
|
yearGroups?: string[],
|
|
1518
|
+
activityId?: string,
|
|
1519
|
+
gatsbyBenchmarks?: number[], // String array
|
|
1518
1520
|
dates?: {
|
|
1519
1521
|
startDate: string,
|
|
1520
1522
|
endDate?: string,
|
|
@@ -1582,6 +1584,8 @@ export type ExternalEventCareersSchool = {
|
|
|
1582
1584
|
endDate: string,
|
|
1583
1585
|
}
|
|
1584
1586
|
yearGroups?: string[],
|
|
1587
|
+
activityId?: string,
|
|
1588
|
+
gatsbyBenchmarks?: number[], // String array
|
|
1585
1589
|
created: string,
|
|
1586
1590
|
finished?: boolean,
|
|
1587
1591
|
emails: {
|
|
@@ -1652,6 +1656,8 @@ export type ExternalEventStudent = {
|
|
|
1652
1656
|
created: string,
|
|
1653
1657
|
joined?: string,
|
|
1654
1658
|
yearGroups?: string[],
|
|
1659
|
+
activityId?: string,
|
|
1660
|
+
gatsbyBenchmarks?: number[], // String array
|
|
1655
1661
|
eventDates?: {
|
|
1656
1662
|
startDate: string,
|
|
1657
1663
|
endDate: string,
|