Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## [Unreleased]
### [3.14.0] - 2026-08-07
### Added
- Added a toggle for mobile-assisted verification.

### [3.13.0] - 2026-07-24
### Added
- Added support for configuring the ID document capture mode through widget configuration.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "entity-developer-dashboard",
"version": "3.13.0",
"version": "3.14.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --mode production",
Expand Down
23 changes: 23 additions & 0 deletions src/views/playground/WidgetConfig/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,20 @@ ul {
</div>
</div>
</li>
<li class="list-group-item">
<div class="row">
<div class="col-md-6">
<b-form-checkbox
switch
size="lg"
v-model="widgetConfigTemp.isMobileAssistedVerification"
>
{{ widgetConfigUI.mobileAssistedVerification.label }}
</b-form-checkbox>
<small v-html="widgetConfigUI.mobileAssistedVerification.description"></small>
</div>
</div>
</li>
</ul>
</div>

Expand Down Expand Up @@ -533,6 +547,9 @@ export default {
if (typeof this.widgetConfigTemp.isWidgetLogin !== 'boolean') {
this.$set(this.widgetConfigTemp, 'isWidgetLogin', true)
}
if (typeof this.widgetConfigTemp.isMobileAssistedVerification !== 'boolean') {
this.$set(this.widgetConfigTemp, 'isMobileAssistedVerification', true)
}

this.trustedIssuersList = [...this.getMarketPlaceApps];
this.appId = this.$route.params.appId;
Expand Down Expand Up @@ -638,6 +655,10 @@ export default {
label: "Enable Built-in Login & Identity Vault",
description: "Users sign in through the ID Widget and receive a personal identity vault for storing reusable credentials. Disable this if your application handles authentication."
},
mobileAssistedVerification: {
label: "Mobile-Assisted Verification",
description: "When enabled, users who start verification on a desktop will continue ID verification on their mobile device by scanning a QR code. This improves verification success rates, provides a better user experience, and strengthens proof of possession. Disable to allow the entire verification process to be completed on the desktop."
},
},
fullPage: true,
isLoading: false,
Expand Down Expand Up @@ -676,6 +697,7 @@ export default {
isWidgetLogin: true,
isVaultEnabled: true,
isEmailNotificationEnabled: true,
isMobileAssistedVerification: true,
issuerDID: "",
issuerVerificationMethodId: "",
},
Expand Down Expand Up @@ -841,6 +863,7 @@ export default {
},
validateField() {
this.widgetConfigTemp.isWidgetLogin = this.widgetConfigTemp.isWidgetLogin !== false
this.widgetConfigTemp.isMobileAssistedVerification = this.widgetConfigTemp.isMobileAssistedVerification !== false
this.migratedocumentUploadMode()
if (!this.widgetConfigTemp.issuerDID) {
throw new Error('Issuer DID is required')
Expand Down
Loading