Skip to content

Commit 8d61efa

Browse files
committed
Commit: e6655090
1 parent 89ed207 commit 8d61efa

7 files changed

Lines changed: 54 additions & 3 deletions

File tree

src/.openapi-generator/FILES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ models/process-request.ts
163163
models/process-response.ts
164164
models/process-system-info.ts
165165
models/processing-status.ts
166+
models/properties-params.ts
166167
models/raw-image-container-item.ts
167168
models/raw-image-container-list.ts
168169
models/rectangle-coordinates.ts

src/models/auth-params.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
// May contain unused imports in some cases
1010
// @ts-ignore
1111
import 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

src/models/authenticity-result-type.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

src/models/check-diagnose.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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

src/models/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ export * from './process-request-image';
155155
export * from './process-response';
156156
export * from './process-system-info';
157157
export * from './processing-status';
158+
export * from './properties-params';
158159
export * from './rfiddoc-visual-extended-field';
159160
export * from './rfiddoc-visual-extended-field-item';
160161
export * from './rfiddoc-visual-extended-info';

src/models/properties-params.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+

src/models/security-feature-type.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)