@scandit/web-datacapture-id 7.6.0-beta.1 → 7.6.1
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/DataConsistencyVerifier.d.ts +3 -0
- package/build/js/IdCapture.d.ts +4 -0
- package/build/js/captured-id/CapturedId.d.ts +6 -0
- package/build/js/index.js +2 -2
- package/package.json +2 -2
- 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/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/centaurus-worker.js +0 -0
- /package/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/lightweight/advanced/Centaurus.data +0 -0
- /package/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/lightweight/advanced/Centaurus.js +0 -0
- /package/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/lightweight/advanced/Centaurus.wasm +0 -0
- /package/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/lightweight/advanced-threads/Centaurus.data +0 -0
- /package/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/lightweight/advanced-threads/Centaurus.js +0 -0
- /package/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/lightweight/advanced-threads/Centaurus.wasm +0 -0
- /package/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/lightweight/basic/Centaurus.data +0 -0
- /package/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/lightweight/basic/Centaurus.js +0 -0
- /package/sdc-lib/idcapture/{7.6.0-beta.1 → 7.6.1}/resources/lightweight/basic/Centaurus.wasm +0 -0
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import type { DataCaptureContext } from "@scandit/web-datacapture-core";
|
|
2
2
|
import type { CapturedId } from "./captured-id/CapturedId";
|
|
3
3
|
import { DataConsistencyResult } from "./captured-id/DataConsistencyResult";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Replaced by IdCaptureSettings.RejectInconsistentData
|
|
6
|
+
*/
|
|
4
7
|
export declare class DataConsistencyVerifier {
|
|
5
8
|
private _context;
|
|
6
9
|
private constructor();
|
package/build/js/IdCapture.d.ts
CHANGED
|
@@ -49,6 +49,10 @@ export declare class IdCapture implements DataCaptureMode, Serializable<IdCaptur
|
|
|
49
49
|
setExternalTransactionId(transactionId: string | null): Promise<void>;
|
|
50
50
|
getExternalTransactionId(): Promise<string | null>;
|
|
51
51
|
toJSONObject(): IdCaptureJSON;
|
|
52
|
+
/**
|
|
53
|
+
* Reflects if enableVIZDocuments was enabled in the IdCaptureLoaderOptions.
|
|
54
|
+
*/
|
|
55
|
+
private shouldEnableCentaurus;
|
|
52
56
|
private initCentaurusConnector;
|
|
53
57
|
private onSDCResetDone;
|
|
54
58
|
/**
|
|
@@ -20,7 +20,13 @@ export declare class CapturedId implements Serializable<CapturedIdJSON> {
|
|
|
20
20
|
get lastName(): string | null;
|
|
21
21
|
get secondaryLastName(): string | null;
|
|
22
22
|
get fullName(): string;
|
|
23
|
+
/**
|
|
24
|
+
* @deprecated This property will be replaced in SDK version 8.0 with a single sex property that returns an optional Sex.
|
|
25
|
+
*/
|
|
23
26
|
get sexType(): Sex;
|
|
27
|
+
/**
|
|
28
|
+
* @deprecated This property will be replaced in SDK version 8.0 with a single sex property that returns an optional Sex.
|
|
29
|
+
*/
|
|
24
30
|
get sex(): string | null;
|
|
25
31
|
get dateOfBirth(): DateResult | null;
|
|
26
32
|
get age(): number | null;
|