placementt-core 1.400.873 → 1.400.874
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
|
@@ -760,6 +760,10 @@ export type ProviderContactData = {
|
|
|
760
760
|
providerConsentDate?: string;
|
|
761
761
|
MATschools?: string[];
|
|
762
762
|
notes?: Descendant[];
|
|
763
|
+
schoolGroups?: {
|
|
764
|
+
groups?: string[];
|
|
765
|
+
specificSchools?: string[];
|
|
766
|
+
};
|
|
763
767
|
additionalData?: {
|
|
764
768
|
[key: string]: unknown;
|
|
765
769
|
};
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -758,6 +758,10 @@ export type ProviderContactData = {
|
|
|
758
758
|
providerConsentDate?: string,
|
|
759
759
|
MATschools?: string[],
|
|
760
760
|
notes?: Descendant[],
|
|
761
|
+
schoolGroups?: {
|
|
762
|
+
groups?: string[],
|
|
763
|
+
specificSchools?: string[],
|
|
764
|
+
},
|
|
761
765
|
additionalData?: {[key: string]: unknown},
|
|
762
766
|
status: "uploaded"|"approved"|"rejected"|"providerReviewed"|"blocked"}},
|
|
763
767
|
}&Address
|