Skip to content

Commit f5a8231

Browse files
Merge pull request #309 from regulaforensics/develop
Develop -> Stable
2 parents 1f38746 + fc81eac commit f5a8231

8 files changed

Lines changed: 89 additions & 2 deletions

File tree

src/.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ models/barcode-type.ts
2222
models/bc-pdf417-info.ts
2323
models/bc-roidetect.ts
2424
models/binary-data.ts
25+
models/bsiv2-item.ts
26+
models/bsiv2-result.ts
2527
models/byte-array-item.ts
2628
models/byte-array-result.ts
2729
models/candidates-list-item.ts

src/models/bsiv2-item.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 BSIV2Item
14+
*/
15+
export interface BSIV2Item {
16+
/**
17+
*
18+
* @type {string}
19+
* @memberof BSIV2Item
20+
*/
21+
'XML_buffer': string;
22+
}
23+

src/models/bsiv2-result.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
// May contain unused imports in some cases
10+
// @ts-ignore
11+
import type { BSIV2Item } from './bsiv2-item';
12+
// May contain unused imports in some cases
13+
// @ts-ignore
14+
import type { Result } from './result';
15+
// May contain unused imports in some cases
16+
// @ts-ignore
17+
import type { ResultItem } from './result-item';
18+
19+
/**
20+
* @type BSIV2Result
21+
* @export
22+
*/
23+
export type BSIV2Result = BSIV2Item & ResultItem;
24+
25+

src/models/container-list-list-inner.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ import type { AuthenticityCheckList } from './authenticity-check-list';
1414
import type { AuthenticityResult } from './authenticity-result';
1515
// May contain unused imports in some cases
1616
// @ts-ignore
17+
import type { BSIV2Result } from './bsiv2-result';
18+
// May contain unused imports in some cases
19+
// @ts-ignore
1720
import type { BarcodePositionResult } from './barcode-position-result';
1821
// May contain unused imports in some cases
1922
// @ts-ignore
@@ -155,6 +158,6 @@ import type { VDSNCDataResult } from './vdsncdata-result';
155158
* @type ContainerListListInner
156159
* @export
157160
*/
158-
export type ContainerListListInner = AuthenticityResult | BarcodePositionResult | ByteArrayResult | ChosenDocumentTypeResult | DocBarCodeInfo | DocumentBinaryInfoResult | DocumentImageResult | DocumentPositionResult | DocumentTypesCandidatesResult | EncryptedRCLResult | FaceDetectionResult | GraphicsResult | ImageQualityResult | ImagesResult | LexicalAnalysisResult | LicenseResult | MDLResult | MRZDetectorResult | MRZPositionResult | MRZTestQualityResult | RFIDGraphicsInfoResult | RFIDTextDataResult | StatusResult | TextDataResult | TextResult | VDSDataResult | VDSNCDataResult;
161+
export type ContainerListListInner = AuthenticityResult | BSIV2Result | BarcodePositionResult | ByteArrayResult | ChosenDocumentTypeResult | DocBarCodeInfo | DocumentBinaryInfoResult | DocumentImageResult | DocumentPositionResult | DocumentTypesCandidatesResult | EncryptedRCLResult | FaceDetectionResult | GraphicsResult | ImageQualityResult | ImagesResult | LexicalAnalysisResult | LicenseResult | MDLResult | MRZDetectorResult | MRZPositionResult | MRZTestQualityResult | RFIDGraphicsInfoResult | RFIDTextDataResult | StatusResult | TextDataResult | TextResult | VDSDataResult | VDSNCDataResult;
159162

160163

src/models/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ export * from './authenticity-check-result-item';
88
export * from './authenticity-check-result-list-inner';
99
export * from './authenticity-result';
1010
export * from './authenticity-result-type';
11+
export * from './bsiv2-item';
12+
export * from './bsiv2-result';
1113
export * from './bar-code-module-type';
1214
export * from './barcode-position-item';
1315
export * from './barcode-position-result';

src/models/process-params.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,18 @@ export interface ProcessParams {
469469
* @memberof ProcessParams
470470
*/
471471
'returnTransliteratedFields'?: boolean;
472+
/**
473+
* When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.
474+
* @type {boolean}
475+
* @memberof ProcessParams
476+
*/
477+
'bsiTr03135Results'?: boolean;
478+
/**
479+
* When enabled, activates detection of the document holder’s signature presence.
480+
* @type {boolean}
481+
* @memberof ProcessParams
482+
*/
483+
'checkHoldersSignature'?: boolean;
472484
}
473485

474486

src/models/result.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ export enum Result {
123123
*/
124124
BARCODE_POSITION = 62,
125125
/**
126+
* Contains results in accordance with the BSI TR-03135 standard
127+
*/
128+
BSI_XML_V2 = 73,
129+
/**
126130
* Contains information about document position on the input image, its center, angle, etc
127131
*/
128132
DOCUMENT_POSITION = 85,

src/models/security-feature-type.ts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,23 @@ export enum SecurityFeatureType {
241241
/**
242242
* Sex check
243243
*/
244-
SEX_CHECK = 57
244+
SEX_CHECK = 57,
245+
/**
246+
* RFID vs ghost portrait comparison
247+
*/
248+
PORTRAIT_COMPARISON_RFID_VS_GHOST = 58,
249+
/**
250+
* Barcode vs ghost portrait comparison
251+
*/
252+
PORTRAIT_COMPARISON_BARCODE_VS_GHOST = 59,
253+
/**
254+
* Ghost vs live camera portrait comparison
255+
*/
256+
PORTRAIT_COMPARISON_GHOST_VS_LIVE = 60,
257+
/**
258+
* External vs ghost portrait comparison
259+
*/
260+
PORTRAIT_COMPARISON_EXT_VS_GHOST = 61
245261
}
246262

247263

0 commit comments

Comments
 (0)