@scandit/web-datacapture-id 7.2.2 → 7.3.0-beta.2
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/build/js/IdCaptureSettings.d.ts +2 -0
- package/build/js/SerializedTypes.d.ts +3 -0
- package/build/js/index.js +3 -3
- package/build/js/memoryprofiler/viajs/receiver.d.mts +1 -0
- package/build/js/worker/IdCaptureMode.d.ts +49 -0
- package/build/js/worker/dataCaptureEngine.d.ts +12 -62
- package/build/js/worker/dataCaptureWorkerRelated.d.ts +15 -9
- package/package.json +5 -5
- package/sdc-lib/idcapture/{Centaurus.worker.min.js → 7.3.0-beta.2/Centaurus.worker.min.js} +1 -1
- package/sdc-lib/scandit-datacapture-sdk-id-pthreads.js +1 -1
- package/sdc-lib/scandit-datacapture-sdk-id-pthreads.wasm +0 -0
- package/sdc-lib/scandit-datacapture-sdk-id-simd-pthreads.js +1 -1
- package/sdc-lib/scandit-datacapture-sdk-id-simd-pthreads.wasm +0 -0
- package/sdc-lib/scandit-datacapture-sdk-id-simd.js +1 -1
- package/sdc-lib/scandit-datacapture-sdk-id-simd.wasm +0 -0
- package/sdc-lib/scandit-datacapture-sdk-id.js +1 -1
- package/sdc-lib/scandit-datacapture-sdk-id.wasm +0 -0
- /package/build/js/worker/{dataCapture.inlineWorker.d.ts → idCapture.inlineWorker.d.ts} +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/advanced/Centaurus.data +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/advanced/Centaurus.js +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/advanced/Centaurus.wasm +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/advanced-threads/Centaurus.data +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/advanced-threads/Centaurus.js +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/advanced-threads/Centaurus.wasm +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/advanced-threads/Centaurus.worker.js +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/basic/Centaurus.data +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/basic/Centaurus.js +0 -0
- /package/sdc-lib/idcapture/{lightweight → 7.3.0-beta.2/lightweight}/basic/Centaurus.wasm +0 -0
|
@@ -19,6 +19,7 @@ export interface IdCaptureSettingsJSON {
|
|
|
19
19
|
rejectInconsistentData: boolean;
|
|
20
20
|
rejectHolderBelowAge: number | null;
|
|
21
21
|
rejectIdsExpiringIn: DurationJSON | null;
|
|
22
|
+
decodeMobileDriverLicenses: boolean;
|
|
22
23
|
properties: JSONType;
|
|
23
24
|
}
|
|
24
25
|
export declare class IdCaptureSettings implements Serializable<IdCaptureSettingsJSON> {
|
|
@@ -34,6 +35,7 @@ export declare class IdCaptureSettings implements Serializable<IdCaptureSettings
|
|
|
34
35
|
rejectInconsistentData: boolean;
|
|
35
36
|
rejectHolderBelowAge: number | null;
|
|
36
37
|
rejectIdsExpiringIn: Duration | null;
|
|
38
|
+
decodeMobileDriverLicenses: boolean;
|
|
37
39
|
private properties;
|
|
38
40
|
private imageToResult;
|
|
39
41
|
constructor();
|
|
@@ -264,6 +264,9 @@ export interface RejectedIdJSON {
|
|
|
264
264
|
}
|
|
265
265
|
export interface AamvaBarcodeVerificationResultJSON {
|
|
266
266
|
allChecksPassed: boolean;
|
|
267
|
+
error: string;
|
|
268
|
+
serverResponseJSON: string;
|
|
269
|
+
isSuccess: boolean;
|
|
267
270
|
}
|
|
268
271
|
export interface BarcodeMetadataJSON {
|
|
269
272
|
errorCorrection: number;
|