@regulaforensics/ionic-native-document-reader 9.3.416-nightly → 9.3.417-beta
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 +134 -0
- package/index.js +132 -1
- package/ngx/index.d.ts +134 -0
- package/ngx/index.js +132 -1
- 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.3.
|
|
17
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "9.3.
|
|
18
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.
|
|
16
|
+
"@regulaforensics/ionic-native-document-reader": "9.3.417-beta",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "9.3.450-beta",
|
|
18
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.2.1888",
|
|
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
|
@@ -687,6 +687,7 @@ export declare class BackendProcessingConfig {
|
|
|
687
687
|
url?: string;
|
|
688
688
|
httpHeaders?: Record<string, string>;
|
|
689
689
|
rfidServerSideChipVerification?: boolean;
|
|
690
|
+
mdlVerification?: boolean;
|
|
690
691
|
timeoutConnection?: number;
|
|
691
692
|
static fromJson(jsonObject?: any): BackendProcessingConfig | undefined;
|
|
692
693
|
}
|
|
@@ -765,6 +766,9 @@ export declare class ProcessParams {
|
|
|
765
766
|
strictSecurityChecks?: boolean;
|
|
766
767
|
returnTransliteratedFields?: boolean;
|
|
767
768
|
checkCaptureProcessIntegrity?: boolean;
|
|
769
|
+
strictExpiryDate?: boolean;
|
|
770
|
+
debugSaveBinarySession?: boolean;
|
|
771
|
+
checkVDS?: boolean;
|
|
768
772
|
barcodeParserType?: number;
|
|
769
773
|
perspectiveAngle?: number;
|
|
770
774
|
minDPI?: number;
|
|
@@ -826,6 +830,10 @@ export declare class CustomizationColors {
|
|
|
826
830
|
rfidEnableNfcDescriptionText?: number;
|
|
827
831
|
rfidEnableNfcButtonText?: number;
|
|
828
832
|
rfidEnableNfcButtonBackground?: number;
|
|
833
|
+
nextPageIdCardFront?: number;
|
|
834
|
+
nextPageIdCardBack?: number;
|
|
835
|
+
nextPagePassportShift?: number;
|
|
836
|
+
nextPagePassportFlip?: number;
|
|
829
837
|
static fromJson(jsonObject?: any): CustomizationColors | undefined;
|
|
830
838
|
}
|
|
831
839
|
export declare class CustomizationFonts {
|
|
@@ -838,10 +846,49 @@ export declare class CustomizationFonts {
|
|
|
838
846
|
static fromJson(jsonObject?: any): CustomizationFonts | undefined;
|
|
839
847
|
}
|
|
840
848
|
export declare class CustomizationImages {
|
|
849
|
+
helpAnimation?: string;
|
|
850
|
+
livenessAnimation?: string;
|
|
851
|
+
borderBackground?: string;
|
|
852
|
+
torchButtonOn?: string;
|
|
853
|
+
torchButtonOff?: string;
|
|
854
|
+
captureButton?: string;
|
|
855
|
+
switchButton?: string;
|
|
856
|
+
closeButton?: string;
|
|
857
|
+
multipageButton?: string;
|
|
841
858
|
rfidProcessingScreenFailureImage?: string;
|
|
842
859
|
rfidEnableNfcImage?: string;
|
|
860
|
+
rfidDisableNfcImage?: string;
|
|
861
|
+
mdlProcessingScreenFailureImage?: string;
|
|
862
|
+
mdlEnableNfcImage?: string;
|
|
863
|
+
mdlDisableNfcImage?: string;
|
|
864
|
+
nextPageIdCardFront?: string;
|
|
865
|
+
nextPageIdCardBack?: string;
|
|
866
|
+
nextPagePassportShift?: string;
|
|
867
|
+
nextPagePassportFlipStart?: string;
|
|
868
|
+
nextPagePassportFlipClean?: string;
|
|
869
|
+
nextPagePassportFlipTop?: string;
|
|
870
|
+
nextPagePassportFlipBottom?: string;
|
|
843
871
|
static fromJson(jsonObject?: any): CustomizationImages | undefined;
|
|
844
872
|
}
|
|
873
|
+
export declare class CustomizationTimings {
|
|
874
|
+
nextPageIdCardStartDelay?: number;
|
|
875
|
+
nextPageIdCardEndDelay?: number;
|
|
876
|
+
nextPagePassportShiftStartDelay?: number;
|
|
877
|
+
nextPagePassportShiftEndDelay?: number;
|
|
878
|
+
nextPagePassportFlipStartDelay?: number;
|
|
879
|
+
nextPagePassportFlipEndDelay?: number;
|
|
880
|
+
static fromJson(jsonObject?: any): CustomizationTimings | undefined;
|
|
881
|
+
}
|
|
882
|
+
export declare class CustomizationContentModes {
|
|
883
|
+
nextPageIdCardFront?: number;
|
|
884
|
+
nextPageIdCardBack?: number;
|
|
885
|
+
static fromJson(jsonObject?: any): CustomizationContentModes | undefined;
|
|
886
|
+
}
|
|
887
|
+
export declare class CustomizationMatrices {
|
|
888
|
+
nextPageIdCardFront?: number[];
|
|
889
|
+
nextPageIdCardBack?: number[];
|
|
890
|
+
static fromJson(jsonObject?: any): CustomizationMatrices | undefined;
|
|
891
|
+
}
|
|
845
892
|
export declare class Customization {
|
|
846
893
|
showStatusMessages?: boolean;
|
|
847
894
|
showResultStatusMessages?: boolean;
|
|
@@ -1138,6 +1185,7 @@ export declare class FinalizeConfig {
|
|
|
1138
1185
|
rawImages?: boolean;
|
|
1139
1186
|
video?: boolean;
|
|
1140
1187
|
rfidSession?: boolean;
|
|
1188
|
+
mdlSession?: boolean;
|
|
1141
1189
|
static fromJson(jsonObject?: any): FinalizeConfig | undefined;
|
|
1142
1190
|
}
|
|
1143
1191
|
export declare class FinalizeCompletion {
|
|
@@ -1198,6 +1246,10 @@ export declare const CustomizationColor: {
|
|
|
1198
1246
|
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
1199
1247
|
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
1200
1248
|
MDL_ENABLE_NFC_BUTTON_BACKGROUND: string;
|
|
1249
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
1250
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
1251
|
+
NEXT_PAGE_PASSPORT_SHIFT: string;
|
|
1252
|
+
NEXT_PAGE_PASSPORT_FLIP: string;
|
|
1201
1253
|
};
|
|
1202
1254
|
export declare const eRFID_ErrorCodes: {
|
|
1203
1255
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -1704,6 +1756,9 @@ export declare const eRFID_NotificationCodes: {
|
|
|
1704
1756
|
RFID_NOTIFICATION_AUXILIARY_DATA_VALIDATION: number;
|
|
1705
1757
|
RFID_NOTIFICATION_RI_SECTOR_ID: number;
|
|
1706
1758
|
RFID_NOTIFICATION_BIOMETRICS_EMPTY_PLACEHOLDER: number;
|
|
1759
|
+
RFID_NOTIFICATION_SESSION_FILE_DATA_UPDATED: number;
|
|
1760
|
+
RFID_NOTIFICATION_TCC_TA_RESOURCES: number;
|
|
1761
|
+
RFID_NOTIFICATION_TCC_TA_SIGNATURE: number;
|
|
1707
1762
|
};
|
|
1708
1763
|
export declare const CameraPosition: {
|
|
1709
1764
|
UNSPECIFIED: number;
|
|
@@ -1789,6 +1844,10 @@ export declare const eSignManagementAction: {
|
|
|
1789
1844
|
smaTerminateKeys: number;
|
|
1790
1845
|
smaSignData: number;
|
|
1791
1846
|
};
|
|
1847
|
+
export declare const CustomizationMatrix: {
|
|
1848
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
1849
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
1850
|
+
};
|
|
1792
1851
|
export declare const eMDLDeviceEngagement: {
|
|
1793
1852
|
QR: number;
|
|
1794
1853
|
NFC: number;
|
|
@@ -1928,6 +1987,10 @@ export declare const eMDLIntentToRetain: {
|
|
|
1928
1987
|
FALSE: number;
|
|
1929
1988
|
TRUE: number;
|
|
1930
1989
|
};
|
|
1990
|
+
export declare const CustomizationContentMode: {
|
|
1991
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
1992
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
1993
|
+
};
|
|
1931
1994
|
export declare const RFIDDelegate: {
|
|
1932
1995
|
NULL: number;
|
|
1933
1996
|
NO_PA: number;
|
|
@@ -3407,9 +3470,11 @@ export declare const eVisualFieldType: {
|
|
|
3407
3470
|
FT_NATIONALITY_CODE_ALPHA2: number;
|
|
3408
3471
|
FT_FIRST_ISSUE_DATE_CHECKDIGIT: number;
|
|
3409
3472
|
FT_FIRST_ISSUE_DATE_CHECKSUM: number;
|
|
3473
|
+
FT_EXPIRY_TIMESTAMP: number;
|
|
3410
3474
|
FT_COMMERCIAL_INDICATOR: number;
|
|
3411
3475
|
FT_NON_DOMICILED_INDICATOR: number;
|
|
3412
3476
|
FT_JURISDICTION_SPECIFIC_DATA: number;
|
|
3477
|
+
FT_DATA_DATE_OF_EXPIRY: number;
|
|
3413
3478
|
};
|
|
3414
3479
|
export declare const DocReaderOrientation: {
|
|
3415
3480
|
ALL: number;
|
|
@@ -3586,11 +3651,37 @@ export declare const LCID: {
|
|
|
3586
3651
|
ORIYA: number;
|
|
3587
3652
|
URDU_DETECTION: number;
|
|
3588
3653
|
};
|
|
3654
|
+
export declare const CustomizationTiming: {
|
|
3655
|
+
NEXT_PAGE_ID_CARD_START_DELAY: string;
|
|
3656
|
+
NEXT_PAGE_ID_CARD_END_DELAY: string;
|
|
3657
|
+
NEXT_PAGE_PASSPORT_SHIFT_START_DELAY: string;
|
|
3658
|
+
NEXT_PAGE_PASSPORT_SHIFT_END_DELAY: string;
|
|
3659
|
+
NEXT_PAGE_PASSPORT_FLIP_START_DELAY: string;
|
|
3660
|
+
NEXT_PAGE_PASSPORT_FLIP_END_DELAY: string;
|
|
3661
|
+
};
|
|
3589
3662
|
export declare const CustomizationImage: {
|
|
3663
|
+
HELP_ANIMATION: string;
|
|
3664
|
+
LIVENESS_ANIMATION: string;
|
|
3665
|
+
BORDER_BACKGROUND: string;
|
|
3666
|
+
TORCH_BUTTON_ON: string;
|
|
3667
|
+
TORCH_BUTTON_OFF: string;
|
|
3668
|
+
CAPTURE_BUTTON: string;
|
|
3669
|
+
SWITCH_BUTTON: string;
|
|
3670
|
+
CLOSE_BUTTON: string;
|
|
3671
|
+
MULTIPAGE_BUTTON: string;
|
|
3590
3672
|
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
3591
3673
|
RFID_ENABLE_NFC_IMAGE: string;
|
|
3674
|
+
RFID_DISABLE_NFC_IMAGE: string;
|
|
3592
3675
|
MDL_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
3593
3676
|
MDL_ENABLE_NFC_IMAGE: string;
|
|
3677
|
+
MDL_DISABLE_NFC_IMAGE: string;
|
|
3678
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
3679
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
3680
|
+
NEXT_PAGE_PASSPORT_SHIFT: string;
|
|
3681
|
+
NEXT_PAGE_PASSPORT_FLIP_START: string;
|
|
3682
|
+
NEXT_PAGE_PASSPORT_FLIP_CLEAN: string;
|
|
3683
|
+
NEXT_PAGE_PASSPORT_FLIP_TOP: string;
|
|
3684
|
+
NEXT_PAGE_PASSPORT_FLIP_BOTTOM: string;
|
|
3594
3685
|
};
|
|
3595
3686
|
export declare const DocReaderFrame: {
|
|
3596
3687
|
MAX: string;
|
|
@@ -3674,6 +3765,10 @@ export declare const Enum: {
|
|
|
3674
3765
|
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
3675
3766
|
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
3676
3767
|
MDL_ENABLE_NFC_BUTTON_BACKGROUND: string;
|
|
3768
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
3769
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
3770
|
+
NEXT_PAGE_PASSPORT_SHIFT: string;
|
|
3771
|
+
NEXT_PAGE_PASSPORT_FLIP: string;
|
|
3677
3772
|
};
|
|
3678
3773
|
eRFID_ErrorCodes: {
|
|
3679
3774
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -4180,6 +4275,9 @@ export declare const Enum: {
|
|
|
4180
4275
|
RFID_NOTIFICATION_AUXILIARY_DATA_VALIDATION: number;
|
|
4181
4276
|
RFID_NOTIFICATION_RI_SECTOR_ID: number;
|
|
4182
4277
|
RFID_NOTIFICATION_BIOMETRICS_EMPTY_PLACEHOLDER: number;
|
|
4278
|
+
RFID_NOTIFICATION_SESSION_FILE_DATA_UPDATED: number;
|
|
4279
|
+
RFID_NOTIFICATION_TCC_TA_RESOURCES: number;
|
|
4280
|
+
RFID_NOTIFICATION_TCC_TA_SIGNATURE: number;
|
|
4183
4281
|
};
|
|
4184
4282
|
CameraPosition: {
|
|
4185
4283
|
UNSPECIFIED: number;
|
|
@@ -4265,6 +4363,10 @@ export declare const Enum: {
|
|
|
4265
4363
|
smaTerminateKeys: number;
|
|
4266
4364
|
smaSignData: number;
|
|
4267
4365
|
};
|
|
4366
|
+
CustomizationMatrix: {
|
|
4367
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
4368
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
4369
|
+
};
|
|
4268
4370
|
eMDLDeviceEngagement: {
|
|
4269
4371
|
QR: number;
|
|
4270
4372
|
NFC: number;
|
|
@@ -4404,6 +4506,10 @@ export declare const Enum: {
|
|
|
4404
4506
|
FALSE: number;
|
|
4405
4507
|
TRUE: number;
|
|
4406
4508
|
};
|
|
4509
|
+
CustomizationContentMode: {
|
|
4510
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
4511
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
4512
|
+
};
|
|
4407
4513
|
RFIDDelegate: {
|
|
4408
4514
|
NULL: number;
|
|
4409
4515
|
NO_PA: number;
|
|
@@ -5883,9 +5989,11 @@ export declare const Enum: {
|
|
|
5883
5989
|
FT_NATIONALITY_CODE_ALPHA2: number;
|
|
5884
5990
|
FT_FIRST_ISSUE_DATE_CHECKDIGIT: number;
|
|
5885
5991
|
FT_FIRST_ISSUE_DATE_CHECKSUM: number;
|
|
5992
|
+
FT_EXPIRY_TIMESTAMP: number;
|
|
5886
5993
|
FT_COMMERCIAL_INDICATOR: number;
|
|
5887
5994
|
FT_NON_DOMICILED_INDICATOR: number;
|
|
5888
5995
|
FT_JURISDICTION_SPECIFIC_DATA: number;
|
|
5996
|
+
FT_DATA_DATE_OF_EXPIRY: number;
|
|
5889
5997
|
};
|
|
5890
5998
|
DocReaderOrientation: {
|
|
5891
5999
|
ALL: number;
|
|
@@ -6062,11 +6170,37 @@ export declare const Enum: {
|
|
|
6062
6170
|
ORIYA: number;
|
|
6063
6171
|
URDU_DETECTION: number;
|
|
6064
6172
|
};
|
|
6173
|
+
CustomizationTiming: {
|
|
6174
|
+
NEXT_PAGE_ID_CARD_START_DELAY: string;
|
|
6175
|
+
NEXT_PAGE_ID_CARD_END_DELAY: string;
|
|
6176
|
+
NEXT_PAGE_PASSPORT_SHIFT_START_DELAY: string;
|
|
6177
|
+
NEXT_PAGE_PASSPORT_SHIFT_END_DELAY: string;
|
|
6178
|
+
NEXT_PAGE_PASSPORT_FLIP_START_DELAY: string;
|
|
6179
|
+
NEXT_PAGE_PASSPORT_FLIP_END_DELAY: string;
|
|
6180
|
+
};
|
|
6065
6181
|
CustomizationImage: {
|
|
6182
|
+
HELP_ANIMATION: string;
|
|
6183
|
+
LIVENESS_ANIMATION: string;
|
|
6184
|
+
BORDER_BACKGROUND: string;
|
|
6185
|
+
TORCH_BUTTON_ON: string;
|
|
6186
|
+
TORCH_BUTTON_OFF: string;
|
|
6187
|
+
CAPTURE_BUTTON: string;
|
|
6188
|
+
SWITCH_BUTTON: string;
|
|
6189
|
+
CLOSE_BUTTON: string;
|
|
6190
|
+
MULTIPAGE_BUTTON: string;
|
|
6066
6191
|
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
6067
6192
|
RFID_ENABLE_NFC_IMAGE: string;
|
|
6193
|
+
RFID_DISABLE_NFC_IMAGE: string;
|
|
6068
6194
|
MDL_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
6069
6195
|
MDL_ENABLE_NFC_IMAGE: string;
|
|
6196
|
+
MDL_DISABLE_NFC_IMAGE: string;
|
|
6197
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
6198
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
6199
|
+
NEXT_PAGE_PASSPORT_SHIFT: string;
|
|
6200
|
+
NEXT_PAGE_PASSPORT_FLIP_START: string;
|
|
6201
|
+
NEXT_PAGE_PASSPORT_FLIP_CLEAN: string;
|
|
6202
|
+
NEXT_PAGE_PASSPORT_FLIP_TOP: string;
|
|
6203
|
+
NEXT_PAGE_PASSPORT_FLIP_BOTTOM: string;
|
|
6070
6204
|
};
|
|
6071
6205
|
DocReaderFrame: {
|
|
6072
6206
|
MAX: string;
|