@regulaforensics/ionic-native-document-reader 6.2.1 → 6.3.1
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/example/README.md +1 -3
- package/example/angular.json +2 -2
- package/example/config.xml +1 -0
- package/example/package.json +30 -26
- package/index.d.ts +10 -4
- package/index.js +3 -2
- package/ngx/index.d.ts +10 -4
- package/ngx/index.js +3 -2
- package/ngx/index.metadata.json +1 -1
- package/package.json +1 -1
- package/reactExample/README.md +0 -3
- package/reactExample/package.json +3 -3
package/ngx/index.d.ts
CHANGED
|
@@ -995,6 +995,7 @@ export declare const eImageQualityCheckType: {
|
|
|
995
995
|
IQC_BOUNDS: number;
|
|
996
996
|
IQC_SCREEN_CAPTURE: number;
|
|
997
997
|
IQC_PORTRAIT: number;
|
|
998
|
+
IQC_HANDWRITTEN: number;
|
|
998
999
|
};
|
|
999
1000
|
export declare const eLDS_ParsingErrorCodes: {
|
|
1000
1001
|
ERR_LDS_OK: number;
|
|
@@ -3107,6 +3108,7 @@ export declare const Enum: {
|
|
|
3107
3108
|
IQC_BOUNDS: number;
|
|
3108
3109
|
IQC_SCREEN_CAPTURE: number;
|
|
3109
3110
|
IQC_PORTRAIT: number;
|
|
3111
|
+
IQC_HANDWRITTEN: number;
|
|
3110
3112
|
};
|
|
3111
3113
|
eLDS_ParsingErrorCodes: {
|
|
3112
3114
|
ERR_LDS_OK: number;
|
|
@@ -5136,13 +5138,17 @@ export declare class DocumentReader extends IonicNativePlugin {
|
|
|
5136
5138
|
*/
|
|
5137
5139
|
parseCoreResults(json: any): Promise<any>;
|
|
5138
5140
|
/**
|
|
5139
|
-
*
|
|
5141
|
+
* The method call sets the given TCCParams to the RFID session. The parameters are required to be set before starting RFID session.
|
|
5140
5142
|
*
|
|
5141
|
-
* @param {
|
|
5142
|
-
*
|
|
5143
|
+
* @param {object} params Object with structure
|
|
5144
|
+
* "serviceUrlTA": "some string"
|
|
5145
|
+
* "serviceUrlPA": "some string"
|
|
5146
|
+
* "pfxCertUrl": "some string"
|
|
5147
|
+
* "pfxCert": "base64 encoded binary"
|
|
5148
|
+
* "pfxPassPhrase": "some string"
|
|
5143
5149
|
* @return {Promise<any>} Returns a promise
|
|
5144
5150
|
*/
|
|
5145
|
-
|
|
5151
|
+
setTCCParams(params: any): Promise<any>;
|
|
5146
5152
|
/**
|
|
5147
5153
|
* Use this method to initialize Document Reader with database binary
|
|
5148
5154
|
*
|