@regulaforensics/document-reader 9.2.661-nightly → 9.2.690-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/RNDocumentReader.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +137 -48
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +23 -19
- package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +2 -2
- package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +5 -0
- package/examples/capacitor/package.json +1 -1
- package/examples/ionic/package-lock.json +265 -314
- package/examples/ionic/package.json +4 -2
- package/examples/react_native/package-lock.json +3 -3
- package/examples/react_native/package.json +1 -1
- package/ios/RGLWConfig.m +152 -41
- package/ios/RGLWJSONConstructor.m +5 -0
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/json.tsx +48 -2
- package/test/package-lock.json +1 -1
- package/test/test.tsx +5 -2
- package/www/capacitor/config/FinalizeConfig.js +4 -0
- package/www/capacitor/index.js +14 -10
- package/www/capacitor/internal/bridge.js +6 -0
- package/www/capacitor/params/customization/Customization.js +28 -18
- package/www/capacitor/params/customization/CustomizationColors.js +33 -1
- package/www/capacitor/params/customization/CustomizationContentModes.js +55 -0
- package/www/capacitor/params/customization/CustomizationFonts.js +38 -2
- package/www/capacitor/params/customization/CustomizationImages.js +145 -1
- package/www/capacitor/params/customization/CustomizationMatrices.js +39 -0
- package/www/capacitor/params/customization/CustomizationTimings.js +71 -0
- package/www/capacitor/params/process_params/BackendProcessingConfig.js +4 -0
- package/www/capacitor/params/process_params/ProcessParams.js +27 -3
- package/www/capacitor/results/visual_results/FieldType.js +2 -0
- package/www/capacitor/rfid/RFIDNotification.js +4 -1
- package/www/cordova.js +584 -147
- package/www/react-native/config/FinalizeConfig.js +4 -0
- package/www/react-native/index.js +14 -10
- package/www/react-native/internal/bridge.js +6 -0
- package/www/react-native/params/customization/Customization.js +28 -18
- package/www/react-native/params/customization/CustomizationColors.js +33 -1
- package/www/react-native/params/customization/CustomizationContentModes.js +55 -0
- package/www/react-native/params/customization/CustomizationFonts.js +38 -2
- package/www/react-native/params/customization/CustomizationImages.js +145 -1
- package/www/react-native/params/customization/CustomizationMatrices.js +39 -0
- package/www/react-native/params/customization/CustomizationTimings.js +71 -0
- package/www/react-native/params/process_params/BackendProcessingConfig.js +4 -0
- package/www/react-native/params/process_params/ProcessParams.js +27 -3
- package/www/react-native/results/visual_results/FieldType.js +2 -0
- package/www/react-native/rfid/RFIDNotification.js +4 -1
- package/www/types/config/FinalizeConfig.d.ts +2 -1
- package/www/types/index.d.ts +7 -5
- package/www/types/params/customization/Customization.d.ts +37 -33
- package/www/types/params/customization/CustomizationColors.d.ts +4 -0
- package/www/types/params/customization/CustomizationContentModes.d.ts +41 -0
- package/www/types/params/customization/CustomizationFonts.d.ts +37 -2
- package/www/types/params/customization/CustomizationImages.d.ts +19 -0
- package/www/types/params/customization/CustomizationMatrices.d.ts +10 -0
- package/www/types/params/customization/CustomizationTimings.d.ts +14 -0
- package/www/types/params/process_params/BackendProcessingConfig.d.ts +2 -0
- package/www/types/params/process_params/ProcessParams.d.ts +9 -0
- package/www/types/results/visual_results/FieldType.d.ts +2 -0
- package/www/types/rfid/RFIDNotification.d.ts +4 -1
- package/www/capacitor/params/customization/Font.js +0 -36
- package/www/react-native/params/customization/Font.js +0 -36
- package/www/types/params/customization/Font.d.ts +0 -36
package/www/cordova.js
CHANGED
|
@@ -16,11 +16,13 @@ class FinalizeConfig {
|
|
|
16
16
|
rawImages
|
|
17
17
|
video
|
|
18
18
|
rfidSession
|
|
19
|
+
mdlSession
|
|
19
20
|
|
|
20
21
|
constructor(options) {
|
|
21
22
|
this.rawImages = options?.rawImages
|
|
22
23
|
this.video = options?.video
|
|
23
24
|
this.rfidSession = options?.rfidSession
|
|
25
|
+
this.mdlSession = options?.mdlSession
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
static fromJson(jsonObject) {
|
|
@@ -30,6 +32,7 @@ class FinalizeConfig {
|
|
|
30
32
|
result.rawImages = jsonObject["rawImages"];
|
|
31
33
|
result.video = jsonObject["video"];
|
|
32
34
|
result.rfidSession = jsonObject["rfidSession"];
|
|
35
|
+
result.mdlSession = jsonObject["mdlSession"];
|
|
33
36
|
|
|
34
37
|
return result;
|
|
35
38
|
}
|
|
@@ -40,6 +43,7 @@ class FinalizeConfig {
|
|
|
40
43
|
"rawImages": this.rawImages,
|
|
41
44
|
"video": this.video,
|
|
42
45
|
"rfidSession": this.rfidSession,
|
|
46
|
+
"mdlSession": this.mdlSession,
|
|
43
47
|
}
|
|
44
48
|
}
|
|
45
49
|
}
|
|
@@ -473,7 +477,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
473
477
|
/* harmony export */ CameraMode: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_88__.CameraMode),
|
|
474
478
|
/* harmony export */ CameraPosition: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_88__.CameraPosition),
|
|
475
479
|
/* harmony export */ CameraSize: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_88__.CameraSize),
|
|
476
|
-
/* harmony export */ Cap: () => (/* reexport safe */
|
|
480
|
+
/* harmony export */ Cap: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_95__.Cap),
|
|
477
481
|
/* harmony export */ CaptureMode: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_88__.CaptureMode),
|
|
478
482
|
/* harmony export */ CaptureSessionPreset: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_88__.CaptureSessionPreset),
|
|
479
483
|
/* harmony export */ CardProperties: () => (/* reexport safe */ _results_rfid_CardProperties__WEBPACK_IMPORTED_MODULE_59__.CardProperties),
|
|
@@ -483,16 +487,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
483
487
|
/* harmony export */ CheckResult: () => (/* reexport safe */ _results_status_CheckResult__WEBPACK_IMPORTED_MODULE_35__.CheckResult),
|
|
484
488
|
/* harmony export */ Comparison: () => (/* reexport safe */ _results_visual_results_Comparison__WEBPACK_IMPORTED_MODULE_19__.Comparison),
|
|
485
489
|
/* harmony export */ Coordinate: () => (/* reexport safe */ _results_Position__WEBPACK_IMPORTED_MODULE_32__.Coordinate),
|
|
486
|
-
/* harmony export */ CustomButtonTag: () => (/* reexport safe */
|
|
487
|
-
/* harmony export */ Customization: () => (/* reexport safe */
|
|
488
|
-
/* harmony export */ CustomizationColors: () => (/* reexport safe */
|
|
489
|
-
/* harmony export */
|
|
490
|
-
/* harmony export */
|
|
491
|
-
/* harmony export */
|
|
490
|
+
/* harmony export */ CustomButtonTag: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_95__.CustomButtonTag),
|
|
491
|
+
/* harmony export */ Customization: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_95__.Customization),
|
|
492
|
+
/* harmony export */ CustomizationColors: () => (/* reexport safe */ _params_customization_CustomizationColors__WEBPACK_IMPORTED_MODULE_89__.CustomizationColors),
|
|
493
|
+
/* harmony export */ CustomizationContentModes: () => (/* reexport safe */ _params_customization_CustomizationContentModes__WEBPACK_IMPORTED_MODULE_94__.CustomizationContentModes),
|
|
494
|
+
/* harmony export */ CustomizationFonts: () => (/* reexport safe */ _params_customization_CustomizationFonts__WEBPACK_IMPORTED_MODULE_90__.CustomizationFonts),
|
|
495
|
+
/* harmony export */ CustomizationImages: () => (/* reexport safe */ _params_customization_CustomizationImages__WEBPACK_IMPORTED_MODULE_91__.CustomizationImages),
|
|
496
|
+
/* harmony export */ CustomizationMatrices: () => (/* reexport safe */ _params_customization_CustomizationMatrices__WEBPACK_IMPORTED_MODULE_93__.CustomizationMatrices),
|
|
497
|
+
/* harmony export */ CustomizationTimings: () => (/* reexport safe */ _params_customization_CustomizationTimings__WEBPACK_IMPORTED_MODULE_92__.CustomizationTimings),
|
|
498
|
+
/* harmony export */ DTCDataGroup: () => (/* reexport safe */ _params_rfid_scenario_DTCDataGroup__WEBPACK_IMPORTED_MODULE_98__.DTCDataGroup),
|
|
492
499
|
/* harmony export */ DataField: () => (/* reexport safe */ _results_rfid_DataField__WEBPACK_IMPORTED_MODULE_60__.DataField),
|
|
493
|
-
/* harmony export */ DataRetrieval: () => (/* reexport safe */
|
|
494
|
-
/* harmony export */ DeviceEngagement: () => (/* reexport safe */
|
|
495
|
-
/* harmony export */ DeviceRetrievalMethod: () => (/* reexport safe */
|
|
500
|
+
/* harmony export */ DataRetrieval: () => (/* reexport safe */ _mdl_DataRetrieval__WEBPACK_IMPORTED_MODULE_108__.DataRetrieval),
|
|
501
|
+
/* harmony export */ DeviceEngagement: () => (/* reexport safe */ _mdl_DeviceEngagement__WEBPACK_IMPORTED_MODULE_109__.DeviceEngagement),
|
|
502
|
+
/* harmony export */ DeviceRetrievalMethod: () => (/* reexport safe */ _mdl_DeviceRetrievalMethod__WEBPACK_IMPORTED_MODULE_112__.DeviceRetrievalMethod),
|
|
496
503
|
/* harmony export */ DocFeature: () => (/* reexport safe */ _results_visible_digital_seals_DocFeature__WEBPACK_IMPORTED_MODULE_55__.DocFeature),
|
|
497
504
|
/* harmony export */ DocFormat: () => (/* reexport safe */ _results_DocumentType__WEBPACK_IMPORTED_MODULE_29__.DocFormat),
|
|
498
505
|
/* harmony export */ DocReaderAction: () => (/* binding */ DocReaderAction),
|
|
@@ -502,14 +509,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
502
509
|
/* harmony export */ DocReaderScenario: () => (/* reexport safe */ _info_DocReaderScenario__WEBPACK_IMPORTED_MODULE_12__.DocReaderScenario),
|
|
503
510
|
/* harmony export */ DocReaderVersion: () => (/* reexport safe */ _info_DocReaderVersion__WEBPACK_IMPORTED_MODULE_7__.DocReaderVersion),
|
|
504
511
|
/* harmony export */ DocumentReader: () => (/* binding */ DocumentReader),
|
|
505
|
-
/* harmony export */ DocumentRequest18013MDL: () => (/* reexport safe */
|
|
506
|
-
/* harmony export */ DocumentRequestMDL: () => (/* reexport safe */
|
|
512
|
+
/* harmony export */ DocumentRequest18013MDL: () => (/* reexport safe */ _mdl_DocumentRequestMDL__WEBPACK_IMPORTED_MODULE_111__.DocumentRequest18013MDL),
|
|
513
|
+
/* harmony export */ DocumentRequestMDL: () => (/* reexport safe */ _mdl_DocumentRequestMDL__WEBPACK_IMPORTED_MODULE_111__.DocumentRequestMDL),
|
|
507
514
|
/* harmony export */ DocumentType: () => (/* reexport safe */ _results_DocumentType__WEBPACK_IMPORTED_MODULE_29__.DocumentType),
|
|
508
515
|
/* harmony export */ DocumentTypeEnum: () => (/* reexport safe */ _results_DocumentType__WEBPACK_IMPORTED_MODULE_29__.DocType),
|
|
509
516
|
/* harmony export */ DocumentsDatabase: () => (/* reexport safe */ _info_DocumentsDatabase__WEBPACK_IMPORTED_MODULE_10__.DocumentsDatabase),
|
|
510
|
-
/* harmony export */ EDLDataGroups: () => (/* reexport safe */
|
|
511
|
-
/* harmony export */ EIDDataGroups: () => (/* reexport safe */
|
|
512
|
-
/* harmony export */ EPassportDataGroups: () => (/* reexport safe */
|
|
517
|
+
/* harmony export */ EDLDataGroups: () => (/* reexport safe */ _params_rfid_scenario_EDLDataGroups__WEBPACK_IMPORTED_MODULE_100__.EDLDataGroups),
|
|
518
|
+
/* harmony export */ EIDDataGroups: () => (/* reexport safe */ _params_rfid_scenario_EIDDataGroups__WEBPACK_IMPORTED_MODULE_97__.EIDDataGroups),
|
|
519
|
+
/* harmony export */ EPassportDataGroups: () => (/* reexport safe */ _params_rfid_scenario_EPassportDataGroups__WEBPACK_IMPORTED_MODULE_96__.EPassportDataGroups),
|
|
513
520
|
/* harmony export */ ErrorCodes: () => (/* reexport safe */ _info_DocReaderException__WEBPACK_IMPORTED_MODULE_9__.ErrorCodes),
|
|
514
521
|
/* harmony export */ Extension: () => (/* reexport safe */ _results_rfid_Extension__WEBPACK_IMPORTED_MODULE_76__.Extension),
|
|
515
522
|
/* harmony export */ FaceApiParams: () => (/* reexport safe */ _params_process_params_FaceApiParams__WEBPACK_IMPORTED_MODULE_81__.FaceApiParams),
|
|
@@ -518,9 +525,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
518
525
|
/* harmony export */ File: () => (/* reexport safe */ _results_rfid_File__WEBPACK_IMPORTED_MODULE_66__.File),
|
|
519
526
|
/* harmony export */ FileData: () => (/* reexport safe */ _results_rfid_FileData__WEBPACK_IMPORTED_MODULE_71__.FileData),
|
|
520
527
|
/* harmony export */ FinalizeConfig: () => (/* reexport safe */ _config_FinalizeConfig__WEBPACK_IMPORTED_MODULE_6__.FinalizeConfig),
|
|
521
|
-
/* harmony export */ Font: () => (/* reexport safe */
|
|
522
|
-
/* harmony export */ FontStyle: () => (/* reexport safe */
|
|
523
|
-
/* harmony export */ FrameShapeType: () => (/* reexport safe */
|
|
528
|
+
/* harmony export */ Font: () => (/* reexport safe */ _params_customization_CustomizationFonts__WEBPACK_IMPORTED_MODULE_90__.Font),
|
|
529
|
+
/* harmony export */ FontStyle: () => (/* reexport safe */ _params_customization_CustomizationFonts__WEBPACK_IMPORTED_MODULE_90__.FontStyle),
|
|
530
|
+
/* harmony export */ FrameShapeType: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_95__.FrameShapeType),
|
|
524
531
|
/* harmony export */ Functionality: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_88__.Functionality),
|
|
525
532
|
/* harmony export */ GlaresCheckParams: () => (/* reexport safe */ _params_process_params_GlaresCheckParams__WEBPACK_IMPORTED_MODULE_80__.GlaresCheckParams),
|
|
526
533
|
/* harmony export */ GraphicField: () => (/* reexport safe */ _results_visual_results_GraphicField__WEBPACK_IMPORTED_MODULE_24__.GraphicField),
|
|
@@ -540,45 +547,45 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
540
547
|
/* harmony export */ Lights: () => (/* reexport safe */ _results_visual_results_Lights__WEBPACK_IMPORTED_MODULE_21__.Lights),
|
|
541
548
|
/* harmony export */ LivenessParams: () => (/* reexport safe */ _params_process_params_LivenessParams__WEBPACK_IMPORTED_MODULE_78__.LivenessParams),
|
|
542
549
|
/* harmony export */ LogLevel: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_79__.LogLevel),
|
|
543
|
-
/* harmony export */ MDLDeviceEngagement: () => (/* reexport safe */
|
|
544
|
-
/* harmony export */ MDLDeviceRetrieval: () => (/* reexport safe */
|
|
545
|
-
/* harmony export */ MDLDocRequestPreset: () => (/* reexport safe */
|
|
546
|
-
/* harmony export */ MDLIntentToRetain: () => (/* reexport safe */
|
|
550
|
+
/* harmony export */ MDLDeviceEngagement: () => (/* reexport safe */ _mdl_DeviceEngagement__WEBPACK_IMPORTED_MODULE_109__.MDLDeviceEngagement),
|
|
551
|
+
/* harmony export */ MDLDeviceRetrieval: () => (/* reexport safe */ _mdl_DataRetrieval__WEBPACK_IMPORTED_MODULE_108__.MDLDeviceRetrieval),
|
|
552
|
+
/* harmony export */ MDLDocRequestPreset: () => (/* reexport safe */ _mdl_DataRetrieval__WEBPACK_IMPORTED_MODULE_108__.MDLDocRequestPreset),
|
|
553
|
+
/* harmony export */ MDLIntentToRetain: () => (/* reexport safe */ _mdl_NameSpaceMDL__WEBPACK_IMPORTED_MODULE_110__.MDLIntentToRetain),
|
|
547
554
|
/* harmony export */ MRZFormat: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_79__.MRZFormat),
|
|
548
555
|
/* harmony export */ MeasureSystem: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_79__.MeasureSystem),
|
|
549
556
|
/* harmony export */ MrzDetectionModes: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_79__.MrzDetectionModes),
|
|
550
|
-
/* harmony export */ NameSpaceMDL: () => (/* reexport safe */
|
|
557
|
+
/* harmony export */ NameSpaceMDL: () => (/* reexport safe */ _mdl_NameSpaceMDL__WEBPACK_IMPORTED_MODULE_110__.NameSpaceMDL),
|
|
551
558
|
/* harmony export */ OnlineMode: () => (/* reexport safe */ _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__.OnlineMode),
|
|
552
559
|
/* harmony export */ OnlineProcessingConfig: () => (/* reexport safe */ _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__.OnlineProcessingConfig),
|
|
553
560
|
/* harmony export */ OpticalStatus: () => (/* reexport safe */ _results_status_OpticalStatus__WEBPACK_IMPORTED_MODULE_36__.OpticalStatus),
|
|
554
|
-
/* harmony export */ PAAttribute: () => (/* reexport safe */
|
|
555
|
-
/* harmony export */ PAResourcesIssuer: () => (/* reexport safe */
|
|
561
|
+
/* harmony export */ PAAttribute: () => (/* reexport safe */ _rfid_PAAttribute__WEBPACK_IMPORTED_MODULE_105__.PAAttribute),
|
|
562
|
+
/* harmony export */ PAResourcesIssuer: () => (/* reexport safe */ _rfid_PAResourcesIssuer__WEBPACK_IMPORTED_MODULE_101__.PAResourcesIssuer),
|
|
556
563
|
/* harmony export */ PDF417Info: () => (/* reexport safe */ _results_barcode_PDF417Info__WEBPACK_IMPORTED_MODULE_44__.PDF417Info),
|
|
557
|
-
/* harmony export */ PKDCertificate: () => (/* reexport safe */
|
|
558
|
-
/* harmony export */ PKDResourceType: () => (/* reexport safe */
|
|
564
|
+
/* harmony export */ PKDCertificate: () => (/* reexport safe */ _rfid_PKDCertificate__WEBPACK_IMPORTED_MODULE_107__.PKDCertificate),
|
|
565
|
+
/* harmony export */ PKDResourceType: () => (/* reexport safe */ _rfid_PKDCertificate__WEBPACK_IMPORTED_MODULE_107__.PKDResourceType),
|
|
559
566
|
/* harmony export */ Position: () => (/* reexport safe */ _results_Position__WEBPACK_IMPORTED_MODULE_32__.Position),
|
|
560
567
|
/* harmony export */ PrepareProgress: () => (/* reexport safe */ _info_PrepareProgress__WEBPACK_IMPORTED_MODULE_8__.PrepareProgress),
|
|
561
568
|
/* harmony export */ ProcessParams: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_79__.ProcessParams),
|
|
562
569
|
/* harmony export */ ProcessingFinishedStatus: () => (/* reexport safe */ _results_Results__WEBPACK_IMPORTED_MODULE_30__.ProcessingFinishedStatus),
|
|
563
570
|
/* harmony export */ RFIDAccessControlProcedureType: () => (/* reexport safe */ _results_rfid_RFIDAccessControlProcedureType__WEBPACK_IMPORTED_MODULE_75__.RFIDAccessControlProcedureType),
|
|
564
571
|
/* harmony export */ RFIDApplicationType: () => (/* reexport safe */ _results_rfid_Application__WEBPACK_IMPORTED_MODULE_74__.RFIDApplicationType),
|
|
565
|
-
/* harmony export */ RFIDAuthenticationProcedureType: () => (/* reexport safe */
|
|
572
|
+
/* harmony export */ RFIDAuthenticationProcedureType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.RFIDAuthenticationProcedureType),
|
|
566
573
|
/* harmony export */ RFIDCertificateType: () => (/* reexport safe */ _results_rfid_RFIDCertificateType__WEBPACK_IMPORTED_MODULE_72__.RFIDCertificateType),
|
|
567
574
|
/* harmony export */ RFIDConfig: () => (/* reexport safe */ _config_RFIDConfig__WEBPACK_IMPORTED_MODULE_3__.RFIDConfig),
|
|
568
575
|
/* harmony export */ RFIDDataFileType: () => (/* reexport safe */ _results_rfid_RFIDDataFileType__WEBPACK_IMPORTED_MODULE_69__.RFIDDataFileType),
|
|
569
|
-
/* harmony export */ RFIDErrorCodes: () => (/* reexport safe */
|
|
576
|
+
/* harmony export */ RFIDErrorCodes: () => (/* reexport safe */ _rfid_RFIDErrorCodes__WEBPACK_IMPORTED_MODULE_102__.RFIDErrorCodes),
|
|
570
577
|
/* harmony export */ RFIDException: () => (/* reexport safe */ _info_RFIDException__WEBPACK_IMPORTED_MODULE_13__.RFIDException),
|
|
571
|
-
/* harmony export */ RFIDNotification: () => (/* reexport safe */
|
|
572
|
-
/* harmony export */ RFIDNotificationCodes: () => (/* reexport safe */
|
|
578
|
+
/* harmony export */ RFIDNotification: () => (/* reexport safe */ _rfid_RFIDNotification__WEBPACK_IMPORTED_MODULE_104__.RFIDNotification),
|
|
579
|
+
/* harmony export */ RFIDNotificationCodes: () => (/* reexport safe */ _rfid_RFIDNotification__WEBPACK_IMPORTED_MODULE_104__.RFIDNotificationCodes),
|
|
573
580
|
/* harmony export */ RFIDOrigin: () => (/* reexport safe */ _results_visual_results_RFIDOrigin__WEBPACK_IMPORTED_MODULE_25__.RFIDOrigin),
|
|
574
581
|
/* harmony export */ RFIDParams: () => (/* reexport safe */ _params_process_params_RFIDParams__WEBPACK_IMPORTED_MODULE_82__.RFIDParams),
|
|
575
|
-
/* harmony export */ RFIDPasswordType: () => (/* reexport safe */
|
|
576
|
-
/* harmony export */ RFIDReadingBufferSize: () => (/* reexport safe */
|
|
577
|
-
/* harmony export */ RFIDSDKProfilerType: () => (/* reexport safe */
|
|
578
|
-
/* harmony export */ RFIDScenario: () => (/* reexport safe */
|
|
582
|
+
/* harmony export */ RFIDPasswordType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.RFIDPasswordType),
|
|
583
|
+
/* harmony export */ RFIDReadingBufferSize: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.RFIDReadingBufferSize),
|
|
584
|
+
/* harmony export */ RFIDSDKProfilerType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.RFIDSDKProfilerType),
|
|
585
|
+
/* harmony export */ RFIDScenario: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.RFIDScenario),
|
|
579
586
|
/* harmony export */ RFIDSessionData: () => (/* reexport safe */ _results_rfid_RFIDSessionData__WEBPACK_IMPORTED_MODULE_73__.RFIDSessionData),
|
|
580
587
|
/* harmony export */ RFIDStatus: () => (/* reexport safe */ _results_status_RFIDStatus__WEBPACK_IMPORTED_MODULE_33__.RFIDStatus),
|
|
581
|
-
/* harmony export */ RFIDTerminalType: () => (/* reexport safe */
|
|
588
|
+
/* harmony export */ RFIDTerminalType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.RFIDTerminalType),
|
|
582
589
|
/* harmony export */ RFIDValidity: () => (/* reexport safe */ _results_rfid_RFIDValidity__WEBPACK_IMPORTED_MODULE_68__.RFIDValidity),
|
|
583
590
|
/* harmony export */ RFIDValue: () => (/* reexport safe */ _results_rfid_RFIDValue__WEBPACK_IMPORTED_MODULE_67__.RFIDValue),
|
|
584
591
|
/* harmony export */ RecognizeConfig: () => (/* reexport safe */ _config_RecognizeConfig__WEBPACK_IMPORTED_MODULE_5__.RecognizeConfig),
|
|
@@ -591,11 +598,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
591
598
|
/* harmony export */ SecurityFeatureType: () => (/* reexport safe */ _results_authenticity_SecurityFeatureType__WEBPACK_IMPORTED_MODULE_42__.SecurityFeatureType),
|
|
592
599
|
/* harmony export */ SecurityObject: () => (/* reexport safe */ _results_rfid_SecurityObject__WEBPACK_IMPORTED_MODULE_58__.SecurityObject),
|
|
593
600
|
/* harmony export */ SecurityObjectCertificates: () => (/* reexport safe */ _results_rfid_SecurityObjectCertificates__WEBPACK_IMPORTED_MODULE_63__.SecurityObjectCertificates),
|
|
594
|
-
/* harmony export */ SignManagementAction: () => (/* reexport safe */
|
|
601
|
+
/* harmony export */ SignManagementAction: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.SignManagementAction),
|
|
595
602
|
/* harmony export */ SignerInfo: () => (/* reexport safe */ _results_rfid_SignerInfo__WEBPACK_IMPORTED_MODULE_62__.SignerInfo),
|
|
596
603
|
/* harmony export */ Symbol: () => (/* reexport safe */ _results_visual_results_Symbol__WEBPACK_IMPORTED_MODULE_18__.Symbol),
|
|
597
|
-
/* harmony export */ TAChallenge: () => (/* reexport safe */
|
|
598
|
-
/* harmony export */ TccParams: () => (/* reexport safe */
|
|
604
|
+
/* harmony export */ TAChallenge: () => (/* reexport safe */ _rfid_TAChallenge__WEBPACK_IMPORTED_MODULE_106__.TAChallenge),
|
|
605
|
+
/* harmony export */ TccParams: () => (/* reexport safe */ _rfid_TccParams__WEBPACK_IMPORTED_MODULE_103__.TccParams),
|
|
599
606
|
/* harmony export */ TextField: () => (/* reexport safe */ _results_visual_results_TextField__WEBPACK_IMPORTED_MODULE_20__.TextField),
|
|
600
607
|
/* harmony export */ TextResult: () => (/* reexport safe */ _results_visual_results_TextResult__WEBPACK_IMPORTED_MODULE_26__.TextResult),
|
|
601
608
|
/* harmony export */ TextSource: () => (/* reexport safe */ _results_visual_results_TextSource__WEBPACK_IMPORTED_MODULE_27__.TextSource),
|
|
@@ -604,7 +611,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
604
611
|
/* harmony export */ VDSNCData: () => (/* reexport safe */ _results_visible_digital_seals_VDSNCData__WEBPACK_IMPORTED_MODULE_53__.VDSNCData),
|
|
605
612
|
/* harmony export */ Validity: () => (/* reexport safe */ _results_visual_results_Validity__WEBPACK_IMPORTED_MODULE_22__.Validity),
|
|
606
613
|
/* harmony export */ Value: () => (/* reexport safe */ _results_visual_results_Value__WEBPACK_IMPORTED_MODULE_16__.Value),
|
|
607
|
-
/* harmony export */ ViewContentMode: () => (/* reexport safe */
|
|
614
|
+
/* harmony export */ ViewContentMode: () => (/* reexport safe */ _params_customization_CustomizationContentModes__WEBPACK_IMPORTED_MODULE_94__.ViewContentMode)
|
|
608
615
|
/* harmony export */ });
|
|
609
616
|
/* harmony import */ var _internal_bridge__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./internal/bridge */ "./src/internal/bridge.js");
|
|
610
617
|
/* harmony import */ var _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config/OnlineProcessingConfig */ "./src/config/OnlineProcessingConfig.js");
|
|
@@ -695,28 +702,32 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
695
702
|
/* harmony import */ var _params_process_params_Bsi__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./params/process_params/Bsi */ "./src/params/process_params/Bsi.js");
|
|
696
703
|
/* harmony import */ var _params_process_params_FaceApiSearchParams__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./params/process_params/FaceApiSearchParams */ "./src/params/process_params/FaceApiSearchParams.js");
|
|
697
704
|
/* harmony import */ var _params_Functionality__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./params/Functionality */ "./src/params/Functionality.js");
|
|
698
|
-
/* harmony import */ var
|
|
699
|
-
/* harmony import */ var
|
|
700
|
-
/* harmony import */ var
|
|
701
|
-
/* harmony import */ var
|
|
702
|
-
/* harmony import */ var
|
|
703
|
-
/* harmony import */ var
|
|
704
|
-
/* harmony import */ var
|
|
705
|
-
/* harmony import */ var
|
|
706
|
-
/* harmony import */ var
|
|
707
|
-
/* harmony import */ var
|
|
708
|
-
/* harmony import */ var
|
|
709
|
-
/* harmony import */ var
|
|
710
|
-
/* harmony import */ var
|
|
711
|
-
/* harmony import */ var
|
|
712
|
-
/* harmony import */ var
|
|
713
|
-
/* harmony import */ var
|
|
714
|
-
/* harmony import */ var
|
|
715
|
-
/* harmony import */ var
|
|
716
|
-
/* harmony import */ var
|
|
717
|
-
/* harmony import */ var
|
|
718
|
-
/* harmony import */ var
|
|
719
|
-
/* harmony import */ var
|
|
705
|
+
/* harmony import */ var _params_customization_CustomizationColors__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./params/customization/CustomizationColors */ "./src/params/customization/CustomizationColors.js");
|
|
706
|
+
/* harmony import */ var _params_customization_CustomizationFonts__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./params/customization/CustomizationFonts */ "./src/params/customization/CustomizationFonts.js");
|
|
707
|
+
/* harmony import */ var _params_customization_CustomizationImages__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./params/customization/CustomizationImages */ "./src/params/customization/CustomizationImages.js");
|
|
708
|
+
/* harmony import */ var _params_customization_CustomizationTimings__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./params/customization/CustomizationTimings */ "./src/params/customization/CustomizationTimings.js");
|
|
709
|
+
/* harmony import */ var _params_customization_CustomizationMatrices__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./params/customization/CustomizationMatrices */ "./src/params/customization/CustomizationMatrices.js");
|
|
710
|
+
/* harmony import */ var _params_customization_CustomizationContentModes__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./params/customization/CustomizationContentModes */ "./src/params/customization/CustomizationContentModes.js");
|
|
711
|
+
/* harmony import */ var _params_customization_Customization__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./params/customization/Customization */ "./src/params/customization/Customization.js");
|
|
712
|
+
/* harmony import */ var _params_rfid_scenario_EPassportDataGroups__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./params/rfid_scenario/EPassportDataGroups */ "./src/params/rfid_scenario/EPassportDataGroups.js");
|
|
713
|
+
/* harmony import */ var _params_rfid_scenario_EIDDataGroups__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./params/rfid_scenario/EIDDataGroups */ "./src/params/rfid_scenario/EIDDataGroups.js");
|
|
714
|
+
/* harmony import */ var _params_rfid_scenario_DTCDataGroup__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./params/rfid_scenario/DTCDataGroup */ "./src/params/rfid_scenario/DTCDataGroup.js");
|
|
715
|
+
/* harmony import */ var _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./params/rfid_scenario/RFIDScenario */ "./src/params/rfid_scenario/RFIDScenario.js");
|
|
716
|
+
/* harmony import */ var _params_rfid_scenario_EDLDataGroups__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./params/rfid_scenario/EDLDataGroups */ "./src/params/rfid_scenario/EDLDataGroups.js");
|
|
717
|
+
/* harmony import */ var _rfid_PAResourcesIssuer__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./rfid/PAResourcesIssuer */ "./src/rfid/PAResourcesIssuer.js");
|
|
718
|
+
/* harmony import */ var _rfid_RFIDErrorCodes__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./rfid/RFIDErrorCodes */ "./src/rfid/RFIDErrorCodes.js");
|
|
719
|
+
/* harmony import */ var _rfid_TccParams__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./rfid/TccParams */ "./src/rfid/TccParams.js");
|
|
720
|
+
/* harmony import */ var _rfid_RFIDNotification__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./rfid/RFIDNotification */ "./src/rfid/RFIDNotification.js");
|
|
721
|
+
/* harmony import */ var _rfid_PAAttribute__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./rfid/PAAttribute */ "./src/rfid/PAAttribute.js");
|
|
722
|
+
/* harmony import */ var _rfid_TAChallenge__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./rfid/TAChallenge */ "./src/rfid/TAChallenge.js");
|
|
723
|
+
/* harmony import */ var _rfid_PKDCertificate__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./rfid/PKDCertificate */ "./src/rfid/PKDCertificate.js");
|
|
724
|
+
/* harmony import */ var _mdl_DataRetrieval__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./mdl/DataRetrieval */ "./src/mdl/DataRetrieval.js");
|
|
725
|
+
/* harmony import */ var _mdl_DeviceEngagement__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./mdl/DeviceEngagement */ "./src/mdl/DeviceEngagement.js");
|
|
726
|
+
/* harmony import */ var _mdl_NameSpaceMDL__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./mdl/NameSpaceMDL */ "./src/mdl/NameSpaceMDL.js");
|
|
727
|
+
/* harmony import */ var _mdl_DocumentRequestMDL__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./mdl/DocumentRequestMDL */ "./src/mdl/DocumentRequestMDL.js");
|
|
728
|
+
/* harmony import */ var _mdl_DeviceRetrievalMethod__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./mdl/DeviceRetrievalMethod */ "./src/mdl/DeviceRetrievalMethod.js");
|
|
729
|
+
|
|
730
|
+
|
|
720
731
|
|
|
721
732
|
|
|
722
733
|
|
|
@@ -946,14 +957,14 @@ class DocumentReader {
|
|
|
946
957
|
}
|
|
947
958
|
|
|
948
959
|
get customization() { return this._customization }
|
|
949
|
-
_customization = new
|
|
960
|
+
_customization = new _params_customization_Customization__WEBPACK_IMPORTED_MODULE_95__.Customization()
|
|
950
961
|
set customization(val) {
|
|
951
962
|
this._customization = val;
|
|
952
963
|
this._customization._apply();
|
|
953
964
|
}
|
|
954
965
|
|
|
955
966
|
get rfidScenario() { return this._rfidScenario }
|
|
956
|
-
_rfidScenario = new
|
|
967
|
+
_rfidScenario = new _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.RFIDScenario()
|
|
957
968
|
set rfidScenario(val) {
|
|
958
969
|
this._rfidScenario = val;
|
|
959
970
|
this._rfidScenario._apply();
|
|
@@ -971,8 +982,8 @@ class DocumentReader {
|
|
|
971
982
|
(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("resetConfiguration", []);
|
|
972
983
|
this._functionality = new _params_Functionality__WEBPACK_IMPORTED_MODULE_88__.Functionality();
|
|
973
984
|
this._processParams = new _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_79__.ProcessParams();
|
|
974
|
-
this._customization = new
|
|
975
|
-
this._rfidScenario = new
|
|
985
|
+
this._customization = new _params_customization_Customization__WEBPACK_IMPORTED_MODULE_95__.Customization();
|
|
986
|
+
this._rfidScenario = new _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.RFIDScenario();
|
|
976
987
|
}
|
|
977
988
|
|
|
978
989
|
set onCustomButtonTapped(completion) {
|
|
@@ -1088,10 +1099,12 @@ class DocumentReader {
|
|
|
1088
1099
|
return this._successOrErrorFromJson(response);
|
|
1089
1100
|
}
|
|
1090
1101
|
|
|
1091
|
-
async finalizePackage(
|
|
1092
|
-
var
|
|
1093
|
-
|
|
1094
|
-
|
|
1102
|
+
async finalizePackage(config) {
|
|
1103
|
+
var response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)(
|
|
1104
|
+
config == null ? "finalizePackage" :
|
|
1105
|
+
"finalizePackageWithFinalizeConfig",
|
|
1106
|
+
[(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.serializeInterface)(config, _config_FinalizeConfig__WEBPACK_IMPORTED_MODULE_6__.FinalizeConfig)]
|
|
1107
|
+
);
|
|
1095
1108
|
var jsonObject = JSON.parse(response);
|
|
1096
1109
|
var action = jsonObject["action"];
|
|
1097
1110
|
var info = _results_TransactionInfo__WEBPACK_IMPORTED_MODULE_31__.TransactionInfo.fromJson(jsonObject["info"]);
|
|
@@ -1118,23 +1131,23 @@ class DocumentReader {
|
|
|
1118
1131
|
var response = "";
|
|
1119
1132
|
if (options?.withoutUI != true) {
|
|
1120
1133
|
response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("startEngageDevice", [type.value]);
|
|
1121
|
-
} else if (type ==
|
|
1134
|
+
} else if (type == _mdl_DeviceEngagement__WEBPACK_IMPORTED_MODULE_109__.MDLDeviceEngagement.NFC) {
|
|
1122
1135
|
response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("engageDeviceNFC", []);
|
|
1123
|
-
} else if (type ==
|
|
1136
|
+
} else if (type == _mdl_DeviceEngagement__WEBPACK_IMPORTED_MODULE_109__.MDLDeviceEngagement.QR && options?.data != null) {
|
|
1124
1137
|
response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("engageDeviceData", [options.data]);
|
|
1125
1138
|
}
|
|
1126
1139
|
|
|
1127
1140
|
var jsonObject = JSON.parse(response);
|
|
1128
1141
|
return [
|
|
1129
|
-
|
|
1142
|
+
_mdl_DeviceEngagement__WEBPACK_IMPORTED_MODULE_109__.DeviceEngagement.fromJson(jsonObject["deviceEngagement"]),
|
|
1130
1143
|
_info_DocReaderException__WEBPACK_IMPORTED_MODULE_9__.DocReaderException.fromJson(jsonObject["error"]),
|
|
1131
1144
|
]
|
|
1132
1145
|
}
|
|
1133
1146
|
|
|
1134
1147
|
async retrieveData(retrieval, options) {
|
|
1135
1148
|
var func = "startRetrieveData";
|
|
1136
|
-
if (options?.withoutUI ==
|
|
1137
|
-
if (options?.withoutUI ==
|
|
1149
|
+
if (options?.withoutUI == _mdl_DataRetrieval__WEBPACK_IMPORTED_MODULE_108__.MDLDeviceRetrieval.NFC) func = "engageDeviceNFC";
|
|
1150
|
+
if (options?.withoutUI == _mdl_DataRetrieval__WEBPACK_IMPORTED_MODULE_108__.MDLDeviceRetrieval.BLE) func = "engageDeviceBLE";
|
|
1138
1151
|
|
|
1139
1152
|
var response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)(func, [retrieval.toJson(), options?.engagement?.toJson()]);
|
|
1140
1153
|
var jsonObject = JSON.parse(response);
|
|
@@ -1180,12 +1193,12 @@ class DocumentReader {
|
|
|
1180
1193
|
|
|
1181
1194
|
async _getCustomization() {
|
|
1182
1195
|
const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getCustomization", []);
|
|
1183
|
-
return
|
|
1196
|
+
return _params_customization_Customization__WEBPACK_IMPORTED_MODULE_95__.Customization.fromJson(JSON.parse(response));
|
|
1184
1197
|
}
|
|
1185
1198
|
|
|
1186
1199
|
async _getRfidScenario() {
|
|
1187
1200
|
const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getRfidScenario", []);
|
|
1188
|
-
return
|
|
1201
|
+
return _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_99__.RFIDScenario.fromJson(JSON.parse(response));
|
|
1189
1202
|
}
|
|
1190
1203
|
|
|
1191
1204
|
async _getLicense() {
|
|
@@ -1715,7 +1728,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1715
1728
|
/* harmony export */ _setTaCertificateCompletion: () => (/* binding */ _setTaCertificateCompletion),
|
|
1716
1729
|
/* harmony export */ _setTaSignatureCompletion: () => (/* binding */ _setTaSignatureCompletion),
|
|
1717
1730
|
/* harmony export */ _setVideoEncoderCompletion: () => (/* binding */ _setVideoEncoderCompletion),
|
|
1718
|
-
/* harmony export */ exec: () => (/* binding */ exec)
|
|
1731
|
+
/* harmony export */ exec: () => (/* binding */ exec),
|
|
1732
|
+
/* harmony export */ serializeInterface: () => (/* binding */ serializeInterface)
|
|
1719
1733
|
/* harmony export */ });
|
|
1720
1734
|
/* harmony import */ var _cordova__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./cordova */ "./src/internal/cordova.js");
|
|
1721
1735
|
/* harmony import */ var _results_Results__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../results/Results */ "./src/results/Results.js");
|
|
@@ -1742,6 +1756,12 @@ async function exec(name, params) {
|
|
|
1742
1756
|
return RNDocumentReader.exec(name, params)
|
|
1743
1757
|
}
|
|
1744
1758
|
|
|
1759
|
+
function serializeInterface(value, ctor) {
|
|
1760
|
+
if (value == null) return null
|
|
1761
|
+
if (value instanceof ctor) return value.toJson()
|
|
1762
|
+
return (new ctor(value)).toJson()
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1745
1765
|
function _setEvent(id, completion, fromJson) {
|
|
1746
1766
|
eventManager.removeAllListeners(id)
|
|
1747
1767
|
if (completion == null) return
|
|
@@ -2722,15 +2742,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2722
2742
|
/* harmony export */ Cap: () => (/* binding */ Cap),
|
|
2723
2743
|
/* harmony export */ CustomButtonTag: () => (/* binding */ CustomButtonTag),
|
|
2724
2744
|
/* harmony export */ Customization: () => (/* binding */ Customization),
|
|
2725
|
-
/* harmony export */ FrameShapeType: () => (/* binding */ FrameShapeType)
|
|
2726
|
-
/* harmony export */ ViewContentMode: () => (/* binding */ ViewContentMode)
|
|
2745
|
+
/* harmony export */ FrameShapeType: () => (/* binding */ FrameShapeType)
|
|
2727
2746
|
/* harmony export */ });
|
|
2728
2747
|
/* harmony import */ var _internal_bridge__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../internal/bridge */ "./src/internal/bridge.js");
|
|
2729
2748
|
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../index */ "./src/index.js");
|
|
2730
2749
|
/* harmony import */ var _CustomizationColors__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./CustomizationColors */ "./src/params/customization/CustomizationColors.js");
|
|
2731
2750
|
/* harmony import */ var _CustomizationFonts__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./CustomizationFonts */ "./src/params/customization/CustomizationFonts.js");
|
|
2732
2751
|
/* harmony import */ var _CustomizationImages__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./CustomizationImages */ "./src/params/customization/CustomizationImages.js");
|
|
2733
|
-
/* harmony import */ var
|
|
2752
|
+
/* harmony import */ var _CustomizationTimings__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./CustomizationTimings */ "./src/params/customization/CustomizationTimings.js");
|
|
2753
|
+
/* harmony import */ var _CustomizationContentModes__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./CustomizationContentModes */ "./src/params/customization/CustomizationContentModes.js");
|
|
2754
|
+
/* harmony import */ var _CustomizationMatrices__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./CustomizationMatrices */ "./src/params/customization/CustomizationMatrices.js");
|
|
2755
|
+
|
|
2756
|
+
|
|
2734
2757
|
|
|
2735
2758
|
|
|
2736
2759
|
|
|
@@ -3171,6 +3194,24 @@ class Customization {
|
|
|
3171
3194
|
val._apply(this);
|
|
3172
3195
|
}
|
|
3173
3196
|
|
|
3197
|
+
get timings() { return this._timings; }
|
|
3198
|
+
set timings(val) {
|
|
3199
|
+
this._timings = val;
|
|
3200
|
+
val._apply(this);
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3203
|
+
get contentModes() { return this._contentModes; }
|
|
3204
|
+
set contentModes(val) {
|
|
3205
|
+
this._contentModes = val;
|
|
3206
|
+
val._apply(this);
|
|
3207
|
+
}
|
|
3208
|
+
|
|
3209
|
+
get matrices() { return this._matrices; }
|
|
3210
|
+
set matrices(val) {
|
|
3211
|
+
this._matrices = val;
|
|
3212
|
+
val._apply(this);
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3174
3215
|
static fromJson(jsonObject) {
|
|
3175
3216
|
if (jsonObject == null) return null;
|
|
3176
3217
|
|
|
@@ -3232,9 +3273,9 @@ class Customization {
|
|
|
3232
3273
|
result._customLabelStatus = jsonObject["customLabelStatus"];
|
|
3233
3274
|
result._cameraFrameLineCap = jsonObject["cameraFrameLineCap"];
|
|
3234
3275
|
result._uiCustomizationLayer = jsonObject["uiCustomizationLayer"];
|
|
3235
|
-
result._statusTextFont =
|
|
3236
|
-
result._resultStatusTextFont =
|
|
3237
|
-
result._multipageButtonTextFont =
|
|
3276
|
+
result._statusTextFont = _CustomizationFonts__WEBPACK_IMPORTED_MODULE_3__.Font.fromJson(jsonObject["statusTextFont"]);
|
|
3277
|
+
result._resultStatusTextFont = _CustomizationFonts__WEBPACK_IMPORTED_MODULE_3__.Font.fromJson(jsonObject["resultStatusTextFont"]);
|
|
3278
|
+
result._multipageButtonTextFont = _CustomizationFonts__WEBPACK_IMPORTED_MODULE_3__.Font.fromJson(jsonObject["multipageButtonTextFont"]);
|
|
3238
3279
|
result._helpAnimationImageTransformsIOS = jsonObject["helpAnimationImageContentMode"];
|
|
3239
3280
|
result._multipageAnimationFrontImageTransformsIOS = jsonObject["multipageAnimationFrontImageContentMode"];
|
|
3240
3281
|
result._multipageAnimationBackImageTransformsIOS = jsonObject["multipageAnimationBackImageContentMode"];
|
|
@@ -3249,6 +3290,9 @@ class Customization {
|
|
|
3249
3290
|
result._colors = _CustomizationColors__WEBPACK_IMPORTED_MODULE_2__.CustomizationColors.fromJson(jsonObject["colors"]);
|
|
3250
3291
|
result._fonts = _CustomizationFonts__WEBPACK_IMPORTED_MODULE_3__.CustomizationFonts.fromJson(jsonObject["fonts"]);
|
|
3251
3292
|
result._images = _CustomizationImages__WEBPACK_IMPORTED_MODULE_4__.CustomizationImages.fromJson(jsonObject["images"]);
|
|
3293
|
+
result._timings = _CustomizationTimings__WEBPACK_IMPORTED_MODULE_5__.CustomizationTimings.fromJson(jsonObject["timings"]);
|
|
3294
|
+
result._contentModes = _CustomizationContentModes__WEBPACK_IMPORTED_MODULE_6__.CustomizationContentModes.fromJson(jsonObject["contentModes"]);
|
|
3295
|
+
result._matrices = _CustomizationMatrices__WEBPACK_IMPORTED_MODULE_7__.CustomizationMatrices.fromJson(jsonObject["matrices"]);
|
|
3252
3296
|
|
|
3253
3297
|
return result;
|
|
3254
3298
|
}
|
|
@@ -3327,6 +3371,9 @@ class Customization {
|
|
|
3327
3371
|
"colors": this.colors?.toJson(),
|
|
3328
3372
|
"fonts": this.fonts?.toJson(),
|
|
3329
3373
|
"images": this.images?.toJson(),
|
|
3374
|
+
"timings": this.timings?.toJson(),
|
|
3375
|
+
"contentModes": this.contentModes?.toJson(),
|
|
3376
|
+
"matrices": this.matrices?.toJson(),
|
|
3330
3377
|
}
|
|
3331
3378
|
}
|
|
3332
3379
|
|
|
@@ -3348,22 +3395,6 @@ const FrameShapeType = {
|
|
|
3348
3395
|
CORNER: 1
|
|
3349
3396
|
};
|
|
3350
3397
|
|
|
3351
|
-
const ViewContentMode = {
|
|
3352
|
-
SCALE_TO_FILL: 0,
|
|
3353
|
-
SCALE_ASPECT_FIT: 1,
|
|
3354
|
-
SCALE_ASPECT_FILL: 2,
|
|
3355
|
-
REDRAW: 3,
|
|
3356
|
-
CENTER: 4,
|
|
3357
|
-
TOP: 5,
|
|
3358
|
-
BOTTOM: 6,
|
|
3359
|
-
LEFT: 7,
|
|
3360
|
-
RIGHT: 8,
|
|
3361
|
-
TOP_LEFT: 9,
|
|
3362
|
-
TOP_RIGHT: 10,
|
|
3363
|
-
BOTTOM_LEFT: 11,
|
|
3364
|
-
BOTTOM_RIGHT: 12
|
|
3365
|
-
};
|
|
3366
|
-
|
|
3367
3398
|
const CustomButtonTag = {
|
|
3368
3399
|
CLOSE: 1001,
|
|
3369
3400
|
TORCH: 1002,
|
|
@@ -3522,10 +3553,34 @@ class CustomizationColors {
|
|
|
3522
3553
|
this._set({ "mdlEnableNfcButtonBackground": val });
|
|
3523
3554
|
}
|
|
3524
3555
|
|
|
3556
|
+
get nextPageIdCardFront() { return this._nextPageIdCardFront; }
|
|
3557
|
+
set nextPageIdCardFront(val) {
|
|
3558
|
+
this._nextPageIdCardFront = val;
|
|
3559
|
+
this._set({ "nextPageIdCardFront": val });
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3562
|
+
get nextPageIdCardBack() { return this._nextPageIdCardBack; }
|
|
3563
|
+
set nextPageIdCardBack(val) {
|
|
3564
|
+
this._nextPageIdCardBack = val;
|
|
3565
|
+
this._set({ "nextPageIdCardBack": val });
|
|
3566
|
+
}
|
|
3567
|
+
|
|
3568
|
+
get nextPagePassportShift() { return this._nextPagePassportShift; }
|
|
3569
|
+
set nextPagePassportShift(val) {
|
|
3570
|
+
this._nextPagePassportShift = val;
|
|
3571
|
+
this._set({ "nextPagePassportShift": val });
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
get nextPagePassportFlip() { return this._nextPagePassportFlip; }
|
|
3575
|
+
set nextPagePassportFlip(val) {
|
|
3576
|
+
this._nextPagePassportFlip = val;
|
|
3577
|
+
this._set({ "nextPagePassportFlip": val });
|
|
3578
|
+
}
|
|
3579
|
+
|
|
3525
3580
|
static fromJson(jsonObject) {
|
|
3526
3581
|
if (jsonObject == null) return null;
|
|
3527
|
-
|
|
3528
3582
|
const result = new CustomizationColors();
|
|
3583
|
+
|
|
3529
3584
|
result._rfidProcessingScreenBackground = jsonObject["rfidProcessingScreenBackground"];
|
|
3530
3585
|
result._rfidProcessingScreenHintLabelText = jsonObject["rfidProcessingScreenHintLabelText"];
|
|
3531
3586
|
result._rfidProcessingScreenHintLabelBackground = jsonObject["rfidProcessingScreenHintLabelBackground"];
|
|
@@ -3548,6 +3603,10 @@ class CustomizationColors {
|
|
|
3548
3603
|
result._mdlEnableNfcDescriptionText = jsonObject["mdlEnableNfcDescriptionText"];
|
|
3549
3604
|
result._mdlEnableNfcButtonText = jsonObject["mdlEnableNfcButtonText"];
|
|
3550
3605
|
result._mdlEnableNfcButtonBackground = jsonObject["mdlEnableNfcButtonBackground"];
|
|
3606
|
+
result._nextPageIdCardFront = jsonObject["nextPageIdCardFront"];
|
|
3607
|
+
result._nextPageIdCardBack = jsonObject["nextPageIdCardBack"];
|
|
3608
|
+
result._nextPagePassportShift = jsonObject["nextPagePassportShift"];
|
|
3609
|
+
result._nextPagePassportFlip = jsonObject["nextPagePassportFlip"];
|
|
3551
3610
|
|
|
3552
3611
|
return result;
|
|
3553
3612
|
}
|
|
@@ -3583,11 +3642,86 @@ class CustomizationColors {
|
|
|
3583
3642
|
"mdlEnableNfcDescriptionText": this.mdlEnableNfcDescriptionText,
|
|
3584
3643
|
"mdlEnableNfcButtonText": this.mdlEnableNfcButtonText,
|
|
3585
3644
|
"mdlEnableNfcButtonBackground": this.mdlEnableNfcButtonBackground,
|
|
3645
|
+
"nextPageIdCardFront": this.nextPageIdCardFront,
|
|
3646
|
+
"nextPageIdCardBack": this.nextPageIdCardBack,
|
|
3647
|
+
"nextPagePassportShift": this.nextPagePassportShift,
|
|
3648
|
+
"nextPagePassportFlip": this.nextPagePassportFlip,
|
|
3586
3649
|
}
|
|
3587
3650
|
}
|
|
3588
3651
|
}
|
|
3589
3652
|
|
|
3590
3653
|
|
|
3654
|
+
/***/ },
|
|
3655
|
+
|
|
3656
|
+
/***/ "./src/params/customization/CustomizationContentModes.js"
|
|
3657
|
+
/*!***************************************************************!*\
|
|
3658
|
+
!*** ./src/params/customization/CustomizationContentModes.js ***!
|
|
3659
|
+
\***************************************************************/
|
|
3660
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3661
|
+
|
|
3662
|
+
__webpack_require__.r(__webpack_exports__);
|
|
3663
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3664
|
+
/* harmony export */ CustomizationContentModes: () => (/* binding */ CustomizationContentModes),
|
|
3665
|
+
/* harmony export */ ViewContentMode: () => (/* binding */ ViewContentMode)
|
|
3666
|
+
/* harmony export */ });
|
|
3667
|
+
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../index */ "./src/index.js");
|
|
3668
|
+
|
|
3669
|
+
|
|
3670
|
+
class CustomizationContentModes {
|
|
3671
|
+
get nextPageIdCardFront() { return this._nextPageIdCardFront; }
|
|
3672
|
+
set nextPageIdCardFront(val) {
|
|
3673
|
+
this._nextPageIdCardFront = val;
|
|
3674
|
+
this._set({ "nextPageIdCardFront": val });
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
get nextPageIdCardBack() { return this._nextPageIdCardBack; }
|
|
3678
|
+
set nextPageIdCardBack(val) {
|
|
3679
|
+
this._nextPageIdCardBack = val;
|
|
3680
|
+
this._set({ "nextPageIdCardBack": val });
|
|
3681
|
+
}
|
|
3682
|
+
|
|
3683
|
+
static fromJson(jsonObject) {
|
|
3684
|
+
if (jsonObject == null) return null;
|
|
3685
|
+
const result = new CustomizationContentModes();
|
|
3686
|
+
|
|
3687
|
+
result._nextPageIdCardFront = jsonObject["nextPageIdCardFront"];
|
|
3688
|
+
result._nextPageIdCardBack = jsonObject["nextPageIdCardBack"];
|
|
3689
|
+
|
|
3690
|
+
return result;
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
_apply() { this._set(this); }
|
|
3694
|
+
_set(json) {
|
|
3695
|
+
const parentJson = { "contentModes": json };
|
|
3696
|
+
var parent = _index__WEBPACK_IMPORTED_MODULE_0__.DocumentReader.instance.customization;
|
|
3697
|
+
if (this === parent.contentModes) parent._set(parentJson);
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3700
|
+
toJson() {
|
|
3701
|
+
return {
|
|
3702
|
+
"nextPageIdCardFront": this.nextPageIdCardFront,
|
|
3703
|
+
"nextPageIdCardBack": this.nextPageIdCardBack,
|
|
3704
|
+
}
|
|
3705
|
+
}
|
|
3706
|
+
}
|
|
3707
|
+
|
|
3708
|
+
const ViewContentMode = {
|
|
3709
|
+
SCALE_TO_FILL: 0,
|
|
3710
|
+
SCALE_ASPECT_FIT: 1,
|
|
3711
|
+
SCALE_ASPECT_FILL: 2,
|
|
3712
|
+
REDRAW: 3,
|
|
3713
|
+
CENTER: 4,
|
|
3714
|
+
TOP: 5,
|
|
3715
|
+
BOTTOM: 6,
|
|
3716
|
+
LEFT: 7,
|
|
3717
|
+
RIGHT: 8,
|
|
3718
|
+
TOP_LEFT: 9,
|
|
3719
|
+
TOP_RIGHT: 10,
|
|
3720
|
+
BOTTOM_LEFT: 11,
|
|
3721
|
+
BOTTOM_RIGHT: 12
|
|
3722
|
+
};
|
|
3723
|
+
|
|
3724
|
+
|
|
3591
3725
|
/***/ },
|
|
3592
3726
|
|
|
3593
3727
|
/***/ "./src/params/customization/CustomizationFonts.js"
|
|
@@ -3598,11 +3732,11 @@ class CustomizationColors {
|
|
|
3598
3732
|
|
|
3599
3733
|
__webpack_require__.r(__webpack_exports__);
|
|
3600
3734
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3601
|
-
/* harmony export */ CustomizationFonts: () => (/* binding */ CustomizationFonts)
|
|
3735
|
+
/* harmony export */ CustomizationFonts: () => (/* binding */ CustomizationFonts),
|
|
3736
|
+
/* harmony export */ Font: () => (/* binding */ Font),
|
|
3737
|
+
/* harmony export */ FontStyle: () => (/* binding */ FontStyle)
|
|
3602
3738
|
/* harmony export */ });
|
|
3603
3739
|
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../index */ "./src/index.js");
|
|
3604
|
-
/* harmony import */ var _Font__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Font */ "./src/params/customization/Font.js");
|
|
3605
|
-
|
|
3606
3740
|
|
|
3607
3741
|
|
|
3608
3742
|
class CustomizationFonts {
|
|
@@ -3680,20 +3814,20 @@ class CustomizationFonts {
|
|
|
3680
3814
|
|
|
3681
3815
|
static fromJson(jsonObject) {
|
|
3682
3816
|
if (jsonObject == null) return null;
|
|
3683
|
-
|
|
3684
3817
|
const result = new CustomizationFonts();
|
|
3685
|
-
|
|
3686
|
-
result.
|
|
3687
|
-
result.
|
|
3688
|
-
result.
|
|
3689
|
-
result.
|
|
3690
|
-
result.
|
|
3691
|
-
result.
|
|
3692
|
-
result.
|
|
3693
|
-
result.
|
|
3694
|
-
result.
|
|
3695
|
-
result.
|
|
3696
|
-
result.
|
|
3818
|
+
|
|
3819
|
+
result._rfidProcessingScreenHintLabel = Font.fromJson(jsonObject["rfidProcessingScreenHintLabel"]);
|
|
3820
|
+
result._rfidProcessingScreenProgressLabel = Font.fromJson(jsonObject["rfidProcessingScreenProgressLabel"]);
|
|
3821
|
+
result._rfidProcessingScreenResultLabel = Font.fromJson(jsonObject["rfidProcessingScreenResultLabel"]);
|
|
3822
|
+
result._rfidEnableNfcTitleText = Font.fromJson(jsonObject["rfidEnableNfcTitleText"]);
|
|
3823
|
+
result._rfidEnableNfcDescriptionText = Font.fromJson(jsonObject["rfidEnableNfcDescriptionText"]);
|
|
3824
|
+
result._rfidEnableNfcButtonText = Font.fromJson(jsonObject["rfidEnableNfcButtonText"]);
|
|
3825
|
+
result._mdlProcessingScreenHintLabel = Font.fromJson(jsonObject["mdlProcessingScreenHintLabel"]);
|
|
3826
|
+
result._mdlProcessingScreenProgressLabel = Font.fromJson(jsonObject["mdlProcessingScreenProgressLabel"]);
|
|
3827
|
+
result._mdlProcessingScreenResultLabel = Font.fromJson(jsonObject["mdlProcessingScreenResultLabel"]);
|
|
3828
|
+
result._mdlEnableNfcTitleText = Font.fromJson(jsonObject["mdlEnableNfcTitleText"]);
|
|
3829
|
+
result._mdlEnableNfcDescriptionText = Font.fromJson(jsonObject["mdlEnableNfcDescriptionText"]);
|
|
3830
|
+
result._mdlEnableNfcButtonText = Font.fromJson(jsonObject["mdlEnableNfcButtonText"]);
|
|
3697
3831
|
|
|
3698
3832
|
return result;
|
|
3699
3833
|
}
|
|
@@ -3723,6 +3857,43 @@ class CustomizationFonts {
|
|
|
3723
3857
|
}
|
|
3724
3858
|
}
|
|
3725
3859
|
|
|
3860
|
+
class Font {
|
|
3861
|
+
name
|
|
3862
|
+
size
|
|
3863
|
+
style
|
|
3864
|
+
|
|
3865
|
+
constructor(name, options) {
|
|
3866
|
+
this.name = name;
|
|
3867
|
+
this.size = options?.size;
|
|
3868
|
+
this.style = options?.style;
|
|
3869
|
+
}
|
|
3870
|
+
|
|
3871
|
+
static fromJson(jsonObject) {
|
|
3872
|
+
if (jsonObject == null) return null;
|
|
3873
|
+
|
|
3874
|
+
const result = new Font(jsonObject["name"]);
|
|
3875
|
+
result.size = jsonObject["size"];
|
|
3876
|
+
result.style = jsonObject["style"];
|
|
3877
|
+
|
|
3878
|
+
return result;
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
toJson() {
|
|
3882
|
+
return {
|
|
3883
|
+
"name": this.name,
|
|
3884
|
+
"size": this.size,
|
|
3885
|
+
"style": this.style,
|
|
3886
|
+
}
|
|
3887
|
+
}
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
const FontStyle = {
|
|
3891
|
+
NORMAL: 0,
|
|
3892
|
+
BOLD: 1,
|
|
3893
|
+
ITALIC: 2,
|
|
3894
|
+
BOLD_ITALIC: 3
|
|
3895
|
+
};
|
|
3896
|
+
|
|
3726
3897
|
|
|
3727
3898
|
/***/ },
|
|
3728
3899
|
|
|
@@ -3740,6 +3911,60 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3740
3911
|
|
|
3741
3912
|
|
|
3742
3913
|
class CustomizationImages {
|
|
3914
|
+
get helpAnimation() { return this._helpAnimation; }
|
|
3915
|
+
set helpAnimation(val) {
|
|
3916
|
+
this._helpAnimation = val;
|
|
3917
|
+
this._set({ "helpAnimation": val });
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3920
|
+
get livenessAnimation() { return this._livenessAnimation; }
|
|
3921
|
+
set livenessAnimation(val) {
|
|
3922
|
+
this._livenessAnimation = val;
|
|
3923
|
+
this._set({ "livenessAnimation": val });
|
|
3924
|
+
}
|
|
3925
|
+
|
|
3926
|
+
get borderBackground() { return this._borderBackground; }
|
|
3927
|
+
set borderBackground(val) {
|
|
3928
|
+
this._borderBackground = val;
|
|
3929
|
+
this._set({ "borderBackground": val });
|
|
3930
|
+
}
|
|
3931
|
+
|
|
3932
|
+
get torchButtonOn() { return this._torchButtonOn; }
|
|
3933
|
+
set torchButtonOn(val) {
|
|
3934
|
+
this._torchButtonOn = val;
|
|
3935
|
+
this._set({ "torchButtonOn": val });
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
get torchButtonOff() { return this._torchButtonOff; }
|
|
3939
|
+
set torchButtonOff(val) {
|
|
3940
|
+
this._torchButtonOff = val;
|
|
3941
|
+
this._set({ "torchButtonOff": val });
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3944
|
+
get captureButton() { return this._captureButton; }
|
|
3945
|
+
set captureButton(val) {
|
|
3946
|
+
this._captureButton = val;
|
|
3947
|
+
this._set({ "captureButton": val });
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
get switchButton() { return this._switchButton; }
|
|
3951
|
+
set switchButton(val) {
|
|
3952
|
+
this._switchButton = val;
|
|
3953
|
+
this._set({ "switchButton": val });
|
|
3954
|
+
}
|
|
3955
|
+
|
|
3956
|
+
get closeButton() { return this._closeButton; }
|
|
3957
|
+
set closeButton(val) {
|
|
3958
|
+
this._closeButton = val;
|
|
3959
|
+
this._set({ "closeButton": val });
|
|
3960
|
+
}
|
|
3961
|
+
|
|
3962
|
+
get multipageButton() { return this._multipageButton; }
|
|
3963
|
+
set multipageButton(val) {
|
|
3964
|
+
this._multipageButton = val;
|
|
3965
|
+
this._set({ "multipageButton": val });
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3743
3968
|
get rfidProcessingScreenFailureImage() { return this._rfidProcessingScreenFailureImage; }
|
|
3744
3969
|
set rfidProcessingScreenFailureImage(val) {
|
|
3745
3970
|
this._rfidProcessingScreenFailureImage = val;
|
|
@@ -3752,6 +3977,12 @@ class CustomizationImages {
|
|
|
3752
3977
|
this._set({ "rfidEnableNfcImage": val });
|
|
3753
3978
|
}
|
|
3754
3979
|
|
|
3980
|
+
get rfidDisableNfcImage() { return this._rfidDisableNfcImage; }
|
|
3981
|
+
set rfidDisableNfcImage(val) {
|
|
3982
|
+
this._rfidDisableNfcImage = val;
|
|
3983
|
+
this._set({ "rfidDisableNfcImage": val });
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3755
3986
|
get mdlProcessingScreenFailureImage() { return this._mdlProcessingScreenFailureImage; }
|
|
3756
3987
|
set mdlProcessingScreenFailureImage(val) {
|
|
3757
3988
|
this._mdlProcessingScreenFailureImage = val;
|
|
@@ -3764,14 +3995,80 @@ class CustomizationImages {
|
|
|
3764
3995
|
this._set({ "mdlEnableNfcImage": val });
|
|
3765
3996
|
}
|
|
3766
3997
|
|
|
3998
|
+
get mdlDisableNfcImage() { return this._mdlDisableNfcImage; }
|
|
3999
|
+
set mdlDisableNfcImage(val) {
|
|
4000
|
+
this._mdlDisableNfcImage = val;
|
|
4001
|
+
this._set({ "mdlDisableNfcImage": val });
|
|
4002
|
+
}
|
|
4003
|
+
|
|
4004
|
+
get nextPageIdCardFront() { return this._nextPageIdCardFront; }
|
|
4005
|
+
set nextPageIdCardFront(val) {
|
|
4006
|
+
this._nextPageIdCardFront = val;
|
|
4007
|
+
this._set({ "nextPageIdCardFront": val });
|
|
4008
|
+
}
|
|
4009
|
+
|
|
4010
|
+
get nextPageIdCardBack() { return this._nextPageIdCardBack; }
|
|
4011
|
+
set nextPageIdCardBack(val) {
|
|
4012
|
+
this._nextPageIdCardBack = val;
|
|
4013
|
+
this._set({ "nextPageIdCardBack": val });
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
get nextPagePassportShift() { return this._nextPagePassportShift; }
|
|
4017
|
+
set nextPagePassportShift(val) {
|
|
4018
|
+
this._nextPagePassportShift = val;
|
|
4019
|
+
this._set({ "nextPagePassportShift": val });
|
|
4020
|
+
}
|
|
4021
|
+
|
|
4022
|
+
get nextPagePassportFlipStart() { return this._nextPagePassportFlipStart; }
|
|
4023
|
+
set nextPagePassportFlipStart(val) {
|
|
4024
|
+
this._nextPagePassportFlipStart = val;
|
|
4025
|
+
this._set({ "nextPagePassportFlipStart": val });
|
|
4026
|
+
}
|
|
4027
|
+
|
|
4028
|
+
get nextPagePassportFlipClean() { return this._nextPagePassportFlipClean; }
|
|
4029
|
+
set nextPagePassportFlipClean(val) {
|
|
4030
|
+
this._nextPagePassportFlipClean = val;
|
|
4031
|
+
this._set({ "nextPagePassportFlipClean": val });
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
get nextPagePassportFlipTop() { return this._nextPagePassportFlipTop; }
|
|
4035
|
+
set nextPagePassportFlipTop(val) {
|
|
4036
|
+
this._nextPagePassportFlipTop = val;
|
|
4037
|
+
this._set({ "nextPagePassportFlipTop": val });
|
|
4038
|
+
}
|
|
4039
|
+
|
|
4040
|
+
get nextPagePassportFlipBottom() { return this._nextPagePassportFlipBottom; }
|
|
4041
|
+
set nextPagePassportFlipBottom(val) {
|
|
4042
|
+
this._nextPagePassportFlipBottom = val;
|
|
4043
|
+
this._set({ "nextPagePassportFlipBottom": val });
|
|
4044
|
+
}
|
|
4045
|
+
|
|
3767
4046
|
static fromJson(jsonObject) {
|
|
3768
4047
|
if (jsonObject == null) return null;
|
|
3769
|
-
|
|
3770
4048
|
const result = new CustomizationImages();
|
|
4049
|
+
|
|
4050
|
+
result._helpAnimation = jsonObject["helpAnimation"];
|
|
4051
|
+
result._livenessAnimation = jsonObject["livenessAnimation"];
|
|
4052
|
+
result._borderBackground = jsonObject["borderBackground"];
|
|
4053
|
+
result._torchButtonOn = jsonObject["torchButtonOn"];
|
|
4054
|
+
result._torchButtonOff = jsonObject["torchButtonOff"];
|
|
4055
|
+
result._captureButton = jsonObject["captureButton"];
|
|
4056
|
+
result._switchButton = jsonObject["switchButton"];
|
|
4057
|
+
result._closeButton = jsonObject["closeButton"];
|
|
4058
|
+
result._multipageButton = jsonObject["multipageButton"];
|
|
3771
4059
|
result._rfidProcessingScreenFailureImage = jsonObject["rfidProcessingScreenFailureImage"];
|
|
3772
4060
|
result._rfidEnableNfcImage = jsonObject["rfidEnableNfcImage"];
|
|
4061
|
+
result._rfidDisableNfcImage = jsonObject["rfidDisableNfcImage"];
|
|
3773
4062
|
result._mdlProcessingScreenFailureImage = jsonObject["mdlProcessingScreenFailureImage"];
|
|
3774
4063
|
result._mdlEnableNfcImage = jsonObject["mdlEnableNfcImage"];
|
|
4064
|
+
result._mdlDisableNfcImage = jsonObject["mdlDisableNfcImage"];
|
|
4065
|
+
result._nextPageIdCardFront = jsonObject["nextPageIdCardFront"];
|
|
4066
|
+
result._nextPageIdCardBack = jsonObject["nextPageIdCardBack"];
|
|
4067
|
+
result._nextPagePassportShift = jsonObject["nextPagePassportShift"];
|
|
4068
|
+
result._nextPagePassportFlipStart = jsonObject["nextPagePassportFlipStart"];
|
|
4069
|
+
result._nextPagePassportFlipClean = jsonObject["nextPagePassportFlipClean"];
|
|
4070
|
+
result._nextPagePassportFlipTop = jsonObject["nextPagePassportFlipTop"];
|
|
4071
|
+
result._nextPagePassportFlipBottom = jsonObject["nextPagePassportFlipBottom"];
|
|
3775
4072
|
|
|
3776
4073
|
return result;
|
|
3777
4074
|
}
|
|
@@ -3785,10 +4082,28 @@ class CustomizationImages {
|
|
|
3785
4082
|
|
|
3786
4083
|
toJson() {
|
|
3787
4084
|
return {
|
|
4085
|
+
"helpAnimation": this.helpAnimation,
|
|
4086
|
+
"livenessAnimation": this.livenessAnimation,
|
|
4087
|
+
"borderBackground": this.borderBackground,
|
|
4088
|
+
"torchButtonOn": this.torchButtonOn,
|
|
4089
|
+
"torchButtonOff": this.torchButtonOff,
|
|
4090
|
+
"captureButton": this.captureButton,
|
|
4091
|
+
"switchButton": this.switchButton,
|
|
4092
|
+
"closeButton": this.closeButton,
|
|
4093
|
+
"multipageButton": this.multipageButton,
|
|
3788
4094
|
"rfidProcessingScreenFailureImage": this.rfidProcessingScreenFailureImage,
|
|
3789
4095
|
"rfidEnableNfcImage": this.rfidEnableNfcImage,
|
|
4096
|
+
"rfidDisableNfcImage": this.rfidDisableNfcImage,
|
|
3790
4097
|
"mdlProcessingScreenFailureImage": this.mdlProcessingScreenFailureImage,
|
|
3791
4098
|
"mdlEnableNfcImage": this.mdlEnableNfcImage,
|
|
4099
|
+
"mdlDisableNfcImage": this.mdlDisableNfcImage,
|
|
4100
|
+
"nextPageIdCardFront": this.nextPageIdCardFront,
|
|
4101
|
+
"nextPageIdCardBack": this.nextPageIdCardBack,
|
|
4102
|
+
"nextPagePassportShift": this.nextPagePassportShift,
|
|
4103
|
+
"nextPagePassportFlipStart": this.nextPagePassportFlipStart,
|
|
4104
|
+
"nextPagePassportFlipClean": this.nextPagePassportFlipClean,
|
|
4105
|
+
"nextPagePassportFlipTop": this.nextPagePassportFlipTop,
|
|
4106
|
+
"nextPagePassportFlipBottom": this.nextPagePassportFlipBottom,
|
|
3792
4107
|
}
|
|
3793
4108
|
}
|
|
3794
4109
|
}
|
|
@@ -3796,53 +4111,142 @@ class CustomizationImages {
|
|
|
3796
4111
|
|
|
3797
4112
|
/***/ },
|
|
3798
4113
|
|
|
3799
|
-
/***/ "./src/params/customization/
|
|
3800
|
-
|
|
3801
|
-
!*** ./src/params/customization/
|
|
3802
|
-
|
|
4114
|
+
/***/ "./src/params/customization/CustomizationMatrices.js"
|
|
4115
|
+
/*!***********************************************************!*\
|
|
4116
|
+
!*** ./src/params/customization/CustomizationMatrices.js ***!
|
|
4117
|
+
\***********************************************************/
|
|
3803
4118
|
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3804
4119
|
|
|
3805
4120
|
__webpack_require__.r(__webpack_exports__);
|
|
3806
4121
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3807
|
-
/* harmony export */
|
|
3808
|
-
/* harmony export */ FontStyle: () => (/* binding */ FontStyle)
|
|
4122
|
+
/* harmony export */ CustomizationMatrices: () => (/* binding */ CustomizationMatrices)
|
|
3809
4123
|
/* harmony export */ });
|
|
3810
|
-
|
|
3811
|
-
name
|
|
3812
|
-
size
|
|
3813
|
-
style
|
|
4124
|
+
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../index */ "./src/index.js");
|
|
3814
4125
|
|
|
3815
|
-
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
4126
|
+
|
|
4127
|
+
class CustomizationMatrices {
|
|
4128
|
+
get nextPageIdCardFront() { return this._nextPageIdCardFront; }
|
|
4129
|
+
set nextPageIdCardFront(val) {
|
|
4130
|
+
this._nextPageIdCardFront = val;
|
|
4131
|
+
this._set({ "nextPageIdCardFront": val });
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
get nextPageIdCardBack() { return this._nextPageIdCardBack; }
|
|
4135
|
+
set nextPageIdCardBack(val) {
|
|
4136
|
+
this._nextPageIdCardBack = val;
|
|
4137
|
+
this._set({ "nextPageIdCardBack": val });
|
|
3819
4138
|
}
|
|
3820
4139
|
|
|
3821
4140
|
static fromJson(jsonObject) {
|
|
3822
4141
|
if (jsonObject == null) return null;
|
|
4142
|
+
const result = new CustomizationMatrices();
|
|
3823
4143
|
|
|
3824
|
-
|
|
3825
|
-
result.
|
|
3826
|
-
result.style = jsonObject["style"];
|
|
4144
|
+
result._nextPageIdCardFront = jsonObject["nextPageIdCardFront"];
|
|
4145
|
+
result._nextPageIdCardBack = jsonObject["nextPageIdCardBack"];
|
|
3827
4146
|
|
|
3828
4147
|
return result;
|
|
3829
4148
|
}
|
|
3830
4149
|
|
|
4150
|
+
_apply() { this._set(this); }
|
|
4151
|
+
_set(json) {
|
|
4152
|
+
const parentJson = { "matrices": json };
|
|
4153
|
+
var parent = _index__WEBPACK_IMPORTED_MODULE_0__.DocumentReader.instance.customization;
|
|
4154
|
+
if (this === parent.matrices) parent._set(parentJson);
|
|
4155
|
+
}
|
|
4156
|
+
|
|
3831
4157
|
toJson() {
|
|
3832
4158
|
return {
|
|
3833
|
-
"
|
|
3834
|
-
"
|
|
3835
|
-
"style": this.style,
|
|
4159
|
+
"nextPageIdCardFront": this.nextPageIdCardFront,
|
|
4160
|
+
"nextPageIdCardBack": this.nextPageIdCardBack,
|
|
3836
4161
|
}
|
|
3837
4162
|
}
|
|
3838
4163
|
}
|
|
3839
4164
|
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
4165
|
+
|
|
4166
|
+
/***/ },
|
|
4167
|
+
|
|
4168
|
+
/***/ "./src/params/customization/CustomizationTimings.js"
|
|
4169
|
+
/*!**********************************************************!*\
|
|
4170
|
+
!*** ./src/params/customization/CustomizationTimings.js ***!
|
|
4171
|
+
\**********************************************************/
|
|
4172
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4173
|
+
|
|
4174
|
+
__webpack_require__.r(__webpack_exports__);
|
|
4175
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4176
|
+
/* harmony export */ CustomizationTimings: () => (/* binding */ CustomizationTimings)
|
|
4177
|
+
/* harmony export */ });
|
|
4178
|
+
/* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../index */ "./src/index.js");
|
|
4179
|
+
|
|
4180
|
+
|
|
4181
|
+
class CustomizationTimings {
|
|
4182
|
+
get nextPageIdCardStartDelay() { return this._nextPageIdCardStartDelay; }
|
|
4183
|
+
set nextPageIdCardStartDelay(val) {
|
|
4184
|
+
this._nextPageIdCardStartDelay = val;
|
|
4185
|
+
this._set({ "nextPageIdCardStartDelay": val });
|
|
4186
|
+
}
|
|
4187
|
+
|
|
4188
|
+
get nextPageIdCardEndDelay() { return this._nextPageIdCardEndDelay; }
|
|
4189
|
+
set nextPageIdCardEndDelay(val) {
|
|
4190
|
+
this._nextPageIdCardEndDelay = val;
|
|
4191
|
+
this._set({ "nextPageIdCardEndDelay": val });
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
get nextPagePassportShiftStartDelay() { return this._nextPagePassportShiftStartDelay; }
|
|
4195
|
+
set nextPagePassportShiftStartDelay(val) {
|
|
4196
|
+
this._nextPagePassportShiftStartDelay = val;
|
|
4197
|
+
this._set({ "nextPagePassportShiftStartDelay": val });
|
|
4198
|
+
}
|
|
4199
|
+
|
|
4200
|
+
get nextPagePassportShiftEndDelay() { return this._nextPagePassportShiftEndDelay; }
|
|
4201
|
+
set nextPagePassportShiftEndDelay(val) {
|
|
4202
|
+
this._nextPagePassportShiftEndDelay = val;
|
|
4203
|
+
this._set({ "nextPagePassportShiftEndDelay": val });
|
|
4204
|
+
}
|
|
4205
|
+
|
|
4206
|
+
get nextPagePassportFlipStartDelay() { return this._nextPagePassportFlipStartDelay; }
|
|
4207
|
+
set nextPagePassportFlipStartDelay(val) {
|
|
4208
|
+
this._nextPagePassportFlipStartDelay = val;
|
|
4209
|
+
this._set({ "nextPagePassportFlipStartDelay": val });
|
|
4210
|
+
}
|
|
4211
|
+
|
|
4212
|
+
get nextPagePassportFlipEndDelay() { return this._nextPagePassportFlipEndDelay; }
|
|
4213
|
+
set nextPagePassportFlipEndDelay(val) {
|
|
4214
|
+
this._nextPagePassportFlipEndDelay = val;
|
|
4215
|
+
this._set({ "nextPagePassportFlipEndDelay": val });
|
|
4216
|
+
}
|
|
4217
|
+
|
|
4218
|
+
static fromJson(jsonObject) {
|
|
4219
|
+
if (jsonObject == null) return null;
|
|
4220
|
+
const result = new CustomizationTimings();
|
|
4221
|
+
|
|
4222
|
+
result._nextPageIdCardStartDelay = jsonObject["nextPageIdCardStartDelay"];
|
|
4223
|
+
result._nextPageIdCardEndDelay = jsonObject["nextPageIdCardEndDelay"];
|
|
4224
|
+
result._nextPagePassportShiftStartDelay = jsonObject["nextPagePassportShiftStartDelay"];
|
|
4225
|
+
result._nextPagePassportShiftEndDelay = jsonObject["nextPagePassportShiftEndDelay"];
|
|
4226
|
+
result._nextPagePassportFlipStartDelay = jsonObject["nextPagePassportFlipStartDelay"];
|
|
4227
|
+
result._nextPagePassportFlipEndDelay = jsonObject["nextPagePassportFlipEndDelay"];
|
|
4228
|
+
|
|
4229
|
+
return result;
|
|
4230
|
+
}
|
|
4231
|
+
|
|
4232
|
+
_apply() { this._set(this); }
|
|
4233
|
+
_set(json) {
|
|
4234
|
+
const parentJson = { "timings": json };
|
|
4235
|
+
var parent = _index__WEBPACK_IMPORTED_MODULE_0__.DocumentReader.instance.customization;
|
|
4236
|
+
if (this === parent.timings) parent._set(parentJson);
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
toJson() {
|
|
4240
|
+
return {
|
|
4241
|
+
"nextPageIdCardStartDelay": this.nextPageIdCardStartDelay,
|
|
4242
|
+
"nextPageIdCardEndDelay": this.nextPageIdCardEndDelay,
|
|
4243
|
+
"nextPagePassportShiftStartDelay": this.nextPagePassportShiftStartDelay,
|
|
4244
|
+
"nextPagePassportShiftEndDelay": this.nextPagePassportShiftEndDelay,
|
|
4245
|
+
"nextPagePassportFlipStartDelay": this.nextPagePassportFlipStartDelay,
|
|
4246
|
+
"nextPagePassportFlipEndDelay": this.nextPagePassportFlipEndDelay,
|
|
4247
|
+
}
|
|
4248
|
+
}
|
|
4249
|
+
}
|
|
3846
4250
|
|
|
3847
4251
|
|
|
3848
4252
|
/***/ },
|
|
@@ -4028,11 +4432,13 @@ class BackendProcessingConfig {
|
|
|
4028
4432
|
url
|
|
4029
4433
|
httpHeaders
|
|
4030
4434
|
rfidServerSideChipVerification
|
|
4435
|
+
mdlVerification
|
|
4031
4436
|
timeoutConnection
|
|
4032
4437
|
|
|
4033
4438
|
constructor(url, options) {
|
|
4034
4439
|
this.url = url;
|
|
4035
4440
|
this.rfidServerSideChipVerification = options?.rfidServerSideChipVerification;
|
|
4441
|
+
this.mdlVerification = options?.mdlVerification;
|
|
4036
4442
|
this.httpHeaders = options?.httpHeaders;
|
|
4037
4443
|
this.timeoutConnection = options?.timeoutConnection;
|
|
4038
4444
|
}
|
|
@@ -4043,6 +4449,7 @@ class BackendProcessingConfig {
|
|
|
4043
4449
|
const result = new BackendProcessingConfig(jsonObject["url"]);
|
|
4044
4450
|
|
|
4045
4451
|
result.rfidServerSideChipVerification = jsonObject["rfidServerSideChipVerification"];
|
|
4452
|
+
result.mdlVerification = jsonObject["mdlVerification"];
|
|
4046
4453
|
result.httpHeaders = jsonObject["httpHeaders"];
|
|
4047
4454
|
result.timeoutConnection = jsonObject["timeoutConnection"];
|
|
4048
4455
|
|
|
@@ -4053,6 +4460,7 @@ class BackendProcessingConfig {
|
|
|
4053
4460
|
return {
|
|
4054
4461
|
"url": this.url,
|
|
4055
4462
|
"rfidServerSideChipVerification": this.rfidServerSideChipVerification,
|
|
4463
|
+
"mdlVerification": this.mdlVerification,
|
|
4056
4464
|
"httpHeaders": this.httpHeaders,
|
|
4057
4465
|
"timeoutConnection": this.timeoutConnection,
|
|
4058
4466
|
}
|
|
@@ -4749,6 +5157,24 @@ class ProcessParams {
|
|
|
4749
5157
|
this._set({ "checkCaptureProcessIntegrity": val });
|
|
4750
5158
|
}
|
|
4751
5159
|
|
|
5160
|
+
get strictExpiryDate() { return this._strictExpiryDate; }
|
|
5161
|
+
set strictExpiryDate(val) {
|
|
5162
|
+
this._strictExpiryDate = val;
|
|
5163
|
+
this._set({ "strictExpiryDate": val });
|
|
5164
|
+
}
|
|
5165
|
+
|
|
5166
|
+
get debugSaveBinarySession() { return this._debugSaveBinarySession; }
|
|
5167
|
+
set debugSaveBinarySession(val) {
|
|
5168
|
+
this._debugSaveBinarySession = val;
|
|
5169
|
+
this._set({ "debugSaveBinarySession": val });
|
|
5170
|
+
}
|
|
5171
|
+
|
|
5172
|
+
get checkVDS() { return this._checkVDS; }
|
|
5173
|
+
set checkVDS(val) {
|
|
5174
|
+
this._checkVDS = val;
|
|
5175
|
+
this._set({ "checkVDS": val });
|
|
5176
|
+
}
|
|
5177
|
+
|
|
4752
5178
|
get barcodeParserType() { return this._barcodeParserType; }
|
|
4753
5179
|
set barcodeParserType(val) {
|
|
4754
5180
|
this._barcodeParserType = val;
|
|
@@ -4972,7 +5398,7 @@ class ProcessParams {
|
|
|
4972
5398
|
get bsiTr03135() { return this._bsiTr03135; }
|
|
4973
5399
|
set bsiTr03135(val) {
|
|
4974
5400
|
this._bsiTr03135 = val;
|
|
4975
|
-
this._set({ "bsiTr03135": val });
|
|
5401
|
+
this._set({ "bsiTr03135": (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.serializeInterface)(val, _Bsi__WEBPACK_IMPORTED_MODULE_6__.Bsi) });
|
|
4976
5402
|
}
|
|
4977
5403
|
|
|
4978
5404
|
_authenticityParams = new _AuthenticityParams__WEBPACK_IMPORTED_MODULE_7__.AuthenticityParams();
|
|
@@ -5030,6 +5456,9 @@ class ProcessParams {
|
|
|
5030
5456
|
result._strictSecurityChecks = jsonObject["strictSecurityChecks"];
|
|
5031
5457
|
result._returnTransliteratedFields = jsonObject["returnTransliteratedFields"];
|
|
5032
5458
|
result._checkCaptureProcessIntegrity = jsonObject["checkCaptureProcessIntegrity"];
|
|
5459
|
+
result._strictExpiryDate = jsonObject["strictExpiryDate"];
|
|
5460
|
+
result._debugSaveBinarySession = jsonObject["debugSaveBinarySession"];
|
|
5461
|
+
result._checkVDS = jsonObject["checkVDS"];
|
|
5033
5462
|
result._barcodeParserType = jsonObject["barcodeParserType"];
|
|
5034
5463
|
result._perspectiveAngle = jsonObject["perspectiveAngle"];
|
|
5035
5464
|
result._minDPI = jsonObject["minDPI"];
|
|
@@ -5116,6 +5545,9 @@ class ProcessParams {
|
|
|
5116
5545
|
"strictSecurityChecks": this.strictSecurityChecks,
|
|
5117
5546
|
"returnTransliteratedFields": this.returnTransliteratedFields,
|
|
5118
5547
|
"checkCaptureProcessIntegrity": this.checkCaptureProcessIntegrity,
|
|
5548
|
+
"strictExpiryDate": this.strictExpiryDate,
|
|
5549
|
+
"debugSaveBinarySession": this.debugSaveBinarySession,
|
|
5550
|
+
"checkVDS": this.checkVDS,
|
|
5119
5551
|
"measureSystem": this.measureSystem,
|
|
5120
5552
|
"barcodeParserType": this.barcodeParserType,
|
|
5121
5553
|
"perspectiveAngle": this.perspectiveAngle,
|
|
@@ -5153,7 +5585,7 @@ class ProcessParams {
|
|
|
5153
5585
|
"rfidParams": this.rfidParams?.toJson(),
|
|
5154
5586
|
"faceApiParams": this.faceApiParams?.toJson(),
|
|
5155
5587
|
"backendProcessingConfig": this.backendProcessingConfig?.toJson(),
|
|
5156
|
-
"bsiTr03135": this.bsiTr03135
|
|
5588
|
+
"bsiTr03135": (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.serializeInterface)(this.bsiTr03135, _Bsi__WEBPACK_IMPORTED_MODULE_6__.Bsi),
|
|
5157
5589
|
"authenticityParams": this.authenticityParams?.toJson(),
|
|
5158
5590
|
"customParams": this.customParams,
|
|
5159
5591
|
}
|
|
@@ -10782,9 +11214,11 @@ const FieldType = {
|
|
|
10782
11214
|
NATIONALITY_CODE_ALPHA_2: 697,
|
|
10783
11215
|
FIRST_ISSUE_DATE_CHECKDIGIT: 698,
|
|
10784
11216
|
FIRST_ISSUE_DATE_CHECKSUM: 699,
|
|
11217
|
+
EXPIRY_TIMESTAMP: 700,
|
|
10785
11218
|
COMMERCIAL_INDICATOR: 701,
|
|
10786
11219
|
NON_DOMICILED_INDICATOR: 702,
|
|
10787
11220
|
JURISDICTION_SPECIFIC_DATA: 703,
|
|
11221
|
+
DATA_DATE_OF_EXPIRY: 704,
|
|
10788
11222
|
}
|
|
10789
11223
|
|
|
10790
11224
|
FieldType.getTranslation = async function (value) {
|
|
@@ -11977,7 +12411,10 @@ const RFIDNotificationCodes = {
|
|
|
11977
12411
|
PCSC_UPDATING_DATAGROUP: 786432,
|
|
11978
12412
|
AUXILIARY_DATA_VALIDATION: 851968,
|
|
11979
12413
|
RI_SECTOR_ID: 917504,
|
|
11980
|
-
BIOMETRICS_EMPTY_PLACEHOLDER: 983040
|
|
12414
|
+
BIOMETRICS_EMPTY_PLACEHOLDER: 983040,
|
|
12415
|
+
SESSION_FILE_DATA_UPDATED: 1048576,
|
|
12416
|
+
TCC_TA_RESOURCES: 1114112,
|
|
12417
|
+
TCC_TA_SIGNATURE: 1114113,
|
|
11981
12418
|
}
|
|
11982
12419
|
|
|
11983
12420
|
|