@regulaforensics/ionic-native-document-reader 9.2.375-rc → 9.3.376-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 +54 -12
- package/index.js +49 -16
- package/ngx/index.d.ts +54 -12
- package/ngx/index.js +50 -17
- package/package.json +1 -1
- package/reactExample/package.json +3 -3
package/ngx/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;
|
|
@@ -1182,6 +1188,16 @@ export declare const CustomizationColor: {
|
|
|
1182
1188
|
RFID_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
1183
1189
|
RFID_ENABLE_NFC_BUTTON_TEXT: string;
|
|
1184
1190
|
RFID_ENABLE_NFC_BUTTON_BACKGROUND: string;
|
|
1191
|
+
MDL_PROCESSING_SCREEN_BACKGROUND: string;
|
|
1192
|
+
MDL_PROCESSING_SCREEN_HINT_LABEL_TEXT: string;
|
|
1193
|
+
MDL_PROCESSING_SCREEN_HINT_LABEL_BACKGROUND: string;
|
|
1194
|
+
MDL_PROCESSING_SCREEN_PROGRESS_LABEL_TEXT: string;
|
|
1195
|
+
MDL_PROCESSING_SCREEN_RESULT_LABEL_TEXT: string;
|
|
1196
|
+
MDL_PROCESSING_SCREEN_LOADING_BAR: string;
|
|
1197
|
+
MDL_ENABLE_NFC_TITLE_TEXT: string;
|
|
1198
|
+
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
1199
|
+
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
1200
|
+
MDL_ENABLE_NFC_BUTTON_BACKGROUND: string;
|
|
1185
1201
|
};
|
|
1186
1202
|
export declare const eRFID_ErrorCodes: {
|
|
1187
1203
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -2570,6 +2586,12 @@ export declare const CustomizationFont: {
|
|
|
2570
2586
|
RFID_ENABLE_NFC_TITLE_TEXT: string;
|
|
2571
2587
|
RFID_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
2572
2588
|
RFID_ENABLE_NFC_BUTTON_TEXT: string;
|
|
2589
|
+
MDL_PROCESSING_SCREEN_HINT_LABEL: string;
|
|
2590
|
+
MDL_PROCESSING_SCREEN_PROGRESS_LABEL: string;
|
|
2591
|
+
MDL_PROCESSING_SCREEN_RESULT_LABEL: string;
|
|
2592
|
+
MDL_ENABLE_NFC_TITLE_TEXT: string;
|
|
2593
|
+
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
2594
|
+
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
2573
2595
|
};
|
|
2574
2596
|
export declare const ImageFormat: {
|
|
2575
2597
|
PNG: number;
|
|
@@ -3567,6 +3589,8 @@ export declare const LCID: {
|
|
|
3567
3589
|
export declare const CustomizationImage: {
|
|
3568
3590
|
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
3569
3591
|
RFID_ENABLE_NFC_IMAGE: string;
|
|
3592
|
+
MDL_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
3593
|
+
MDL_ENABLE_NFC_IMAGE: string;
|
|
3570
3594
|
};
|
|
3571
3595
|
export declare const DocReaderFrame: {
|
|
3572
3596
|
MAX: string;
|
|
@@ -3640,6 +3664,16 @@ export declare const Enum: {
|
|
|
3640
3664
|
RFID_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
3641
3665
|
RFID_ENABLE_NFC_BUTTON_TEXT: string;
|
|
3642
3666
|
RFID_ENABLE_NFC_BUTTON_BACKGROUND: string;
|
|
3667
|
+
MDL_PROCESSING_SCREEN_BACKGROUND: string;
|
|
3668
|
+
MDL_PROCESSING_SCREEN_HINT_LABEL_TEXT: string;
|
|
3669
|
+
MDL_PROCESSING_SCREEN_HINT_LABEL_BACKGROUND: string;
|
|
3670
|
+
MDL_PROCESSING_SCREEN_PROGRESS_LABEL_TEXT: string;
|
|
3671
|
+
MDL_PROCESSING_SCREEN_RESULT_LABEL_TEXT: string;
|
|
3672
|
+
MDL_PROCESSING_SCREEN_LOADING_BAR: string;
|
|
3673
|
+
MDL_ENABLE_NFC_TITLE_TEXT: string;
|
|
3674
|
+
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
3675
|
+
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
3676
|
+
MDL_ENABLE_NFC_BUTTON_BACKGROUND: string;
|
|
3643
3677
|
};
|
|
3644
3678
|
eRFID_ErrorCodes: {
|
|
3645
3679
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -5028,6 +5062,12 @@ export declare const Enum: {
|
|
|
5028
5062
|
RFID_ENABLE_NFC_TITLE_TEXT: string;
|
|
5029
5063
|
RFID_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
5030
5064
|
RFID_ENABLE_NFC_BUTTON_TEXT: string;
|
|
5065
|
+
MDL_PROCESSING_SCREEN_HINT_LABEL: string;
|
|
5066
|
+
MDL_PROCESSING_SCREEN_PROGRESS_LABEL: string;
|
|
5067
|
+
MDL_PROCESSING_SCREEN_RESULT_LABEL: string;
|
|
5068
|
+
MDL_ENABLE_NFC_TITLE_TEXT: string;
|
|
5069
|
+
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
5070
|
+
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
5031
5071
|
};
|
|
5032
5072
|
ImageFormat: {
|
|
5033
5073
|
PNG: number;
|
|
@@ -6025,6 +6065,8 @@ export declare const Enum: {
|
|
|
6025
6065
|
CustomizationImage: {
|
|
6026
6066
|
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
6027
6067
|
RFID_ENABLE_NFC_IMAGE: string;
|
|
6068
|
+
MDL_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
6069
|
+
MDL_ENABLE_NFC_IMAGE: string;
|
|
6028
6070
|
};
|
|
6029
6071
|
DocReaderFrame: {
|
|
6030
6072
|
MAX: string;
|
|
@@ -6452,6 +6494,13 @@ export declare class DocumentReader extends AwesomeCordovaNativePlugin {
|
|
|
6452
6494
|
* @return {Promise<any>} Returns a promise
|
|
6453
6495
|
*/
|
|
6454
6496
|
finalizePackage(): Promise<any>;
|
|
6497
|
+
/**
|
|
6498
|
+
*
|
|
6499
|
+
*
|
|
6500
|
+
* @param {FinalizeConfig} config
|
|
6501
|
+
* @return {Promise<any>} Returns a promise
|
|
6502
|
+
*/
|
|
6503
|
+
finalizePackageWithFinalizeConfig(config: FinalizeConfig): Promise<any>;
|
|
6455
6504
|
/**
|
|
6456
6505
|
*
|
|
6457
6506
|
*
|
|
@@ -6517,13 +6566,6 @@ export declare class DocumentReader extends AwesomeCordovaNativePlugin {
|
|
|
6517
6566
|
* @return {Promise<any>} Returns a promise
|
|
6518
6567
|
*/
|
|
6519
6568
|
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
6569
|
textFieldValueByType(results: DocumentReaderResults, fieldType: number): Promise<string | undefined>;
|
|
6528
6570
|
textFieldValueByTypeLcid(results: DocumentReaderResults, fieldType: number, lcid: number): Promise<string | undefined>;
|
|
6529
6571
|
textFieldValueByTypeSource(results: DocumentReaderResults, fieldType: number, source: number): Promise<string | undefined>;
|