onfido-sdk-ui 14.48.0 → 14.50.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 +2 -2
- package/package.json +1 -1
- package/types/Onfido.d.ts +1 -1
- package/types/shared/SdkParameters.d.ts +1 -1
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.23.
|
|
13
|
+
Version: 2.23.11
|
|
14
14
|
License: null
|
|
15
15
|
Private: false
|
|
16
16
|
Description: A shared library to use in various capture packages
|
|
@@ -278,7 +278,7 @@ SOFTWARE.
|
|
|
278
278
|
---
|
|
279
279
|
|
|
280
280
|
Name: @onfido/capture-contract
|
|
281
|
-
Version: 0.0.0-
|
|
281
|
+
Version: 0.0.0-master.1946103
|
|
282
282
|
License: null
|
|
283
283
|
Private: false
|
|
284
284
|
Description: Contracts for the SDKs and modules
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "onfido-sdk-ui",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.50.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": {
|
package/types/Onfido.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ declare type CommonSdkParameters = {
|
|
|
32
32
|
containerId?: string;
|
|
33
33
|
onError?: ErrorCallback_2;
|
|
34
34
|
onComplete?: (data: CompleteData) => void;
|
|
35
|
-
|
|
35
|
+
showExitButton?: boolean;
|
|
36
36
|
onUserExit?: UserExitCallback;
|
|
37
37
|
onExternalLink?: ExternalLinkCallback;
|
|
38
38
|
enterpriseFeatures?: EnterpriseFeatureParameter;
|
|
@@ -17,7 +17,7 @@ export type CommonSdkParameters = {
|
|
|
17
17
|
containerId?: string;
|
|
18
18
|
onError?: ErrorCallback;
|
|
19
19
|
onComplete?: (data: CompleteData) => void;
|
|
20
|
-
|
|
20
|
+
showExitButton?: boolean;
|
|
21
21
|
onUserExit?: UserExitCallback;
|
|
22
22
|
onExternalLink?: ExternalLinkCallback;
|
|
23
23
|
enterpriseFeatures?: EnterpriseFeatureParameter;
|