File tree Expand file tree Collapse file tree 8 files changed +56
-6
lines changed Expand file tree Collapse file tree 8 files changed +56
-6
lines changed Original file line number Diff line number Diff line change 5454 "prettier" : " ^3.6.2" ,
5555 "typescript" : " ^5.9.2" ,
5656 "typescript-eslint" : " ^8.43.0" ,
57- "vite" : " ^7.1.5 " ,
57+ "vite" : " ^7.1.11 " ,
5858 "vite-plugin-dts" : " ^4.5.4"
5959 }
6060}
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ models/fiber-result.ts
7474models/field-item.ts
7575models/file-image.ts
7676models/get-transactions-by-tag-response.ts
77+ models/glares-check-params.ts
7778models/graph-data.ts
7879models/graphic-field-type.ts
7980models/graphic-field.ts
Original file line number Diff line number Diff line change @@ -64,6 +64,8 @@ export enum CheckDiagnose {
6464 FIELD_POS_CORRECTOR_FACE_PRESENCE_CHECK_ERROR = 84 ,
6565 FIELD_POS_CORRECTOR_FACE_ABSENCE_CHECK_ERROR = 85 ,
6666 FIELD_POS_CORRECTOR_INCORRECT_HEAD_POSITION = 86 ,
67+ FIELD_POS_CORRECTOR_AGE_CHECK_ERROR = 87 ,
68+ FIELD_POS_CORRECTOR_SEX_CHECK_ERROR = 88 ,
6769 OVI_IR_INVISIBLE = 90 ,
6870 OVI_INSUFFICIENT_AREA = 91 ,
6971 OVI_COLOR_INVARIABLE = 92 ,
Original file line number Diff line number Diff line change 1+ /* tslint:disable */
2+ /* eslint-disable */
3+ /**
4+ * NOTE: This file is auto generated by OpenAPI Generator.
5+ * Do not edit the file manually.
6+ */
7+
8+
9+
10+ /**
11+ *
12+ * @export
13+ * @interface GlaresCheckParams
14+ */
15+ export interface GlaresCheckParams {
16+ /**
17+ * Margin from the edges of the image. 0.35 = 35%
18+ * @type {number }
19+ * @memberof GlaresCheckParams
20+ */
21+ 'imgMarginPart' ?: number ;
22+ /**
23+ * The maximum allowable part of the area occupied by the glare. The same: 0.06 = 6%
24+ * @type {number }
25+ * @memberof GlaresCheckParams
26+ */
27+ 'maxGlaringPart' ?: number ;
28+ }
29+
Original file line number Diff line number Diff line change 66 */
77
88
9+ // May contain unused imports in some cases
10+ // @ts -ignore
11+ import type { GlaresCheckParams } from './glares-check-params' ;
912// May contain unused imports in some cases
1013// @ts -ignore
1114import type { InputImageQualityChecks } from './input-image-quality-checks' ;
@@ -70,5 +73,11 @@ export interface ImageQA {
7073 * @memberof ImageQA
7174 */
7275 'expectedPass' ?: Array < InputImageQualityChecks > ;
76+ /**
77+ *
78+ * @type {GlaresCheckParams }
79+ * @memberof ImageQA
80+ */
81+ 'glaresCheckParams' ?: GlaresCheckParams ;
7382}
7483
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ export * from './fiber-result';
6868export * from './field-item' ;
6969export * from './file-image' ;
7070export * from './get-transactions-by-tag-response' ;
71+ export * from './glares-check-params' ;
7172export * from './graph-data' ;
7273export * from './graphic-field' ;
7374export * from './graphic-field-type' ;
Original file line number Diff line number Diff line change @@ -233,7 +233,15 @@ export enum SecurityFeatureType {
233233 /**
234234 * Liveness geometry check
235235 */
236- LIVENESS_GEOMETRY_CHECK = 55
236+ LIVENESS_GEOMETRY_CHECK = 55 ,
237+ /**
238+ * Age check
239+ */
240+ AGE_CHECK = 56 ,
241+ /**
242+ * Sex check
243+ */
244+ SEX_CHECK = 57
237245}
238246
239247
You can’t perform that action at this time.
0 commit comments