@regulaforensics/document-reader-webclient 9.1.661-nightly → 9.1.662-rc
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/index.d.ts +27 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1565,7 +1565,7 @@ export declare interface ContainerList {
|
|
|
1565
1565
|
* @type ContainerListListInner
|
|
1566
1566
|
* @export
|
|
1567
1567
|
*/
|
|
1568
|
-
export declare type ContainerListListInner = AuthenticityResult | BarcodePositionResult | ByteArrayResult | ChosenDocumentTypeResult | DocBarCodeInfo | DocumentBinaryInfoResult | DocumentImageResult | DocumentPositionResult | DocumentTypesCandidatesResult | EncryptedRCLResult | FaceDetectionResult | GraphicsResult | ImageQualityResult | ImagesResult | LexicalAnalysisResult | LicenseResult | MRZDetectorResult | MRZPositionResult | MRZTestQualityResult | RFIDGraphicsInfoResult | RFIDTextDataResult | StatusResult | TextDataResult | TextResult | VDSDataResult | VDSNCDataResult;
|
|
1568
|
+
export declare 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;
|
|
1569
1569
|
|
|
1570
1570
|
/**
|
|
1571
1571
|
* NOTE: This file is auto generated by OpenAPI Generator.
|
|
@@ -6058,6 +6058,32 @@ export declare enum MDLDeviceRetrieval {
|
|
|
6058
6058
|
WIFI_AWARE = 3
|
|
6059
6059
|
}
|
|
6060
6060
|
|
|
6061
|
+
/**
|
|
6062
|
+
* NOTE: This file is auto generated by OpenAPI Generator.
|
|
6063
|
+
* Do not edit the file manually.
|
|
6064
|
+
*/
|
|
6065
|
+
/**
|
|
6066
|
+
*
|
|
6067
|
+
* @export
|
|
6068
|
+
* @interface MDLItem
|
|
6069
|
+
*/
|
|
6070
|
+
export declare interface MDLItem {
|
|
6071
|
+
/**
|
|
6072
|
+
*
|
|
6073
|
+
* @type {{ [key: string]: any; }}
|
|
6074
|
+
* @memberof MDLItem
|
|
6075
|
+
*/
|
|
6076
|
+
'MDLParsedResponse': {
|
|
6077
|
+
[key: string]: any;
|
|
6078
|
+
};
|
|
6079
|
+
}
|
|
6080
|
+
|
|
6081
|
+
/**
|
|
6082
|
+
* @type MDLResult
|
|
6083
|
+
* @export
|
|
6084
|
+
*/
|
|
6085
|
+
export declare type MDLResult = MDLItem & ResultItem;
|
|
6086
|
+
|
|
6061
6087
|
/**
|
|
6062
6088
|
* NOTE: This file is auto generated by OpenAPI Generator.
|
|
6063
6089
|
* Do not edit the file manually.
|
package/package.json
CHANGED