-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8099af
commit bf5320e
Showing
3 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,13 @@ This project adheres to the Node [default version scheme](https://docs.npmjs.com | |
|
||
### Changed | ||
|
||
## [13.6.1] - 2023-10-24 | ||
## [13.7.1] - 2024-01-17 | ||
|
||
### Fixed | ||
|
||
- Removed check for audio permission in webview. | ||
|
||
## [13.7.0] - 2023-12-01 | ||
|
||
### Changed | ||
|
||
|
@@ -1652,8 +1658,9 @@ Install with `npm install [email protected]` | |
|
||
- NPM (commonjs2) style of importing the library now works | ||
|
||
[next-version]: https://github.com/onfido/onfido-sdk-ui/compare/13.6.1...development | ||
[13.6.1]: https://github.com/onfido/onfido-sdk-ui/compare/13.6.0...13.6.1 | ||
[next-version]: https://github.com/onfido/onfido-sdk-ui/compare/13.7.1...development | ||
[13.7.1]: https://github.com/onfido/onfido-sdk-ui/compare/13.7.0...13.7.1 | ||
[13.7.0]: https://github.com/onfido/onfido-sdk-ui/compare/13.6.0...13.7.0 | ||
[13.6.0]: https://github.com/onfido/onfido-sdk-ui/compare/13.5.1...13.6.0 | ||
[13.5.1]: https://github.com/onfido/onfido-sdk-ui/compare/13.5.0...13.5.1 | ||
[13.5.0]: https://github.com/onfido/onfido-sdk-ui/compare/13.4.0...13.5.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -307,6 +307,17 @@ Callback that fires when an error occurs. The callback returns the following err | |
} | ||
``` | ||
|
||
- `permissions_unavailable` | ||
|
||
`permissions_unavailable` will be returned if the SDK was unable to access or request the necessary permissions. This may occur when the web SDK is loaded within a webview or other custom browsers. | ||
|
||
```javascript | ||
{ | ||
type: "permissions_unavailable", | ||
message: "Unable to retrieve or access required user permissions" | ||
} | ||
``` | ||
|
||
### `onUserExit {Function} optional` | ||
|
||
Callback that fires when the user abandons the flow without completing it. | ||
|
@@ -1049,6 +1060,10 @@ If embedded inside a cross-origin iframe, the SDK may fail to access the camera | |
|
||
Onfido Web SDK versions <13.0.0 have a parameter named `uploadFallback` that can be set on both the document step and the face step. This parameter allowed clients to present end-users with a file input capability during the SDK flow. This client-side optional parameter has been removed in Web SDK 13 and above to enhance security which means users will not have the option to upload files during the SDK flow. However, file upload can be enabled as an option for end-users as a backend configuration if requested through the Onfido Support Team. | ||
|
||
#### Permissions issues when using the web SDK in a webview | ||
|
||
For recommendations and code samples on how to embed the Onfido web SDK in a webview, please refer to the guide [Using the Onfido web SDK in a webview](https://developers.onfido.com/guide/sdk-webview-guide) available on Developer Hub. | ||
|
||
### Support | ||
|
||
Should you encounter any technical issues during integration, please contact Onfido's Customer Support team via [email](mailto:[email protected]), including the word ISSUE: at the start of the subject line. | ||
|