placementt-core 1.400.871 → 1.400.872

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.
@@ -751,7 +751,7 @@ export type ProviderContactData = {
751
751
  accessCode?: string;
752
752
  accessExpiry?: string;
753
753
  savedBy?: {
754
- [key: string]: {
754
+ [oId: string]: {
755
755
  exists: true;
756
756
  activities?: null | string[];
757
757
  eventsConsent?: boolean;
@@ -760,6 +760,9 @@ export type ProviderContactData = {
760
760
  providerConsentDate?: string;
761
761
  MATschools?: string[];
762
762
  notes?: Descendant[];
763
+ additionalData?: {
764
+ [key: string]: unknown;
765
+ };
763
766
  status: "uploaded" | "approved" | "rejected" | "providerReviewed" | "blocked";
764
767
  };
765
768
  };
@@ -769,6 +772,7 @@ export type InstituteData = {
769
772
  staff: number;
770
773
  studentsFields: string[];
771
774
  staffFields: string[];
775
+ employerFields: string[];
772
776
  studentsActive: number;
773
777
  staffActive: number;
774
778
  admin: 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.871",
5
+ "version": "1.400.872",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -749,7 +749,7 @@ export type ProviderContactData = {
749
749
  insuranceExpiry?: string,
750
750
  accessCode?: string,
751
751
  accessExpiry?: string,
752
- savedBy?: {[key:string]: {
752
+ savedBy?: {[oId: string]: {
753
753
  exists: true,
754
754
  activities?: null|string[], // IDs of consented activities.
755
755
  eventsConsent?: boolean,
@@ -758,6 +758,7 @@ export type ProviderContactData = {
758
758
  providerConsentDate?: string,
759
759
  MATschools?: string[],
760
760
  notes?: Descendant[],
761
+ additionalData?: {[key: string]: unknown},
761
762
  status: "uploaded"|"approved"|"rejected"|"providerReviewed"|"blocked"}},
762
763
  }&Address
763
764
 
@@ -766,6 +767,7 @@ export type InstituteData = {
766
767
  staff: number,
767
768
  studentsFields: string[],
768
769
  staffFields: string[],
770
+ employerFields: string[],
769
771
  studentsActive: number,
770
772
  staffActive: number,
771
773
  admin: string,