idmission-web-sdk 2.0.2 → 2.1.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/README.md +36 -28
- package/dist/components/customer_flows/CustomerIdAndBiometricsEnrollment.d.ts +3 -12
- package/dist/components/customer_flows/IdAndFaceValidation.d.ts +3 -12
- package/dist/components/customer_flows/IdValidation.d.ts +3 -12
- package/dist/components/customer_flows/VideoIdValidation.d.ts +3 -12
- package/dist/components/id_capture/CapturedDocuments.d.ts +2 -0
- package/dist/components/id_capture/FocusModelProvider.d.ts +2 -1
- package/dist/components/id_capture/IdCapture.d.ts +4 -14
- package/dist/components/id_capture/IdCaptureModelsProvider.d.ts +7 -22
- package/dist/components/id_capture/IdCaptureStateProvider.d.ts +11 -38
- package/dist/components/id_capture/IdCaptureSuccess.d.ts +2 -3
- package/dist/components/id_capture/IdCaptureWizard.d.ts +3 -9
- package/dist/components/video_id/IdVideoCapture.d.ts +12 -7
- package/dist/components/video_id/IdVideoCaptureWizard.d.ts +3 -8
- package/dist/lib/models/DocumentDetection.d.ts +15 -12
- package/dist/lib/models/Focus.d.ts +6 -2
- package/dist/lib/models/helpers.d.ts +2 -0
- package/dist/sdk2.cjs.development.js +842 -968
- package/dist/sdk2.cjs.development.js.map +1 -1
- package/dist/sdk2.cjs.production.js +1 -1
- package/dist/sdk2.cjs.production.js.map +1 -1
- package/dist/sdk2.esm.js +842 -968
- package/dist/sdk2.esm.js.map +1 -1
- package/dist/sdk2.umd.development.js +842 -968
- package/dist/sdk2.umd.development.js.map +1 -1
- package/dist/sdk2.umd.production.js +1 -1
- package/dist/sdk2.umd.production.js.map +1 -1
- package/dist/stories/Components/IdCapture/LicenseBackCapture.stories.d.ts +0 -48
- package/dist/stories/Components/IdCapture/LicenseFrontCapture.stories.d.ts +0 -45
- package/dist/stories/Components/IdCapture/PassportCapture.stories.d.ts +0 -47
- package/dist/stories/Components/IdCapture/Wizard.stories.d.ts +1 -77
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -12,53 +12,5 @@ export declare const LicenseBackCapture: {
|
|
|
12
12
|
args: {
|
|
13
13
|
instruction: string;
|
|
14
14
|
portraitGuidesImage: string;
|
|
15
|
-
landscapeGuidesImage: string;
|
|
16
|
-
documentDetectionModelUrl: string;
|
|
17
|
-
autoCaptureEnabled: boolean;
|
|
18
|
-
autoCaptureScoreThreshold: number;
|
|
19
|
-
mrzDetectionScoreThreshold: number;
|
|
20
|
-
focusModelUrl: string;
|
|
21
|
-
focusScoreThreshold: number;
|
|
22
|
-
};
|
|
23
|
-
argTypes: {
|
|
24
|
-
documentDetectionModelUrl: {
|
|
25
|
-
control: {
|
|
26
|
-
type: string;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
autoCaptureEnabled: {
|
|
30
|
-
control: {
|
|
31
|
-
type: string;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
autoCaptureScoreThreshold: {
|
|
35
|
-
control: {
|
|
36
|
-
type: string;
|
|
37
|
-
min: number;
|
|
38
|
-
max: number;
|
|
39
|
-
step: number;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
mrzDetectionScoreThreshold: {
|
|
43
|
-
control: {
|
|
44
|
-
type: string;
|
|
45
|
-
min: number;
|
|
46
|
-
max: number;
|
|
47
|
-
step: number;
|
|
48
|
-
};
|
|
49
|
-
};
|
|
50
|
-
focusModelUrl: {
|
|
51
|
-
control: {
|
|
52
|
-
type: string;
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
focusScoreThreshold: {
|
|
56
|
-
control: {
|
|
57
|
-
type: string;
|
|
58
|
-
min: number;
|
|
59
|
-
max: number;
|
|
60
|
-
step: number;
|
|
61
|
-
};
|
|
62
|
-
};
|
|
63
15
|
};
|
|
64
16
|
};
|
|
@@ -13,51 +13,6 @@ export declare const LicenseFrontCapture: {
|
|
|
13
13
|
instruction: string;
|
|
14
14
|
portraitGuidesImage: string;
|
|
15
15
|
landscapeGuidesImage: string;
|
|
16
|
-
autoCaptureEnabled: boolean;
|
|
17
|
-
autoCaptureScoreThreshold: number;
|
|
18
|
-
mrzDetectionScoreThreshold: number;
|
|
19
|
-
focusScoreThreshold: number;
|
|
20
16
|
debugMode: boolean;
|
|
21
17
|
};
|
|
22
|
-
argTypes: {
|
|
23
|
-
documentDetectionModelUrl: {
|
|
24
|
-
control: {
|
|
25
|
-
type: string;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
autoCaptureEnabled: {
|
|
29
|
-
control: {
|
|
30
|
-
type: string;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
autoCaptureScoreThreshold: {
|
|
34
|
-
control: {
|
|
35
|
-
type: string;
|
|
36
|
-
min: number;
|
|
37
|
-
max: number;
|
|
38
|
-
step: number;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
|
-
mrzDetectionScoreThreshold: {
|
|
42
|
-
control: {
|
|
43
|
-
type: string;
|
|
44
|
-
min: number;
|
|
45
|
-
max: number;
|
|
46
|
-
step: number;
|
|
47
|
-
};
|
|
48
|
-
};
|
|
49
|
-
focusModelUrl: {
|
|
50
|
-
control: {
|
|
51
|
-
type: string;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
focusScoreThreshold: {
|
|
55
|
-
control: {
|
|
56
|
-
type: string;
|
|
57
|
-
min: number;
|
|
58
|
-
max: number;
|
|
59
|
-
step: number;
|
|
60
|
-
};
|
|
61
|
-
};
|
|
62
|
-
};
|
|
63
18
|
};
|
|
@@ -13,52 +13,5 @@ export declare const PassportCapture: {
|
|
|
13
13
|
instruction: string;
|
|
14
14
|
portraitGuidesImage: string;
|
|
15
15
|
landscapeGuidesImage: string;
|
|
16
|
-
documentDetectionModelUrl: string;
|
|
17
|
-
autoCaptureEnabled: boolean;
|
|
18
|
-
autoCaptureScoreThreshold: number;
|
|
19
|
-
mrzDetectionScoreThreshold: number;
|
|
20
|
-
focusModelUrl: string;
|
|
21
|
-
focusScoreThreshold: number;
|
|
22
|
-
};
|
|
23
|
-
argTypes: {
|
|
24
|
-
documentDetectionModelUrl: {
|
|
25
|
-
control: {
|
|
26
|
-
type: string;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
autoCaptureEnabled: {
|
|
30
|
-
control: {
|
|
31
|
-
type: string;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
autoCaptureScoreThreshold: {
|
|
35
|
-
control: {
|
|
36
|
-
type: string;
|
|
37
|
-
min: number;
|
|
38
|
-
max: number;
|
|
39
|
-
step: number;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
mrzDetectionScoreThreshold: {
|
|
43
|
-
control: {
|
|
44
|
-
type: string;
|
|
45
|
-
min: number;
|
|
46
|
-
max: number;
|
|
47
|
-
step: number;
|
|
48
|
-
};
|
|
49
|
-
};
|
|
50
|
-
focusModelUrl: {
|
|
51
|
-
control: {
|
|
52
|
-
type: string;
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
focusScoreThreshold: {
|
|
56
|
-
control: {
|
|
57
|
-
type: string;
|
|
58
|
-
min: number;
|
|
59
|
-
max: number;
|
|
60
|
-
step: number;
|
|
61
|
-
};
|
|
62
|
-
};
|
|
63
16
|
};
|
|
64
17
|
};
|
|
@@ -7,82 +7,6 @@ declare const _default: {
|
|
|
7
7
|
export default _default;
|
|
8
8
|
export declare const Wizard: {
|
|
9
9
|
args: {
|
|
10
|
-
assets: {
|
|
11
|
-
documentDetectionModelUrl: string;
|
|
12
|
-
focusModelUrl: string;
|
|
13
|
-
};
|
|
14
|
-
autoCaptureEnabled: boolean;
|
|
15
|
-
idCardAutoCaptureScoreThreshold: number;
|
|
16
|
-
passportAutoCaptureScoreThreshold: number;
|
|
17
|
-
mrzDetectionScoreThreshold: number;
|
|
18
|
-
idCardFocusScoreThreshold: number;
|
|
19
|
-
passportFocusScoreThreshold: number;
|
|
20
|
-
autoCaptureBarcodeRequired: string;
|
|
21
|
-
barcodeScanningEnabled: boolean;
|
|
22
|
-
submissionEnvironment: string;
|
|
23
|
-
};
|
|
24
|
-
argTypes: {
|
|
25
|
-
submissionEnvironment: {
|
|
26
|
-
control: {
|
|
27
|
-
type: string;
|
|
28
|
-
};
|
|
29
|
-
options: string[];
|
|
30
|
-
};
|
|
31
|
-
autoCaptureEnabled: {
|
|
32
|
-
control: {
|
|
33
|
-
type: string;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
autoCaptureBarcodeRequired: {
|
|
37
|
-
control: {
|
|
38
|
-
type: string;
|
|
39
|
-
};
|
|
40
|
-
options: (string | boolean)[];
|
|
41
|
-
};
|
|
42
|
-
barcodeScanningEnabled: {
|
|
43
|
-
control: {
|
|
44
|
-
type: string;
|
|
45
|
-
};
|
|
46
|
-
};
|
|
47
|
-
idCardAutoCaptureScoreThreshold: {
|
|
48
|
-
control: {
|
|
49
|
-
type: string;
|
|
50
|
-
min: number;
|
|
51
|
-
max: number;
|
|
52
|
-
step: number;
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
passportAutoCaptureScoreThreshold: {
|
|
56
|
-
control: {
|
|
57
|
-
type: string;
|
|
58
|
-
min: number;
|
|
59
|
-
max: number;
|
|
60
|
-
step: number;
|
|
61
|
-
};
|
|
62
|
-
};
|
|
63
|
-
mrzDetectionScoreThreshold: {
|
|
64
|
-
control: {
|
|
65
|
-
type: string;
|
|
66
|
-
min: number;
|
|
67
|
-
max: number;
|
|
68
|
-
step: number;
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
|
-
idCardFocusScoreThreshold: {
|
|
72
|
-
control: {
|
|
73
|
-
type: string;
|
|
74
|
-
min: number;
|
|
75
|
-
max: number;
|
|
76
|
-
step: number;
|
|
77
|
-
};
|
|
78
|
-
};
|
|
79
|
-
passportFocusScoreThreshold: {
|
|
80
|
-
control: {
|
|
81
|
-
type: string;
|
|
82
|
-
min: number;
|
|
83
|
-
max: number;
|
|
84
|
-
step: number;
|
|
85
|
-
};
|
|
86
|
-
};
|
|
10
|
+
assets: {};
|
|
87
11
|
};
|
|
88
12
|
};
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const webSdkVersion = "2.0
|
|
1
|
+
export declare const webSdkVersion = "2.1.0";
|