@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/dist/index.d.ts +1 -5
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -6
- package/src/version.ts +1 -1
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<
|
|
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.
|
|
1
|
+
export const LIB_VERSION = "0.3.43";
|