@btsd/aitu-bridge 0.3.42 → 0.3.43

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/src/index.ts CHANGED
@@ -76,11 +76,6 @@ interface GetUserProfileResponse {
76
76
  avatarThumb?: string;
77
77
  }
78
78
 
79
- interface CheckBiometryResponse {
80
- data: boolean;
81
- error?: string
82
- }
83
-
84
79
  const MAX_HEADER_MENU_ITEMS_COUNT = 3;
85
80
 
86
81
  export enum HeaderMenuIcon {
@@ -155,7 +150,7 @@ export interface AituBridge {
155
150
  setCustomBackArrowVisible: (visible: boolean) => Promise<ResponseType>;
156
151
  openPayment: (transactionId: string) => Promise<ResponseType>;
157
152
  setCustomBackArrowOnClickHandler: (handler: BackArrowClickHandlerType) => void;
158
- checkBiometry: () => Promise<CheckBiometryResponse>;
153
+ checkBiometry: () => Promise<ResponseType>;
159
154
  }
160
155
 
161
156
  const invokeMethod = 'invoke';
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const LIB_VERSION = "0.3.42";
1
+ export const LIB_VERSION = "0.3.43";