@scandit/web-datacapture-id 8.0.0-beta.1 → 8.0.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/IdCapture.d.ts +2 -1
- package/build/js/IdCaptureSettings.d.ts +2 -0
- package/build/js/SerializedTypes.d.ts +29 -17
- package/build/js/captured-id/BarcodeResult.d.ts +1 -1
- package/build/js/captured-id/CapturedId.d.ts +1 -1
- package/build/js/captured-id/DataConsistencyResult.d.ts +2 -3
- package/build/js/captured-id/MRZResult.d.ts +2 -2
- package/build/js/captured-id/MobileDocumentOCRResult.d.ts +7 -7
- package/build/js/captured-id/VIZResult.d.ts +1 -1
- package/build/js/captured-id/VerificationResult.d.ts +1 -1
- package/build/js/index.js +5 -5
- package/build/js/worker/IdCaptureMode.d.ts +2 -2
- package/build/js/worker/dataCaptureWorkerRelated.d.ts +10 -0
- 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/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/centaurus-worker.js +0 -0
- /package/sdc-lib/idcapture/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/lightweight/advanced/Centaurus.data +0 -0
- /package/sdc-lib/idcapture/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/lightweight/advanced/Centaurus.js +0 -0
- /package/sdc-lib/idcapture/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/lightweight/advanced/Centaurus.wasm +0 -0
- /package/sdc-lib/idcapture/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/lightweight/advanced-threads/Centaurus.data +0 -0
- /package/sdc-lib/idcapture/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/lightweight/advanced-threads/Centaurus.js +0 -0
- /package/sdc-lib/idcapture/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/lightweight/advanced-threads/Centaurus.wasm +0 -0
- /package/sdc-lib/idcapture/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/lightweight/basic/Centaurus.data +0 -0
- /package/sdc-lib/idcapture/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/lightweight/basic/Centaurus.js +0 -0
- /package/sdc-lib/idcapture/{8.0.0-beta.1 → 8.0.0-beta.2}/resources/lightweight/basic/Centaurus.wasm +0 -0
package/build/js/IdCapture.d.ts
CHANGED
|
@@ -97,7 +97,8 @@ export declare class IdCapture implements DataCaptureMode, Serializable<IdCaptur
|
|
|
97
97
|
private processFrameWithCentaurus;
|
|
98
98
|
private reportToBackend;
|
|
99
99
|
private uint8ArrayImageToBase64;
|
|
100
|
-
private
|
|
100
|
+
private processRawImages;
|
|
101
|
+
private anonymizeImage;
|
|
101
102
|
private triggerListenersForLocalization;
|
|
102
103
|
private triggerListenersForResult;
|
|
103
104
|
private notifyRecoveryAfterCrash;
|
|
@@ -46,6 +46,8 @@ export declare class IdCaptureSettings implements Serializable<IdCaptureSettings
|
|
|
46
46
|
setShouldPassImageTypeToResult(type: IdImageType, shouldPass: boolean): void;
|
|
47
47
|
getShouldPassImageTypeToResult(type: IdImageType): boolean;
|
|
48
48
|
addAnonymizedField(document: IdCaptureDocument, fieldType: IdFieldType): void;
|
|
49
|
+
removeAnonymizedField(document: IdCaptureDocument, fieldType: IdFieldType): void;
|
|
50
|
+
clearAnonymizedFields(): void;
|
|
49
51
|
clone(): IdCaptureSettings;
|
|
50
52
|
toJSONObject(): IdCaptureSettingsJSON;
|
|
51
53
|
private static fromJSON;
|
|
@@ -73,7 +73,7 @@ export interface ImageInfoJSON {
|
|
|
73
73
|
export type CapturedIdJSON = Prettify<{
|
|
74
74
|
firstName: CapturedIdDataField<string | null>;
|
|
75
75
|
lastName: CapturedIdDataField<string | null>;
|
|
76
|
-
fullName: CapturedIdDataField<string>;
|
|
76
|
+
fullName: CapturedIdDataField<string | null>;
|
|
77
77
|
sex: CapturedIdDataField<string | null>;
|
|
78
78
|
nationality: CapturedIdDataField<string | null>;
|
|
79
79
|
address: CapturedIdDataField<string | null>;
|
|
@@ -107,19 +107,28 @@ interface FrameInfo {
|
|
|
107
107
|
mirrorAxis: number;
|
|
108
108
|
orientation: number;
|
|
109
109
|
}
|
|
110
|
-
export type CapturedIdBeforeAnonymizationJSON = {
|
|
111
|
-
[key in keyof CapturedIdJSON]: CapturedIdJSON[key] extends CapturedIdDataField<infer A> ? A : CapturedIdJSON[key];
|
|
112
|
-
};
|
|
113
110
|
export interface RawImageInfo {
|
|
114
111
|
front: {
|
|
115
112
|
face: string | null;
|
|
116
|
-
croppedDocument:
|
|
117
|
-
|
|
113
|
+
croppedDocument: {
|
|
114
|
+
image: string | null;
|
|
115
|
+
obscuredRegions: QuadrilateralJSON[];
|
|
116
|
+
};
|
|
117
|
+
frame: {
|
|
118
|
+
image: FrameInfo;
|
|
119
|
+
obscuredRegions: QuadrilateralJSON[];
|
|
120
|
+
};
|
|
118
121
|
};
|
|
119
122
|
back: {
|
|
120
123
|
face: null;
|
|
121
|
-
croppedDocument:
|
|
122
|
-
|
|
124
|
+
croppedDocument: {
|
|
125
|
+
image: string | null;
|
|
126
|
+
obscuredRegions: QuadrilateralJSON[];
|
|
127
|
+
};
|
|
128
|
+
frame: {
|
|
129
|
+
image: FrameInfo;
|
|
130
|
+
obscuredRegions: QuadrilateralJSON[];
|
|
131
|
+
};
|
|
123
132
|
};
|
|
124
133
|
}
|
|
125
134
|
export type CapturedIdWithRawImageInfoJSON = CapturedIdJSON & {
|
|
@@ -182,7 +191,7 @@ export interface BarcodeResultJSON {
|
|
|
182
191
|
firstNameTruncation: string | null;
|
|
183
192
|
firstNameWithoutMiddleName: string | null;
|
|
184
193
|
formNumber: string | null;
|
|
185
|
-
fullName: string;
|
|
194
|
+
fullName: string | null;
|
|
186
195
|
genevaConventionCategory: string | null;
|
|
187
196
|
hairColor: string | null;
|
|
188
197
|
heightCm: number | null;
|
|
@@ -240,14 +249,14 @@ export interface BarcodeResultJSON {
|
|
|
240
249
|
}
|
|
241
250
|
export interface MRZResultJSON {
|
|
242
251
|
address: string | null;
|
|
243
|
-
capturedMrz: string;
|
|
252
|
+
capturedMrz: string | null;
|
|
244
253
|
dateOfBirth: DateResultJSON | null;
|
|
245
254
|
dateOfExpiry: DateResultJSON | null;
|
|
246
255
|
dateOfIssue: DateResultJSON | null;
|
|
247
256
|
documentCode: string;
|
|
248
257
|
documentNumber: string | null;
|
|
249
258
|
firstName: string | null;
|
|
250
|
-
fullName: string;
|
|
259
|
+
fullName: string | null;
|
|
251
260
|
fullNameSimplifiedChinese: string | null;
|
|
252
261
|
issuingAuthorityCode: string | null;
|
|
253
262
|
lastName: string | null;
|
|
@@ -281,7 +290,7 @@ export interface VIZResultJSON {
|
|
|
281
290
|
employer: string | null;
|
|
282
291
|
fathersName: string | null;
|
|
283
292
|
firstName: string | null;
|
|
284
|
-
fullName: string;
|
|
293
|
+
fullName: string | null;
|
|
285
294
|
isBackSideCaptureSupported: boolean;
|
|
286
295
|
issuingAuthority: string | null;
|
|
287
296
|
issuingCountry: string | null;
|
|
@@ -311,15 +320,17 @@ export interface VIZResultJSON {
|
|
|
311
320
|
export interface MobileDocumentOCRResultJSON {
|
|
312
321
|
dateOfBirth: DateResultJSON | null;
|
|
313
322
|
dateOfExpiry: DateResultJSON | null;
|
|
323
|
+
dateOfIssue: DateResultJSON | null;
|
|
314
324
|
documentNumber: string | null;
|
|
315
|
-
|
|
325
|
+
documentAdditionalNumber: string | null;
|
|
316
326
|
firstName: string | null;
|
|
317
|
-
fullName: string;
|
|
318
|
-
|
|
319
|
-
|
|
327
|
+
fullName: string | null;
|
|
328
|
+
lastName: string | null;
|
|
329
|
+
sex: string | null;
|
|
330
|
+
nationality: string | null;
|
|
331
|
+
address: string | null;
|
|
320
332
|
issuingJurisdiction: string | null;
|
|
321
333
|
issuingJurisdictionIso: string | null;
|
|
322
|
-
lastName: string | null;
|
|
323
334
|
}
|
|
324
335
|
export interface IdCaptureErrorJSON {
|
|
325
336
|
type: string;
|
|
@@ -377,5 +388,6 @@ export interface CentaurusSettingsJSON {
|
|
|
377
388
|
};
|
|
378
389
|
scanUnsupportedBack: boolean;
|
|
379
390
|
skipImagesOccludedByHand: boolean;
|
|
391
|
+
combineResultsFromMultipleInputImages: boolean;
|
|
380
392
|
}
|
|
381
393
|
export {};
|
|
@@ -92,7 +92,7 @@ export declare class BarcodeResult implements Serializable<BarcodeResultJSON> {
|
|
|
92
92
|
get isRealId(): boolean | null;
|
|
93
93
|
get firstName(): string | null;
|
|
94
94
|
get lastName(): string | null;
|
|
95
|
-
get fullName(): string;
|
|
95
|
+
get fullName(): string | null;
|
|
96
96
|
get sex(): string | null;
|
|
97
97
|
get dateOfBirth(): DateResult | null;
|
|
98
98
|
get nationality(): string | null;
|
|
@@ -20,7 +20,7 @@ export declare class CapturedId implements Serializable<CapturedIdJSON> {
|
|
|
20
20
|
private _mobileDocumentOCRResult;
|
|
21
21
|
get firstName(): string | null;
|
|
22
22
|
get lastName(): string | null;
|
|
23
|
-
get fullName(): string;
|
|
23
|
+
get fullName(): string | null;
|
|
24
24
|
get sexType(): Sex;
|
|
25
25
|
get sex(): string | null;
|
|
26
26
|
get dateOfBirth(): DateResult | null;
|
|
@@ -10,8 +10,7 @@ export declare class DataConsistencyResult implements Serializable<DataConsisten
|
|
|
10
10
|
private static fromJSON;
|
|
11
11
|
frontReviewImage(): Promise<string>;
|
|
12
12
|
toJSONObject(): DataConsistencyResultJSON;
|
|
13
|
-
private pushQuadForKey;
|
|
14
|
-
private pushQuadsForKeys;
|
|
15
|
-
private getMismatchedQuads;
|
|
16
13
|
private highlightImage;
|
|
14
|
+
private getQuadsForFields;
|
|
15
|
+
private getMismatchedQuads;
|
|
17
16
|
}
|
|
@@ -7,7 +7,7 @@ export declare class MRZResult implements Serializable<MRZResultJSON> {
|
|
|
7
7
|
get namesAreTruncated(): boolean;
|
|
8
8
|
get optionalDataInLine1(): string | null;
|
|
9
9
|
get optionalDataInLine2(): string | null;
|
|
10
|
-
get capturedMrz(): string;
|
|
10
|
+
get capturedMrz(): string | null;
|
|
11
11
|
get personalIdNumber(): string | null;
|
|
12
12
|
get renewalTimes(): number | null;
|
|
13
13
|
get fullNameSimplifiedChinese(): string | null;
|
|
@@ -19,7 +19,7 @@ export declare class MRZResult implements Serializable<MRZResultJSON> {
|
|
|
19
19
|
get passportDateOfExpiry(): DateResult | null;
|
|
20
20
|
get firstName(): string | null;
|
|
21
21
|
get lastName(): string | null;
|
|
22
|
-
get fullName(): string;
|
|
22
|
+
get fullName(): string | null;
|
|
23
23
|
get sex(): string | null;
|
|
24
24
|
get dateOfBirth(): DateResult | null;
|
|
25
25
|
get nationality(): string | null;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
|
|
2
2
|
import { DateResult } from "./DateResult";
|
|
3
3
|
import type { MobileDocumentOCRResultJSON } from "../SerializedTypes";
|
|
4
|
-
import type { Region } from "../Region.js";
|
|
5
|
-
import type { IdCaptureDocumentType } from "../document/IdCaptureDocument.js";
|
|
6
4
|
export declare class MobileDocumentOCRResult implements Serializable<MobileDocumentOCRResultJSON> {
|
|
7
5
|
protected json: MobileDocumentOCRResultJSON;
|
|
8
6
|
get dateOfBirth(): DateResult | null;
|
|
9
7
|
get dateOfExpiry(): DateResult | null;
|
|
10
8
|
get documentNumber(): string | null;
|
|
11
|
-
get documentType(): IdCaptureDocumentType;
|
|
12
9
|
get firstName(): string | null;
|
|
13
|
-
get fullName(): string;
|
|
14
|
-
get
|
|
15
|
-
get
|
|
10
|
+
get fullName(): string | null;
|
|
11
|
+
get lastName(): string | null;
|
|
12
|
+
get sex(): string | null;
|
|
13
|
+
get nationality(): string | null;
|
|
14
|
+
get address(): string | null;
|
|
15
|
+
get documentAdditionalNumber(): string | null;
|
|
16
|
+
get dateOfIssue(): DateResult | null;
|
|
16
17
|
get issuingJurisdiction(): string | null;
|
|
17
18
|
get issuingJurisdictionIso(): string | null;
|
|
18
|
-
get lastName(): string | null;
|
|
19
19
|
private static fromJSON;
|
|
20
20
|
toJSONObject(): MobileDocumentOCRResultJSON;
|
|
21
21
|
}
|
|
@@ -7,7 +7,7 @@ export declare class VIZResult implements Serializable<VIZResultJSON> {
|
|
|
7
7
|
protected json: VIZResultJSON;
|
|
8
8
|
get firstName(): string | null;
|
|
9
9
|
get lastName(): string | null;
|
|
10
|
-
get fullName(): string;
|
|
10
|
+
get fullName(): string | null;
|
|
11
11
|
get additionalAddressInformation(): string | null;
|
|
12
12
|
get additionalNameInformation(): string | null;
|
|
13
13
|
get documentAdditionalNumber(): string | null;
|
|
@@ -2,7 +2,7 @@ import type { Serializable } from "@scandit/web-datacapture-core/build/js/privat
|
|
|
2
2
|
import { DataConsistencyResult } from "./DataConsistencyResult";
|
|
3
3
|
import type { VerificationResultJSON } from "../SerializedTypes";
|
|
4
4
|
export declare class VerificationResult implements Serializable<VerificationResultJSON> {
|
|
5
|
-
protected json: VerificationResultJSON;
|
|
5
|
+
protected json: VerificationResultJSON | null;
|
|
6
6
|
get dataConsistency(): DataConsistencyResult | null;
|
|
7
7
|
private static fromJSON;
|
|
8
8
|
toJSONObject(): VerificationResultJSON;
|