Skip to content

Commit 579cfe6

Browse files
SP-21312 - update models
1 parent 6c470b8 commit 579cfe6

File tree

5 files changed

+127
-0
lines changed

5 files changed

+127
-0
lines changed

src/.openapi-generator/FILES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ models/in-data.ts
8484
models/index.ts
8585
models/inline-response200.ts
8686
models/inline-response2001.ts
87+
models/input-barcode-type.ts
8788
models/input-image-quality-checks.ts
8889
models/lcid.ts
8990
models/lexical-analysis-result-all-of.ts

src/models/face-api.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,18 @@ export interface FaceApi {
6969
* @memberof FaceApi
7070
*/
7171
proxy_type?: number;
72+
/**
73+
* Minimum age of a child, at which portrait comparison result will be effective. Default: 13.
74+
* @type {number}
75+
* @memberof FaceApi
76+
*/
77+
childAgeThreshold?: number;
78+
/**
79+
* Estimated duration of validity for a child\'s passport, years. Default: 5.
80+
* @type {number}
81+
* @memberof FaceApi
82+
*/
83+
childDocValidityYears?: number;
7284
}
7385

7486

src/models/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export * from './in-data-transaction-images-field-value';
7878
export * from './in-data-video';
7979
export * from './inline-response200';
8080
export * from './inline-response2001';
81+
export * from './input-barcode-type';
8182
export * from './input-image-quality-checks';
8283
export * from './lcid';
8384
export * from './lexical-analysis-result';

src/models/input-barcode-type.ts

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* Regula Document Reader Web API
5+
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core
6+
*
7+
* The version of the OpenAPI document: 7.2.0
8+
*
9+
*
10+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11+
* https://openapi-generator.tech
12+
* Do not edit the class manually.
13+
*/
14+
15+
16+
17+
/**
18+
* Enumeration contains the types of barcodes that can be processed
19+
* @export
20+
* @enum {string}
21+
*/
22+
export enum InputBarcodeType {
23+
/**
24+
* Unknown
25+
*/
26+
UNKNOWN = 'bct_unknown',
27+
/**
28+
* Code 128
29+
*/
30+
CODE128 = 'bct_Code128',
31+
/**
32+
* Code 39
33+
*/
34+
CODE39 = 'bct_Code39',
35+
/**
36+
* EAN-8
37+
*/
38+
EAN8 = 'bct_EAN8',
39+
/**
40+
* ITF
41+
*/
42+
ITF = 'bct_ITF',
43+
/**
44+
* PDF417
45+
*/
46+
PDF417 = 'bct_PDF417',
47+
/**
48+
* STF
49+
*/
50+
STF = 'bct_STF',
51+
/**
52+
* MTF
53+
*/
54+
MTF = 'bct_MTF',
55+
/**
56+
* IATA
57+
*/
58+
IATA = 'bct_IATA',
59+
/**
60+
* Codabar
61+
*/
62+
CODABAR = 'bct_CODABAR',
63+
/**
64+
* UPC-A
65+
*/
66+
UPCA = 'bct_UPCA',
67+
/**
68+
* Code 93
69+
*/
70+
CODE93 = 'bct_CODE93',
71+
/**
72+
* UPC-E
73+
*/
74+
UPCE = 'bct_UPCE',
75+
/**
76+
* EAN-13
77+
*/
78+
EAN13 = 'bct_EAN13',
79+
/**
80+
* QR code
81+
*/
82+
QRCODE = 'bct_QRCODE',
83+
/**
84+
* Aztec code
85+
*/
86+
AZTEC = 'bct_AZTEC',
87+
/**
88+
* Datamatrix
89+
*/
90+
DATAMATRIX = 'bct_DATAMATRIX',
91+
/**
92+
* All 1D barcodes
93+
*/
94+
ALL_1D = 'bct_ALL_1D',
95+
/**
96+
* Code 11
97+
*/
98+
CODE11 = 'bct_Code11',
99+
/**
100+
* JAB code
101+
*/
102+
JABCODE = 'bct_JABCODE'
103+
}
104+
105+
106+

src/models/process-params.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import { DocumentFormat } from './document-format';
1818
import { DocumentType } from './document-type';
1919
import { FaceApi } from './face-api';
2020
import { ImageQA } from './image-qa';
21+
import { InputBarcodeType } from './input-barcode-type';
2122
import { LogLevel } from './log-level';
2223
import { MRZFormat } from './mrzformat';
2324
import { MeasureSystem } from './measure-system';
@@ -386,6 +387,12 @@ export interface ProcessParams {
386387
* @memberof ProcessParams
387388
*/
388389
selectLongestNames?: boolean;
390+
/**
391+
* Set the types of barcodes to process.
392+
* @type {Array<InputBarcodeType>}
393+
* @memberof ProcessParams
394+
*/
395+
doBarcodes?: Array<InputBarcodeType>;
389396
}
390397

391398

0 commit comments

Comments
 (0)