@regulaforensics/document-reader-webclient 7.6.265-nightly → 7.6.267-nightly
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/index.cjs +1 -1
- package/dist/module/index.js +1 -1
- package/lib/index.d.ts +117 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -7989,6 +7989,18 @@ export interface FaceApi {
|
|
|
7989
7989
|
* @memberof FaceApi
|
|
7990
7990
|
*/
|
|
7991
7991
|
proxy_type?: number;
|
|
7992
|
+
/**
|
|
7993
|
+
* Minimum age of a child, at which portrait comparison result will be effective. Default: 13.
|
|
7994
|
+
* @type {number}
|
|
7995
|
+
* @memberof FaceApi
|
|
7996
|
+
*/
|
|
7997
|
+
childAgeThreshold?: number;
|
|
7998
|
+
/**
|
|
7999
|
+
* Estimated duration of validity for a child\'s passport, years. Default: 5.
|
|
8000
|
+
* @type {number}
|
|
8001
|
+
* @memberof FaceApi
|
|
8002
|
+
*/
|
|
8003
|
+
childDocValidityYears?: number;
|
|
7992
8004
|
}
|
|
7993
8005
|
/**
|
|
7994
8006
|
* Regula Document Reader Web API
|
|
@@ -8558,6 +8570,104 @@ export interface InlineResponse2001 {
|
|
|
8558
8570
|
*/
|
|
8559
8571
|
CoreLibResultCode?: number;
|
|
8560
8572
|
}
|
|
8573
|
+
/**
|
|
8574
|
+
* Regula Document Reader Web API
|
|
8575
|
+
* 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
|
|
8576
|
+
*
|
|
8577
|
+
* The version of the OpenAPI document: 7.2.0
|
|
8578
|
+
*
|
|
8579
|
+
*
|
|
8580
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8581
|
+
* https://openapi-generator.tech
|
|
8582
|
+
* Do not edit the class manually.
|
|
8583
|
+
*/
|
|
8584
|
+
/**
|
|
8585
|
+
* Enumeration contains the types of barcodes that can be processed
|
|
8586
|
+
* @export
|
|
8587
|
+
* @enum {string}
|
|
8588
|
+
*/
|
|
8589
|
+
export enum InputBarcodeType {
|
|
8590
|
+
/**
|
|
8591
|
+
* Unknown
|
|
8592
|
+
*/
|
|
8593
|
+
UNKNOWN = "bct_unknown",
|
|
8594
|
+
/**
|
|
8595
|
+
* Code 128
|
|
8596
|
+
*/
|
|
8597
|
+
CODE128 = "bct_Code128",
|
|
8598
|
+
/**
|
|
8599
|
+
* Code 39
|
|
8600
|
+
*/
|
|
8601
|
+
CODE39 = "bct_Code39",
|
|
8602
|
+
/**
|
|
8603
|
+
* EAN-8
|
|
8604
|
+
*/
|
|
8605
|
+
EAN8 = "bct_EAN8",
|
|
8606
|
+
/**
|
|
8607
|
+
* ITF
|
|
8608
|
+
*/
|
|
8609
|
+
ITF = "bct_ITF",
|
|
8610
|
+
/**
|
|
8611
|
+
* PDF417
|
|
8612
|
+
*/
|
|
8613
|
+
PDF417 = "bct_PDF417",
|
|
8614
|
+
/**
|
|
8615
|
+
* STF
|
|
8616
|
+
*/
|
|
8617
|
+
STF = "bct_STF",
|
|
8618
|
+
/**
|
|
8619
|
+
* MTF
|
|
8620
|
+
*/
|
|
8621
|
+
MTF = "bct_MTF",
|
|
8622
|
+
/**
|
|
8623
|
+
* IATA
|
|
8624
|
+
*/
|
|
8625
|
+
IATA = "bct_IATA",
|
|
8626
|
+
/**
|
|
8627
|
+
* Codabar
|
|
8628
|
+
*/
|
|
8629
|
+
CODABAR = "bct_CODABAR",
|
|
8630
|
+
/**
|
|
8631
|
+
* UPC-A
|
|
8632
|
+
*/
|
|
8633
|
+
UPCA = "bct_UPCA",
|
|
8634
|
+
/**
|
|
8635
|
+
* Code 93
|
|
8636
|
+
*/
|
|
8637
|
+
CODE93 = "bct_CODE93",
|
|
8638
|
+
/**
|
|
8639
|
+
* UPC-E
|
|
8640
|
+
*/
|
|
8641
|
+
UPCE = "bct_UPCE",
|
|
8642
|
+
/**
|
|
8643
|
+
* EAN-13
|
|
8644
|
+
*/
|
|
8645
|
+
EAN13 = "bct_EAN13",
|
|
8646
|
+
/**
|
|
8647
|
+
* QR code
|
|
8648
|
+
*/
|
|
8649
|
+
QRCODE = "bct_QRCODE",
|
|
8650
|
+
/**
|
|
8651
|
+
* Aztec code
|
|
8652
|
+
*/
|
|
8653
|
+
AZTEC = "bct_AZTEC",
|
|
8654
|
+
/**
|
|
8655
|
+
* Datamatrix
|
|
8656
|
+
*/
|
|
8657
|
+
DATAMATRIX = "bct_DATAMATRIX",
|
|
8658
|
+
/**
|
|
8659
|
+
* All 1D barcodes
|
|
8660
|
+
*/
|
|
8661
|
+
ALL_1D = "bct_ALL_1D",
|
|
8662
|
+
/**
|
|
8663
|
+
* Code 11
|
|
8664
|
+
*/
|
|
8665
|
+
CODE11 = "bct_Code11",
|
|
8666
|
+
/**
|
|
8667
|
+
* JAB code
|
|
8668
|
+
*/
|
|
8669
|
+
JABCODE = "bct_JABCODE"
|
|
8670
|
+
}
|
|
8561
8671
|
/**
|
|
8562
8672
|
*
|
|
8563
8673
|
* @export
|
|
@@ -10268,6 +10378,12 @@ export interface ProcessParams {
|
|
|
10268
10378
|
* @memberof ProcessParams
|
|
10269
10379
|
*/
|
|
10270
10380
|
selectLongestNames?: boolean;
|
|
10381
|
+
/**
|
|
10382
|
+
* Set the types of barcodes to process.
|
|
10383
|
+
* @type {Array<InputBarcodeType>}
|
|
10384
|
+
* @memberof ProcessParams
|
|
10385
|
+
*/
|
|
10386
|
+
doBarcodes?: Array<InputBarcodeType>;
|
|
10271
10387
|
}
|
|
10272
10388
|
/**
|
|
10273
10389
|
*
|
|
@@ -10680,6 +10796,7 @@ declare class Authenticity implements AuthenticityCheckList {
|
|
|
10680
10796
|
letterScreenChecks(): IdentChecks | undefined;
|
|
10681
10797
|
hologramDetectionChecks(): IdentChecks | undefined;
|
|
10682
10798
|
mrzChecks(): SecurityFeatureChecks | undefined;
|
|
10799
|
+
livenessChecks(): IdentChecks | undefined;
|
|
10683
10800
|
resultByType(authenticityType: number): AuthenticityCheckResult | undefined;
|
|
10684
10801
|
}
|
|
10685
10802
|
export class Response {
|
package/package.json
CHANGED