@regulaforensics/ionic-native-document-reader 9.2.369-nightly → 9.2.372-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/example/package.json +3 -3
- package/index.d.ts +18 -12
- package/index.js +31 -16
- package/ngx/index.d.ts +18 -12
- package/ngx/index.js +32 -17
- package/package.json +1 -1
- package/reactExample/package.json +3 -3
package/example/package.json
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
},
|
|
14
14
|
"private": true,
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@regulaforensics/ionic-native-document-reader": "9.2.
|
|
17
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "9.2.
|
|
18
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.2.
|
|
16
|
+
"@regulaforensics/ionic-native-document-reader": "9.2.372-nightly",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "9.2.402-nightly",
|
|
18
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.2.1932-nightly",
|
|
19
19
|
"cordova-plugin-camera": "7.0.0",
|
|
20
20
|
"@awesome-cordova-plugins/camera": "6.6.0",
|
|
21
21
|
"@awesome-cordova-plugins/core": "6.6.0",
|
package/index.d.ts
CHANGED
|
@@ -690,6 +690,10 @@ export declare class BackendProcessingConfig {
|
|
|
690
690
|
timeoutConnection?: number;
|
|
691
691
|
static fromJson(jsonObject?: any): BackendProcessingConfig | undefined;
|
|
692
692
|
}
|
|
693
|
+
export declare class Bsi {
|
|
694
|
+
generateResult?: boolean;
|
|
695
|
+
static fromJson(jsonObject?: any): Bsi | undefined;
|
|
696
|
+
}
|
|
693
697
|
export declare class LivenessParams {
|
|
694
698
|
checkOVI?: boolean;
|
|
695
699
|
checkMLI?: boolean;
|
|
@@ -761,7 +765,6 @@ export declare class ProcessParams {
|
|
|
761
765
|
strictSecurityChecks?: boolean;
|
|
762
766
|
returnTransliteratedFields?: boolean;
|
|
763
767
|
checkCaptureProcessIntegrity?: boolean;
|
|
764
|
-
bsiTr03135?: Bsi;
|
|
765
768
|
barcodeParserType?: number;
|
|
766
769
|
perspectiveAngle?: number;
|
|
767
770
|
minDPI?: number;
|
|
@@ -799,6 +802,7 @@ export declare class ProcessParams {
|
|
|
799
802
|
rfidParams?: RFIDParams;
|
|
800
803
|
faceApiParams?: FaceApiParams;
|
|
801
804
|
backendProcessingConfig?: BackendProcessingConfig;
|
|
805
|
+
bsiTr03135?: Bsi;
|
|
802
806
|
authenticityParams?: AuthenticityParams;
|
|
803
807
|
customParams?: Record<string, any>;
|
|
804
808
|
static fromJson(jsonObject?: any): ProcessParams | undefined;
|
|
@@ -809,10 +813,6 @@ export declare class Font {
|
|
|
809
813
|
style?: number;
|
|
810
814
|
static fromJson(jsonObject?: any): Font | undefined;
|
|
811
815
|
}
|
|
812
|
-
export declare class Bsi {
|
|
813
|
-
generateResult?: boolean;
|
|
814
|
-
static fromJson(jsonObject?: any): Bsi | undefined;
|
|
815
|
-
}
|
|
816
816
|
export declare class CustomizationColors {
|
|
817
817
|
rfidProcessingScreenBackground?: number;
|
|
818
818
|
rfidProcessingScreenHintLabelText?: number;
|
|
@@ -1140,6 +1140,12 @@ export declare class FinalizeConfig {
|
|
|
1140
1140
|
rfidSession?: boolean;
|
|
1141
1141
|
static fromJson(jsonObject?: any): FinalizeConfig | undefined;
|
|
1142
1142
|
}
|
|
1143
|
+
export declare class FinalizeCompletion {
|
|
1144
|
+
action?: number;
|
|
1145
|
+
info?: TransactionInfo;
|
|
1146
|
+
error?: RegulaException;
|
|
1147
|
+
static fromJson(jsonObject?: any): FinalizeCompletion | undefined;
|
|
1148
|
+
}
|
|
1143
1149
|
export declare const FontStyle: {
|
|
1144
1150
|
NORMAL: number;
|
|
1145
1151
|
BOLD: number;
|
|
@@ -6452,6 +6458,13 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
6452
6458
|
* @return {Promise<any>} Returns a promise
|
|
6453
6459
|
*/
|
|
6454
6460
|
finalizePackage(): Promise<any>;
|
|
6461
|
+
/**
|
|
6462
|
+
*
|
|
6463
|
+
*
|
|
6464
|
+
* @param {FinalizeConfig} config
|
|
6465
|
+
* @return {Promise<any>} Returns a promise
|
|
6466
|
+
*/
|
|
6467
|
+
finalizePackageWithFinalizeConfig(config: FinalizeConfig): Promise<any>;
|
|
6455
6468
|
/**
|
|
6456
6469
|
*
|
|
6457
6470
|
*
|
|
@@ -6517,13 +6530,6 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
6517
6530
|
* @return {Promise<any>} Returns a promise
|
|
6518
6531
|
*/
|
|
6519
6532
|
retrieveDataBLE(deviceEngagement: DeviceEngagement, dataRetrieval: DataRetrieval): Promise<any>;
|
|
6520
|
-
/**
|
|
6521
|
-
*
|
|
6522
|
-
*
|
|
6523
|
-
* @param {FinalizeConfig} config
|
|
6524
|
-
* @return {Promise<any>} Returns a promise
|
|
6525
|
-
*/
|
|
6526
|
-
finalizePackageWithFinalizeConfig(config: FinalizeConfig): Promise<any>;
|
|
6527
6533
|
textFieldValueByType(results: DocumentReaderResults, fieldType: number): Promise<string | undefined>;
|
|
6528
6534
|
textFieldValueByTypeLcid(results: DocumentReaderResults, fieldType: number, lcid: number): Promise<string | undefined>;
|
|
6529
6535
|
textFieldValueByTypeSource(results: DocumentReaderResults, fieldType: number, source: number): Promise<string | undefined>;
|