@regulaforensics/document-reader-webclient 8.4.566-rc → 8.4.568-nightly
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/index.cjs +6 -6
- package/dist/index.d.ts +41 -1
- package/dist/index.js +53 -53
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1263,6 +1263,8 @@ export declare enum CheckDiagnose {
|
|
|
1263
1263
|
FIELD_POS_CORRECTOR_FACE_PRESENCE_CHECK_ERROR = 84,
|
|
1264
1264
|
FIELD_POS_CORRECTOR_FACE_ABSENCE_CHECK_ERROR = 85,
|
|
1265
1265
|
FIELD_POS_CORRECTOR_INCORRECT_HEAD_POSITION = 86,
|
|
1266
|
+
FIELD_POS_CORRECTOR_AGE_CHECK_ERROR = 87,
|
|
1267
|
+
FIELD_POS_CORRECTOR_SEX_CHECK_ERROR = 88,
|
|
1266
1268
|
OVI_IR_INVISIBLE = 90,
|
|
1267
1269
|
OVI_INSUFFICIENT_AREA = 91,
|
|
1268
1270
|
OVI_COLOR_INVARIABLE = 92,
|
|
@@ -3839,6 +3841,30 @@ export declare interface GetTransactionsByTagResponse {
|
|
|
3839
3841
|
'updatedAt'?: string;
|
|
3840
3842
|
}
|
|
3841
3843
|
|
|
3844
|
+
/**
|
|
3845
|
+
* NOTE: This file is auto generated by OpenAPI Generator.
|
|
3846
|
+
* Do not edit the file manually.
|
|
3847
|
+
*/
|
|
3848
|
+
/**
|
|
3849
|
+
*
|
|
3850
|
+
* @export
|
|
3851
|
+
* @interface GlaresCheckParams
|
|
3852
|
+
*/
|
|
3853
|
+
export declare interface GlaresCheckParams {
|
|
3854
|
+
/**
|
|
3855
|
+
* Margin from the edges of the image. 0.35 = 35%
|
|
3856
|
+
* @type {number}
|
|
3857
|
+
* @memberof GlaresCheckParams
|
|
3858
|
+
*/
|
|
3859
|
+
'imgMarginPart'?: number;
|
|
3860
|
+
/**
|
|
3861
|
+
* The maximum allowable part of the area occupied by the glare. The same: 0.06 = 6%
|
|
3862
|
+
* @type {number}
|
|
3863
|
+
* @memberof GlaresCheckParams
|
|
3864
|
+
*/
|
|
3865
|
+
'maxGlaringPart'?: number;
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3842
3868
|
/**
|
|
3843
3869
|
*
|
|
3844
3870
|
* @export
|
|
@@ -4324,6 +4350,12 @@ export declare interface ImageQA {
|
|
|
4324
4350
|
* @memberof ImageQA
|
|
4325
4351
|
*/
|
|
4326
4352
|
'expectedPass'?: Array<InputImageQualityChecks>;
|
|
4353
|
+
/**
|
|
4354
|
+
*
|
|
4355
|
+
* @type {GlaresCheckParams}
|
|
4356
|
+
* @memberof ImageQA
|
|
4357
|
+
*/
|
|
4358
|
+
'glaresCheckParams'?: GlaresCheckParams;
|
|
4327
4359
|
}
|
|
4328
4360
|
|
|
4329
4361
|
/**
|
|
@@ -11824,7 +11856,15 @@ export declare enum SecurityFeatureType {
|
|
|
11824
11856
|
/**
|
|
11825
11857
|
* Liveness geometry check
|
|
11826
11858
|
*/
|
|
11827
|
-
LIVENESS_GEOMETRY_CHECK = 55
|
|
11859
|
+
LIVENESS_GEOMETRY_CHECK = 55,
|
|
11860
|
+
/**
|
|
11861
|
+
* Age check
|
|
11862
|
+
*/
|
|
11863
|
+
AGE_CHECK = 56,
|
|
11864
|
+
/**
|
|
11865
|
+
* Sex check
|
|
11866
|
+
*/
|
|
11867
|
+
SEX_CHECK = 57
|
|
11828
11868
|
}
|
|
11829
11869
|
|
|
11830
11870
|
/**
|