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.
@@ -1631,13 +1631,14 @@ export type Parent = {
1631
1631
  uid: string;
1632
1632
  relationship: string;
1633
1633
  dateAdded?: string;
1634
- status: "uploaded" | "alumniReviewed" | "declined" | "approved";
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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.556",
5
+ "version": "1.400.558",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1582,13 +1582,14 @@ export type Parent = {
1582
1582
  uid: string,
1583
1583
  relationship: string,
1584
1584
  dateAdded?: string,
1585
- status: "uploaded"|"alumniReviewed"|"declined"|"approved",
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