placementt-core 1.300.241 → 1.300.243

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.
@@ -1558,11 +1558,13 @@ export type ExternalEventAttendee = {
1558
1558
  }[];
1559
1559
  attended?: boolean;
1560
1560
  feedback: {
1561
- completed: boolean;
1562
- data?: {
1563
- [key: string]: unknown;
1561
+ provider: {
1562
+ completed: boolean;
1563
+ data?: {
1564
+ [key: string]: unknown;
1565
+ };
1566
+ sent?: Timestamp;
1564
1567
  };
1565
- sent?: Timestamp;
1566
1568
  };
1567
1569
  };
1568
1570
  export type ExternalEventCareersSchool = {
@@ -1619,14 +1621,18 @@ export type ExternalEventCareersSchool = {
1619
1621
  students: {
1620
1622
  completed: boolean;
1621
1623
  data?: {
1622
- [key: string]: unknown;
1624
+ [key: string]: {
1625
+ [key: string]: unknown;
1626
+ };
1623
1627
  };
1624
1628
  sent?: Timestamp;
1625
1629
  };
1626
1630
  parent: {
1627
1631
  completed: boolean;
1628
1632
  data?: {
1629
- [key: string]: unknown;
1633
+ [key: string]: {
1634
+ [key: string]: unknown;
1635
+ };
1630
1636
  };
1631
1637
  sent?: Timestamp;
1632
1638
  };
@@ -1637,7 +1643,7 @@ export type ExternalEventCareersSchool = {
1637
1643
  };
1638
1644
  sent?: Timestamp;
1639
1645
  };
1640
- staff: {
1646
+ school: {
1641
1647
  completed: boolean;
1642
1648
  data?: {
1643
1649
  [key: string]: unknown;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.300.241",
5
+ "version": "1.300.243",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1535,9 +1535,11 @@ export type ExternalEventAttendee = {
1535
1535
  }}[],
1536
1536
  attended?: boolean,
1537
1537
  feedback: {
1538
- completed: boolean,
1539
- data?: {[key: string]: unknown},
1540
- sent?: Timestamp
1538
+ provider: {
1539
+ completed: boolean,
1540
+ data?: {[key: string]: unknown},
1541
+ sent?: Timestamp
1542
+ }
1541
1543
  },
1542
1544
  }
1543
1545
 
@@ -1586,12 +1588,12 @@ export type ExternalEventCareersSchool = {
1586
1588
  feedback: {
1587
1589
  students: {
1588
1590
  completed: boolean,
1589
- data?: {[key: string]: unknown},
1591
+ data?: {[key: string]: {[key: string]: unknown}},
1590
1592
  sent?: Timestamp
1591
1593
  },
1592
1594
  parent: {
1593
1595
  completed: boolean,
1594
- data?: {[key: string]: unknown},
1596
+ data?: {[key: string]: {[key: string]: unknown}},
1595
1597
  sent?: Timestamp
1596
1598
  },
1597
1599
  provider: {
@@ -1599,7 +1601,7 @@ export type ExternalEventCareersSchool = {
1599
1601
  data?: {[key: string]: unknown},
1600
1602
  sent?: Timestamp
1601
1603
  },
1602
- staff: {
1604
+ school: {
1603
1605
  completed: boolean,
1604
1606
  data?: {[key: string]: unknown},
1605
1607
  sent?: Timestamp