@regulaforensics/ionic-native-document-reader 9.2.372-nightly → 9.2.377-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/example/package.json +3 -3
- package/index.d.ts +12 -18
- package/index.js +16 -31
- package/ngx/index.d.ts +12 -18
- package/ngx/index.js +17 -32
- 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.377-rc",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "9.2.407-rc",
|
|
18
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.2.1918-rc",
|
|
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,10 +690,6 @@ 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
|
-
}
|
|
697
693
|
export declare class LivenessParams {
|
|
698
694
|
checkOVI?: boolean;
|
|
699
695
|
checkMLI?: boolean;
|
|
@@ -765,6 +761,7 @@ export declare class ProcessParams {
|
|
|
765
761
|
strictSecurityChecks?: boolean;
|
|
766
762
|
returnTransliteratedFields?: boolean;
|
|
767
763
|
checkCaptureProcessIntegrity?: boolean;
|
|
764
|
+
bsiTr03135?: Bsi;
|
|
768
765
|
barcodeParserType?: number;
|
|
769
766
|
perspectiveAngle?: number;
|
|
770
767
|
minDPI?: number;
|
|
@@ -802,7 +799,6 @@ export declare class ProcessParams {
|
|
|
802
799
|
rfidParams?: RFIDParams;
|
|
803
800
|
faceApiParams?: FaceApiParams;
|
|
804
801
|
backendProcessingConfig?: BackendProcessingConfig;
|
|
805
|
-
bsiTr03135?: Bsi;
|
|
806
802
|
authenticityParams?: AuthenticityParams;
|
|
807
803
|
customParams?: Record<string, any>;
|
|
808
804
|
static fromJson(jsonObject?: any): ProcessParams | undefined;
|
|
@@ -813,6 +809,10 @@ export declare class Font {
|
|
|
813
809
|
style?: number;
|
|
814
810
|
static fromJson(jsonObject?: any): Font | undefined;
|
|
815
811
|
}
|
|
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,12 +1140,6 @@ 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
|
-
}
|
|
1149
1143
|
export declare const FontStyle: {
|
|
1150
1144
|
NORMAL: number;
|
|
1151
1145
|
BOLD: number;
|
|
@@ -6458,13 +6452,6 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
6458
6452
|
* @return {Promise<any>} Returns a promise
|
|
6459
6453
|
*/
|
|
6460
6454
|
finalizePackage(): Promise<any>;
|
|
6461
|
-
/**
|
|
6462
|
-
*
|
|
6463
|
-
*
|
|
6464
|
-
* @param {FinalizeConfig} config
|
|
6465
|
-
* @return {Promise<any>} Returns a promise
|
|
6466
|
-
*/
|
|
6467
|
-
finalizePackageWithFinalizeConfig(config: FinalizeConfig): Promise<any>;
|
|
6468
6455
|
/**
|
|
6469
6456
|
*
|
|
6470
6457
|
*
|
|
@@ -6530,6 +6517,13 @@ export declare class DocumentReaderOriginal extends AwesomeCordovaNativePlugin {
|
|
|
6530
6517
|
* @return {Promise<any>} Returns a promise
|
|
6531
6518
|
*/
|
|
6532
6519
|
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>;
|
|
6533
6527
|
textFieldValueByType(results: DocumentReaderResults, fieldType: number): Promise<string | undefined>;
|
|
6534
6528
|
textFieldValueByTypeLcid(results: DocumentReaderResults, fieldType: number, lcid: number): Promise<string | undefined>;
|
|
6535
6529
|
textFieldValueByTypeSource(results: DocumentReaderResults, fieldType: number, source: number): Promise<string | undefined>;
|