@regulaforensics/ionic-native-document-reader 9.2.413-nightly → 9.2.422-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 +137 -0
- package/index.js +135 -1
- package/ngx/index.d.ts +137 -0
- package/ngx/index.js +135 -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.2.
|
|
17
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "9.2.
|
|
18
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.
|
|
16
|
+
"@regulaforensics/ionic-native-document-reader": "9.2.422-rc",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "9.2.452-rc",
|
|
18
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.3.2057-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
|
@@ -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;
|
|
@@ -915,6 +962,9 @@ export declare class Customization {
|
|
|
915
962
|
colors?: CustomizationColors;
|
|
916
963
|
fonts?: CustomizationFonts;
|
|
917
964
|
images?: CustomizationImages;
|
|
965
|
+
timings?: CustomizationTimings;
|
|
966
|
+
contentModes?: CustomizationContentModes;
|
|
967
|
+
matrices?: CustomizationMatrices;
|
|
918
968
|
static fromJson(jsonObject?: any): Customization | undefined;
|
|
919
969
|
}
|
|
920
970
|
export declare class EDLDataGroups {
|
|
@@ -1138,6 +1188,7 @@ export declare class FinalizeConfig {
|
|
|
1138
1188
|
rawImages?: boolean;
|
|
1139
1189
|
video?: boolean;
|
|
1140
1190
|
rfidSession?: boolean;
|
|
1191
|
+
mdlSession?: boolean;
|
|
1141
1192
|
static fromJson(jsonObject?: any): FinalizeConfig | undefined;
|
|
1142
1193
|
}
|
|
1143
1194
|
export declare class FinalizeCompletion {
|
|
@@ -1198,6 +1249,10 @@ export declare const CustomizationColor: {
|
|
|
1198
1249
|
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
1199
1250
|
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
1200
1251
|
MDL_ENABLE_NFC_BUTTON_BACKGROUND: string;
|
|
1252
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
1253
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
1254
|
+
NEXT_PAGE_PASSPORT_SHIFT: string;
|
|
1255
|
+
NEXT_PAGE_PASSPORT_FLIP: string;
|
|
1201
1256
|
};
|
|
1202
1257
|
export declare const eRFID_ErrorCodes: {
|
|
1203
1258
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -1704,6 +1759,9 @@ export declare const eRFID_NotificationCodes: {
|
|
|
1704
1759
|
RFID_NOTIFICATION_AUXILIARY_DATA_VALIDATION: number;
|
|
1705
1760
|
RFID_NOTIFICATION_RI_SECTOR_ID: number;
|
|
1706
1761
|
RFID_NOTIFICATION_BIOMETRICS_EMPTY_PLACEHOLDER: number;
|
|
1762
|
+
RFID_NOTIFICATION_SESSION_FILE_DATA_UPDATED: number;
|
|
1763
|
+
RFID_NOTIFICATION_TCC_TA_RESOURCES: number;
|
|
1764
|
+
RFID_NOTIFICATION_TCC_TA_SIGNATURE: number;
|
|
1707
1765
|
};
|
|
1708
1766
|
export declare const CameraPosition: {
|
|
1709
1767
|
UNSPECIFIED: number;
|
|
@@ -1789,6 +1847,10 @@ export declare const eSignManagementAction: {
|
|
|
1789
1847
|
smaTerminateKeys: number;
|
|
1790
1848
|
smaSignData: number;
|
|
1791
1849
|
};
|
|
1850
|
+
export declare const CustomizationMatrix: {
|
|
1851
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
1852
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
1853
|
+
};
|
|
1792
1854
|
export declare const eMDLDeviceEngagement: {
|
|
1793
1855
|
QR: number;
|
|
1794
1856
|
NFC: number;
|
|
@@ -1928,6 +1990,10 @@ export declare const eMDLIntentToRetain: {
|
|
|
1928
1990
|
FALSE: number;
|
|
1929
1991
|
TRUE: number;
|
|
1930
1992
|
};
|
|
1993
|
+
export declare const CustomizationContentMode: {
|
|
1994
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
1995
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
1996
|
+
};
|
|
1931
1997
|
export declare const RFIDDelegate: {
|
|
1932
1998
|
NULL: number;
|
|
1933
1999
|
NO_PA: number;
|
|
@@ -3407,9 +3473,11 @@ export declare const eVisualFieldType: {
|
|
|
3407
3473
|
FT_NATIONALITY_CODE_ALPHA2: number;
|
|
3408
3474
|
FT_FIRST_ISSUE_DATE_CHECKDIGIT: number;
|
|
3409
3475
|
FT_FIRST_ISSUE_DATE_CHECKSUM: number;
|
|
3476
|
+
FT_EXPIRY_TIMESTAMP: number;
|
|
3410
3477
|
FT_COMMERCIAL_INDICATOR: number;
|
|
3411
3478
|
FT_NON_DOMICILED_INDICATOR: number;
|
|
3412
3479
|
FT_JURISDICTION_SPECIFIC_DATA: number;
|
|
3480
|
+
FT_DATA_DATE_OF_EXPIRY: number;
|
|
3413
3481
|
};
|
|
3414
3482
|
export declare const DocReaderOrientation: {
|
|
3415
3483
|
ALL: number;
|
|
@@ -3586,11 +3654,37 @@ export declare const LCID: {
|
|
|
3586
3654
|
ORIYA: number;
|
|
3587
3655
|
URDU_DETECTION: number;
|
|
3588
3656
|
};
|
|
3657
|
+
export declare const CustomizationTiming: {
|
|
3658
|
+
NEXT_PAGE_ID_CARD_START_DELAY: string;
|
|
3659
|
+
NEXT_PAGE_ID_CARD_END_DELAY: string;
|
|
3660
|
+
NEXT_PAGE_PASSPORT_SHIFT_START_DELAY: string;
|
|
3661
|
+
NEXT_PAGE_PASSPORT_SHIFT_END_DELAY: string;
|
|
3662
|
+
NEXT_PAGE_PASSPORT_FLIP_START_DELAY: string;
|
|
3663
|
+
NEXT_PAGE_PASSPORT_FLIP_END_DELAY: string;
|
|
3664
|
+
};
|
|
3589
3665
|
export declare const CustomizationImage: {
|
|
3666
|
+
HELP_ANIMATION: string;
|
|
3667
|
+
LIVENESS_ANIMATION: string;
|
|
3668
|
+
BORDER_BACKGROUND: string;
|
|
3669
|
+
TORCH_BUTTON_ON: string;
|
|
3670
|
+
TORCH_BUTTON_OFF: string;
|
|
3671
|
+
CAPTURE_BUTTON: string;
|
|
3672
|
+
SWITCH_BUTTON: string;
|
|
3673
|
+
CLOSE_BUTTON: string;
|
|
3674
|
+
MULTIPAGE_BUTTON: string;
|
|
3590
3675
|
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
3591
3676
|
RFID_ENABLE_NFC_IMAGE: string;
|
|
3677
|
+
RFID_DISABLE_NFC_IMAGE: string;
|
|
3592
3678
|
MDL_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
3593
3679
|
MDL_ENABLE_NFC_IMAGE: string;
|
|
3680
|
+
MDL_DISABLE_NFC_IMAGE: string;
|
|
3681
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
3682
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
3683
|
+
NEXT_PAGE_PASSPORT_SHIFT: string;
|
|
3684
|
+
NEXT_PAGE_PASSPORT_FLIP_START: string;
|
|
3685
|
+
NEXT_PAGE_PASSPORT_FLIP_CLEAN: string;
|
|
3686
|
+
NEXT_PAGE_PASSPORT_FLIP_TOP: string;
|
|
3687
|
+
NEXT_PAGE_PASSPORT_FLIP_BOTTOM: string;
|
|
3594
3688
|
};
|
|
3595
3689
|
export declare const DocReaderFrame: {
|
|
3596
3690
|
MAX: string;
|
|
@@ -3674,6 +3768,10 @@ export declare const Enum: {
|
|
|
3674
3768
|
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
3675
3769
|
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
3676
3770
|
MDL_ENABLE_NFC_BUTTON_BACKGROUND: string;
|
|
3771
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
3772
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
3773
|
+
NEXT_PAGE_PASSPORT_SHIFT: string;
|
|
3774
|
+
NEXT_PAGE_PASSPORT_FLIP: string;
|
|
3677
3775
|
};
|
|
3678
3776
|
eRFID_ErrorCodes: {
|
|
3679
3777
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -4180,6 +4278,9 @@ export declare const Enum: {
|
|
|
4180
4278
|
RFID_NOTIFICATION_AUXILIARY_DATA_VALIDATION: number;
|
|
4181
4279
|
RFID_NOTIFICATION_RI_SECTOR_ID: number;
|
|
4182
4280
|
RFID_NOTIFICATION_BIOMETRICS_EMPTY_PLACEHOLDER: number;
|
|
4281
|
+
RFID_NOTIFICATION_SESSION_FILE_DATA_UPDATED: number;
|
|
4282
|
+
RFID_NOTIFICATION_TCC_TA_RESOURCES: number;
|
|
4283
|
+
RFID_NOTIFICATION_TCC_TA_SIGNATURE: number;
|
|
4183
4284
|
};
|
|
4184
4285
|
CameraPosition: {
|
|
4185
4286
|
UNSPECIFIED: number;
|
|
@@ -4265,6 +4366,10 @@ export declare const Enum: {
|
|
|
4265
4366
|
smaTerminateKeys: number;
|
|
4266
4367
|
smaSignData: number;
|
|
4267
4368
|
};
|
|
4369
|
+
CustomizationMatrix: {
|
|
4370
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
4371
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
4372
|
+
};
|
|
4268
4373
|
eMDLDeviceEngagement: {
|
|
4269
4374
|
QR: number;
|
|
4270
4375
|
NFC: number;
|
|
@@ -4404,6 +4509,10 @@ export declare const Enum: {
|
|
|
4404
4509
|
FALSE: number;
|
|
4405
4510
|
TRUE: number;
|
|
4406
4511
|
};
|
|
4512
|
+
CustomizationContentMode: {
|
|
4513
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
4514
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
4515
|
+
};
|
|
4407
4516
|
RFIDDelegate: {
|
|
4408
4517
|
NULL: number;
|
|
4409
4518
|
NO_PA: number;
|
|
@@ -5883,9 +5992,11 @@ export declare const Enum: {
|
|
|
5883
5992
|
FT_NATIONALITY_CODE_ALPHA2: number;
|
|
5884
5993
|
FT_FIRST_ISSUE_DATE_CHECKDIGIT: number;
|
|
5885
5994
|
FT_FIRST_ISSUE_DATE_CHECKSUM: number;
|
|
5995
|
+
FT_EXPIRY_TIMESTAMP: number;
|
|
5886
5996
|
FT_COMMERCIAL_INDICATOR: number;
|
|
5887
5997
|
FT_NON_DOMICILED_INDICATOR: number;
|
|
5888
5998
|
FT_JURISDICTION_SPECIFIC_DATA: number;
|
|
5999
|
+
FT_DATA_DATE_OF_EXPIRY: number;
|
|
5889
6000
|
};
|
|
5890
6001
|
DocReaderOrientation: {
|
|
5891
6002
|
ALL: number;
|
|
@@ -6062,11 +6173,37 @@ export declare const Enum: {
|
|
|
6062
6173
|
ORIYA: number;
|
|
6063
6174
|
URDU_DETECTION: number;
|
|
6064
6175
|
};
|
|
6176
|
+
CustomizationTiming: {
|
|
6177
|
+
NEXT_PAGE_ID_CARD_START_DELAY: string;
|
|
6178
|
+
NEXT_PAGE_ID_CARD_END_DELAY: string;
|
|
6179
|
+
NEXT_PAGE_PASSPORT_SHIFT_START_DELAY: string;
|
|
6180
|
+
NEXT_PAGE_PASSPORT_SHIFT_END_DELAY: string;
|
|
6181
|
+
NEXT_PAGE_PASSPORT_FLIP_START_DELAY: string;
|
|
6182
|
+
NEXT_PAGE_PASSPORT_FLIP_END_DELAY: string;
|
|
6183
|
+
};
|
|
6065
6184
|
CustomizationImage: {
|
|
6185
|
+
HELP_ANIMATION: string;
|
|
6186
|
+
LIVENESS_ANIMATION: string;
|
|
6187
|
+
BORDER_BACKGROUND: string;
|
|
6188
|
+
TORCH_BUTTON_ON: string;
|
|
6189
|
+
TORCH_BUTTON_OFF: string;
|
|
6190
|
+
CAPTURE_BUTTON: string;
|
|
6191
|
+
SWITCH_BUTTON: string;
|
|
6192
|
+
CLOSE_BUTTON: string;
|
|
6193
|
+
MULTIPAGE_BUTTON: string;
|
|
6066
6194
|
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
6067
6195
|
RFID_ENABLE_NFC_IMAGE: string;
|
|
6196
|
+
RFID_DISABLE_NFC_IMAGE: string;
|
|
6068
6197
|
MDL_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
6069
6198
|
MDL_ENABLE_NFC_IMAGE: string;
|
|
6199
|
+
MDL_DISABLE_NFC_IMAGE: string;
|
|
6200
|
+
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
6201
|
+
NEXT_PAGE_ID_CARD_BACK: string;
|
|
6202
|
+
NEXT_PAGE_PASSPORT_SHIFT: string;
|
|
6203
|
+
NEXT_PAGE_PASSPORT_FLIP_START: string;
|
|
6204
|
+
NEXT_PAGE_PASSPORT_FLIP_CLEAN: string;
|
|
6205
|
+
NEXT_PAGE_PASSPORT_FLIP_TOP: string;
|
|
6206
|
+
NEXT_PAGE_PASSPORT_FLIP_BOTTOM: string;
|
|
6070
6207
|
};
|
|
6071
6208
|
DocReaderFrame: {
|
|
6072
6209
|
MAX: string;
|