File tree Expand file tree Collapse file tree 6 files changed +131
-0
lines changed
Expand file tree Collapse file tree 6 files changed +131
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ models/in-data.ts
8484models/index.ts
8585models/inline-response200.ts
8686models/inline-response2001.ts
87+ models/input-barcode-type.ts
8788models/input-image-quality-checks.ts
8889models/lcid.ts
8990models/lexical-analysis-result-all-of.ts
Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ export class Authenticity implements AuthenticityCheckList {
8282 return this . securityFeatureOrUndefined ( AuthenticityResultType . EXTENDED_MRZ_CHECK ) ;
8383 }
8484
85+ public livenessChecks ( ) : IdentChecks | undefined {
86+ return this . identOrUndefined ( AuthenticityResultType . LIVENESS ) ;
87+ }
88+
8589 public resultByType ( authenticityType : number ) : AuthenticityCheckResult | undefined {
8690 for ( const result of this . List ) {
8791 if ( result . Type == authenticityType ) {
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ export * from './in-data-transaction-images-field-value';
7878export * from './in-data-video' ;
7979export * from './inline-response200' ;
8080export * from './inline-response2001' ;
81+ export * from './input-barcode-type' ;
8182export * from './input-image-quality-checks' ;
8283export * from './lcid' ;
8384export * from './lexical-analysis-result' ;
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import { DocumentFormat } from './document-format';
1818import { DocumentType } from './document-type' ;
1919import { FaceApi } from './face-api' ;
2020import { ImageQA } from './image-qa' ;
21+ import { InputBarcodeType } from './input-barcode-type' ;
2122import { LogLevel } from './log-level' ;
2223import { MRZFormat } from './mrzformat' ;
2324import { 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
You can’t perform that action at this time.
0 commit comments