File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ models/process-request.ts
163163models/process-response.ts
164164models/process-system-info.ts
165165models/processing-status.ts
166+ models/properties-params.ts
166167models/raw-image-container-item.ts
167168models/raw-image-container-list.ts
168169models/rectangle-coordinates.ts
Original file line number Diff line number Diff line change 99// May contain unused imports in some cases
1010// @ts -ignore
1111import type { LivenessParams } from './liveness-params' ;
12+ // May contain unused imports in some cases
13+ // @ts -ignore
14+ import type { PropertiesParams } from './properties-params' ;
1215
1316/**
1417 *
@@ -112,5 +115,17 @@ export interface AuthParams {
112115 * @memberof AuthParams
113116 */
114117 'checkSecurityText' ?: boolean ;
118+ /**
119+ * Set to true to enable detection of the document properties, such as holder\'s signature and other attributes.
120+ * @type {boolean }
121+ * @memberof AuthParams
122+ */
123+ 'checkProperties' ?: boolean ;
124+ /**
125+ *
126+ * @type {PropertiesParams }
127+ * @memberof AuthParams
128+ */
129+ 'propertiesParams' ?: PropertiesParams ;
115130}
116131
Original file line number Diff line number Diff line change @@ -101,7 +101,11 @@ export enum AuthenticityResultType {
101101 /**
102102 * Encrypted IPI
103103 */
104- ENCRYPTED_IPI = 16777216
104+ ENCRYPTED_IPI = 16777216 ,
105+ /**
106+ * Document property check
107+ */
108+ PROPERTY = 33554432
105109}
106110
107111
Original file line number Diff line number Diff line change @@ -142,7 +142,10 @@ export enum CheckDiagnose {
142142 CHD_ICAO_IDB_SIGNATURE_MUST_BE_PRESENT = 246 ,
143143 CHD_ICAO_IDB_SIGNATURE_MUST_NOT_BE_PRESENT = 247 ,
144144 CHD_ICAO_IDB_CERTIFICATE_MUST_NOT_BE_PRESENT = 248 ,
145- CHD_INCORRECT_OBJECT_COLOR = 250
145+ CHD_INCORRECT_OBJECT_COLOR = 250 ,
146+ PROPERTY_NO_SIGNATURE = 260 ,
147+ PROPERTY_TEXT_AS_SIGNATURE = 261 ,
148+ PROPERTY_FINGERPRINT_AS_SIGNATURE = 262
146149}
147150
148151
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ export * from './process-request-image';
155155export * from './process-response' ;
156156export * from './process-system-info' ;
157157export * from './processing-status' ;
158+ export * from './properties-params' ;
158159export * from './rfiddoc-visual-extended-field' ;
159160export * from './rfiddoc-visual-extended-field-item' ;
160161export * from './rfiddoc-visual-extended-info' ;
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 PropertiesParams
14+ */
15+ export interface PropertiesParams {
16+ /**
17+ * Set to true to enable detection of the document holder’s signature.
18+ * @type {boolean }
19+ * @memberof PropertiesParams
20+ */
21+ 'checkHoldersSignature' ?: boolean ;
22+ }
23+
Original file line number Diff line number Diff line change @@ -257,7 +257,11 @@ export enum SecurityFeatureType {
257257 /**
258258 * External vs ghost portrait comparison
259259 */
260- PORTRAIT_COMPARISON_EXT_VS_GHOST = 61
260+ PORTRAIT_COMPARISON_EXT_VS_GHOST = 61 ,
261+ /**
262+ * Signature presence
263+ */
264+ SIGNATURE_PRESENCE = 62
261265}
262266
263267
You can’t perform that action at this time.
0 commit comments