onfido-sdk-ui 14.42.0 → 14.44.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
@@ -10,7 +10,7 @@ at https://documentation.onfido.com/sdk/sdk-licenses/.
10
10
  ------------------
11
11
 
12
12
  Name: @onfido/capture-shared
13
- Version: 2.15.1
13
+ Version: 2.15.18
14
14
  License: null
15
15
  Private: false
16
16
  Description: A shared library to use in various capture packages
@@ -236,7 +236,7 @@ SOFTWARE.
236
236
  ---
237
237
 
238
238
  Name: @onfido/sdk-analytics
239
- Version: 0.0.57
239
+ Version: 0.0.88
240
240
  License: null
241
241
  Private: false
242
242
  Description: Contracts for Onfido in-house analytics
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "onfido-sdk-ui",
3
- "version": "14.42.0",
3
+ "version": "14.44.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": {
@@ -10,11 +10,18 @@ export type SdkFeatures = {
10
10
  enable_in_house_analytics?: boolean;
11
11
  enable_performance_analytics?: boolean;
12
12
  enable_document_support_rules?: boolean;
13
+ enable_cobrand?: boolean;
14
+ enable_logo_cobrand?: boolean;
15
+ hide_onfido_logo?: boolean;
13
16
  disable_essential_analytics?: boolean;
17
+ disable_behavioural_analytics?: boolean;
14
18
  analytics_v2_enabled?: boolean;
15
19
  web_allow_source_only_media_callback?: boolean;
16
20
  web_enable_cross_device_verification?: boolean;
17
21
  web_enable_js_camera_poa?: boolean;
22
+ web_enable_cross_device_qr_refresh?: boolean;
23
+ web_enable_cross_device_confirmation?: boolean;
24
+ use_customized_api_requests?: boolean;
18
25
  logger?: {
19
26
  enabled?: boolean;
20
27
  levels?: LogLevels[];
@@ -19,8 +19,8 @@ export type ModuleFinishOptions = {
19
19
  complete?: boolean;
20
20
  };
21
21
  export type ExecutorMethod = 'bootstrap' | 'ping' | 'start';
22
- export type CrossDeviceExecutorMethod = 'crossDevice.update';
23
- export type RunnerMethod = 'captureModule.finish' | 'captureModule.error' | 'captureModule.unsupported' | 'crossDevice.start' | 'crossDevice.preload' | 'crossDevice.verify' | 'crossDevice.abort' | 'analytics.send' | 'analytics.userAnalytics' | 'navigation.back' | 'navigation.exit' | 'navigation.externalLink' | 'customCallback.invoke' | 'passkey.create' | 'passkey.get';
22
+ export type CrossDeviceExecutorMethod = 'crossDevice.update' | 'crossDevice.abort';
23
+ export type RunnerMethod = 'captureModule.finish' | 'captureModule.error' | 'captureModule.unsupported' | 'crossDevice.start' | 'crossDevice.preload' | 'crossDevice.verify' | 'crossDevice.abort' | 'crossDevice.refresh' | 'crossDevice.regenerate' | 'analytics.send' | 'analytics.userAnalytics' | 'navigation.back' | 'navigation.exit' | 'navigation.externalLink' | 'customCallback.invoke' | 'passkey.create' | 'passkey.get';
24
24
  export type Configuration<T = unknown> = {
25
25
  translations?: T;
26
26
  theme?: Theme;
@@ -92,6 +92,7 @@ export type ClientConfiguration = {
92
92
  language?: string;
93
93
  translations?: Translations;
94
94
  workflowId: string | undefined;
95
+ workflowTaskId?: string | undefined;
95
96
  workflowVersionId: number | undefined;
96
97
  analytics: {
97
98
  enabled: boolean;
@@ -106,6 +107,8 @@ export type ClientConfiguration = {
106
107
  distribution_source: string;
107
108
  pinned_version?: string;
108
109
  };
110
+ referrer?: string;
111
+ domain?: string;
109
112
  };
110
113
  logger: {
111
114
  enabled: boolean;
@@ -113,6 +116,8 @@ export type ClientConfiguration = {
113
116
  };
114
117
  crossDevice: {
115
118
  verification?: boolean;
119
+ confirmation?: boolean;
120
+ desktopInfo: TrackedEnvironmentData;
116
121
  linkMethods: CrossDeviceMethod[];
117
122
  };
118
123
  enterpriseFeatures?: EnterpriseFeatures;