-
Notifications
You must be signed in to change notification settings - Fork 10
feat(Device): getBiometricsAuthenticationStatus #218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(Device): getBiometricsAuthenticationStatus #218
Conversation
@@ -1058,92 +1063,6 @@ bottomSheet = (payload: SheetUI) => Promise<SheetResponse> | |||
being opened (for example, user accidental double tap), it will throw an Error | |||
with code `423` (Locked) | |||
|
|||
There are some specific cases of bottom sheet, and we have some utility methods |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated doc update (deprecating some methods)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a new biometrics authentication status feature and updates related documentation, exports, and tests.
- Introduces GET_BIOMETRICS_AUTHENTICATION_STATUS message in the native responses.
- Implements getBiometricsAuthenticationStatus in device.ts with corresponding tests.
- Updates README and index re-exports, and marks legacy bottom sheet methods as deprecated.
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
File | Description |
---|---|
src/post-message.ts | Adds new response type for biometrics authentication. |
src/device.ts | Introduces getBiometricsAuthenticationStatus function. |
src/bottom-sheet.ts | Marks legacy bottom sheet methods as deprecated. |
src/tests/device-test.ts | Provides test coverage for the new biometrics status feature. |
index.ts | Re-exports the new function and deprecation comments. |
README.md | Updates documentation with details for getBiometricsAuthenticationStatus. |
Fixes: #216
WEB-2265