placementt-core 1.300.412 → 1.300.413

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.
@@ -51,6 +51,7 @@ export type StudentPlacementData = {
51
51
  staffRoles: string[];
52
52
  sector: string;
53
53
  subsector: string;
54
+ businessSize: string;
54
55
  importedProviderForms?: boolean;
55
56
  analytics: string[];
56
57
  units: string;
@@ -242,6 +243,7 @@ export type PlacementListing = {
242
243
  webpage?: string;
243
244
  sector?: string;
244
245
  subsector?: string;
246
+ businessSize?: string;
245
247
  addressId?: string;
246
248
  };
247
249
  export type OnboardingDocs = {
@@ -643,6 +645,7 @@ export type ProviderPlacementData = {
643
645
  addressId: string;
644
646
  sector: string;
645
647
  subsector: string;
648
+ businessSize: string;
646
649
  id?: string;
647
650
  };
648
651
  export type ProviderData = {
@@ -650,6 +653,7 @@ export type ProviderData = {
650
653
  regNumber?: string;
651
654
  sector: string;
652
655
  subsector: string;
656
+ businessSize: string;
653
657
  website?: string;
654
658
  created?: string;
655
659
  uploadedBy?: "institute" | "provider" | "student";
@@ -658,6 +662,7 @@ export type ProviderContactData = {
658
662
  sector: string;
659
663
  name: string;
660
664
  subsector: string;
665
+ businessSize: string;
661
666
  providerPhone?: string;
662
667
  providerEmail: string;
663
668
  contactForename: string;
@@ -1561,6 +1566,7 @@ export type Alumni = {
1561
1566
  status: "inactive" | "awaitingStaff" | "active";
1562
1567
  sector: string;
1563
1568
  subsector: string;
1569
+ businessSize: string;
1564
1570
  enrolmentHistory: {}[];
1565
1571
  visibleToStudents?: boolean;
1566
1572
  enableConversations?: boolean;
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.412",
5
+ "version": "1.300.413",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -53,6 +53,7 @@ export type StudentPlacementData = {
53
53
  staffRoles: string[],
54
54
  sector: string,
55
55
  subsector: string,
56
+ businessSize: string,
56
57
  importedProviderForms?: boolean,
57
58
  analytics: string[],
58
59
  units: string,
@@ -225,6 +226,7 @@ export type PlacementListing = {
225
226
  webpage?: string,
226
227
  sector?: string,
227
228
  subsector?: string,
229
+ businessSize?: string,
228
230
  // stage: PlacementListingStages,
229
231
  // placementDateType?: "any"|"range"|"defined",
230
232
  // placementDates?: {start: string, end: string}[],
@@ -624,6 +626,7 @@ export type ProviderPlacementData = {
624
626
  addressId: string,
625
627
  sector: string,
626
628
  subsector: string,
629
+ businessSize: string,
627
630
  id?: string
628
631
  };
629
632
 
@@ -645,6 +648,7 @@ export type ProviderData = {
645
648
  sector: string,
646
649
  // defAddress: string,
647
650
  subsector: string,
651
+ businessSize: string,
648
652
  website?: string,
649
653
  created?: string
650
654
  uploadedBy?: "institute"|"provider"|"student"
@@ -670,6 +674,7 @@ export type ProviderContactData = {
670
674
  sector: string,
671
675
  name: string,
672
676
  subsector: string,
677
+ businessSize: string,
673
678
  providerPhone?: string,
674
679
  providerEmail: string,
675
680
  contactForename: string,
@@ -1515,6 +1520,7 @@ export type Alumni = {
1515
1520
  status: "inactive"|"awaitingStaff"|"active"
1516
1521
  sector: string,
1517
1522
  subsector: string,
1523
+ businessSize: string,
1518
1524
  enrolmentHistory: {}[],
1519
1525
  visibleToStudents?: boolean,
1520
1526
  enableConversations?: boolean,