@crystaltech/hsms-shared-ui 0.7.14 → 0.7.15

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.
@@ -3,6 +3,7 @@ export interface IHospital {
3
3
  id: string;
4
4
  facilityId: string;
5
5
  hospitalName: string;
6
+ hospitalNameBn: string;
6
7
  address: string;
7
8
  division: string;
8
9
  district: string;
@@ -27,6 +27,7 @@ export interface OrganizationFacilityProps {
27
27
  logoUrl: string;
28
28
  bannerUrl: string;
29
29
  backgroundImageUrl: string;
30
+ code: string;
30
31
  }
31
32
  declare const LoginView: React.FC<LoginViewProps>;
32
33
  export default LoginView;
@@ -17,7 +17,7 @@ interface HospitalInfoProps {
17
17
  logoUrl: string | null;
18
18
  bannerUrl: string | null;
19
19
  backgroundImageUrl: string | null;
20
- bannerWithImage: boolean;
20
+ bannerWithImg: boolean;
21
21
  status: string | null;
22
22
  reasonToDelete: string | null;
23
23
  reasonToUpdate: string | null;
@@ -1,6 +1,7 @@
1
1
  interface UseLogoutReturn {
2
2
  logoutFromSkh: () => Promise<void>;
3
3
  isLoading: boolean;
4
+ directLogout: () => Promise<void>;
4
5
  }
5
6
  export declare function clearSiteData(): Promise<void>;
6
7
  export declare const useLogout: () => UseLogoutReturn;