placementt-core 1.400.295 → 1.400.296
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
|
@@ -631,6 +631,8 @@ export type ProviderContactData = {
|
|
|
631
631
|
insurance: boolean | "awaitingReview";
|
|
632
632
|
insuranceSkippedReason?: string;
|
|
633
633
|
insuranceExpiry?: string;
|
|
634
|
+
accessCode?: string;
|
|
635
|
+
accessExpiry?: string;
|
|
634
636
|
savedBy?: {
|
|
635
637
|
[key: string]: {
|
|
636
638
|
exists: true;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -657,6 +657,8 @@ export type ProviderContactData = {
|
|
|
657
657
|
insurance: boolean|"awaitingReview",
|
|
658
658
|
insuranceSkippedReason?: string,
|
|
659
659
|
insuranceExpiry?: string,
|
|
660
|
+
accessCode?: string,
|
|
661
|
+
accessExpiry?: string,
|
|
660
662
|
savedBy?: {[key:string]: {
|
|
661
663
|
exists: true,
|
|
662
664
|
activities?: null|string[], // IDs of consented activities.
|