@regulaforensics/document-reader-webclient 7.6.309-nightly → 7.6.310-rc
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/dist/main/index.cjs +1 -1
- package/dist/module/index.js +1 -1
- package/lib/index.d.ts +4 -40
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -271,18 +271,6 @@ export interface LivenessParams {
|
|
|
271
271
|
* @memberof LivenessParams
|
|
272
272
|
*/
|
|
273
273
|
checkED?: boolean;
|
|
274
|
-
/**
|
|
275
|
-
* This parameter is used to enable Black and white copy check
|
|
276
|
-
* @type {boolean}
|
|
277
|
-
* @memberof LivenessParams
|
|
278
|
-
*/
|
|
279
|
-
checkBlackAndWhiteCopy?: boolean;
|
|
280
|
-
/**
|
|
281
|
-
* This parameter is used to enable Dynaprint check
|
|
282
|
-
* @type {boolean}
|
|
283
|
-
* @memberof LivenessParams
|
|
284
|
-
*/
|
|
285
|
-
checkDynaprint?: boolean;
|
|
286
274
|
}
|
|
287
275
|
/**
|
|
288
276
|
*
|
|
@@ -380,12 +368,6 @@ export interface AuthParams {
|
|
|
380
368
|
* @memberof AuthParams
|
|
381
369
|
*/
|
|
382
370
|
checkLetterScreen?: boolean;
|
|
383
|
-
/**
|
|
384
|
-
* This parameter is used to enable Security text check
|
|
385
|
-
* @type {boolean}
|
|
386
|
-
* @memberof AuthParams
|
|
387
|
-
*/
|
|
388
|
-
checkSecurityText?: boolean;
|
|
389
371
|
}
|
|
390
372
|
/**
|
|
391
373
|
* Regula Document Reader Web API
|
|
@@ -654,7 +636,6 @@ export enum CheckDiagnose {
|
|
|
654
636
|
OCR_QUALITY_INVALID_FONT = 221,
|
|
655
637
|
OCR_QUALITY_INVALID_BACKGROUND = 222,
|
|
656
638
|
LASINK_INVALID_LINES_FREQUENCY = 230,
|
|
657
|
-
DOC_LIVENESS_DOCUMENT_NOT_LIVE = 238,
|
|
658
639
|
DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED = 239,
|
|
659
640
|
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240,
|
|
660
641
|
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241,
|
|
@@ -3313,11 +3294,7 @@ export enum ImageQualityCheckType {
|
|
|
3313
3294
|
/**
|
|
3314
3295
|
* Signals if the document image is bright enough
|
|
3315
3296
|
*/
|
|
3316
|
-
Brightness = 9
|
|
3317
|
-
/**
|
|
3318
|
-
* Signals if the document image has occlusion
|
|
3319
|
-
*/
|
|
3320
|
-
Occlusion = 10
|
|
3297
|
+
Brightness = 9
|
|
3321
3298
|
}
|
|
3322
3299
|
/**
|
|
3323
3300
|
*
|
|
@@ -6859,15 +6836,7 @@ export enum TextFieldType {
|
|
|
6859
6836
|
/**
|
|
6860
6837
|
* EF.CardAccess
|
|
6861
6838
|
*/
|
|
6862
|
-
EF_CARD_ACCESS = 692
|
|
6863
|
-
/**
|
|
6864
|
-
* Short flight number
|
|
6865
|
-
*/
|
|
6866
|
-
SHORT_FLIGHT_NUMBER = 693,
|
|
6867
|
-
/**
|
|
6868
|
-
* Airline code
|
|
6869
|
-
*/
|
|
6870
|
-
AIRLINE_CODE = 694
|
|
6839
|
+
EF_CARD_ACCESS = 692
|
|
6871
6840
|
}
|
|
6872
6841
|
/**
|
|
6873
6842
|
* Regula Document Reader Web API
|
|
@@ -8021,7 +7990,7 @@ export interface FaceApi {
|
|
|
8021
7990
|
*/
|
|
8022
7991
|
proxy_type?: number;
|
|
8023
7992
|
/**
|
|
8024
|
-
*
|
|
7993
|
+
* Minimum age of a child, at which portrait comparison result will be effective. Default: 13.
|
|
8025
7994
|
* @type {number}
|
|
8026
7995
|
* @memberof FaceApi
|
|
8027
7996
|
*/
|
|
@@ -8214,11 +8183,7 @@ export enum InputImageQualityChecks {
|
|
|
8214
8183
|
/**
|
|
8215
8184
|
* Signals if the document image is bright enough
|
|
8216
8185
|
*/
|
|
8217
|
-
Brightness = "brightnessCheck"
|
|
8218
|
-
/**
|
|
8219
|
-
* Signals if the document image has occlusion
|
|
8220
|
-
*/
|
|
8221
|
-
Occlusion = "occlusionCheck"
|
|
8186
|
+
Brightness = "brightnessCheck"
|
|
8222
8187
|
}
|
|
8223
8188
|
/**
|
|
8224
8189
|
*
|
|
@@ -10912,7 +10877,6 @@ export const instanceOfProcessRequest: (data: any) => data is ProcessRequestExt;
|
|
|
10912
10877
|
export class DocumentReaderApi {
|
|
10913
10878
|
constructor(configuration?: ConfigurationParameters, basePath?: string, axios?: AxiosInstance);
|
|
10914
10879
|
ping(xRequestID?: string): Promise<DeviceInfo>;
|
|
10915
|
-
health(xRequestID?: string): Promise<Healthcheck>;
|
|
10916
10880
|
/**
|
|
10917
10881
|
*
|
|
10918
10882
|
* @summary Process list of documents images and return extracted data
|
package/package.json
CHANGED