dfh-ui-library 1.12.784 → 1.12.786

Sign up to get free protection for your applications and to get access to all the features.
@@ -749,12 +749,18 @@ export interface SideBarListProps {
749
749
  handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
750
750
  toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
751
751
  }
752
+ export interface PatientConsentProps {
753
+ consentDate?: string | Date | null;
754
+ consentStatus: "NO CONSENT" | "CONSENT GIVEN";
755
+ consentBy?: string;
756
+ }
752
757
  export interface UrgentDataProps {
753
758
  fullName?: string | undefined;
754
759
  dob?: string | undefined;
755
760
  imageSignedUrl?: string | undefined;
756
761
  challenges: challengesListProps[];
757
762
  notes: NoteChildrenProps[];
763
+ patientConsent: PatientConsentProps;
758
764
  id?: string;
759
765
  }
760
766
  export interface NoteChildrenProps {
package/dist/index.d.ts CHANGED
@@ -639,12 +639,18 @@ interface SideBarListProps {
639
639
  handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
640
640
  toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
641
641
  }
642
+ interface PatientConsentProps {
643
+ consentDate?: string | Date | null;
644
+ consentStatus: "NO CONSENT" | "CONSENT GIVEN";
645
+ consentBy?: string;
646
+ }
642
647
  interface UrgentDataProps {
643
648
  fullName?: string | undefined;
644
649
  dob?: string | undefined;
645
650
  imageSignedUrl?: string | undefined;
646
651
  challenges: challengesListProps[];
647
652
  notes: NoteChildrenProps[];
653
+ patientConsent: PatientConsentProps;
648
654
  id?: string;
649
655
  }
650
656
  interface NoteChildrenProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.784",
3
+ "version": "1.12.786",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",