onfido-sdk-ui 14.58.1 → 14.59.0

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/LICENSE CHANGED
@@ -252,7 +252,7 @@ SOFTWARE.
252
252
  ---
253
253
 
254
254
  Name: capture-module
255
- Version: 3.13.1
255
+ Version: 3.14.0
256
256
  License: null
257
257
  Private: false
258
258
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "onfido-sdk-ui",
3
- "version": "14.58.1",
3
+ "version": "14.59.0",
4
4
  "description": "JavaScript SDK view layer for Onfido identity verification",
5
5
  "author": "Onfido Customer Support <support@onfido.com> (https://documentation.onfido.com/sdk/web/)",
6
6
  "repository": {
@@ -26,7 +26,9 @@ export type CrossDeviceExecutorMethod = 'crossDevice.update' | 'crossDevice.abor
26
26
  export type RunnerMethod = 'moduleState.update' | 'captureModule.finish' | 'captureModule.error' | 'captureModule.unsupported' | 'crossDevice.start' | 'crossDevice.preload' | 'crossDevice.verify' | 'crossDevice.abort' | 'crossDevice.regenerate' | 'analytics.send' | 'analyticsV2.send' | 'analytics.userAnalytics' | 'navigation.back' | 'navigation.exit' | 'navigation.externalLink' | 'navigation.closeExternalLink' | 'customCallback.invoke' | 'passkey.create' | 'passkey.get' | 'crossDevice.browserReload';
27
27
  export type Configuration<T = unknown> = {
28
28
  translations?: T;
29
- theme?: Theme;
29
+ theme?: Theme & {
30
+ version?: string;
31
+ };
30
32
  language?: string;
31
33
  workflowRunId?: string;
32
34
  };