@regulaforensics/ionic-native-document-reader 9.3.418-beta → 9.3.420-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 +0 -137
- package/index.js +1 -135
- package/ngx/index.d.ts +0 -137
- package/ngx/index.js +1 -135
- 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.420-nightly",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "9.3.451-nightly",
|
|
18
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "9.3.2117-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
|
@@ -687,7 +687,6 @@ export declare class BackendProcessingConfig {
|
|
|
687
687
|
url?: string;
|
|
688
688
|
httpHeaders?: Record<string, string>;
|
|
689
689
|
rfidServerSideChipVerification?: boolean;
|
|
690
|
-
mdlVerification?: boolean;
|
|
691
690
|
timeoutConnection?: number;
|
|
692
691
|
static fromJson(jsonObject?: any): BackendProcessingConfig | undefined;
|
|
693
692
|
}
|
|
@@ -766,9 +765,6 @@ export declare class ProcessParams {
|
|
|
766
765
|
strictSecurityChecks?: boolean;
|
|
767
766
|
returnTransliteratedFields?: boolean;
|
|
768
767
|
checkCaptureProcessIntegrity?: boolean;
|
|
769
|
-
strictExpiryDate?: boolean;
|
|
770
|
-
debugSaveBinarySession?: boolean;
|
|
771
|
-
checkVDS?: boolean;
|
|
772
768
|
barcodeParserType?: number;
|
|
773
769
|
perspectiveAngle?: number;
|
|
774
770
|
minDPI?: number;
|
|
@@ -830,10 +826,6 @@ export declare class CustomizationColors {
|
|
|
830
826
|
rfidEnableNfcDescriptionText?: number;
|
|
831
827
|
rfidEnableNfcButtonText?: number;
|
|
832
828
|
rfidEnableNfcButtonBackground?: number;
|
|
833
|
-
nextPageIdCardFront?: number;
|
|
834
|
-
nextPageIdCardBack?: number;
|
|
835
|
-
nextPagePassportShift?: number;
|
|
836
|
-
nextPagePassportFlip?: number;
|
|
837
829
|
static fromJson(jsonObject?: any): CustomizationColors | undefined;
|
|
838
830
|
}
|
|
839
831
|
export declare class CustomizationFonts {
|
|
@@ -846,49 +838,10 @@ export declare class CustomizationFonts {
|
|
|
846
838
|
static fromJson(jsonObject?: any): CustomizationFonts | undefined;
|
|
847
839
|
}
|
|
848
840
|
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;
|
|
858
841
|
rfidProcessingScreenFailureImage?: string;
|
|
859
842
|
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;
|
|
871
843
|
static fromJson(jsonObject?: any): CustomizationImages | undefined;
|
|
872
844
|
}
|
|
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
|
-
}
|
|
892
845
|
export declare class Customization {
|
|
893
846
|
showStatusMessages?: boolean;
|
|
894
847
|
showResultStatusMessages?: boolean;
|
|
@@ -962,9 +915,6 @@ export declare class Customization {
|
|
|
962
915
|
colors?: CustomizationColors;
|
|
963
916
|
fonts?: CustomizationFonts;
|
|
964
917
|
images?: CustomizationImages;
|
|
965
|
-
timings?: CustomizationTimings;
|
|
966
|
-
contentModes?: CustomizationContentModes;
|
|
967
|
-
matrices?: CustomizationMatrices;
|
|
968
918
|
static fromJson(jsonObject?: any): Customization | undefined;
|
|
969
919
|
}
|
|
970
920
|
export declare class EDLDataGroups {
|
|
@@ -1188,7 +1138,6 @@ export declare class FinalizeConfig {
|
|
|
1188
1138
|
rawImages?: boolean;
|
|
1189
1139
|
video?: boolean;
|
|
1190
1140
|
rfidSession?: boolean;
|
|
1191
|
-
mdlSession?: boolean;
|
|
1192
1141
|
static fromJson(jsonObject?: any): FinalizeConfig | undefined;
|
|
1193
1142
|
}
|
|
1194
1143
|
export declare class FinalizeCompletion {
|
|
@@ -1249,10 +1198,6 @@ export declare const CustomizationColor: {
|
|
|
1249
1198
|
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
1250
1199
|
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
1251
1200
|
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;
|
|
1256
1201
|
};
|
|
1257
1202
|
export declare const eRFID_ErrorCodes: {
|
|
1258
1203
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -1759,9 +1704,6 @@ export declare const eRFID_NotificationCodes: {
|
|
|
1759
1704
|
RFID_NOTIFICATION_AUXILIARY_DATA_VALIDATION: number;
|
|
1760
1705
|
RFID_NOTIFICATION_RI_SECTOR_ID: number;
|
|
1761
1706
|
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;
|
|
1765
1707
|
};
|
|
1766
1708
|
export declare const CameraPosition: {
|
|
1767
1709
|
UNSPECIFIED: number;
|
|
@@ -1847,10 +1789,6 @@ export declare const eSignManagementAction: {
|
|
|
1847
1789
|
smaTerminateKeys: number;
|
|
1848
1790
|
smaSignData: number;
|
|
1849
1791
|
};
|
|
1850
|
-
export declare const CustomizationMatrix: {
|
|
1851
|
-
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
1852
|
-
NEXT_PAGE_ID_CARD_BACK: string;
|
|
1853
|
-
};
|
|
1854
1792
|
export declare const eMDLDeviceEngagement: {
|
|
1855
1793
|
QR: number;
|
|
1856
1794
|
NFC: number;
|
|
@@ -1990,10 +1928,6 @@ export declare const eMDLIntentToRetain: {
|
|
|
1990
1928
|
FALSE: number;
|
|
1991
1929
|
TRUE: number;
|
|
1992
1930
|
};
|
|
1993
|
-
export declare const CustomizationContentMode: {
|
|
1994
|
-
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
1995
|
-
NEXT_PAGE_ID_CARD_BACK: string;
|
|
1996
|
-
};
|
|
1997
1931
|
export declare const RFIDDelegate: {
|
|
1998
1932
|
NULL: number;
|
|
1999
1933
|
NO_PA: number;
|
|
@@ -3473,11 +3407,9 @@ export declare const eVisualFieldType: {
|
|
|
3473
3407
|
FT_NATIONALITY_CODE_ALPHA2: number;
|
|
3474
3408
|
FT_FIRST_ISSUE_DATE_CHECKDIGIT: number;
|
|
3475
3409
|
FT_FIRST_ISSUE_DATE_CHECKSUM: number;
|
|
3476
|
-
FT_EXPIRY_TIMESTAMP: number;
|
|
3477
3410
|
FT_COMMERCIAL_INDICATOR: number;
|
|
3478
3411
|
FT_NON_DOMICILED_INDICATOR: number;
|
|
3479
3412
|
FT_JURISDICTION_SPECIFIC_DATA: number;
|
|
3480
|
-
FT_DATA_DATE_OF_EXPIRY: number;
|
|
3481
3413
|
};
|
|
3482
3414
|
export declare const DocReaderOrientation: {
|
|
3483
3415
|
ALL: number;
|
|
@@ -3654,37 +3586,11 @@ export declare const LCID: {
|
|
|
3654
3586
|
ORIYA: number;
|
|
3655
3587
|
URDU_DETECTION: number;
|
|
3656
3588
|
};
|
|
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
|
-
};
|
|
3665
3589
|
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;
|
|
3675
3590
|
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
3676
3591
|
RFID_ENABLE_NFC_IMAGE: string;
|
|
3677
|
-
RFID_DISABLE_NFC_IMAGE: string;
|
|
3678
3592
|
MDL_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
3679
3593
|
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;
|
|
3688
3594
|
};
|
|
3689
3595
|
export declare const DocReaderFrame: {
|
|
3690
3596
|
MAX: string;
|
|
@@ -3768,10 +3674,6 @@ export declare const Enum: {
|
|
|
3768
3674
|
MDL_ENABLE_NFC_DESCRIPTION_TEXT: string;
|
|
3769
3675
|
MDL_ENABLE_NFC_BUTTON_TEXT: string;
|
|
3770
3676
|
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;
|
|
3775
3677
|
};
|
|
3776
3678
|
eRFID_ErrorCodes: {
|
|
3777
3679
|
RFID_ERROR_NO_ERROR: number;
|
|
@@ -4278,9 +4180,6 @@ export declare const Enum: {
|
|
|
4278
4180
|
RFID_NOTIFICATION_AUXILIARY_DATA_VALIDATION: number;
|
|
4279
4181
|
RFID_NOTIFICATION_RI_SECTOR_ID: number;
|
|
4280
4182
|
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;
|
|
4284
4183
|
};
|
|
4285
4184
|
CameraPosition: {
|
|
4286
4185
|
UNSPECIFIED: number;
|
|
@@ -4366,10 +4265,6 @@ export declare const Enum: {
|
|
|
4366
4265
|
smaTerminateKeys: number;
|
|
4367
4266
|
smaSignData: number;
|
|
4368
4267
|
};
|
|
4369
|
-
CustomizationMatrix: {
|
|
4370
|
-
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
4371
|
-
NEXT_PAGE_ID_CARD_BACK: string;
|
|
4372
|
-
};
|
|
4373
4268
|
eMDLDeviceEngagement: {
|
|
4374
4269
|
QR: number;
|
|
4375
4270
|
NFC: number;
|
|
@@ -4509,10 +4404,6 @@ export declare const Enum: {
|
|
|
4509
4404
|
FALSE: number;
|
|
4510
4405
|
TRUE: number;
|
|
4511
4406
|
};
|
|
4512
|
-
CustomizationContentMode: {
|
|
4513
|
-
NEXT_PAGE_ID_CARD_FRONT: string;
|
|
4514
|
-
NEXT_PAGE_ID_CARD_BACK: string;
|
|
4515
|
-
};
|
|
4516
4407
|
RFIDDelegate: {
|
|
4517
4408
|
NULL: number;
|
|
4518
4409
|
NO_PA: number;
|
|
@@ -5992,11 +5883,9 @@ export declare const Enum: {
|
|
|
5992
5883
|
FT_NATIONALITY_CODE_ALPHA2: number;
|
|
5993
5884
|
FT_FIRST_ISSUE_DATE_CHECKDIGIT: number;
|
|
5994
5885
|
FT_FIRST_ISSUE_DATE_CHECKSUM: number;
|
|
5995
|
-
FT_EXPIRY_TIMESTAMP: number;
|
|
5996
5886
|
FT_COMMERCIAL_INDICATOR: number;
|
|
5997
5887
|
FT_NON_DOMICILED_INDICATOR: number;
|
|
5998
5888
|
FT_JURISDICTION_SPECIFIC_DATA: number;
|
|
5999
|
-
FT_DATA_DATE_OF_EXPIRY: number;
|
|
6000
5889
|
};
|
|
6001
5890
|
DocReaderOrientation: {
|
|
6002
5891
|
ALL: number;
|
|
@@ -6173,37 +6062,11 @@ export declare const Enum: {
|
|
|
6173
6062
|
ORIYA: number;
|
|
6174
6063
|
URDU_DETECTION: number;
|
|
6175
6064
|
};
|
|
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
|
-
};
|
|
6184
6065
|
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;
|
|
6194
6066
|
RFID_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
6195
6067
|
RFID_ENABLE_NFC_IMAGE: string;
|
|
6196
|
-
RFID_DISABLE_NFC_IMAGE: string;
|
|
6197
6068
|
MDL_PROCESSING_SCREEN_FAILURE_IMAGE: string;
|
|
6198
6069
|
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;
|
|
6207
6070
|
};
|
|
6208
6071
|
DocReaderFrame: {
|
|
6209
6072
|
MAX: string;
|