Skip to content

Commit 199f145

Browse files
Merge pull request #319 from regulaforensics/develop
Develop -> Stable
2 parents a811159 + 54a5cbb commit 199f145

4 files changed

Lines changed: 31 additions & 3 deletions

File tree

src/.openapi-generator/FILES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ models/barcode-type.ts
2222
models/bc-pdf417-info.ts
2323
models/bc-roidetect.ts
2424
models/binary-data.ts
25+
models/bsi-tr03135.ts
2526
models/bsiv2-item.ts
2627
models/bsiv2-result.ts
2728
models/byte-array-item.ts

src/models/bsi-tr03135.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 BsiTr03135
14+
*/
15+
export interface BsiTr03135 {
16+
/**
17+
* When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.
18+
* @type {boolean}
19+
* @memberof BsiTr03135
20+
*/
21+
'generateResult'?: boolean;
22+
}
23+

src/models/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export * from './barcode-type';
1717
export * from './bc-pdf417-info';
1818
export * from './bc-roidetect';
1919
export * from './binary-data';
20+
export * from './bsi-tr03135';
2021
export * from './byte-array-item';
2122
export * from './byte-array-result';
2223
export * from './candidates-list-item';

src/models/process-params.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
import type { AuthParams } from './auth-params';
1212
// May contain unused imports in some cases
1313
// @ts-ignore
14+
import type { BsiTr03135 } from './bsi-tr03135';
15+
// May contain unused imports in some cases
16+
// @ts-ignore
1417
import type { DocumentFormat } from './document-format';
1518
// May contain unused imports in some cases
1619
// @ts-ignore
@@ -470,11 +473,11 @@ export interface ProcessParams {
470473
*/
471474
'returnTransliteratedFields'?: boolean;
472475
/**
473-
* When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.
474-
* @type {boolean}
476+
*
477+
* @type {BsiTr03135}
475478
* @memberof ProcessParams
476479
*/
477-
'bsiTr03135Results'?: boolean;
480+
'bsiTr03135'?: BsiTr03135;
478481
}
479482

480483

0 commit comments

Comments
 (0)