placementt-core 1.400.556 → 1.400.558
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
|
@@ -1631,13 +1631,14 @@ export type Parent = {
|
|
|
1631
1631
|
uid: string;
|
|
1632
1632
|
relationship: string;
|
|
1633
1633
|
dateAdded?: string;
|
|
1634
|
-
status: "uploaded" | "
|
|
1634
|
+
status: "uploaded" | "parentReviewed" | "declined" | "approved";
|
|
1635
1635
|
sector: string;
|
|
1636
1636
|
subsector: string;
|
|
1637
1637
|
businessSize: string;
|
|
1638
1638
|
website?: string;
|
|
1639
1639
|
linkCode: string;
|
|
1640
1640
|
linkCodeExpiry: string;
|
|
1641
|
+
lastInvited?: string;
|
|
1641
1642
|
};
|
|
1642
1643
|
export type AlumniConversation = {
|
|
1643
1644
|
alumniId: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -1582,13 +1582,14 @@ export type Parent = {
|
|
|
1582
1582
|
uid: string,
|
|
1583
1583
|
relationship: string,
|
|
1584
1584
|
dateAdded?: string,
|
|
1585
|
-
status: "uploaded"|"
|
|
1585
|
+
status: "uploaded"|"parentReviewed"|"declined"|"approved",
|
|
1586
1586
|
sector: string,
|
|
1587
1587
|
subsector: string,
|
|
1588
1588
|
businessSize: string,
|
|
1589
1589
|
website?: string,
|
|
1590
1590
|
linkCode: string,
|
|
1591
|
-
linkCodeExpiry: string
|
|
1591
|
+
linkCodeExpiry: string,
|
|
1592
|
+
lastInvited?: string,
|
|
1592
1593
|
}
|
|
1593
1594
|
|
|
1594
1595
|
|