placementt-core 1.400.552 → 1.400.554
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 +18 -1
- package/package.json +1 -1
- package/src/typeDefinitions.ts +20 -1
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -1622,6 +1622,23 @@ export type Alumni = {
|
|
|
1622
1622
|
linkCode: string;
|
|
1623
1623
|
linkCodeExpiry: string;
|
|
1624
1624
|
};
|
|
1625
|
+
export type Parent = {
|
|
1626
|
+
forename: string;
|
|
1627
|
+
surname: string;
|
|
1628
|
+
email: string;
|
|
1629
|
+
activities: string[];
|
|
1630
|
+
oId: string;
|
|
1631
|
+
uid: string;
|
|
1632
|
+
role: string;
|
|
1633
|
+
dateAdded?: string;
|
|
1634
|
+
status: "uploaded" | "alumniReviewed" | "declined" | "approved";
|
|
1635
|
+
sector: string;
|
|
1636
|
+
subsector: string;
|
|
1637
|
+
businessSize: string;
|
|
1638
|
+
website?: string;
|
|
1639
|
+
linkCode: string;
|
|
1640
|
+
linkCodeExpiry: string;
|
|
1641
|
+
};
|
|
1625
1642
|
export type AlumniConversation = {
|
|
1626
1643
|
alumniId: string;
|
|
1627
1644
|
externalStudentId: string;
|
|
@@ -1998,7 +2015,7 @@ export type YearScoreData = {
|
|
|
1998
2015
|
campaignsClicked?: number;
|
|
1999
2016
|
campaignsFailed?: number;
|
|
2000
2017
|
};
|
|
2001
|
-
type MessageTypes = "hubOrTrustInviteSchool" | "sendPlacementActionRequired" | "sendPlacementAdditionalInformationRequired" | "sendFeedbackReminder" | "sendProviderContactInvite" | "sendProviderContactActivityInvite" | "sendActivateUserAccount" | "shareEmployerEventRequest" | "employerEventInvite" | "schoolEventInvite" | "reuploadPlacementDocument" | "requestEventDates";
|
|
2018
|
+
type MessageTypes = "hubOrTrustInviteSchool" | "sendPlacementActionRequired" | "sendPlacementAdditionalInformationRequired" | "sendFeedbackReminder" | "sendProviderContactInvite" | "sendProviderContactActivityInvite" | "sendActivateUserAccount" | "shareEmployerEventRequest" | "employerEventInvite" | "schoolEventInvite" | "reuploadPlacementDocument" | "requestEventDates" | "taskReminder";
|
|
2002
2019
|
export type EmailInteraction = {
|
|
2003
2020
|
messageId: string;
|
|
2004
2021
|
collectionLink: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1573,6 +1573,24 @@ export type Alumni = {
|
|
|
1573
1573
|
linkCodeExpiry: string
|
|
1574
1574
|
}
|
|
1575
1575
|
|
|
1576
|
+
export type Parent = {
|
|
1577
|
+
forename: string,
|
|
1578
|
+
surname: string,
|
|
1579
|
+
email: string,
|
|
1580
|
+
activities: string[],
|
|
1581
|
+
oId: string,
|
|
1582
|
+
uid: string,
|
|
1583
|
+
role: string,
|
|
1584
|
+
dateAdded?: string,
|
|
1585
|
+
status: "uploaded"|"alumniReviewed"|"declined"|"approved",
|
|
1586
|
+
sector: string,
|
|
1587
|
+
subsector: string,
|
|
1588
|
+
businessSize: string,
|
|
1589
|
+
website?: string,
|
|
1590
|
+
linkCode: string,
|
|
1591
|
+
linkCodeExpiry: string
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1576
1594
|
|
|
1577
1595
|
export type AlumniConversation = {
|
|
1578
1596
|
alumniId: string,
|
|
@@ -1924,7 +1942,8 @@ type MessageTypes =
|
|
|
1924
1942
|
"employerEventInvite" |
|
|
1925
1943
|
"schoolEventInvite" |
|
|
1926
1944
|
"reuploadPlacementDocument" |
|
|
1927
|
-
"requestEventDates"
|
|
1945
|
+
"requestEventDates" |
|
|
1946
|
+
"taskReminder"
|
|
1928
1947
|
|
|
1929
1948
|
export type EmailInteraction = {
|
|
1930
1949
|
messageId: string,
|