diff --git a/Changelog.md b/Changelog.md index 2e90524..2beb8c4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,10 @@ # Changelog ## [Unreleased] +### [3.13.0] - 2026-07-24 +### Added +- Added support for configuring the ID document capture mode through widget configuration. + ### [3.12.2] - 2026-07-06 ### Fixed - Fixed a bug where a section was removed from the consent screen. diff --git a/package.json b/package.json index 21b3b9f..dfc0ed9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "entity-developer-dashboard", - "version": "3.12.2", + "version": "3.13.0", "private": true, "scripts": { "serve": "vue-cli-service serve --mode production", diff --git a/src/config.js b/src/config.js index fe0f207..56b0755 100644 --- a/src/config.js +++ b/src/config.js @@ -106,6 +106,11 @@ config['SERVICE_TYPES'] = Object.freeze({ QUEST: 'QUEST', }) +config['DocumentUploadMode'] = Object.freeze({ + MANUAL: 'MANUAL', + SCAN: 'SCAN', +}) + config['GRANT_TYPES_ENUM'] = Object.freeze({ 'SSI_API': 'access_service_ssi', diff --git a/src/views/playground/WidgetConfig/Index.vue b/src/views/playground/WidgetConfig/Index.vue index 3a2abfa..75bf4ff 100644 --- a/src/views/playground/WidgetConfig/Index.vue +++ b/src/views/playground/WidgetConfig/Index.vue @@ -181,11 +181,22 @@ ul {