@regulaforensics/document-reader 8.4.401-beta → 8.4.507-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.
Files changed (88) hide show
  1. package/README.md +1 -1
  2. package/RNDocumentReader.podspec +2 -2
  3. package/android/build.gradle +2 -2
  4. package/android/cordova.gradle +2 -2
  5. package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +11 -31
  6. package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +338 -59
  7. package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +69 -35
  8. package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +62 -0
  9. package/examples/capacitor/ios/App/App/Info.plist +2 -0
  10. package/examples/capacitor/package-lock.json +9 -9
  11. package/examples/capacitor/package.json +3 -3
  12. package/examples/ionic/config.xml +2 -0
  13. package/examples/ionic/package-lock.json +5262 -2655
  14. package/examples/ionic/package.json +12 -12
  15. package/examples/react_native/app.config.ts +3 -1
  16. package/examples/react_native/package-lock.json +37 -37
  17. package/examples/react_native/package.json +3 -3
  18. package/ios/RGLWConfig.m +11 -32
  19. package/ios/RGLWJSONConstructor.h +19 -1
  20. package/ios/RGLWJSONConstructor.m +349 -18
  21. package/ios/RGLWMain.m +49 -46
  22. package/package.json +1 -1
  23. package/plugin.xml +2 -2
  24. package/test/json.tsx +201 -124
  25. package/test/package-lock.json +1 -1
  26. package/test/test.tsx +12 -3
  27. package/www/capacitor/engagement/DataRetrieval.js +55 -0
  28. package/www/capacitor/engagement/DeviceEngagement.js +30 -0
  29. package/www/capacitor/engagement/DeviceRetrievalMethod.js +41 -0
  30. package/www/capacitor/engagement/DocumentRequestMDL.js +212 -0
  31. package/www/capacitor/engagement/NameSpaceMDL.js +33 -0
  32. package/www/capacitor/index.js +58 -7
  33. package/www/capacitor/info/DocReaderException.js +2 -0
  34. package/www/capacitor/params/Functionality.js +16 -0
  35. package/www/capacitor/params/customization/Customization.js +8 -0
  36. package/www/capacitor/params/process_params/AuthenticityParams.js +1 -44
  37. package/www/capacitor/params/process_params/LivenessParams.js +0 -36
  38. package/www/capacitor/params/process_params/ProcessParams.js +26 -30
  39. package/www/capacitor/results/Results.js +8 -1
  40. package/www/capacitor/results/status/AgeStatus.js +35 -0
  41. package/www/capacitor/results/status/ResultsStatus.js +13 -0
  42. package/www/capacitor/results/visible_digital_seals/DocFeature.js +23 -0
  43. package/www/capacitor/results/visible_digital_seals/VDSData.js +75 -0
  44. package/www/capacitor/results/visual_results/FieldType.js +3 -0
  45. package/www/capacitor/rfid/PKDCertificate.js +3 -0
  46. package/www/cordova.js +1276 -683
  47. package/www/react-native/engagement/DataRetrieval.js +55 -0
  48. package/www/react-native/engagement/DeviceEngagement.js +30 -0
  49. package/www/react-native/engagement/DeviceRetrievalMethod.js +41 -0
  50. package/www/react-native/engagement/DocumentRequestMDL.js +212 -0
  51. package/www/react-native/engagement/NameSpaceMDL.js +33 -0
  52. package/www/react-native/index.js +58 -7
  53. package/www/react-native/info/DocReaderException.js +2 -0
  54. package/www/react-native/params/Functionality.js +16 -0
  55. package/www/react-native/params/customization/Customization.js +8 -0
  56. package/www/react-native/params/process_params/AuthenticityParams.js +1 -44
  57. package/www/react-native/params/process_params/LivenessParams.js +0 -36
  58. package/www/react-native/params/process_params/ProcessParams.js +26 -30
  59. package/www/react-native/results/Results.js +8 -1
  60. package/www/react-native/results/status/AgeStatus.js +35 -0
  61. package/www/react-native/results/status/ResultsStatus.js +13 -0
  62. package/www/react-native/results/visible_digital_seals/DocFeature.js +23 -0
  63. package/www/react-native/results/visible_digital_seals/VDSData.js +75 -0
  64. package/www/react-native/results/visual_results/FieldType.js +3 -0
  65. package/www/react-native/rfid/PKDCertificate.js +3 -0
  66. package/www/types/engagement/DataRetrieval.d.ts +28 -0
  67. package/www/types/engagement/DeviceEngagement.d.ts +16 -0
  68. package/www/types/engagement/DeviceRetrievalMethod.d.ts +18 -0
  69. package/www/types/engagement/DocumentRequestMDL.d.ts +61 -0
  70. package/www/types/engagement/NameSpaceMDL.d.ts +16 -0
  71. package/www/types/index.d.ts +40 -8
  72. package/www/types/info/DocReaderException.d.ts +2 -0
  73. package/www/types/params/Functionality.d.ts +7 -0
  74. package/www/types/params/customization/Customization.d.ts +5 -0
  75. package/www/types/params/process_params/AuthenticityParams.d.ts +0 -25
  76. package/www/types/params/process_params/LivenessParams.d.ts +0 -18
  77. package/www/types/params/process_params/ProcessParams.d.ts +18 -11
  78. package/www/types/results/Results.d.ts +9 -1
  79. package/www/types/results/status/AgeStatus.d.ts +14 -0
  80. package/www/types/results/status/ResultsStatus.d.ts +9 -0
  81. package/www/types/results/visible_digital_seals/DocFeature.d.ts +9 -0
  82. package/www/types/results/visible_digital_seals/VDSData.d.ts +32 -0
  83. package/www/types/results/visible_digital_seals/VDSNCData.d.ts +1 -1
  84. package/www/types/results/visual_results/FieldType.d.ts +6 -0
  85. package/www/types/rfid/PKDCertificate.d.ts +7 -1
  86. package/www/capacitor/params/process_params/FilterObject.js +0 -60
  87. package/www/react-native/params/process_params/FilterObject.js +0 -60
  88. package/www/types/params/process_params/FilterObject.d.ts +0 -32
package/www/cordova.js CHANGED
@@ -2,11 +2,11 @@
2
2
  /******/ "use strict";
3
3
  /******/ var __webpack_modules__ = ({
4
4
 
5
- /***/ "./src/config/InitConfig.js":
5
+ /***/ "./src/config/InitConfig.js"
6
6
  /*!**********************************!*\
7
7
  !*** ./src/config/InitConfig.js ***!
8
8
  \**********************************/
9
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10
10
 
11
11
  __webpack_require__.r(__webpack_exports__);
12
12
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -69,13 +69,13 @@ class InitConfig {
69
69
  }
70
70
 
71
71
 
72
- /***/ }),
72
+ /***/ },
73
73
 
74
- /***/ "./src/config/OnlineProcessingConfig.js":
74
+ /***/ "./src/config/OnlineProcessingConfig.js"
75
75
  /*!**********************************************!*\
76
76
  !*** ./src/config/OnlineProcessingConfig.js ***!
77
77
  \**********************************************/
78
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
78
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
79
79
 
80
80
  __webpack_require__.r(__webpack_exports__);
81
81
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -139,13 +139,13 @@ const OnlineMode = {
139
139
  }
140
140
 
141
141
 
142
- /***/ }),
142
+ /***/ },
143
143
 
144
- /***/ "./src/config/RFIDConfig.js":
144
+ /***/ "./src/config/RFIDConfig.js"
145
145
  /*!**********************************!*\
146
146
  !*** ./src/config/RFIDConfig.js ***!
147
147
  \**********************************/
148
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
148
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
149
149
 
150
150
  __webpack_require__.r(__webpack_exports__);
151
151
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -191,13 +191,13 @@ class RFIDConfig {
191
191
  }
192
192
 
193
193
 
194
- /***/ }),
194
+ /***/ },
195
195
 
196
- /***/ "./src/config/RecognizeConfig.js":
196
+ /***/ "./src/config/RecognizeConfig.js"
197
197
  /*!***************************************!*\
198
198
  !*** ./src/config/RecognizeConfig.js ***!
199
199
  \***************************************/
200
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
200
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
201
201
 
202
202
  __webpack_require__.r(__webpack_exports__);
203
203
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -335,13 +335,13 @@ class ImageInputData {
335
335
  }
336
336
 
337
337
 
338
- /***/ }),
338
+ /***/ },
339
339
 
340
- /***/ "./src/config/ScannerConfig.js":
340
+ /***/ "./src/config/ScannerConfig.js"
341
341
  /*!*************************************!*\
342
342
  !*** ./src/config/ScannerConfig.js ***!
343
343
  \*************************************/
344
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
344
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
345
345
 
346
346
  __webpack_require__.r(__webpack_exports__);
347
347
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -398,135 +398,593 @@ class ScannerConfig {
398
398
  }
399
399
 
400
400
 
401
- /***/ }),
401
+ /***/ },
402
402
 
403
- /***/ "./src/index.js":
403
+ /***/ "./src/engagement/DataRetrieval.js"
404
+ /*!*****************************************!*\
405
+ !*** ./src/engagement/DataRetrieval.js ***!
406
+ \*****************************************/
407
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
408
+
409
+ __webpack_require__.r(__webpack_exports__);
410
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
411
+ /* harmony export */ DataRetrieval: () => (/* binding */ DataRetrieval),
412
+ /* harmony export */ MDLDeviceRetrieval: () => (/* binding */ MDLDeviceRetrieval),
413
+ /* harmony export */ MDLDocRequestPreset: () => (/* binding */ MDLDocRequestPreset)
414
+ /* harmony export */ });
415
+ /* harmony import */ var _NameSpaceMDL__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./NameSpaceMDL */ "./src/engagement/NameSpaceMDL.js");
416
+ /* harmony import */ var _DocumentRequestMDL__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./DocumentRequestMDL */ "./src/engagement/DocumentRequestMDL.js");
417
+
418
+
419
+
420
+ class DataRetrieval {
421
+ deviceRetrieval
422
+ docRequestPreset
423
+ intentToRetain = _NameSpaceMDL__WEBPACK_IMPORTED_MODULE_0__.MDLIntentToRetain.FALSE
424
+ requests = []
425
+
426
+ constructor(deviceRetrieval) {
427
+ this.deviceRetrieval = deviceRetrieval
428
+ }
429
+
430
+ setDocRequestPreset(docRequestPreset, intentToRetain) {
431
+ this.docRequestPreset = docRequestPreset
432
+ this.intentToRetain = intentToRetain
433
+ }
434
+
435
+ addDocRequest(request) {
436
+ requests.push(request);
437
+ }
438
+
439
+ static fromJson(jsonObject) {
440
+ if (jsonObject == null) return null
441
+ const result = new DataRetrieval(jsonObject["deviceRetrieval"])
442
+
443
+ result.docRequestPreset = jsonObject["docRequestPreset"]
444
+ result.intentToRetain = jsonObject["intentToRetain"]
445
+ result.requests = (jsonObject["requests"]).map(item => _DocumentRequestMDL__WEBPACK_IMPORTED_MODULE_1__.DocumentRequestMDL.fromJson(item));
446
+
447
+ return result
448
+ }
449
+
450
+ toJson() {
451
+ return {
452
+ "deviceRetrieval": this.deviceRetrieval,
453
+ "docRequestPreset": this.docRequestPreset,
454
+ "intentToRetain": this.intentToRetain,
455
+ "requests": this.requests.map(item => item.toJson())
456
+ }
457
+ }
458
+ }
459
+
460
+ const MDLDocRequestPreset = {
461
+ ALL: 0,
462
+ AGE: 1,
463
+ STANDARD_ID: 2,
464
+ TRAVEL: 3,
465
+ DRIVERS_LICENSE: 4,
466
+ }
467
+
468
+ const MDLDeviceRetrieval = {
469
+ NFC: 1,
470
+ BLE: 2,
471
+ }
472
+
473
+
474
+ /***/ },
475
+
476
+ /***/ "./src/engagement/DeviceEngagement.js"
477
+ /*!********************************************!*\
478
+ !*** ./src/engagement/DeviceEngagement.js ***!
479
+ \********************************************/
480
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
481
+
482
+ __webpack_require__.r(__webpack_exports__);
483
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
484
+ /* harmony export */ DeviceEngagement: () => (/* binding */ DeviceEngagement),
485
+ /* harmony export */ MDLDeviceEngagement: () => (/* binding */ MDLDeviceEngagement)
486
+ /* harmony export */ });
487
+ /* harmony import */ var _DeviceRetrievalMethod__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./DeviceRetrievalMethod */ "./src/engagement/DeviceRetrievalMethod.js");
488
+
489
+
490
+ class DeviceEngagement {
491
+ deviceRetrievalMethods = []
492
+
493
+ static fromJson(jsonObject) {
494
+ if (jsonObject == null) return null
495
+ const result = new DeviceEngagement()
496
+
497
+ for (var item of jsonObject["deviceRetrievalMethods"]) {
498
+ item = _DeviceRetrievalMethod__WEBPACK_IMPORTED_MODULE_0__.DeviceRetrievalMethod.fromJson(item);
499
+ if (item != null) {
500
+ result.deviceRetrievalMethods.push(item);
501
+ }
502
+ }
503
+
504
+ return result
505
+ }
506
+
507
+ toJson() {
508
+ return {
509
+ "deviceRetrievalMethods": this.deviceRetrievalMethods.map(e => e.toJson()),
510
+ }
511
+ }
512
+ }
513
+
514
+ const MDLDeviceEngagement = {
515
+ QR: 0,
516
+ NFC: 1,
517
+ }
518
+
519
+
520
+ /***/ },
521
+
522
+ /***/ "./src/engagement/DeviceRetrievalMethod.js"
523
+ /*!*************************************************!*\
524
+ !*** ./src/engagement/DeviceRetrievalMethod.js ***!
525
+ \*************************************************/
526
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
527
+
528
+ __webpack_require__.r(__webpack_exports__);
529
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
530
+ /* harmony export */ DeviceRetrievalMethod: () => (/* binding */ DeviceRetrievalMethod)
531
+ /* harmony export */ });
532
+ /* harmony import */ var _DataRetrieval__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./DataRetrieval */ "./src/engagement/DataRetrieval.js");
533
+
534
+
535
+ class DeviceRetrievalMethod {
536
+ type
537
+ version
538
+ cmdMaxLength
539
+ respMaxLength
540
+ clientModeSupport
541
+ clientModeUUID
542
+ serverModeSupport
543
+ serverModeUUID
544
+
545
+ static fromJson(jsonObject) {
546
+ if (jsonObject == null) return null
547
+ const result = new DeviceRetrievalMethod()
548
+
549
+ result.type = jsonObject["type"]
550
+ result.version = jsonObject["version"]
551
+ result.cmdMaxLength = jsonObject["cmdMaxLength"]
552
+ result.respMaxLength = jsonObject["respMaxLength"]
553
+ result.clientModeSupport = jsonObject["clientModeSupport"]
554
+ result.clientModeUUID = jsonObject["clientModeUUID"]
555
+ result.serverModeSupport = jsonObject["serverModeSupport"]
556
+ result.serverModeUUID = jsonObject["serverModeUUID"]
557
+
558
+ return result
559
+ }
560
+
561
+ toJson() {
562
+ return {
563
+ "type": this.type,
564
+ "version": this.version,
565
+ "cmdMaxLength": this.cmdMaxLength,
566
+ "respMaxLength": this.respMaxLength,
567
+ "clientModeSupport": this.clientModeSupport,
568
+ "clientModeUUID": this.clientModeUUID,
569
+ "serverModeSupport": this.serverModeSupport,
570
+ "serverModeUUID": this.serverModeUUID,
571
+ }
572
+ }
573
+ }
574
+
575
+
576
+ /***/ },
577
+
578
+ /***/ "./src/engagement/DocumentRequestMDL.js"
579
+ /*!**********************************************!*\
580
+ !*** ./src/engagement/DocumentRequestMDL.js ***!
581
+ \**********************************************/
582
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
583
+
584
+ __webpack_require__.r(__webpack_exports__);
585
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
586
+ /* harmony export */ DocumentRequest18013MDL: () => (/* binding */ DocumentRequest18013MDL),
587
+ /* harmony export */ DocumentRequestMDL: () => (/* binding */ DocumentRequestMDL)
588
+ /* harmony export */ });
589
+ /* harmony import */ var _NameSpaceMDL__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./NameSpaceMDL */ "./src/engagement/NameSpaceMDL.js");
590
+
591
+
592
+ class DocumentRequestMDL {
593
+ docType
594
+ namespaces = []
595
+
596
+ constructor(docType) {
597
+ this.docType = docType
598
+ }
599
+
600
+ addNameSpace(namespace) {
601
+ this.namespaces.push(namespace);
602
+ }
603
+
604
+ static fromJson(jsonObject) {
605
+ if (jsonObject == null) return null;
606
+ var docType = jsonObject["docType"];
607
+ if (docType == "org.iso.18013.5.1.mDL") {
608
+ return DocumentRequest18013MDL.fromJson(jsonObject);
609
+ }
610
+ var result = new DocumentRequestMDL(docType);
611
+
612
+ result.namespaces = (jsonObject["namespaces"]).map(item => _NameSpaceMDL__WEBPACK_IMPORTED_MODULE_0__.NameSpaceMDL.fromJson(item));
613
+
614
+ return result;
615
+ }
616
+
617
+ toJson() {
618
+ return {
619
+ "docType": this.docType,
620
+ "namespaces": this.namespaces.map(item => item.toJson())
621
+ }
622
+ }
623
+ }
624
+
625
+ class DocumentRequest18013MDL extends DocumentRequestMDL {
626
+ familyName
627
+ givenName
628
+ birthDate
629
+ issueDate
630
+ expiryDate
631
+ issuingCountry
632
+ issuingAuthority
633
+ documentNumber
634
+ portrait
635
+ drivingPrivileges
636
+ unDistinguishingSign
637
+ administrativeNumber
638
+ sex
639
+ height
640
+ weight
641
+ eyeColour
642
+ hairColour
643
+ birthPlace
644
+ residentAddress
645
+ portraitCaptureDate
646
+ ageInYears
647
+ ageBirthYear
648
+ ageOver18
649
+ issuingJurisdiction
650
+ nationality
651
+ residentCity
652
+ residentState
653
+ residentPostalCode
654
+ residentCountry
655
+ biometricTemplateFace
656
+ biometricTemplateIris
657
+ biometricTemplateFinger
658
+ biometricTemplateSignatureSign
659
+ familyNameNationalCharacter
660
+ givenNameNationalCharacter
661
+ signatureUsualMark
662
+
663
+ constructor() {
664
+ super("org.iso.18013.5.1.mDL")
665
+ }
666
+
667
+ disableIntentToRetainValues() {
668
+ this.setAll(_NameSpaceMDL__WEBPACK_IMPORTED_MODULE_0__.MDLIntentToRetain.FALSE);
669
+ }
670
+
671
+ enableIntentToRetainValues() {
672
+ this.setAll(_NameSpaceMDL__WEBPACK_IMPORTED_MODULE_0__.MDLIntentToRetain.TRUE);
673
+ }
674
+
675
+ setAll(value) {
676
+ this.familyName = value;
677
+ this.givenName = value;
678
+ this.birthDate = value;
679
+ this.issueDate = value;
680
+ this.expiryDate = value;
681
+ this.issuingCountry = value;
682
+ this.issuingAuthority = value;
683
+ this.documentNumber = value;
684
+ this.portrait = value;
685
+ this.drivingPrivileges = value;
686
+ this.unDistinguishingSign = value;
687
+ this.administrativeNumber = value;
688
+ this.sex = value;
689
+ this.height = value;
690
+ this.weight = value;
691
+ this.eyeColour = value;
692
+ this.hairColour = value;
693
+ this.birthPlace = value;
694
+ this.residentAddress = value;
695
+ this.portraitCaptureDate = value;
696
+ this.ageInYears = value;
697
+ this.ageBirthYear = value;
698
+ this.ageOver18 = value;
699
+ this.issuingJurisdiction = value;
700
+ this.nationality = value;
701
+ this.residentCity = value;
702
+ this.residentState = value;
703
+ this.residentPostalCode = value;
704
+ this.residentCountry = value;
705
+ this.biometricTemplateFace = value;
706
+ this.biometricTemplateIris = value;
707
+ this.biometricTemplateFinger = value;
708
+ this.biometricTemplateSignatureSign = value;
709
+ this.familyNameNationalCharacter = value;
710
+ this.givenNameNationalCharacter = value;
711
+ this.signatureUsualMark = value;
712
+ }
713
+
714
+ static fromJson(jsonObject) {
715
+ if (jsonObject == null) return null
716
+ const result = new DocumentRequest18013MDL()
717
+
718
+ result.namespaces = (jsonObject["namespaces"]).map(item => _NameSpaceMDL__WEBPACK_IMPORTED_MODULE_0__.NameSpaceMDL.fromJson(item));
719
+ result.familyName = jsonObject["familyName"]
720
+ result.givenName = jsonObject["givenName"]
721
+ result.birthDate = jsonObject["birthDate"]
722
+ result.issueDate = jsonObject["issueDate"]
723
+ result.expiryDate = jsonObject["expiryDate"]
724
+ result.issuingCountry = jsonObject["issuingCountry"]
725
+ result.issuingAuthority = jsonObject["issuingAuthority"]
726
+ result.documentNumber = jsonObject["documentNumber"]
727
+ result.portrait = jsonObject["portrait"]
728
+ result.drivingPrivileges = jsonObject["drivingPrivileges"]
729
+ result.unDistinguishingSign = jsonObject["unDistinguishingSign"]
730
+ result.administrativeNumber = jsonObject["administrativeNumber"]
731
+ result.sex = jsonObject["sex"]
732
+ result.height = jsonObject["height"]
733
+ result.weight = jsonObject["weight"]
734
+ result.eyeColour = jsonObject["eyeColour"]
735
+ result.hairColour = jsonObject["hairColour"]
736
+ result.birthPlace = jsonObject["birthPlace"]
737
+ result.residentAddress = jsonObject["residentAddress"]
738
+ result.portraitCaptureDate = jsonObject["portraitCaptureDate"]
739
+ result.ageInYears = jsonObject["ageInYears"]
740
+ result.ageBirthYear = jsonObject["ageBirthYear"]
741
+ result.ageOver18 = jsonObject["ageOver18"]
742
+ result.issuingJurisdiction = jsonObject["issuingJurisdiction"]
743
+ result.nationality = jsonObject["nationality"]
744
+ result.residentCity = jsonObject["residentCity"]
745
+ result.residentState = jsonObject["residentState"]
746
+ result.residentPostalCode = jsonObject["residentPostalCode"]
747
+ result.residentCountry = jsonObject["residentCountry"]
748
+ result.biometricTemplateFace = jsonObject["biometricTemplateFace"]
749
+ result.biometricTemplateIris = jsonObject["biometricTemplateIris"]
750
+ result.biometricTemplateFinger = jsonObject["biometricTemplateFinger"]
751
+ result.biometricTemplateSignatureSign = jsonObject["biometricTemplateSignatureSign"]
752
+ result.familyNameNationalCharacter = jsonObject["familyNameNationalCharacter"]
753
+ result.givenNameNationalCharacter = jsonObject["givenNameNationalCharacter"]
754
+ result.signatureUsualMark = jsonObject["signatureUsualMark"]
755
+
756
+ return result
757
+ }
758
+
759
+ toJson() {
760
+ return {
761
+ "docType": this.docType,
762
+ "namespaces": this.namespaces.map(item => item.toJson()),
763
+ "familyName": this.familyName,
764
+ "givenName": this.givenName,
765
+ "birthDate": this.birthDate,
766
+ "issueDate": this.issueDate,
767
+ "expiryDate": this.expiryDate,
768
+ "issuingCountry": this.issuingCountry,
769
+ "issuingAuthority": this.issuingAuthority,
770
+ "documentNumber": this.documentNumber,
771
+ "portrait": this.portrait,
772
+ "drivingPrivileges": this.drivingPrivileges,
773
+ "unDistinguishingSign": this.unDistinguishingSign,
774
+ "administrativeNumber": this.administrativeNumber,
775
+ "sex": this.sex,
776
+ "height": this.height,
777
+ "weight": this.weight,
778
+ "eyeColour": this.eyeColour,
779
+ "hairColour": this.hairColour,
780
+ "birthPlace": this.birthPlace,
781
+ "residentAddress": this.residentAddress,
782
+ "portraitCaptureDate": this.portraitCaptureDate,
783
+ "ageInYears": this.ageInYears,
784
+ "ageBirthYear": this.ageBirthYear,
785
+ "ageOver18": this.ageOver18,
786
+ "issuingJurisdiction": this.issuingJurisdiction,
787
+ "nationality": this.nationality,
788
+ "residentCity": this.residentCity,
789
+ "residentState": this.residentState,
790
+ "residentPostalCode": this.residentPostalCode,
791
+ "residentCountry": this.residentCountry,
792
+ "biometricTemplateFace": this.biometricTemplateFace,
793
+ "biometricTemplateIris": this.biometricTemplateIris,
794
+ "biometricTemplateFinger": this.biometricTemplateFinger,
795
+ "biometricTemplateSignatureSign": this.biometricTemplateSignatureSign,
796
+ "familyNameNationalCharacter": this.familyNameNationalCharacter,
797
+ "givenNameNationalCharacter": this.givenNameNationalCharacter,
798
+ "signatureUsualMark": this.signatureUsualMark,
799
+ }
800
+ }
801
+ }
802
+
803
+
804
+ /***/ },
805
+
806
+ /***/ "./src/engagement/NameSpaceMDL.js"
807
+ /*!****************************************!*\
808
+ !*** ./src/engagement/NameSpaceMDL.js ***!
809
+ \****************************************/
810
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
811
+
812
+ __webpack_require__.r(__webpack_exports__);
813
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
814
+ /* harmony export */ MDLIntentToRetain: () => (/* binding */ MDLIntentToRetain),
815
+ /* harmony export */ NameSpaceMDL: () => (/* binding */ NameSpaceMDL)
816
+ /* harmony export */ });
817
+ class NameSpaceMDL {
818
+ name
819
+ map = {}
820
+
821
+ constructor(name) {
822
+ this.name = name
823
+ }
824
+
825
+ addField(name, intentToRetain) {
826
+ this.map[name] = intentToRetain;
827
+ }
828
+
829
+ static fromJson(jsonObject) {
830
+ if (jsonObject == null) return null
831
+ const result = new NameSpaceMDL(jsonObject["name"])
832
+
833
+ result.map = jsonObject["map"]
834
+
835
+ return result
836
+ }
837
+
838
+ toJson() {
839
+ return {
840
+ "name": this.name,
841
+ "map": this.map
842
+ }
843
+ }
844
+ }
845
+
846
+ const MDLIntentToRetain = {
847
+ FALSE: 0,
848
+ TRUE: 1,
849
+ }
850
+
851
+
852
+ /***/ },
853
+
854
+ /***/ "./src/index.js"
404
855
  /*!**********************!*\
405
856
  !*** ./src/index.js ***!
406
857
  \**********************/
407
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
858
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
408
859
 
409
860
  __webpack_require__.r(__webpack_exports__);
410
861
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
411
- /* harmony export */ AccessControlProcedureType: () => (/* reexport safe */ _results_rfid_AccessControlProcedureType__WEBPACK_IMPORTED_MODULE_73__.AccessControlProcedureType),
412
- /* harmony export */ Application: () => (/* reexport safe */ _results_rfid_Application__WEBPACK_IMPORTED_MODULE_70__.Application),
413
- /* harmony export */ Attribute: () => (/* reexport safe */ _results_rfid_Attribute__WEBPACK_IMPORTED_MODULE_57__.Attribute),
414
- /* harmony export */ Authenticity: () => (/* reexport safe */ _results_authenticity_Authenticity__WEBPACK_IMPORTED_MODULE_41__.Authenticity),
415
- /* harmony export */ AuthenticityCheck: () => (/* reexport safe */ _results_authenticity_AuthenticityCheck__WEBPACK_IMPORTED_MODULE_39__.AuthenticityCheck),
416
- /* harmony export */ AuthenticityCheckType: () => (/* reexport safe */ _params_process_params_AuthenticityParams__WEBPACK_IMPORTED_MODULE_81__.AuthenticityCheckType),
417
- /* harmony export */ AuthenticityElement: () => (/* reexport safe */ _results_authenticity_AuthenticityElement__WEBPACK_IMPORTED_MODULE_37__.AuthenticityElement),
418
- /* harmony export */ AuthenticityParams: () => (/* reexport safe */ _params_process_params_AuthenticityParams__WEBPACK_IMPORTED_MODULE_81__.AuthenticityParams),
419
- /* harmony export */ AuthenticityResult: () => (/* reexport safe */ _results_authenticity_AuthenticityResult__WEBPACK_IMPORTED_MODULE_38__.AuthenticityResult),
420
- /* harmony export */ Authority: () => (/* reexport safe */ _results_rfid_Authority__WEBPACK_IMPORTED_MODULE_61__.Authority),
421
- /* harmony export */ BackendProcessingConfig: () => (/* reexport safe */ _params_process_params_BackendProcessingConfig__WEBPACK_IMPORTED_MODULE_82__.BackendProcessingConfig),
422
- /* harmony export */ BarcodeField: () => (/* reexport safe */ _results_barcode_BarcodeField__WEBPACK_IMPORTED_MODULE_46__.BarcodeField),
423
- /* harmony export */ BarcodeResult: () => (/* reexport safe */ _results_barcode_BarcodeResult__WEBPACK_IMPORTED_MODULE_45__.BarcodeResult),
424
- /* harmony export */ BarcodeStatus: () => (/* reexport safe */ _results_barcode_BarcodeStatus__WEBPACK_IMPORTED_MODULE_43__.BarcodeStatus),
425
- /* harmony export */ BarcodeType: () => (/* reexport safe */ _results_barcode_BarcodeType__WEBPACK_IMPORTED_MODULE_44__.BarcodeType),
426
- /* harmony export */ BytesData: () => (/* reexport safe */ _results_visible_digital_seals_BytesData__WEBPACK_IMPORTED_MODULE_52__.BytesData),
427
- /* harmony export */ CameraMode: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.CameraMode),
428
- /* harmony export */ CameraPosition: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.CameraPosition),
429
- /* harmony export */ CameraSize: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.CameraSize),
430
- /* harmony export */ Cap: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_88__.Cap),
431
- /* harmony export */ CaptureMode: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.CaptureMode),
432
- /* harmony export */ CaptureSessionPreset: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.CaptureSessionPreset),
433
- /* harmony export */ CardProperties: () => (/* reexport safe */ _results_rfid_CardProperties__WEBPACK_IMPORTED_MODULE_55__.CardProperties),
434
- /* harmony export */ CertificateChain: () => (/* reexport safe */ _results_rfid_CertificateChain__WEBPACK_IMPORTED_MODULE_60__.CertificateChain),
435
- /* harmony export */ CertificateData: () => (/* reexport safe */ _results_rfid_CertificateData__WEBPACK_IMPORTED_MODULE_66__.CertificateData),
436
- /* harmony export */ CheckDiagnose: () => (/* reexport safe */ _results_authenticity_CheckDiagnose__WEBPACK_IMPORTED_MODULE_36__.CheckDiagnose),
862
+ /* harmony export */ AccessControlProcedureType: () => (/* reexport safe */ _results_rfid_AccessControlProcedureType__WEBPACK_IMPORTED_MODULE_76__.AccessControlProcedureType),
863
+ /* harmony export */ AgeStatus: () => (/* reexport safe */ _results_status_AgeStatus__WEBPACK_IMPORTED_MODULE_36__.AgeStatus),
864
+ /* harmony export */ Application: () => (/* reexport safe */ _results_rfid_Application__WEBPACK_IMPORTED_MODULE_73__.Application),
865
+ /* harmony export */ Attribute: () => (/* reexport safe */ _results_rfid_Attribute__WEBPACK_IMPORTED_MODULE_60__.Attribute),
866
+ /* harmony export */ Authenticity: () => (/* reexport safe */ _results_authenticity_Authenticity__WEBPACK_IMPORTED_MODULE_42__.Authenticity),
867
+ /* harmony export */ AuthenticityCheck: () => (/* reexport safe */ _results_authenticity_AuthenticityCheck__WEBPACK_IMPORTED_MODULE_40__.AuthenticityCheck),
868
+ /* harmony export */ AuthenticityElement: () => (/* reexport safe */ _results_authenticity_AuthenticityElement__WEBPACK_IMPORTED_MODULE_38__.AuthenticityElement),
869
+ /* harmony export */ AuthenticityParams: () => (/* reexport safe */ _params_process_params_AuthenticityParams__WEBPACK_IMPORTED_MODULE_83__.AuthenticityParams),
870
+ /* harmony export */ AuthenticityResult: () => (/* reexport safe */ _results_authenticity_AuthenticityResult__WEBPACK_IMPORTED_MODULE_39__.AuthenticityResult),
871
+ /* harmony export */ Authority: () => (/* reexport safe */ _results_rfid_Authority__WEBPACK_IMPORTED_MODULE_64__.Authority),
872
+ /* harmony export */ BackendProcessingConfig: () => (/* reexport safe */ _params_process_params_BackendProcessingConfig__WEBPACK_IMPORTED_MODULE_84__.BackendProcessingConfig),
873
+ /* harmony export */ BarcodeField: () => (/* reexport safe */ _results_barcode_BarcodeField__WEBPACK_IMPORTED_MODULE_47__.BarcodeField),
874
+ /* harmony export */ BarcodeResult: () => (/* reexport safe */ _results_barcode_BarcodeResult__WEBPACK_IMPORTED_MODULE_46__.BarcodeResult),
875
+ /* harmony export */ BarcodeStatus: () => (/* reexport safe */ _results_barcode_BarcodeStatus__WEBPACK_IMPORTED_MODULE_44__.BarcodeStatus),
876
+ /* harmony export */ BarcodeType: () => (/* reexport safe */ _results_barcode_BarcodeType__WEBPACK_IMPORTED_MODULE_45__.BarcodeType),
877
+ /* harmony export */ BytesData: () => (/* reexport safe */ _results_visible_digital_seals_BytesData__WEBPACK_IMPORTED_MODULE_53__.BytesData),
878
+ /* harmony export */ CameraMode: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.CameraMode),
879
+ /* harmony export */ CameraPosition: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.CameraPosition),
880
+ /* harmony export */ CameraSize: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.CameraSize),
881
+ /* harmony export */ Cap: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.Cap),
882
+ /* harmony export */ CaptureMode: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.CaptureMode),
883
+ /* harmony export */ CaptureSessionPreset: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.CaptureSessionPreset),
884
+ /* harmony export */ CardProperties: () => (/* reexport safe */ _results_rfid_CardProperties__WEBPACK_IMPORTED_MODULE_58__.CardProperties),
885
+ /* harmony export */ CertificateChain: () => (/* reexport safe */ _results_rfid_CertificateChain__WEBPACK_IMPORTED_MODULE_63__.CertificateChain),
886
+ /* harmony export */ CertificateData: () => (/* reexport safe */ _results_rfid_CertificateData__WEBPACK_IMPORTED_MODULE_69__.CertificateData),
887
+ /* harmony export */ CheckDiagnose: () => (/* reexport safe */ _results_authenticity_CheckDiagnose__WEBPACK_IMPORTED_MODULE_37__.CheckDiagnose),
437
888
  /* harmony export */ CheckResult: () => (/* reexport safe */ _results_status_CheckResult__WEBPACK_IMPORTED_MODULE_34__.CheckResult),
438
889
  /* harmony export */ Comparison: () => (/* reexport safe */ _results_visual_results_Comparison__WEBPACK_IMPORTED_MODULE_18__.Comparison),
439
890
  /* harmony export */ Coordinate: () => (/* reexport safe */ _results_Position__WEBPACK_IMPORTED_MODULE_31__.Coordinate),
440
- /* harmony export */ CustomButtonTag: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_88__.CustomButtonTag),
441
- /* harmony export */ Customization: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_88__.Customization),
442
- /* harmony export */ CustomizationColors: () => (/* reexport safe */ _params_customization_CustomizationColors__WEBPACK_IMPORTED_MODULE_89__.CustomizationColors),
443
- /* harmony export */ CustomizationFonts: () => (/* reexport safe */ _params_customization_CustomizationFonts__WEBPACK_IMPORTED_MODULE_85__.CustomizationFonts),
444
- /* harmony export */ CustomizationImages: () => (/* reexport safe */ _params_customization_CustomizationImages__WEBPACK_IMPORTED_MODULE_86__.CustomizationImages),
445
- /* harmony export */ DTCDataGroup: () => (/* reexport safe */ _params_rfid_scenario_DTCDataGroup__WEBPACK_IMPORTED_MODULE_92__.DTCDataGroup),
446
- /* harmony export */ DataField: () => (/* reexport safe */ _results_rfid_DataField__WEBPACK_IMPORTED_MODULE_56__.DataField),
891
+ /* harmony export */ CustomButtonTag: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.CustomButtonTag),
892
+ /* harmony export */ Customization: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.Customization),
893
+ /* harmony export */ CustomizationColors: () => (/* reexport safe */ _params_customization_CustomizationColors__WEBPACK_IMPORTED_MODULE_91__.CustomizationColors),
894
+ /* harmony export */ CustomizationFonts: () => (/* reexport safe */ _params_customization_CustomizationFonts__WEBPACK_IMPORTED_MODULE_87__.CustomizationFonts),
895
+ /* harmony export */ CustomizationImages: () => (/* reexport safe */ _params_customization_CustomizationImages__WEBPACK_IMPORTED_MODULE_88__.CustomizationImages),
896
+ /* harmony export */ DTCDataGroup: () => (/* reexport safe */ _params_rfid_scenario_DTCDataGroup__WEBPACK_IMPORTED_MODULE_94__.DTCDataGroup),
897
+ /* harmony export */ DataField: () => (/* reexport safe */ _results_rfid_DataField__WEBPACK_IMPORTED_MODULE_59__.DataField),
898
+ /* harmony export */ DataRetrieval: () => (/* reexport safe */ _engagement_DataRetrieval__WEBPACK_IMPORTED_MODULE_104__.DataRetrieval),
899
+ /* harmony export */ DeviceEngagement: () => (/* reexport safe */ _engagement_DeviceEngagement__WEBPACK_IMPORTED_MODULE_105__.DeviceEngagement),
900
+ /* harmony export */ DeviceRetrievalMethod: () => (/* reexport safe */ _engagement_DeviceRetrievalMethod__WEBPACK_IMPORTED_MODULE_108__.DeviceRetrievalMethod),
901
+ /* harmony export */ DocFeature: () => (/* reexport safe */ _results_visible_digital_seals_DocFeature__WEBPACK_IMPORTED_MODULE_54__.DocFeature),
447
902
  /* harmony export */ DocFormat: () => (/* reexport safe */ _results_DocumentType__WEBPACK_IMPORTED_MODULE_28__.DocFormat),
448
903
  /* harmony export */ DocReaderAction: () => (/* binding */ DocReaderAction),
449
904
  /* harmony export */ DocReaderException: () => (/* reexport safe */ _info_DocReaderException__WEBPACK_IMPORTED_MODULE_8__.DocReaderException),
450
- /* harmony export */ DocReaderFrame: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.DocReaderFrame),
905
+ /* harmony export */ DocReaderFrame: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.DocReaderFrame),
451
906
  /* harmony export */ DocReaderOrientation: () => (/* reexport safe */ _info_DocReaderScenario__WEBPACK_IMPORTED_MODULE_11__.DocReaderOrientation),
452
907
  /* harmony export */ DocReaderScenario: () => (/* reexport safe */ _info_DocReaderScenario__WEBPACK_IMPORTED_MODULE_11__.DocReaderScenario),
453
908
  /* harmony export */ DocReaderVersion: () => (/* reexport safe */ _info_DocReaderVersion__WEBPACK_IMPORTED_MODULE_6__.DocReaderVersion),
454
909
  /* harmony export */ DocumentReader: () => (/* binding */ DocumentReader),
910
+ /* harmony export */ DocumentRequest18013MDL: () => (/* reexport safe */ _engagement_DocumentRequestMDL__WEBPACK_IMPORTED_MODULE_107__.DocumentRequest18013MDL),
911
+ /* harmony export */ DocumentRequestMDL: () => (/* reexport safe */ _engagement_DocumentRequestMDL__WEBPACK_IMPORTED_MODULE_107__.DocumentRequestMDL),
455
912
  /* harmony export */ DocumentType: () => (/* reexport safe */ _results_DocumentType__WEBPACK_IMPORTED_MODULE_28__.DocumentType),
456
913
  /* harmony export */ DocumentTypeEnum: () => (/* reexport safe */ _results_DocumentType__WEBPACK_IMPORTED_MODULE_28__.DocType),
457
914
  /* harmony export */ DocumentsDatabase: () => (/* reexport safe */ _info_DocumentsDatabase__WEBPACK_IMPORTED_MODULE_9__.DocumentsDatabase),
458
- /* harmony export */ EDLDataGroups: () => (/* reexport safe */ _params_rfid_scenario_EDLDataGroups__WEBPACK_IMPORTED_MODULE_94__.EDLDataGroups),
459
- /* harmony export */ EIDDataGroups: () => (/* reexport safe */ _params_rfid_scenario_EIDDataGroups__WEBPACK_IMPORTED_MODULE_91__.EIDDataGroups),
460
- /* harmony export */ EPassportDataGroups: () => (/* reexport safe */ _params_rfid_scenario_EPassportDataGroups__WEBPACK_IMPORTED_MODULE_90__.EPassportDataGroups),
915
+ /* harmony export */ EDLDataGroups: () => (/* reexport safe */ _params_rfid_scenario_EDLDataGroups__WEBPACK_IMPORTED_MODULE_96__.EDLDataGroups),
916
+ /* harmony export */ EIDDataGroups: () => (/* reexport safe */ _params_rfid_scenario_EIDDataGroups__WEBPACK_IMPORTED_MODULE_93__.EIDDataGroups),
917
+ /* harmony export */ EPassportDataGroups: () => (/* reexport safe */ _params_rfid_scenario_EPassportDataGroups__WEBPACK_IMPORTED_MODULE_92__.EPassportDataGroups),
461
918
  /* harmony export */ ErrorCodes: () => (/* reexport safe */ _info_DocReaderException__WEBPACK_IMPORTED_MODULE_8__.ErrorCodes),
462
- /* harmony export */ Extension: () => (/* reexport safe */ _results_rfid_Extension__WEBPACK_IMPORTED_MODULE_72__.Extension),
463
- /* harmony export */ FaceApiParams: () => (/* reexport safe */ _params_process_params_FaceApiParams__WEBPACK_IMPORTED_MODULE_78__.FaceApiParams),
464
- /* harmony export */ FaceApiSearchParams: () => (/* reexport safe */ _params_process_params_FaceApiSearchParams__WEBPACK_IMPORTED_MODULE_83__.FaceApiSearchParams),
919
+ /* harmony export */ Extension: () => (/* reexport safe */ _results_rfid_Extension__WEBPACK_IMPORTED_MODULE_75__.Extension),
920
+ /* harmony export */ FaceApiParams: () => (/* reexport safe */ _params_process_params_FaceApiParams__WEBPACK_IMPORTED_MODULE_80__.FaceApiParams),
921
+ /* harmony export */ FaceApiSearchParams: () => (/* reexport safe */ _params_process_params_FaceApiSearchParams__WEBPACK_IMPORTED_MODULE_85__.FaceApiSearchParams),
465
922
  /* harmony export */ FieldType: () => (/* reexport safe */ _results_visual_results_FieldType__WEBPACK_IMPORTED_MODULE_22__.FieldType),
466
- /* harmony export */ File: () => (/* reexport safe */ _results_rfid_File__WEBPACK_IMPORTED_MODULE_62__.File),
467
- /* harmony export */ FileData: () => (/* reexport safe */ _results_rfid_FileData__WEBPACK_IMPORTED_MODULE_67__.FileData),
468
- /* harmony export */ FilterCheckType: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__.FilterCheckType),
469
- /* harmony export */ FilterObject: () => (/* reexport safe */ _params_process_params_FilterObject__WEBPACK_IMPORTED_MODULE_74__.FilterObject),
470
- /* harmony export */ FilterObjectType: () => (/* reexport safe */ _params_process_params_FilterObject__WEBPACK_IMPORTED_MODULE_74__.FilterObjectType),
471
- /* harmony export */ Font: () => (/* reexport safe */ _params_customization_Font__WEBPACK_IMPORTED_MODULE_87__.Font),
472
- /* harmony export */ FontStyle: () => (/* reexport safe */ _params_customization_Font__WEBPACK_IMPORTED_MODULE_87__.FontStyle),
473
- /* harmony export */ FrameShapeType: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_88__.FrameShapeType),
474
- /* harmony export */ Functionality: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.Functionality),
475
- /* harmony export */ GlaresCheckParams: () => (/* reexport safe */ _params_process_params_GlaresCheckParams__WEBPACK_IMPORTED_MODULE_77__.GlaresCheckParams),
923
+ /* harmony export */ File: () => (/* reexport safe */ _results_rfid_File__WEBPACK_IMPORTED_MODULE_65__.File),
924
+ /* harmony export */ FileData: () => (/* reexport safe */ _results_rfid_FileData__WEBPACK_IMPORTED_MODULE_70__.FileData),
925
+ /* harmony export */ Font: () => (/* reexport safe */ _params_customization_Font__WEBPACK_IMPORTED_MODULE_89__.Font),
926
+ /* harmony export */ FontStyle: () => (/* reexport safe */ _params_customization_Font__WEBPACK_IMPORTED_MODULE_89__.FontStyle),
927
+ /* harmony export */ FrameShapeType: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.FrameShapeType),
928
+ /* harmony export */ Functionality: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.Functionality),
929
+ /* harmony export */ GlaresCheckParams: () => (/* reexport safe */ _params_process_params_GlaresCheckParams__WEBPACK_IMPORTED_MODULE_79__.GlaresCheckParams),
476
930
  /* harmony export */ GraphicField: () => (/* reexport safe */ _results_visual_results_GraphicField__WEBPACK_IMPORTED_MODULE_23__.GraphicField),
477
931
  /* harmony export */ GraphicFieldType: () => (/* reexport safe */ _results_visual_results_GraphicFieldType__WEBPACK_IMPORTED_MODULE_14__.GraphicFieldType),
478
932
  /* harmony export */ GraphicResult: () => (/* reexport safe */ _results_visual_results_GraphicResult__WEBPACK_IMPORTED_MODULE_27__.GraphicResult),
479
933
  /* harmony export */ ImageFormat: () => (/* reexport safe */ _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__.ImageFormat),
480
934
  /* harmony export */ ImageInputData: () => (/* reexport safe */ _config_RecognizeConfig__WEBPACK_IMPORTED_MODULE_5__.ImageInputData),
481
- /* harmony export */ ImageQA: () => (/* reexport safe */ _params_process_params_ImageQA__WEBPACK_IMPORTED_MODULE_80__.ImageQA),
482
- /* harmony export */ ImageQuality: () => (/* reexport safe */ _results_image_quality_ImageQuality__WEBPACK_IMPORTED_MODULE_47__.ImageQuality),
483
- /* harmony export */ ImageQualityCheckType: () => (/* reexport safe */ _results_image_quality_ImageQualityCheckType__WEBPACK_IMPORTED_MODULE_49__.ImageQualityCheckType),
484
- /* harmony export */ ImageQualityGroup: () => (/* reexport safe */ _results_image_quality_ImageQualityGroup__WEBPACK_IMPORTED_MODULE_48__.ImageQualityGroup),
935
+ /* harmony export */ ImageQA: () => (/* reexport safe */ _params_process_params_ImageQA__WEBPACK_IMPORTED_MODULE_82__.ImageQA),
936
+ /* harmony export */ ImageQuality: () => (/* reexport safe */ _results_image_quality_ImageQuality__WEBPACK_IMPORTED_MODULE_48__.ImageQuality),
937
+ /* harmony export */ ImageQualityCheckType: () => (/* reexport safe */ _results_image_quality_ImageQualityCheckType__WEBPACK_IMPORTED_MODULE_50__.ImageQualityCheckType),
938
+ /* harmony export */ ImageQualityGroup: () => (/* reexport safe */ _results_image_quality_ImageQualityGroup__WEBPACK_IMPORTED_MODULE_49__.ImageQualityGroup),
485
939
  /* harmony export */ InitConfig: () => (/* reexport safe */ _config_InitConfig__WEBPACK_IMPORTED_MODULE_2__.InitConfig),
486
940
  /* harmony export */ LCID: () => (/* reexport safe */ _results_visual_results_LCID__WEBPACK_IMPORTED_MODULE_13__.LCID),
487
- /* harmony export */ LDSParsingErrorCodes: () => (/* reexport safe */ _results_visible_digital_seals_LDSParsingErrorCodes__WEBPACK_IMPORTED_MODULE_50__.LDSParsingErrorCodes),
488
- /* harmony export */ LDSParsingNotificationCodes: () => (/* reexport safe */ _results_visible_digital_seals_LDSParsingNotificationCodes__WEBPACK_IMPORTED_MODULE_53__.LDSParsingNotificationCodes),
941
+ /* harmony export */ LDSParsingErrorCodes: () => (/* reexport safe */ _results_visible_digital_seals_LDSParsingErrorCodes__WEBPACK_IMPORTED_MODULE_51__.LDSParsingErrorCodes),
942
+ /* harmony export */ LDSParsingNotificationCodes: () => (/* reexport safe */ _results_visible_digital_seals_LDSParsingNotificationCodes__WEBPACK_IMPORTED_MODULE_56__.LDSParsingNotificationCodes),
489
943
  /* harmony export */ License: () => (/* reexport safe */ _info_License__WEBPACK_IMPORTED_MODULE_10__.License),
490
944
  /* harmony export */ Lights: () => (/* reexport safe */ _results_visual_results_Lights__WEBPACK_IMPORTED_MODULE_20__.Lights),
491
- /* harmony export */ LivenessCheckType: () => (/* reexport safe */ _params_process_params_LivenessParams__WEBPACK_IMPORTED_MODULE_75__.LivenessCheckType),
492
- /* harmony export */ LivenessParams: () => (/* reexport safe */ _params_process_params_LivenessParams__WEBPACK_IMPORTED_MODULE_75__.LivenessParams),
493
- /* harmony export */ LogLevel: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__.LogLevel),
494
- /* harmony export */ MRZFormat: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__.MRZFormat),
495
- /* harmony export */ MeasureSystem: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__.MeasureSystem),
496
- /* harmony export */ MrzDetectionModes: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__.MrzDetectionModes),
945
+ /* harmony export */ LivenessParams: () => (/* reexport safe */ _params_process_params_LivenessParams__WEBPACK_IMPORTED_MODULE_77__.LivenessParams),
946
+ /* harmony export */ LogLevel: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.LogLevel),
947
+ /* harmony export */ MDLDeviceEngagement: () => (/* reexport safe */ _engagement_DeviceEngagement__WEBPACK_IMPORTED_MODULE_105__.MDLDeviceEngagement),
948
+ /* harmony export */ MDLDeviceRetrieval: () => (/* reexport safe */ _engagement_DataRetrieval__WEBPACK_IMPORTED_MODULE_104__.MDLDeviceRetrieval),
949
+ /* harmony export */ MDLDocRequestPreset: () => (/* reexport safe */ _engagement_DataRetrieval__WEBPACK_IMPORTED_MODULE_104__.MDLDocRequestPreset),
950
+ /* harmony export */ MDLIntentToRetain: () => (/* reexport safe */ _engagement_NameSpaceMDL__WEBPACK_IMPORTED_MODULE_106__.MDLIntentToRetain),
951
+ /* harmony export */ MRZFormat: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.MRZFormat),
952
+ /* harmony export */ MeasureSystem: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.MeasureSystem),
953
+ /* harmony export */ MrzDetectionModes: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.MrzDetectionModes),
954
+ /* harmony export */ NameSpaceMDL: () => (/* reexport safe */ _engagement_NameSpaceMDL__WEBPACK_IMPORTED_MODULE_106__.NameSpaceMDL),
497
955
  /* harmony export */ OnlineMode: () => (/* reexport safe */ _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__.OnlineMode),
498
956
  /* harmony export */ OnlineProcessingConfig: () => (/* reexport safe */ _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__.OnlineProcessingConfig),
499
957
  /* harmony export */ OpticalStatus: () => (/* reexport safe */ _results_status_OpticalStatus__WEBPACK_IMPORTED_MODULE_35__.OpticalStatus),
500
- /* harmony export */ PAAttribute: () => (/* reexport safe */ _rfid_PAAttribute__WEBPACK_IMPORTED_MODULE_99__.PAAttribute),
501
- /* harmony export */ PAResourcesIssuer: () => (/* reexport safe */ _rfid_PAResourcesIssuer__WEBPACK_IMPORTED_MODULE_95__.PAResourcesIssuer),
502
- /* harmony export */ PDF417Info: () => (/* reexport safe */ _results_barcode_PDF417Info__WEBPACK_IMPORTED_MODULE_42__.PDF417Info),
503
- /* harmony export */ PKDCertificate: () => (/* reexport safe */ _rfid_PKDCertificate__WEBPACK_IMPORTED_MODULE_101__.PKDCertificate),
504
- /* harmony export */ PKDResourceType: () => (/* reexport safe */ _rfid_PKDCertificate__WEBPACK_IMPORTED_MODULE_101__.PKDResourceType),
958
+ /* harmony export */ PAAttribute: () => (/* reexport safe */ _rfid_PAAttribute__WEBPACK_IMPORTED_MODULE_101__.PAAttribute),
959
+ /* harmony export */ PAResourcesIssuer: () => (/* reexport safe */ _rfid_PAResourcesIssuer__WEBPACK_IMPORTED_MODULE_97__.PAResourcesIssuer),
960
+ /* harmony export */ PDF417Info: () => (/* reexport safe */ _results_barcode_PDF417Info__WEBPACK_IMPORTED_MODULE_43__.PDF417Info),
961
+ /* harmony export */ PKDCertificate: () => (/* reexport safe */ _rfid_PKDCertificate__WEBPACK_IMPORTED_MODULE_103__.PKDCertificate),
962
+ /* harmony export */ PKDResourceType: () => (/* reexport safe */ _rfid_PKDCertificate__WEBPACK_IMPORTED_MODULE_103__.PKDResourceType),
505
963
  /* harmony export */ Position: () => (/* reexport safe */ _results_Position__WEBPACK_IMPORTED_MODULE_31__.Position),
506
964
  /* harmony export */ PrepareProgress: () => (/* reexport safe */ _info_PrepareProgress__WEBPACK_IMPORTED_MODULE_7__.PrepareProgress),
507
- /* harmony export */ ProcessParams: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__.ProcessParams),
965
+ /* harmony export */ ProcessParams: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.ProcessParams),
508
966
  /* harmony export */ ProcessingFinishedStatus: () => (/* reexport safe */ _results_Results__WEBPACK_IMPORTED_MODULE_29__.ProcessingFinishedStatus),
509
- /* harmony export */ RFIDAccessControlProcedureType: () => (/* reexport safe */ _results_rfid_RFIDAccessControlProcedureType__WEBPACK_IMPORTED_MODULE_71__.RFIDAccessControlProcedureType),
510
- /* harmony export */ RFIDApplicationType: () => (/* reexport safe */ _results_rfid_Application__WEBPACK_IMPORTED_MODULE_70__.RFIDApplicationType),
511
- /* harmony export */ RFIDAuthenticationProcedureType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.RFIDAuthenticationProcedureType),
512
- /* harmony export */ RFIDCertificateType: () => (/* reexport safe */ _results_rfid_RFIDCertificateType__WEBPACK_IMPORTED_MODULE_68__.RFIDCertificateType),
967
+ /* harmony export */ RFIDAccessControlProcedureType: () => (/* reexport safe */ _results_rfid_RFIDAccessControlProcedureType__WEBPACK_IMPORTED_MODULE_74__.RFIDAccessControlProcedureType),
968
+ /* harmony export */ RFIDApplicationType: () => (/* reexport safe */ _results_rfid_Application__WEBPACK_IMPORTED_MODULE_73__.RFIDApplicationType),
969
+ /* harmony export */ RFIDAuthenticationProcedureType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDAuthenticationProcedureType),
970
+ /* harmony export */ RFIDCertificateType: () => (/* reexport safe */ _results_rfid_RFIDCertificateType__WEBPACK_IMPORTED_MODULE_71__.RFIDCertificateType),
513
971
  /* harmony export */ RFIDConfig: () => (/* reexport safe */ _config_RFIDConfig__WEBPACK_IMPORTED_MODULE_3__.RFIDConfig),
514
- /* harmony export */ RFIDDataFileType: () => (/* reexport safe */ _results_rfid_RFIDDataFileType__WEBPACK_IMPORTED_MODULE_65__.RFIDDataFileType),
515
- /* harmony export */ RFIDErrorCodes: () => (/* reexport safe */ _rfid_RFIDErrorCodes__WEBPACK_IMPORTED_MODULE_96__.RFIDErrorCodes),
972
+ /* harmony export */ RFIDDataFileType: () => (/* reexport safe */ _results_rfid_RFIDDataFileType__WEBPACK_IMPORTED_MODULE_68__.RFIDDataFileType),
973
+ /* harmony export */ RFIDErrorCodes: () => (/* reexport safe */ _rfid_RFIDErrorCodes__WEBPACK_IMPORTED_MODULE_98__.RFIDErrorCodes),
516
974
  /* harmony export */ RFIDException: () => (/* reexport safe */ _info_RFIDException__WEBPACK_IMPORTED_MODULE_12__.RFIDException),
517
- /* harmony export */ RFIDNotification: () => (/* reexport safe */ _rfid_RFIDNotification__WEBPACK_IMPORTED_MODULE_98__.RFIDNotification),
518
- /* harmony export */ RFIDNotificationCodes: () => (/* reexport safe */ _rfid_RFIDNotification__WEBPACK_IMPORTED_MODULE_98__.RFIDNotificationCodes),
975
+ /* harmony export */ RFIDNotification: () => (/* reexport safe */ _rfid_RFIDNotification__WEBPACK_IMPORTED_MODULE_100__.RFIDNotification),
976
+ /* harmony export */ RFIDNotificationCodes: () => (/* reexport safe */ _rfid_RFIDNotification__WEBPACK_IMPORTED_MODULE_100__.RFIDNotificationCodes),
519
977
  /* harmony export */ RFIDOrigin: () => (/* reexport safe */ _results_visual_results_RFIDOrigin__WEBPACK_IMPORTED_MODULE_24__.RFIDOrigin),
520
- /* harmony export */ RFIDParams: () => (/* reexport safe */ _params_process_params_RFIDParams__WEBPACK_IMPORTED_MODULE_79__.RFIDParams),
521
- /* harmony export */ RFIDPasswordType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.RFIDPasswordType),
522
- /* harmony export */ RFIDReadingBufferSize: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.RFIDReadingBufferSize),
523
- /* harmony export */ RFIDSDKProfilerType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.RFIDSDKProfilerType),
524
- /* harmony export */ RFIDScenario: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.RFIDScenario),
525
- /* harmony export */ RFIDSessionData: () => (/* reexport safe */ _results_rfid_RFIDSessionData__WEBPACK_IMPORTED_MODULE_69__.RFIDSessionData),
978
+ /* harmony export */ RFIDParams: () => (/* reexport safe */ _params_process_params_RFIDParams__WEBPACK_IMPORTED_MODULE_81__.RFIDParams),
979
+ /* harmony export */ RFIDPasswordType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDPasswordType),
980
+ /* harmony export */ RFIDReadingBufferSize: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDReadingBufferSize),
981
+ /* harmony export */ RFIDSDKProfilerType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDSDKProfilerType),
982
+ /* harmony export */ RFIDScenario: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDScenario),
983
+ /* harmony export */ RFIDSessionData: () => (/* reexport safe */ _results_rfid_RFIDSessionData__WEBPACK_IMPORTED_MODULE_72__.RFIDSessionData),
526
984
  /* harmony export */ RFIDStatus: () => (/* reexport safe */ _results_status_RFIDStatus__WEBPACK_IMPORTED_MODULE_32__.RFIDStatus),
527
- /* harmony export */ RFIDTerminalType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.RFIDTerminalType),
528
- /* harmony export */ RFIDValidity: () => (/* reexport safe */ _results_rfid_RFIDValidity__WEBPACK_IMPORTED_MODULE_64__.RFIDValidity),
529
- /* harmony export */ RFIDValue: () => (/* reexport safe */ _results_rfid_RFIDValue__WEBPACK_IMPORTED_MODULE_63__.RFIDValue),
985
+ /* harmony export */ RFIDTerminalType: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDTerminalType),
986
+ /* harmony export */ RFIDValidity: () => (/* reexport safe */ _results_rfid_RFIDValidity__WEBPACK_IMPORTED_MODULE_67__.RFIDValidity),
987
+ /* harmony export */ RFIDValue: () => (/* reexport safe */ _results_rfid_RFIDValue__WEBPACK_IMPORTED_MODULE_66__.RFIDValue),
530
988
  /* harmony export */ RecognizeConfig: () => (/* reexport safe */ _config_RecognizeConfig__WEBPACK_IMPORTED_MODULE_5__.RecognizeConfig),
531
989
  /* harmony export */ Rect: () => (/* reexport safe */ _results_visual_results_Rect__WEBPACK_IMPORTED_MODULE_16__.Rect),
532
990
  /* harmony export */ ResultType: () => (/* reexport safe */ _results_Results__WEBPACK_IMPORTED_MODULE_29__.ResultType),
@@ -534,22 +992,23 @@ __webpack_require__.r(__webpack_exports__);
534
992
  /* harmony export */ ResultsStatus: () => (/* reexport safe */ _results_status_ResultsStatus__WEBPACK_IMPORTED_MODULE_33__.ResultsStatus),
535
993
  /* harmony export */ ScannerConfig: () => (/* reexport safe */ _config_ScannerConfig__WEBPACK_IMPORTED_MODULE_4__.ScannerConfig),
536
994
  /* harmony export */ Scenario: () => (/* reexport safe */ _info_DocReaderScenario__WEBPACK_IMPORTED_MODULE_11__.Scenario),
537
- /* harmony export */ SecurityFeatureType: () => (/* reexport safe */ _results_authenticity_SecurityFeatureType__WEBPACK_IMPORTED_MODULE_40__.SecurityFeatureType),
538
- /* harmony export */ SecurityObject: () => (/* reexport safe */ _results_rfid_SecurityObject__WEBPACK_IMPORTED_MODULE_54__.SecurityObject),
539
- /* harmony export */ SecurityObjectCertificates: () => (/* reexport safe */ _results_rfid_SecurityObjectCertificates__WEBPACK_IMPORTED_MODULE_59__.SecurityObjectCertificates),
540
- /* harmony export */ SignManagementAction: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.SignManagementAction),
541
- /* harmony export */ SignerInfo: () => (/* reexport safe */ _results_rfid_SignerInfo__WEBPACK_IMPORTED_MODULE_58__.SignerInfo),
995
+ /* harmony export */ SecurityFeatureType: () => (/* reexport safe */ _results_authenticity_SecurityFeatureType__WEBPACK_IMPORTED_MODULE_41__.SecurityFeatureType),
996
+ /* harmony export */ SecurityObject: () => (/* reexport safe */ _results_rfid_SecurityObject__WEBPACK_IMPORTED_MODULE_57__.SecurityObject),
997
+ /* harmony export */ SecurityObjectCertificates: () => (/* reexport safe */ _results_rfid_SecurityObjectCertificates__WEBPACK_IMPORTED_MODULE_62__.SecurityObjectCertificates),
998
+ /* harmony export */ SignManagementAction: () => (/* reexport safe */ _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.SignManagementAction),
999
+ /* harmony export */ SignerInfo: () => (/* reexport safe */ _results_rfid_SignerInfo__WEBPACK_IMPORTED_MODULE_61__.SignerInfo),
542
1000
  /* harmony export */ Symbol: () => (/* reexport safe */ _results_visual_results_Symbol__WEBPACK_IMPORTED_MODULE_17__.Symbol),
543
- /* harmony export */ TAChallenge: () => (/* reexport safe */ _rfid_TAChallenge__WEBPACK_IMPORTED_MODULE_100__.TAChallenge),
544
- /* harmony export */ TccParams: () => (/* reexport safe */ _rfid_TccParams__WEBPACK_IMPORTED_MODULE_97__.TccParams),
1001
+ /* harmony export */ TAChallenge: () => (/* reexport safe */ _rfid_TAChallenge__WEBPACK_IMPORTED_MODULE_102__.TAChallenge),
1002
+ /* harmony export */ TccParams: () => (/* reexport safe */ _rfid_TccParams__WEBPACK_IMPORTED_MODULE_99__.TccParams),
545
1003
  /* harmony export */ TextField: () => (/* reexport safe */ _results_visual_results_TextField__WEBPACK_IMPORTED_MODULE_19__.TextField),
546
1004
  /* harmony export */ TextResult: () => (/* reexport safe */ _results_visual_results_TextResult__WEBPACK_IMPORTED_MODULE_25__.TextResult),
547
1005
  /* harmony export */ TextSource: () => (/* reexport safe */ _results_visual_results_TextSource__WEBPACK_IMPORTED_MODULE_26__.TextSource),
548
1006
  /* harmony export */ TransactionInfo: () => (/* reexport safe */ _results_TransactionInfo__WEBPACK_IMPORTED_MODULE_30__.TransactionInfo),
549
- /* harmony export */ VDSNCData: () => (/* reexport safe */ _results_visible_digital_seals_VDSNCData__WEBPACK_IMPORTED_MODULE_51__.VDSNCData),
1007
+ /* harmony export */ VDSData: () => (/* reexport safe */ _results_visible_digital_seals_VDSData__WEBPACK_IMPORTED_MODULE_55__.VDSData),
1008
+ /* harmony export */ VDSNCData: () => (/* reexport safe */ _results_visible_digital_seals_VDSNCData__WEBPACK_IMPORTED_MODULE_52__.VDSNCData),
550
1009
  /* harmony export */ Validity: () => (/* reexport safe */ _results_visual_results_Validity__WEBPACK_IMPORTED_MODULE_21__.Validity),
551
1010
  /* harmony export */ Value: () => (/* reexport safe */ _results_visual_results_Value__WEBPACK_IMPORTED_MODULE_15__.Value),
552
- /* harmony export */ ViewContentMode: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_88__.ViewContentMode)
1011
+ /* harmony export */ ViewContentMode: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.ViewContentMode)
553
1012
  /* harmony export */ });
554
1013
  /* harmony import */ var _internal_bridge__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./internal/bridge */ "./src/internal/bridge.js");
555
1014
  /* harmony import */ var _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config/OnlineProcessingConfig */ "./src/config/OnlineProcessingConfig.js");
@@ -587,72 +1046,88 @@ __webpack_require__.r(__webpack_exports__);
587
1046
  /* harmony import */ var _results_status_ResultsStatus__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./results/status/ResultsStatus */ "./src/results/status/ResultsStatus.js");
588
1047
  /* harmony import */ var _results_status_CheckResult__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./results/status/CheckResult */ "./src/results/status/CheckResult.js");
589
1048
  /* harmony import */ var _results_status_OpticalStatus__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./results/status/OpticalStatus */ "./src/results/status/OpticalStatus.js");
590
- /* harmony import */ var _results_authenticity_CheckDiagnose__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./results/authenticity/CheckDiagnose */ "./src/results/authenticity/CheckDiagnose.js");
591
- /* harmony import */ var _results_authenticity_AuthenticityElement__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./results/authenticity/AuthenticityElement */ "./src/results/authenticity/AuthenticityElement.js");
592
- /* harmony import */ var _results_authenticity_AuthenticityResult__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./results/authenticity/AuthenticityResult */ "./src/results/authenticity/AuthenticityResult.js");
593
- /* harmony import */ var _results_authenticity_AuthenticityCheck__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./results/authenticity/AuthenticityCheck */ "./src/results/authenticity/AuthenticityCheck.js");
594
- /* harmony import */ var _results_authenticity_SecurityFeatureType__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./results/authenticity/SecurityFeatureType */ "./src/results/authenticity/SecurityFeatureType.js");
595
- /* harmony import */ var _results_authenticity_Authenticity__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./results/authenticity/Authenticity */ "./src/results/authenticity/Authenticity.js");
596
- /* harmony import */ var _results_barcode_PDF417Info__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./results/barcode/PDF417Info */ "./src/results/barcode/PDF417Info.js");
597
- /* harmony import */ var _results_barcode_BarcodeStatus__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./results/barcode/BarcodeStatus */ "./src/results/barcode/BarcodeStatus.js");
598
- /* harmony import */ var _results_barcode_BarcodeType__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./results/barcode/BarcodeType */ "./src/results/barcode/BarcodeType.js");
599
- /* harmony import */ var _results_barcode_BarcodeResult__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./results/barcode/BarcodeResult */ "./src/results/barcode/BarcodeResult.js");
600
- /* harmony import */ var _results_barcode_BarcodeField__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./results/barcode/BarcodeField */ "./src/results/barcode/BarcodeField.js");
601
- /* harmony import */ var _results_image_quality_ImageQuality__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./results/image_quality/ImageQuality */ "./src/results/image_quality/ImageQuality.js");
602
- /* harmony import */ var _results_image_quality_ImageQualityGroup__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./results/image_quality/ImageQualityGroup */ "./src/results/image_quality/ImageQualityGroup.js");
603
- /* harmony import */ var _results_image_quality_ImageQualityCheckType__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./results/image_quality/ImageQualityCheckType */ "./src/results/image_quality/ImageQualityCheckType.js");
604
- /* harmony import */ var _results_visible_digital_seals_LDSParsingErrorCodes__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./results/visible_digital_seals/LDSParsingErrorCodes */ "./src/results/visible_digital_seals/LDSParsingErrorCodes.js");
605
- /* harmony import */ var _results_visible_digital_seals_VDSNCData__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./results/visible_digital_seals/VDSNCData */ "./src/results/visible_digital_seals/VDSNCData.js");
606
- /* harmony import */ var _results_visible_digital_seals_BytesData__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./results/visible_digital_seals/BytesData */ "./src/results/visible_digital_seals/BytesData.js");
607
- /* harmony import */ var _results_visible_digital_seals_LDSParsingNotificationCodes__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./results/visible_digital_seals/LDSParsingNotificationCodes */ "./src/results/visible_digital_seals/LDSParsingNotificationCodes.js");
608
- /* harmony import */ var _results_rfid_SecurityObject__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./results/rfid/SecurityObject */ "./src/results/rfid/SecurityObject.js");
609
- /* harmony import */ var _results_rfid_CardProperties__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./results/rfid/CardProperties */ "./src/results/rfid/CardProperties.js");
610
- /* harmony import */ var _results_rfid_DataField__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./results/rfid/DataField */ "./src/results/rfid/DataField.js");
611
- /* harmony import */ var _results_rfid_Attribute__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./results/rfid/Attribute */ "./src/results/rfid/Attribute.js");
612
- /* harmony import */ var _results_rfid_SignerInfo__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./results/rfid/SignerInfo */ "./src/results/rfid/SignerInfo.js");
613
- /* harmony import */ var _results_rfid_SecurityObjectCertificates__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./results/rfid/SecurityObjectCertificates */ "./src/results/rfid/SecurityObjectCertificates.js");
614
- /* harmony import */ var _results_rfid_CertificateChain__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./results/rfid/CertificateChain */ "./src/results/rfid/CertificateChain.js");
615
- /* harmony import */ var _results_rfid_Authority__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./results/rfid/Authority */ "./src/results/rfid/Authority.js");
616
- /* harmony import */ var _results_rfid_File__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./results/rfid/File */ "./src/results/rfid/File.js");
617
- /* harmony import */ var _results_rfid_RFIDValue__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./results/rfid/RFIDValue */ "./src/results/rfid/RFIDValue.js");
618
- /* harmony import */ var _results_rfid_RFIDValidity__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./results/rfid/RFIDValidity */ "./src/results/rfid/RFIDValidity.js");
619
- /* harmony import */ var _results_rfid_RFIDDataFileType__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./results/rfid/RFIDDataFileType */ "./src/results/rfid/RFIDDataFileType.js");
620
- /* harmony import */ var _results_rfid_CertificateData__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./results/rfid/CertificateData */ "./src/results/rfid/CertificateData.js");
621
- /* harmony import */ var _results_rfid_FileData__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./results/rfid/FileData */ "./src/results/rfid/FileData.js");
622
- /* harmony import */ var _results_rfid_RFIDCertificateType__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./results/rfid/RFIDCertificateType */ "./src/results/rfid/RFIDCertificateType.js");
623
- /* harmony import */ var _results_rfid_RFIDSessionData__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./results/rfid/RFIDSessionData */ "./src/results/rfid/RFIDSessionData.js");
624
- /* harmony import */ var _results_rfid_Application__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./results/rfid/Application */ "./src/results/rfid/Application.js");
625
- /* harmony import */ var _results_rfid_RFIDAccessControlProcedureType__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./results/rfid/RFIDAccessControlProcedureType */ "./src/results/rfid/RFIDAccessControlProcedureType.js");
626
- /* harmony import */ var _results_rfid_Extension__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./results/rfid/Extension */ "./src/results/rfid/Extension.js");
627
- /* harmony import */ var _results_rfid_AccessControlProcedureType__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./results/rfid/AccessControlProcedureType */ "./src/results/rfid/AccessControlProcedureType.js");
628
- /* harmony import */ var _params_process_params_FilterObject__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./params/process_params/FilterObject */ "./src/params/process_params/FilterObject.js");
629
- /* harmony import */ var _params_process_params_LivenessParams__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./params/process_params/LivenessParams */ "./src/params/process_params/LivenessParams.js");
630
- /* harmony import */ var _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./params/process_params/ProcessParams */ "./src/params/process_params/ProcessParams.js");
631
- /* harmony import */ var _params_process_params_GlaresCheckParams__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./params/process_params/GlaresCheckParams */ "./src/params/process_params/GlaresCheckParams.js");
632
- /* harmony import */ var _params_process_params_FaceApiParams__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./params/process_params/FaceApiParams */ "./src/params/process_params/FaceApiParams.js");
633
- /* harmony import */ var _params_process_params_RFIDParams__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./params/process_params/RFIDParams */ "./src/params/process_params/RFIDParams.js");
634
- /* harmony import */ var _params_process_params_ImageQA__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./params/process_params/ImageQA */ "./src/params/process_params/ImageQA.js");
635
- /* harmony import */ var _params_process_params_AuthenticityParams__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./params/process_params/AuthenticityParams */ "./src/params/process_params/AuthenticityParams.js");
636
- /* harmony import */ var _params_process_params_BackendProcessingConfig__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./params/process_params/BackendProcessingConfig */ "./src/params/process_params/BackendProcessingConfig.js");
637
- /* harmony import */ var _params_process_params_FaceApiSearchParams__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./params/process_params/FaceApiSearchParams */ "./src/params/process_params/FaceApiSearchParams.js");
638
- /* harmony import */ var _params_Functionality__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./params/Functionality */ "./src/params/Functionality.js");
639
- /* harmony import */ var _params_customization_CustomizationFonts__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./params/customization/CustomizationFonts */ "./src/params/customization/CustomizationFonts.js");
640
- /* harmony import */ var _params_customization_CustomizationImages__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./params/customization/CustomizationImages */ "./src/params/customization/CustomizationImages.js");
641
- /* harmony import */ var _params_customization_Font__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./params/customization/Font */ "./src/params/customization/Font.js");
642
- /* harmony import */ var _params_customization_Customization__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./params/customization/Customization */ "./src/params/customization/Customization.js");
643
- /* harmony import */ var _params_customization_CustomizationColors__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./params/customization/CustomizationColors */ "./src/params/customization/CustomizationColors.js");
644
- /* harmony import */ var _params_rfid_scenario_EPassportDataGroups__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./params/rfid_scenario/EPassportDataGroups */ "./src/params/rfid_scenario/EPassportDataGroups.js");
645
- /* harmony import */ var _params_rfid_scenario_EIDDataGroups__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./params/rfid_scenario/EIDDataGroups */ "./src/params/rfid_scenario/EIDDataGroups.js");
646
- /* harmony import */ var _params_rfid_scenario_DTCDataGroup__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./params/rfid_scenario/DTCDataGroup */ "./src/params/rfid_scenario/DTCDataGroup.js");
647
- /* harmony import */ var _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./params/rfid_scenario/RFIDScenario */ "./src/params/rfid_scenario/RFIDScenario.js");
648
- /* harmony import */ var _params_rfid_scenario_EDLDataGroups__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./params/rfid_scenario/EDLDataGroups */ "./src/params/rfid_scenario/EDLDataGroups.js");
649
- /* harmony import */ var _rfid_PAResourcesIssuer__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./rfid/PAResourcesIssuer */ "./src/rfid/PAResourcesIssuer.js");
650
- /* harmony import */ var _rfid_RFIDErrorCodes__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./rfid/RFIDErrorCodes */ "./src/rfid/RFIDErrorCodes.js");
651
- /* harmony import */ var _rfid_TccParams__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./rfid/TccParams */ "./src/rfid/TccParams.js");
652
- /* harmony import */ var _rfid_RFIDNotification__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./rfid/RFIDNotification */ "./src/rfid/RFIDNotification.js");
653
- /* harmony import */ var _rfid_PAAttribute__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./rfid/PAAttribute */ "./src/rfid/PAAttribute.js");
654
- /* harmony import */ var _rfid_TAChallenge__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./rfid/TAChallenge */ "./src/rfid/TAChallenge.js");
655
- /* harmony import */ var _rfid_PKDCertificate__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./rfid/PKDCertificate */ "./src/rfid/PKDCertificate.js");
1049
+ /* harmony import */ var _results_status_AgeStatus__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./results/status/AgeStatus */ "./src/results/status/AgeStatus.js");
1050
+ /* harmony import */ var _results_authenticity_CheckDiagnose__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./results/authenticity/CheckDiagnose */ "./src/results/authenticity/CheckDiagnose.js");
1051
+ /* harmony import */ var _results_authenticity_AuthenticityElement__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./results/authenticity/AuthenticityElement */ "./src/results/authenticity/AuthenticityElement.js");
1052
+ /* harmony import */ var _results_authenticity_AuthenticityResult__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./results/authenticity/AuthenticityResult */ "./src/results/authenticity/AuthenticityResult.js");
1053
+ /* harmony import */ var _results_authenticity_AuthenticityCheck__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./results/authenticity/AuthenticityCheck */ "./src/results/authenticity/AuthenticityCheck.js");
1054
+ /* harmony import */ var _results_authenticity_SecurityFeatureType__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./results/authenticity/SecurityFeatureType */ "./src/results/authenticity/SecurityFeatureType.js");
1055
+ /* harmony import */ var _results_authenticity_Authenticity__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./results/authenticity/Authenticity */ "./src/results/authenticity/Authenticity.js");
1056
+ /* harmony import */ var _results_barcode_PDF417Info__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./results/barcode/PDF417Info */ "./src/results/barcode/PDF417Info.js");
1057
+ /* harmony import */ var _results_barcode_BarcodeStatus__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./results/barcode/BarcodeStatus */ "./src/results/barcode/BarcodeStatus.js");
1058
+ /* harmony import */ var _results_barcode_BarcodeType__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./results/barcode/BarcodeType */ "./src/results/barcode/BarcodeType.js");
1059
+ /* harmony import */ var _results_barcode_BarcodeResult__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./results/barcode/BarcodeResult */ "./src/results/barcode/BarcodeResult.js");
1060
+ /* harmony import */ var _results_barcode_BarcodeField__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./results/barcode/BarcodeField */ "./src/results/barcode/BarcodeField.js");
1061
+ /* harmony import */ var _results_image_quality_ImageQuality__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./results/image_quality/ImageQuality */ "./src/results/image_quality/ImageQuality.js");
1062
+ /* harmony import */ var _results_image_quality_ImageQualityGroup__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./results/image_quality/ImageQualityGroup */ "./src/results/image_quality/ImageQualityGroup.js");
1063
+ /* harmony import */ var _results_image_quality_ImageQualityCheckType__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./results/image_quality/ImageQualityCheckType */ "./src/results/image_quality/ImageQualityCheckType.js");
1064
+ /* harmony import */ var _results_visible_digital_seals_LDSParsingErrorCodes__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./results/visible_digital_seals/LDSParsingErrorCodes */ "./src/results/visible_digital_seals/LDSParsingErrorCodes.js");
1065
+ /* harmony import */ var _results_visible_digital_seals_VDSNCData__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./results/visible_digital_seals/VDSNCData */ "./src/results/visible_digital_seals/VDSNCData.js");
1066
+ /* harmony import */ var _results_visible_digital_seals_BytesData__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./results/visible_digital_seals/BytesData */ "./src/results/visible_digital_seals/BytesData.js");
1067
+ /* harmony import */ var _results_visible_digital_seals_DocFeature__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./results/visible_digital_seals/DocFeature */ "./src/results/visible_digital_seals/DocFeature.js");
1068
+ /* harmony import */ var _results_visible_digital_seals_VDSData__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./results/visible_digital_seals/VDSData */ "./src/results/visible_digital_seals/VDSData.js");
1069
+ /* harmony import */ var _results_visible_digital_seals_LDSParsingNotificationCodes__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./results/visible_digital_seals/LDSParsingNotificationCodes */ "./src/results/visible_digital_seals/LDSParsingNotificationCodes.js");
1070
+ /* harmony import */ var _results_rfid_SecurityObject__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./results/rfid/SecurityObject */ "./src/results/rfid/SecurityObject.js");
1071
+ /* harmony import */ var _results_rfid_CardProperties__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./results/rfid/CardProperties */ "./src/results/rfid/CardProperties.js");
1072
+ /* harmony import */ var _results_rfid_DataField__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./results/rfid/DataField */ "./src/results/rfid/DataField.js");
1073
+ /* harmony import */ var _results_rfid_Attribute__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./results/rfid/Attribute */ "./src/results/rfid/Attribute.js");
1074
+ /* harmony import */ var _results_rfid_SignerInfo__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./results/rfid/SignerInfo */ "./src/results/rfid/SignerInfo.js");
1075
+ /* harmony import */ var _results_rfid_SecurityObjectCertificates__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./results/rfid/SecurityObjectCertificates */ "./src/results/rfid/SecurityObjectCertificates.js");
1076
+ /* harmony import */ var _results_rfid_CertificateChain__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./results/rfid/CertificateChain */ "./src/results/rfid/CertificateChain.js");
1077
+ /* harmony import */ var _results_rfid_Authority__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./results/rfid/Authority */ "./src/results/rfid/Authority.js");
1078
+ /* harmony import */ var _results_rfid_File__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./results/rfid/File */ "./src/results/rfid/File.js");
1079
+ /* harmony import */ var _results_rfid_RFIDValue__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./results/rfid/RFIDValue */ "./src/results/rfid/RFIDValue.js");
1080
+ /* harmony import */ var _results_rfid_RFIDValidity__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./results/rfid/RFIDValidity */ "./src/results/rfid/RFIDValidity.js");
1081
+ /* harmony import */ var _results_rfid_RFIDDataFileType__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./results/rfid/RFIDDataFileType */ "./src/results/rfid/RFIDDataFileType.js");
1082
+ /* harmony import */ var _results_rfid_CertificateData__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./results/rfid/CertificateData */ "./src/results/rfid/CertificateData.js");
1083
+ /* harmony import */ var _results_rfid_FileData__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./results/rfid/FileData */ "./src/results/rfid/FileData.js");
1084
+ /* harmony import */ var _results_rfid_RFIDCertificateType__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./results/rfid/RFIDCertificateType */ "./src/results/rfid/RFIDCertificateType.js");
1085
+ /* harmony import */ var _results_rfid_RFIDSessionData__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./results/rfid/RFIDSessionData */ "./src/results/rfid/RFIDSessionData.js");
1086
+ /* harmony import */ var _results_rfid_Application__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./results/rfid/Application */ "./src/results/rfid/Application.js");
1087
+ /* harmony import */ var _results_rfid_RFIDAccessControlProcedureType__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./results/rfid/RFIDAccessControlProcedureType */ "./src/results/rfid/RFIDAccessControlProcedureType.js");
1088
+ /* harmony import */ var _results_rfid_Extension__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./results/rfid/Extension */ "./src/results/rfid/Extension.js");
1089
+ /* harmony import */ var _results_rfid_AccessControlProcedureType__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./results/rfid/AccessControlProcedureType */ "./src/results/rfid/AccessControlProcedureType.js");
1090
+ /* harmony import */ var _params_process_params_LivenessParams__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./params/process_params/LivenessParams */ "./src/params/process_params/LivenessParams.js");
1091
+ /* harmony import */ var _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./params/process_params/ProcessParams */ "./src/params/process_params/ProcessParams.js");
1092
+ /* harmony import */ var _params_process_params_GlaresCheckParams__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./params/process_params/GlaresCheckParams */ "./src/params/process_params/GlaresCheckParams.js");
1093
+ /* harmony import */ var _params_process_params_FaceApiParams__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./params/process_params/FaceApiParams */ "./src/params/process_params/FaceApiParams.js");
1094
+ /* harmony import */ var _params_process_params_RFIDParams__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./params/process_params/RFIDParams */ "./src/params/process_params/RFIDParams.js");
1095
+ /* harmony import */ var _params_process_params_ImageQA__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./params/process_params/ImageQA */ "./src/params/process_params/ImageQA.js");
1096
+ /* harmony import */ var _params_process_params_AuthenticityParams__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./params/process_params/AuthenticityParams */ "./src/params/process_params/AuthenticityParams.js");
1097
+ /* harmony import */ var _params_process_params_BackendProcessingConfig__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./params/process_params/BackendProcessingConfig */ "./src/params/process_params/BackendProcessingConfig.js");
1098
+ /* harmony import */ var _params_process_params_FaceApiSearchParams__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./params/process_params/FaceApiSearchParams */ "./src/params/process_params/FaceApiSearchParams.js");
1099
+ /* harmony import */ var _params_Functionality__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./params/Functionality */ "./src/params/Functionality.js");
1100
+ /* harmony import */ var _params_customization_CustomizationFonts__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./params/customization/CustomizationFonts */ "./src/params/customization/CustomizationFonts.js");
1101
+ /* harmony import */ var _params_customization_CustomizationImages__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./params/customization/CustomizationImages */ "./src/params/customization/CustomizationImages.js");
1102
+ /* harmony import */ var _params_customization_Font__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./params/customization/Font */ "./src/params/customization/Font.js");
1103
+ /* harmony import */ var _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./params/customization/Customization */ "./src/params/customization/Customization.js");
1104
+ /* harmony import */ var _params_customization_CustomizationColors__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./params/customization/CustomizationColors */ "./src/params/customization/CustomizationColors.js");
1105
+ /* harmony import */ var _params_rfid_scenario_EPassportDataGroups__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./params/rfid_scenario/EPassportDataGroups */ "./src/params/rfid_scenario/EPassportDataGroups.js");
1106
+ /* harmony import */ var _params_rfid_scenario_EIDDataGroups__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./params/rfid_scenario/EIDDataGroups */ "./src/params/rfid_scenario/EIDDataGroups.js");
1107
+ /* harmony import */ var _params_rfid_scenario_DTCDataGroup__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./params/rfid_scenario/DTCDataGroup */ "./src/params/rfid_scenario/DTCDataGroup.js");
1108
+ /* harmony import */ var _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./params/rfid_scenario/RFIDScenario */ "./src/params/rfid_scenario/RFIDScenario.js");
1109
+ /* harmony import */ var _params_rfid_scenario_EDLDataGroups__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./params/rfid_scenario/EDLDataGroups */ "./src/params/rfid_scenario/EDLDataGroups.js");
1110
+ /* harmony import */ var _rfid_PAResourcesIssuer__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./rfid/PAResourcesIssuer */ "./src/rfid/PAResourcesIssuer.js");
1111
+ /* harmony import */ var _rfid_RFIDErrorCodes__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./rfid/RFIDErrorCodes */ "./src/rfid/RFIDErrorCodes.js");
1112
+ /* harmony import */ var _rfid_TccParams__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./rfid/TccParams */ "./src/rfid/TccParams.js");
1113
+ /* harmony import */ var _rfid_RFIDNotification__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./rfid/RFIDNotification */ "./src/rfid/RFIDNotification.js");
1114
+ /* harmony import */ var _rfid_PAAttribute__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./rfid/PAAttribute */ "./src/rfid/PAAttribute.js");
1115
+ /* harmony import */ var _rfid_TAChallenge__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./rfid/TAChallenge */ "./src/rfid/TAChallenge.js");
1116
+ /* harmony import */ var _rfid_PKDCertificate__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./rfid/PKDCertificate */ "./src/rfid/PKDCertificate.js");
1117
+ /* harmony import */ var _engagement_DataRetrieval__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./engagement/DataRetrieval */ "./src/engagement/DataRetrieval.js");
1118
+ /* harmony import */ var _engagement_DeviceEngagement__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./engagement/DeviceEngagement */ "./src/engagement/DeviceEngagement.js");
1119
+ /* harmony import */ var _engagement_NameSpaceMDL__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./engagement/NameSpaceMDL */ "./src/engagement/NameSpaceMDL.js");
1120
+ /* harmony import */ var _engagement_DocumentRequestMDL__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./engagement/DocumentRequestMDL */ "./src/engagement/DocumentRequestMDL.js");
1121
+ /* harmony import */ var _engagement_DeviceRetrievalMethod__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./engagement/DeviceRetrievalMethod */ "./src/engagement/DeviceRetrievalMethod.js");
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
656
1131
 
657
1132
 
658
1133
 
@@ -857,28 +1332,28 @@ class DocumentReader {
857
1332
  }
858
1333
 
859
1334
  get functionality() { return this._functionality }
860
- _functionality = new _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.Functionality()
1335
+ _functionality = new _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.Functionality()
861
1336
  set functionality(val) {
862
1337
  this._functionality = val;
863
1338
  this._functionality._apply();
864
1339
  }
865
1340
 
866
1341
  get processParams() { return this._processParams }
867
- _processParams = new _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__.ProcessParams()
1342
+ _processParams = new _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.ProcessParams()
868
1343
  set processParams(val) {
869
1344
  this._processParams = val;
870
1345
  this._processParams._apply();
871
1346
  }
872
1347
 
873
1348
  get customization() { return this._customization }
874
- _customization = new _params_customization_Customization__WEBPACK_IMPORTED_MODULE_88__.Customization()
1349
+ _customization = new _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.Customization()
875
1350
  set customization(val) {
876
1351
  this._customization = val;
877
1352
  this._customization._apply();
878
1353
  }
879
1354
 
880
1355
  get rfidScenario() { return this._rfidScenario }
881
- _rfidScenario = new _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.RFIDScenario()
1356
+ _rfidScenario = new _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDScenario()
882
1357
  set rfidScenario(val) {
883
1358
  this._rfidScenario = val;
884
1359
  this._rfidScenario._apply();
@@ -894,10 +1369,10 @@ class DocumentReader {
894
1369
 
895
1370
  resetConfiguration() {
896
1371
  (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("resetConfiguration", []);
897
- this._functionality = new _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.Functionality();
898
- this._processParams = new _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__.ProcessParams();
899
- this._customization = new _params_customization_Customization__WEBPACK_IMPORTED_MODULE_88__.Customization();
900
- this._rfidScenario = new _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.RFIDScenario();
1372
+ this._functionality = new _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.Functionality();
1373
+ this._processParams = new _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.ProcessParams();
1374
+ this._customization = new _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.Customization();
1375
+ this._rfidScenario = new _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDScenario();
901
1376
  }
902
1377
 
903
1378
  set onCustomButtonTapped(completion) {
@@ -1027,6 +1502,48 @@ class DocumentReader {
1027
1502
  (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("endBackendTransaction", []);
1028
1503
  }
1029
1504
 
1505
+ async readMDL(type, retrieval) {
1506
+ var response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("startReadMDl", [type, retrieval.toJson()]);
1507
+ var jsonObject = JSON.parse(response);
1508
+ return [
1509
+ jsonObject["action"],
1510
+ _results_Results__WEBPACK_IMPORTED_MODULE_29__.Results.fromJson(jsonObject["results"]),
1511
+ _info_DocReaderException__WEBPACK_IMPORTED_MODULE_8__.DocReaderException.fromJson(jsonObject["error"]),
1512
+ ]
1513
+ }
1514
+
1515
+ async engageDevice(type, options) {
1516
+ var response = "";
1517
+ if (options?.withoutUI != true) {
1518
+ response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("startEngageDevice", [type.value]);
1519
+ } else if (type == _engagement_DeviceEngagement__WEBPACK_IMPORTED_MODULE_105__.MDLDeviceEngagement.NFC) {
1520
+ response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("engageDeviceNFC", []);
1521
+ } else if (type == _engagement_DeviceEngagement__WEBPACK_IMPORTED_MODULE_105__.MDLDeviceEngagement.QR && options?.data != null) {
1522
+ response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("engageDeviceData", [options.data]);
1523
+ }
1524
+
1525
+ var jsonObject = JSON.parse(response);
1526
+ return [
1527
+ _engagement_DeviceEngagement__WEBPACK_IMPORTED_MODULE_105__.DeviceEngagement.fromJson(jsonObject["deviceEngagement"]),
1528
+ _info_DocReaderException__WEBPACK_IMPORTED_MODULE_8__.DocReaderException.fromJson(jsonObject["error"]),
1529
+ ]
1530
+ }
1531
+
1532
+ async retrieveData(retrieval, options) {
1533
+ var func = "startRetrieveData";
1534
+ if (options?.withoutUI == _engagement_DataRetrieval__WEBPACK_IMPORTED_MODULE_104__.MDLDeviceRetrieval.NFC) func = "engageDeviceNFC";
1535
+ if (options?.withoutUI == _engagement_DataRetrieval__WEBPACK_IMPORTED_MODULE_104__.MDLDeviceRetrieval.BLE) func = "engageDeviceBLE";
1536
+
1537
+ var response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)(func, [retrieval.toJson(), options?.engagement?.toJson()]);
1538
+ var jsonObject = JSON.parse(response);
1539
+
1540
+ return [
1541
+ jsonObject["action"],
1542
+ _results_Results__WEBPACK_IMPORTED_MODULE_29__.Results.fromJson(jsonObject["results"]),
1543
+ _info_DocReaderException__WEBPACK_IMPORTED_MODULE_8__.DocReaderException.fromJson(jsonObject["error"]),
1544
+ ]
1545
+ }
1546
+
1030
1547
  _successOrErrorFromJson(jsonString) {
1031
1548
  var jsonObject = JSON.parse(jsonString);
1032
1549
  var success = jsonObject["success"];
@@ -1051,22 +1568,22 @@ class DocumentReader {
1051
1568
 
1052
1569
  async _getProcessParams() {
1053
1570
  const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getProcessParams", []);
1054
- return _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_76__.ProcessParams.fromJson(JSON.parse(response));
1571
+ return _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.ProcessParams.fromJson(JSON.parse(response));
1055
1572
  }
1056
1573
 
1057
1574
  async _getFunctionality() {
1058
1575
  const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getFunctionality", []);
1059
- return _params_Functionality__WEBPACK_IMPORTED_MODULE_84__.Functionality.fromJson(JSON.parse(response));
1576
+ return _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.Functionality.fromJson(JSON.parse(response));
1060
1577
  }
1061
1578
 
1062
1579
  async _getCustomization() {
1063
1580
  const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getCustomization", []);
1064
- return _params_customization_Customization__WEBPACK_IMPORTED_MODULE_88__.Customization.fromJson(JSON.parse(response));
1581
+ return _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.Customization.fromJson(JSON.parse(response));
1065
1582
  }
1066
1583
 
1067
1584
  async _getRfidScenario() {
1068
1585
  const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getRfidScenario", []);
1069
- return _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_93__.RFIDScenario.fromJson(JSON.parse(response));
1586
+ return _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDScenario.fromJson(JSON.parse(response));
1070
1587
  }
1071
1588
 
1072
1589
  async _getLicense() {
@@ -1157,13 +1674,13 @@ DocReaderAction.stopped = function (value) {
1157
1674
  }
1158
1675
 
1159
1676
 
1160
- /***/ }),
1677
+ /***/ },
1161
1678
 
1162
- /***/ "./src/info/DocReaderException.js":
1679
+ /***/ "./src/info/DocReaderException.js"
1163
1680
  /*!****************************************!*\
1164
1681
  !*** ./src/info/DocReaderException.js ***!
1165
1682
  \****************************************/
1166
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1683
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1167
1684
 
1168
1685
  __webpack_require__.r(__webpack_exports__);
1169
1686
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1225,6 +1742,7 @@ const ErrorCodes = {
1225
1742
  CAMERA_NO_PERMISSION: 29,
1226
1743
  CAMERA_NOT_AVAILABLE: 30,
1227
1744
  CANNOT_USE_CAMERA_IN_SCENARIO: 40,
1745
+ BLUETOOTH_NO_PERMISSION: 41,
1228
1746
  BACKEND_ONLINE_PROCESSING: 303,
1229
1747
  WRONG_INPUT: 400,
1230
1748
  RESULT_UNAVAILABLE: 410,
@@ -1234,17 +1752,18 @@ const ErrorCodes = {
1234
1752
  FEATURE_BLUETOOTH_LE_NOT_SUPPORTED: 601,
1235
1753
  APP_BACKGROUND: 700,
1236
1754
  ONLINE_PROCESSING_WRONG_INPUT: 800,
1755
+ MDL_EXCEPTION: 900,
1237
1756
  NATIVE_JAVA_EXCEPTION: 1000
1238
1757
  }
1239
1758
 
1240
1759
 
1241
- /***/ }),
1760
+ /***/ },
1242
1761
 
1243
- /***/ "./src/info/DocReaderScenario.js":
1762
+ /***/ "./src/info/DocReaderScenario.js"
1244
1763
  /*!***************************************!*\
1245
1764
  !*** ./src/info/DocReaderScenario.js ***!
1246
1765
  \***************************************/
1247
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1766
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1248
1767
 
1249
1768
  __webpack_require__.r(__webpack_exports__);
1250
1769
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1343,13 +1862,13 @@ const DocReaderOrientation = {
1343
1862
  }
1344
1863
 
1345
1864
 
1346
- /***/ }),
1865
+ /***/ },
1347
1866
 
1348
- /***/ "./src/info/DocReaderVersion.js":
1867
+ /***/ "./src/info/DocReaderVersion.js"
1349
1868
  /*!**************************************!*\
1350
1869
  !*** ./src/info/DocReaderVersion.js ***!
1351
1870
  \**************************************/
1352
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1871
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1353
1872
 
1354
1873
  __webpack_require__.r(__webpack_exports__);
1355
1874
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1390,13 +1909,13 @@ class DocReaderVersion {
1390
1909
  }
1391
1910
 
1392
1911
 
1393
- /***/ }),
1912
+ /***/ },
1394
1913
 
1395
- /***/ "./src/info/DocumentsDatabase.js":
1914
+ /***/ "./src/info/DocumentsDatabase.js"
1396
1915
  /*!***************************************!*\
1397
1916
  !*** ./src/info/DocumentsDatabase.js ***!
1398
1917
  \***************************************/
1399
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1918
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1400
1919
 
1401
1920
  __webpack_require__.r(__webpack_exports__);
1402
1921
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1443,13 +1962,13 @@ class DocumentsDatabase {
1443
1962
  }
1444
1963
 
1445
1964
 
1446
- /***/ }),
1965
+ /***/ },
1447
1966
 
1448
- /***/ "./src/info/License.js":
1967
+ /***/ "./src/info/License.js"
1449
1968
  /*!*****************************!*\
1450
1969
  !*** ./src/info/License.js ***!
1451
1970
  \*****************************/
1452
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
1971
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1453
1972
 
1454
1973
  __webpack_require__.r(__webpack_exports__);
1455
1974
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1487,13 +2006,13 @@ class License {
1487
2006
  }
1488
2007
 
1489
2008
 
1490
- /***/ }),
2009
+ /***/ },
1491
2010
 
1492
- /***/ "./src/info/PrepareProgress.js":
2011
+ /***/ "./src/info/PrepareProgress.js"
1493
2012
  /*!*************************************!*\
1494
2013
  !*** ./src/info/PrepareProgress.js ***!
1495
2014
  \*************************************/
1496
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
2015
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1497
2016
 
1498
2017
  __webpack_require__.r(__webpack_exports__);
1499
2018
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1532,13 +2051,13 @@ class PrepareProgress {
1532
2051
  }
1533
2052
 
1534
2053
 
1535
- /***/ }),
2054
+ /***/ },
1536
2055
 
1537
- /***/ "./src/info/RFIDException.js":
2056
+ /***/ "./src/info/RFIDException.js"
1538
2057
  /*!***********************************!*\
1539
2058
  !*** ./src/info/RFIDException.js ***!
1540
2059
  \***********************************/
1541
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
2060
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1542
2061
 
1543
2062
  __webpack_require__.r(__webpack_exports__);
1544
2063
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1573,13 +2092,13 @@ class RFIDException {
1573
2092
  }
1574
2093
 
1575
2094
 
1576
- /***/ }),
2095
+ /***/ },
1577
2096
 
1578
- /***/ "./src/internal/bridge.js":
2097
+ /***/ "./src/internal/bridge.js"
1579
2098
  /*!********************************!*\
1580
2099
  !*** ./src/internal/bridge.js ***!
1581
2100
  \********************************/
1582
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
2101
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1583
2102
 
1584
2103
  __webpack_require__.r(__webpack_exports__);
1585
2104
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1704,13 +2223,13 @@ function _setTaSignatureCompletion(completion) {
1704
2223
  }
1705
2224
 
1706
2225
 
1707
- /***/ }),
2226
+ /***/ },
1708
2227
 
1709
- /***/ "./src/internal/cordova.js":
2228
+ /***/ "./src/internal/cordova.js"
1710
2229
  /*!*********************************!*\
1711
2230
  !*** ./src/internal/cordova.js ***!
1712
2231
  \*********************************/
1713
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
2232
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1714
2233
 
1715
2234
  __webpack_require__.r(__webpack_exports__);
1716
2235
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1735,13 +2254,13 @@ class NativeEventEmitter {
1735
2254
  }
1736
2255
  }
1737
2256
 
1738
- /***/ }),
2257
+ /***/ },
1739
2258
 
1740
- /***/ "./src/params/Functionality.js":
2259
+ /***/ "./src/params/Functionality.js"
1741
2260
  /*!*************************************!*\
1742
2261
  !*** ./src/params/Functionality.js ***!
1743
2262
  \*************************************/
1744
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
2263
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
1745
2264
 
1746
2265
  __webpack_require__.r(__webpack_exports__);
1747
2266
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -1869,6 +2388,12 @@ class Functionality {
1869
2388
  this._set({ "preventScreenRecording": val });
1870
2389
  }
1871
2390
 
2391
+ get homeIndicatorAutoHide() { return this._homeIndicatorAutoHide; }
2392
+ set homeIndicatorAutoHide(val) {
2393
+ this._homeIndicatorAutoHide = val;
2394
+ this._set({ "homeIndicatorAutoHide": val });
2395
+ }
2396
+
1872
2397
  get showCaptureButtonDelayFromDetect() { return this._showCaptureButtonDelayFromDetect; }
1873
2398
  set showCaptureButtonDelayFromDetect(val) {
1874
2399
  this._showCaptureButtonDelayFromDetect = val;
@@ -1947,6 +2472,12 @@ class Functionality {
1947
2472
  this._set({ "videoRecordingSizeDownscaleFactor": val });
1948
2473
  }
1949
2474
 
2475
+ get mdlTimeout() { return this._mdlTimeout; }
2476
+ set mdlTimeout(val) {
2477
+ this._mdlTimeout = val;
2478
+ this._set({ "mdlTimeout": val });
2479
+ }
2480
+
1950
2481
  get excludedCamera2Models() { return this._excludedCamera2Models; }
1951
2482
  set excludedCamera2Models(val) {
1952
2483
  this._excludedCamera2Models = val;
@@ -1987,6 +2518,7 @@ class Functionality {
1987
2518
  result._singleResult = jsonObject["singleResult"];
1988
2519
  result._torchTurnedOn = jsonObject["torchTurnedOn"];
1989
2520
  result._preventScreenRecording = jsonObject["preventScreenRecording"];
2521
+ result._homeIndicatorAutoHide = jsonObject["homeIndicatorAutoHide"];
1990
2522
  result._showCaptureButtonDelayFromDetect = jsonObject["showCaptureButtonDelayFromDetect"];
1991
2523
  result._showCaptureButtonDelayFromStart = jsonObject["showCaptureButtonDelayFromStart"];
1992
2524
  result._rfidTimeout = jsonObject["rfidTimeout"];
@@ -2000,6 +2532,7 @@ class Functionality {
2000
2532
  result._zoomFactor = jsonObject["zoomFactor"];
2001
2533
  result._exposure = jsonObject["exposure"];
2002
2534
  result._videoRecordingSizeDownscaleFactor = jsonObject["videoRecordingSizeDownscaleFactor"];
2535
+ result._mdlTimeout = jsonObject["mdlTimeout"];
2003
2536
  result._excludedCamera2Models = jsonObject["excludedCamera2Models"];
2004
2537
  result._cameraResolutionAndroid = CameraSize.fromJson(jsonObject["cameraSize"]);
2005
2538
  result._cameraResolutionIOS = jsonObject["videoSessionPreset"];
@@ -2027,6 +2560,7 @@ class Functionality {
2027
2560
  "singleResult": this.singleResult,
2028
2561
  "torchTurnedOn": this.torchTurnedOn,
2029
2562
  "preventScreenRecording": this.preventScreenRecording,
2563
+ "homeIndicatorAutoHide": this.homeIndicatorAutoHide,
2030
2564
  "showCaptureButtonDelayFromDetect": this.showCaptureButtonDelayFromDetect,
2031
2565
  "showCaptureButtonDelayFromStart": this.showCaptureButtonDelayFromStart,
2032
2566
  "rfidTimeout": this.rfidTimeout,
@@ -2040,6 +2574,7 @@ class Functionality {
2040
2574
  "zoomFactor": this.zoomFactor,
2041
2575
  "exposure": this.exposure,
2042
2576
  "videoRecordingSizeDownscaleFactor": this.videoRecordingSizeDownscaleFactor,
2577
+ "mdlTimeout": this.mdlTimeout,
2043
2578
  "excludedCamera2Models": this.excludedCamera2Models,
2044
2579
  "cameraSize": this.cameraResolutionAndroid?.toJson(),
2045
2580
  "videoSessionPreset": this.cameraResolutionIOS,
@@ -2121,13 +2656,13 @@ class CameraSize {
2121
2656
  }
2122
2657
 
2123
2658
 
2124
- /***/ }),
2659
+ /***/ },
2125
2660
 
2126
- /***/ "./src/params/customization/Customization.js":
2661
+ /***/ "./src/params/customization/Customization.js"
2127
2662
  /*!***************************************************!*\
2128
2663
  !*** ./src/params/customization/Customization.js ***!
2129
2664
  \***************************************************/
2130
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
2665
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
2131
2666
 
2132
2667
  __webpack_require__.r(__webpack_exports__);
2133
2668
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -2385,6 +2920,12 @@ class Customization {
2385
2920
  this._set({ "cameraPreviewVerticalPositionMultiplier": val });
2386
2921
  }
2387
2922
 
2923
+ get multipageButtonPositionMultiplier() { return this._multipageButtonPositionMultiplier; }
2924
+ set multipageButtonPositionMultiplier(val) {
2925
+ this._multipageButtonPositionMultiplier = val;
2926
+ this._set({ "multipageButtonPositionMultiplier": val });
2927
+ }
2928
+
2388
2929
  get multipageAnimationFrontImage() { return this._multipageAnimationFrontImage; }
2389
2930
  set multipageAnimationFrontImage(val) {
2390
2931
  this._multipageAnimationFrontImage = val;
@@ -2621,6 +3162,7 @@ class Customization {
2621
3162
  result._activityIndicatorPortraitPositionMultiplier = jsonObject["activityIndicatorPortraitPositionMultiplier"];
2622
3163
  result._activityIndicatorLandscapePositionMultiplier = jsonObject["activityIndicatorLandscapePositionMultiplier"];
2623
3164
  result._cameraPreviewVerticalPositionMultiplier = jsonObject["cameraPreviewVerticalPositionMultiplier"];
3165
+ result._multipageButtonPositionMultiplier = jsonObject["multipageButtonPositionMultiplier"];
2624
3166
  result._multipageAnimationFrontImage = jsonObject["multipageAnimationFrontImage"];
2625
3167
  result._multipageAnimationBackImage = jsonObject["multipageAnimationBackImage"];
2626
3168
  result._borderBackgroundImage = jsonObject["borderBackgroundImage"];
@@ -2699,6 +3241,7 @@ class Customization {
2699
3241
  "activityIndicatorPortraitPositionMultiplier": this.activityIndicatorPortraitPositionMultiplier,
2700
3242
  "activityIndicatorLandscapePositionMultiplier": this.activityIndicatorLandscapePositionMultiplier,
2701
3243
  "cameraPreviewVerticalPositionMultiplier": this.cameraPreviewVerticalPositionMultiplier,
3244
+ "multipageButtonPositionMultiplier": this.multipageButtonPositionMultiplier,
2702
3245
  "multipageAnimationFrontImage": this.multipageAnimationFrontImage,
2703
3246
  "multipageAnimationBackImage": this.multipageAnimationBackImage,
2704
3247
  "borderBackgroundImage": this.borderBackgroundImage,
@@ -2778,13 +3321,13 @@ const CustomButtonTag = {
2778
3321
  };
2779
3322
 
2780
3323
 
2781
- /***/ }),
3324
+ /***/ },
2782
3325
 
2783
- /***/ "./src/params/customization/CustomizationColors.js":
3326
+ /***/ "./src/params/customization/CustomizationColors.js"
2784
3327
  /*!*********************************************************!*\
2785
3328
  !*** ./src/params/customization/CustomizationColors.js ***!
2786
3329
  \*********************************************************/
2787
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3330
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
2788
3331
 
2789
3332
  __webpack_require__.r(__webpack_exports__);
2790
3333
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -2912,13 +3455,13 @@ class CustomizationColors {
2912
3455
  }
2913
3456
 
2914
3457
 
2915
- /***/ }),
3458
+ /***/ },
2916
3459
 
2917
- /***/ "./src/params/customization/CustomizationFonts.js":
3460
+ /***/ "./src/params/customization/CustomizationFonts.js"
2918
3461
  /*!********************************************************!*\
2919
3462
  !*** ./src/params/customization/CustomizationFonts.js ***!
2920
3463
  \********************************************************/
2921
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3464
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
2922
3465
 
2923
3466
  __webpack_require__.r(__webpack_exports__);
2924
3467
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -3000,13 +3543,13 @@ class CustomizationFonts {
3000
3543
  }
3001
3544
 
3002
3545
 
3003
- /***/ }),
3546
+ /***/ },
3004
3547
 
3005
- /***/ "./src/params/customization/CustomizationImages.js":
3548
+ /***/ "./src/params/customization/CustomizationImages.js"
3006
3549
  /*!*********************************************************!*\
3007
3550
  !*** ./src/params/customization/CustomizationImages.js ***!
3008
3551
  \*********************************************************/
3009
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3552
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3010
3553
 
3011
3554
  __webpack_require__.r(__webpack_exports__);
3012
3555
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -3054,13 +3597,13 @@ class CustomizationImages {
3054
3597
  }
3055
3598
 
3056
3599
 
3057
- /***/ }),
3600
+ /***/ },
3058
3601
 
3059
- /***/ "./src/params/customization/Font.js":
3602
+ /***/ "./src/params/customization/Font.js"
3060
3603
  /*!******************************************!*\
3061
3604
  !*** ./src/params/customization/Font.js ***!
3062
3605
  \******************************************/
3063
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3606
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3064
3607
 
3065
3608
  __webpack_require__.r(__webpack_exports__);
3066
3609
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -3105,23 +3648,20 @@ const FontStyle = {
3105
3648
  };
3106
3649
 
3107
3650
 
3108
- /***/ }),
3651
+ /***/ },
3109
3652
 
3110
- /***/ "./src/params/process_params/AuthenticityParams.js":
3653
+ /***/ "./src/params/process_params/AuthenticityParams.js"
3111
3654
  /*!*********************************************************!*\
3112
3655
  !*** ./src/params/process_params/AuthenticityParams.js ***!
3113
3656
  \*********************************************************/
3114
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3657
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3115
3658
 
3116
3659
  __webpack_require__.r(__webpack_exports__);
3117
3660
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
3118
- /* harmony export */ AuthenticityCheckType: () => (/* binding */ AuthenticityCheckType),
3119
3661
  /* harmony export */ AuthenticityParams: () => (/* binding */ AuthenticityParams)
3120
3662
  /* harmony export */ });
3121
3663
  /* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../index */ "./src/index.js");
3122
3664
  /* harmony import */ var _LivenessParams__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./LivenessParams */ "./src/params/process_params/LivenessParams.js");
3123
- /* harmony import */ var _FilterObject__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./FilterObject */ "./src/params/process_params/FilterObject.js");
3124
-
3125
3665
 
3126
3666
 
3127
3667
 
@@ -3132,6 +3672,7 @@ class AuthenticityParams {
3132
3672
  this._set({ "useLivenessCheck": val });
3133
3673
  }
3134
3674
 
3675
+ _livenessParams = new _LivenessParams__WEBPACK_IMPORTED_MODULE_1__.LivenessParams();
3135
3676
  get livenessParams() { return this._livenessParams; }
3136
3677
  set livenessParams(val) { (this._livenessParams = val)._apply(); }
3137
3678
 
@@ -3219,28 +3760,6 @@ class AuthenticityParams {
3219
3760
  this._set({ "checkSecurityText": val });
3220
3761
  }
3221
3762
 
3222
- _checkFilters = {};
3223
-
3224
- setCheckFilter(checkType, filter) {
3225
- this._checkFilters[checkType] = filter;
3226
- this._set({
3227
- "setCheckFilter": {
3228
- "checkType": checkType,
3229
- "filterObject": filter.toJson(),
3230
- },
3231
- });
3232
- }
3233
-
3234
- removeCheckFilter(checkType) {
3235
- delete this._checkFilters[checkType];
3236
- this._set({ "removeCheckFilter": checkType });
3237
- }
3238
-
3239
- clearCheckFilter() {
3240
- this._checkFilters = {};
3241
- this._set({ "clearCheckFilter": null });
3242
- }
3243
-
3244
3763
  static fromJson(jsonObject) {
3245
3764
  if (jsonObject == null) return new AuthenticityParams();
3246
3765
 
@@ -3262,8 +3781,6 @@ class AuthenticityParams {
3262
3781
  result._checkPhotoComparison = jsonObject["checkPhotoComparison"];
3263
3782
  result._checkLetterScreen = jsonObject["checkLetterScreen"];
3264
3783
  result._checkSecurityText = jsonObject["checkSecurityText"];
3265
- result._checkFilters = Object.fromEntries(Object.entries(jsonObject["checkFilters"] ?? {})
3266
- .map(([k, v]) => [k, _FilterObject__WEBPACK_IMPORTED_MODULE_2__.FilterObject.fromJson(v)]));
3267
3784
 
3268
3785
  return result;
3269
3786
  }
@@ -3293,37 +3810,18 @@ class AuthenticityParams {
3293
3810
  "checkPhotoComparison": this.checkPhotoComparison,
3294
3811
  "checkLetterScreen": this.checkLetterScreen,
3295
3812
  "checkSecurityText": this.checkSecurityText,
3296
- "checkFilters": Object.fromEntries(Object.entries(this._checkFilters).map(([k, v]) => [k, v.toJson()])),
3297
3813
  }
3298
3814
  }
3299
3815
  }
3300
3816
 
3301
- const AuthenticityCheckType = {
3302
- USE_LIVENESS: "checkLiveness",
3303
- UV_LUMINISCENCE: "checkUVLuminiscence",
3304
- IR_B900: "checkIRB900",
3305
- IMAGE_PATTERNS: "checkImagePatterns",
3306
- FIBERS: "checkFibers",
3307
- EXT_MRZ: "checkExtMRZ",
3308
- EXT_OCR: "checkExtOCR",
3309
- AXIAL: "checkAxial",
3310
- BARCODE_FORMAT: "checkBarcodeFormat",
3311
- IR_VISIBILITY: "checkIRVisibility",
3312
- IPI: "checkIPI",
3313
- PHOTO_EMBEDDING: "checkPhotoEmbedding",
3314
- PHOTO_COMPARISON: "checkPhotoComparison",
3315
- LETTER_SCREEN: "checkLetterScreen",
3316
- SECURITY_TEXT: "checkSecurityText",
3317
- };
3318
-
3319
3817
 
3320
- /***/ }),
3818
+ /***/ },
3321
3819
 
3322
- /***/ "./src/params/process_params/BackendProcessingConfig.js":
3820
+ /***/ "./src/params/process_params/BackendProcessingConfig.js"
3323
3821
  /*!**************************************************************!*\
3324
3822
  !*** ./src/params/process_params/BackendProcessingConfig.js ***!
3325
3823
  \**************************************************************/
3326
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3824
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3327
3825
 
3328
3826
  __webpack_require__.r(__webpack_exports__);
3329
3827
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -3365,13 +3863,13 @@ class BackendProcessingConfig {
3365
3863
  }
3366
3864
 
3367
3865
 
3368
- /***/ }),
3866
+ /***/ },
3369
3867
 
3370
- /***/ "./src/params/process_params/FaceApiParams.js":
3868
+ /***/ "./src/params/process_params/FaceApiParams.js"
3371
3869
  /*!****************************************************!*\
3372
3870
  !*** ./src/params/process_params/FaceApiParams.js ***!
3373
3871
  \****************************************************/
3374
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3872
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3375
3873
 
3376
3874
  __webpack_require__.r(__webpack_exports__);
3377
3875
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -3431,13 +3929,13 @@ class FaceApiParams {
3431
3929
  }
3432
3930
 
3433
3931
 
3434
- /***/ }),
3932
+ /***/ },
3435
3933
 
3436
- /***/ "./src/params/process_params/FaceApiSearchParams.js":
3934
+ /***/ "./src/params/process_params/FaceApiSearchParams.js"
3437
3935
  /*!**********************************************************!*\
3438
3936
  !*** ./src/params/process_params/FaceApiSearchParams.js ***!
3439
3937
  \**********************************************************/
3440
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3938
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3441
3939
 
3442
3940
  __webpack_require__.r(__webpack_exports__);
3443
3941
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -3474,88 +3972,13 @@ class FaceApiSearchParams {
3474
3972
  }
3475
3973
 
3476
3974
 
3477
- /***/ }),
3478
-
3479
- /***/ "./src/params/process_params/FilterObject.js":
3480
- /*!***************************************************!*\
3481
- !*** ./src/params/process_params/FilterObject.js ***!
3482
- \***************************************************/
3483
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3484
-
3485
- __webpack_require__.r(__webpack_exports__);
3486
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
3487
- /* harmony export */ FilterObject: () => (/* binding */ FilterObject),
3488
- /* harmony export */ FilterObjectType: () => (/* binding */ FilterObjectType)
3489
- /* harmony export */ });
3490
- class FilterObject {
3491
- docIDsFilter
3492
- docFormatsFilter
3493
- docCategoriesFilter
3494
- docCountriesFilter
3495
-
3496
- static fromJson(json) {
3497
- var result = new FilterObject();
3498
- result.docIDsFilter = FilterObjectType.fromJson(json["docIDsFilter"]);
3499
- result.docFormatsFilter = FilterObjectType.fromJson(json["docFormatsFilter"]);
3500
- result.docCategoriesFilter = FilterObjectType.fromJson(json["docCategoriesFilter"]);
3501
- result.docCountriesFilter = FilterObjectType.fromJson(json["docCountriesFilter"]);
3502
- return result;
3503
- }
3504
-
3505
- toJson() {
3506
- return {
3507
- "docIDsFilter": this.docIDsFilter?.toJson(),
3508
- "docFormatsFilter": this.docFormatsFilter?.toJson(),
3509
- "docCategoriesFilter": this.docCategoriesFilter?.toJson(),
3510
- "docCountriesFilter": this.docCountriesFilter?.toJson()
3511
- }
3512
- }
3513
- }
3514
-
3515
- class FilterObjectType {
3516
- _list
3517
- _isInclude
3518
-
3519
- static createIncludeList(list) {
3520
- var result = new FilterObjectType();
3521
- result._list = list;
3522
- result._isInclude = true;
3523
- return result;
3524
- }
3525
-
3526
- static createExcludeList(list) {
3527
- var result = new FilterObjectType();
3528
- result._list = list;
3529
- result._isInclude = false;
3530
- return result;
3531
- }
3532
-
3533
- static fromJson(json) {
3534
- if (json == null) return null;
3535
- if (json["isInclude"]) {
3536
- return FilterObjectType.createIncludeList(json["list"]);
3537
- } else {
3538
- return FilterObjectType.createExcludeList(json["list"]);
3539
- }
3540
- }
3541
-
3542
- toJson() {
3543
- return {
3544
- "list": this._list,
3545
- "isInclude": this._isInclude,
3546
- }
3547
- }
3548
- }
3549
-
3550
-
3551
-
3552
- /***/ }),
3975
+ /***/ },
3553
3976
 
3554
- /***/ "./src/params/process_params/GlaresCheckParams.js":
3977
+ /***/ "./src/params/process_params/GlaresCheckParams.js"
3555
3978
  /*!********************************************************!*\
3556
3979
  !*** ./src/params/process_params/GlaresCheckParams.js ***!
3557
3980
  \********************************************************/
3558
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3981
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3559
3982
 
3560
3983
  __webpack_require__.r(__webpack_exports__);
3561
3984
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -3588,13 +4011,13 @@ class GlaresCheckParams {
3588
4011
  }
3589
4012
 
3590
4013
 
3591
- /***/ }),
4014
+ /***/ },
3592
4015
 
3593
- /***/ "./src/params/process_params/ImageQA.js":
4016
+ /***/ "./src/params/process_params/ImageQA.js"
3594
4017
  /*!**********************************************!*\
3595
4018
  !*** ./src/params/process_params/ImageQA.js ***!
3596
4019
  \**********************************************/
3597
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4020
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3598
4021
 
3599
4022
  __webpack_require__.r(__webpack_exports__);
3600
4023
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -3718,22 +4141,19 @@ class ImageQA {
3718
4141
  }
3719
4142
 
3720
4143
 
3721
- /***/ }),
4144
+ /***/ },
3722
4145
 
3723
- /***/ "./src/params/process_params/LivenessParams.js":
4146
+ /***/ "./src/params/process_params/LivenessParams.js"
3724
4147
  /*!*****************************************************!*\
3725
4148
  !*** ./src/params/process_params/LivenessParams.js ***!
3726
4149
  \*****************************************************/
3727
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4150
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3728
4151
 
3729
4152
  __webpack_require__.r(__webpack_exports__);
3730
4153
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
3731
- /* harmony export */ LivenessCheckType: () => (/* binding */ LivenessCheckType),
3732
4154
  /* harmony export */ LivenessParams: () => (/* binding */ LivenessParams)
3733
4155
  /* harmony export */ });
3734
4156
  /* harmony import */ var _index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../index */ "./src/index.js");
3735
- /* harmony import */ var _FilterObject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FilterObject */ "./src/params/process_params/FilterObject.js");
3736
-
3737
4157
 
3738
4158
 
3739
4159
  class LivenessParams {
@@ -3779,28 +4199,6 @@ class LivenessParams {
3779
4199
  this._set({ "checkGeometry": val });
3780
4200
  }
3781
4201
 
3782
- _checkFilters = {};
3783
-
3784
- setCheckFilter(checkType, filter) {
3785
- this._checkFilters[checkType] = filter;
3786
- this._set({
3787
- "setCheckFilter": {
3788
- "checkType": checkType,
3789
- "filterObject": filter.toJson(),
3790
- },
3791
- });
3792
- }
3793
-
3794
- removeCheckFilter(checkType) {
3795
- delete this._checkFilters[checkType];
3796
- this._set({ "removeCheckFilter": checkType });
3797
- }
3798
-
3799
- clearCheckFilter() {
3800
- this._checkFilters = {};
3801
- this._set({ "clearCheckFilter": null });
3802
- }
3803
-
3804
4202
  static fromJson(jsonObject) {
3805
4203
  if (jsonObject == null) return new LivenessParams();
3806
4204
 
@@ -3812,8 +4210,6 @@ class LivenessParams {
3812
4210
  result._checkBlackAndWhiteCopy = jsonObject["checkBlackAndWhiteCopy"];
3813
4211
  result._checkDynaprint = jsonObject["checkDynaprint"];
3814
4212
  result._checkGeometry = jsonObject["checkGeometry"];
3815
- result._checkFilters = Object.fromEntries(Object.entries(jsonObject["checkFilters"] ?? {})
3816
- .map(([k, v]) => [k, _FilterObject__WEBPACK_IMPORTED_MODULE_1__.FilterObject.fromJson(v)]));
3817
4213
 
3818
4214
  return result;
3819
4215
  }
@@ -3834,33 +4230,21 @@ class LivenessParams {
3834
4230
  "checkBlackAndWhiteCopy": this.checkBlackAndWhiteCopy,
3835
4231
  "checkDynaprint": this.checkDynaprint,
3836
4232
  "checkGeometry": this.checkGeometry,
3837
- "checkFilters": Object.fromEntries(Object.entries(this._checkFilters).map(([k, v]) => [k, v.toJson()])),
3838
4233
  }
3839
4234
  }
3840
4235
  }
3841
4236
 
3842
- const LivenessCheckType = {
3843
- OVI: "checkOVI",
3844
- MLI: "checkMLI",
3845
- HOLO: "checkHolo",
3846
- ED: "checkED",
3847
- BLACK_AND_WHITE_COPY: "checkBlackAndWhiteCopy",
3848
- DYNAPRINT: "checkDynaprint",
3849
- GEOMETRY: "checkGeometry",
3850
- };
3851
-
3852
4237
 
3853
- /***/ }),
4238
+ /***/ },
3854
4239
 
3855
- /***/ "./src/params/process_params/ProcessParams.js":
4240
+ /***/ "./src/params/process_params/ProcessParams.js"
3856
4241
  /*!****************************************************!*\
3857
4242
  !*** ./src/params/process_params/ProcessParams.js ***!
3858
4243
  \****************************************************/
3859
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4244
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
3860
4245
 
3861
4246
  __webpack_require__.r(__webpack_exports__);
3862
4247
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
3863
- /* harmony export */ FilterCheckType: () => (/* binding */ FilterCheckType),
3864
4248
  /* harmony export */ LogLevel: () => (/* binding */ LogLevel),
3865
4249
  /* harmony export */ MRZFormat: () => (/* binding */ MRZFormat),
3866
4250
  /* harmony export */ MeasureSystem: () => (/* binding */ MeasureSystem),
@@ -3874,8 +4258,6 @@ __webpack_require__.r(__webpack_exports__);
3874
4258
  /* harmony import */ var _FaceApiParams__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./FaceApiParams */ "./src/params/process_params/FaceApiParams.js");
3875
4259
  /* harmony import */ var _BackendProcessingConfig__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./BackendProcessingConfig */ "./src/params/process_params/BackendProcessingConfig.js");
3876
4260
  /* harmony import */ var _AuthenticityParams__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./AuthenticityParams */ "./src/params/process_params/AuthenticityParams.js");
3877
- /* harmony import */ var _FilterObject__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./FilterObject */ "./src/params/process_params/FilterObject.js");
3878
-
3879
4261
 
3880
4262
 
3881
4263
 
@@ -4119,6 +4501,18 @@ class ProcessParams {
4119
4501
  this._set({ "strictSecurityChecks": val });
4120
4502
  }
4121
4503
 
4504
+ get returnTransliteratedFields() { return this._returnTransliteratedFields; }
4505
+ set returnTransliteratedFields(val) {
4506
+ this._returnTransliteratedFields = val;
4507
+ this._set({ "returnTransliteratedFields": val });
4508
+ }
4509
+
4510
+ get checkCaptureProcessIntegrity() { return this._checkCaptureProcessIntegrity; }
4511
+ set checkCaptureProcessIntegrity(val) {
4512
+ this._checkCaptureProcessIntegrity = val;
4513
+ this._set({ "checkCaptureProcessIntegrity": val });
4514
+ }
4515
+
4122
4516
  get barcodeParserType() { return this._barcodeParserType; }
4123
4517
  set barcodeParserType(val) {
4124
4518
  this._barcodeParserType = val;
@@ -4311,6 +4705,13 @@ class ProcessParams {
4311
4705
  this._set({ "lcidFilter": val });
4312
4706
  }
4313
4707
 
4708
+ get fieldTypesIgnoreFilter() { return this._fieldTypesIgnoreFilter; }
4709
+ set fieldTypesIgnoreFilter(val) {
4710
+ this._fieldTypesIgnoreFilter = val;
4711
+ this._set({ "fieldTypesIgnoreFilter": val });
4712
+ }
4713
+
4714
+ _imageQA = new _ImageQA__WEBPACK_IMPORTED_MODULE_2__.ImageQA();
4314
4715
  get imageQA() { return this._imageQA; }
4315
4716
  set imageQA(val) { (this._imageQA = val)._apply(); }
4316
4717
 
@@ -4332,6 +4733,7 @@ class ProcessParams {
4332
4733
  this._set({ "backendProcessingConfig": val });
4333
4734
  }
4334
4735
 
4736
+ _authenticityParams = new _AuthenticityParams__WEBPACK_IMPORTED_MODULE_6__.AuthenticityParams();
4335
4737
  get authenticityParams() { return this._authenticityParams; }
4336
4738
  set authenticityParams(val) { (this._authenticityParams = val)._apply(); }
4337
4739
 
@@ -4341,28 +4743,6 @@ class ProcessParams {
4341
4743
  this._set({ "customParams": val });
4342
4744
  }
4343
4745
 
4344
- _checkFilters = {};
4345
-
4346
- setCheckFilter(checkType, filter) {
4347
- this._checkFilters[checkType] = filter;
4348
- this._set({
4349
- "setCheckFilter": {
4350
- "checkType": checkType,
4351
- "filterObject": filter.toJson(),
4352
- },
4353
- });
4354
- }
4355
-
4356
- removeCheckFilter(checkType) {
4357
- delete this._checkFilters[checkType];
4358
- this._set({ "removeCheckFilter": checkType });
4359
- }
4360
-
4361
- clearCheckFilter() {
4362
- this._checkFilters = {};
4363
- this._set({ "clearCheckFilter": null });
4364
- }
4365
-
4366
4746
  static fromJson(jsonObject) {
4367
4747
  if (jsonObject == null) return new ProcessParams();
4368
4748
  const result = new ProcessParams();
@@ -4406,6 +4786,8 @@ class ProcessParams {
4406
4786
  result._generateAlpha2Codes = jsonObject["generateAlpha2Codes"];
4407
4787
  result._disableAuthResolutionFilter = jsonObject["disableAuthResolutionFilter"];
4408
4788
  result._strictSecurityChecks = jsonObject["strictSecurityChecks"];
4789
+ result._returnTransliteratedFields = jsonObject["returnTransliteratedFields"];
4790
+ result._checkCaptureProcessIntegrity = jsonObject["checkCaptureProcessIntegrity"];
4409
4791
  result._barcodeParserType = jsonObject["barcodeParserType"];
4410
4792
  result._perspectiveAngle = jsonObject["perspectiveAngle"];
4411
4793
  result._minDPI = jsonObject["minDPI"];
@@ -4438,14 +4820,13 @@ class ProcessParams {
4438
4820
  result._documentGroupFilter = jsonObject["documentGroupFilter"];
4439
4821
  result._lcidIgnoreFilter = jsonObject["lcidIgnoreFilter"];
4440
4822
  result._lcidFilter = jsonObject["lcidFilter"];
4823
+ result._fieldTypesIgnoreFilter = jsonObject["fieldTypesIgnoreFilter"];
4441
4824
  result._imageQA = _ImageQA__WEBPACK_IMPORTED_MODULE_2__.ImageQA.fromJson(jsonObject["imageQA"]);
4442
4825
  result._rfidParams = _RFIDParams__WEBPACK_IMPORTED_MODULE_3__.RFIDParams.fromJson(jsonObject["rfidParams"]);
4443
4826
  result._faceApiParams = _FaceApiParams__WEBPACK_IMPORTED_MODULE_4__.FaceApiParams.fromJson(jsonObject["faceApiParams"]);
4444
4827
  result._backendProcessingConfig = _BackendProcessingConfig__WEBPACK_IMPORTED_MODULE_5__.BackendProcessingConfig.fromJson(jsonObject["backendProcessingConfig"]);
4445
4828
  result._authenticityParams = _AuthenticityParams__WEBPACK_IMPORTED_MODULE_6__.AuthenticityParams.fromJson(jsonObject["authenticityParams"]);
4446
4829
  result._customParams = jsonObject["customParams"];
4447
- result._checkFilters = Object.fromEntries(Object.entries(jsonObject["checkFilters"] ?? {})
4448
- .map(([k, v]) => [k, _FilterObject__WEBPACK_IMPORTED_MODULE_7__.FilterObject.fromJson(v)]));
4449
4830
 
4450
4831
  return result;
4451
4832
  }
@@ -4490,6 +4871,8 @@ class ProcessParams {
4490
4871
  "generateAlpha2Codes": this.generateAlpha2Codes,
4491
4872
  "disableAuthResolutionFilter": this.disableAuthResolutionFilter,
4492
4873
  "strictSecurityChecks": this.strictSecurityChecks,
4874
+ "returnTransliteratedFields": this.returnTransliteratedFields,
4875
+ "checkCaptureProcessIntegrity": this.checkCaptureProcessIntegrity,
4493
4876
  "measureSystem": this.measureSystem,
4494
4877
  "barcodeParserType": this.barcodeParserType,
4495
4878
  "perspectiveAngle": this.perspectiveAngle,
@@ -4522,13 +4905,13 @@ class ProcessParams {
4522
4905
  "documentGroupFilter": this.documentGroupFilter,
4523
4906
  "lcidIgnoreFilter": this.lcidIgnoreFilter,
4524
4907
  "lcidFilter": this.lcidFilter,
4908
+ "fieldTypesIgnoreFilter": this.fieldTypesIgnoreFilter,
4525
4909
  "imageQA": this.imageQA?.toJson(),
4526
4910
  "rfidParams": this.rfidParams?.toJson(),
4527
4911
  "faceApiParams": this.faceApiParams?.toJson(),
4528
4912
  "backendProcessingConfig": this.backendProcessingConfig?.toJson(),
4529
4913
  "authenticityParams": this.authenticityParams?.toJson(),
4530
4914
  "customParams": this.customParams,
4531
- "checkFilters": Object.fromEntries(Object.entries(this._checkFilters).map(([k, v]) => [k, v.toJson()])),
4532
4915
  }
4533
4916
  }
4534
4917
 
@@ -4567,18 +4950,14 @@ const MrzDetectionModes = {
4567
4950
  BLUR_BEFORE_BINARIZATION: 2
4568
4951
  };
4569
4952
 
4570
- const FilterCheckType = {
4571
- AUTH: "checkAuth",
4572
- };
4573
-
4574
4953
 
4575
- /***/ }),
4954
+ /***/ },
4576
4955
 
4577
- /***/ "./src/params/process_params/RFIDParams.js":
4956
+ /***/ "./src/params/process_params/RFIDParams.js"
4578
4957
  /*!*************************************************!*\
4579
4958
  !*** ./src/params/process_params/RFIDParams.js ***!
4580
4959
  \*************************************************/
4581
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4960
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
4582
4961
 
4583
4962
  __webpack_require__.r(__webpack_exports__);
4584
4963
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -4607,13 +4986,13 @@ class RFIDParams {
4607
4986
  }
4608
4987
 
4609
4988
 
4610
- /***/ }),
4989
+ /***/ },
4611
4990
 
4612
- /***/ "./src/params/rfid_scenario/DTCDataGroup.js":
4991
+ /***/ "./src/params/rfid_scenario/DTCDataGroup.js"
4613
4992
  /*!**************************************************!*\
4614
4993
  !*** ./src/params/rfid_scenario/DTCDataGroup.js ***!
4615
4994
  \**************************************************/
4616
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
4995
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
4617
4996
 
4618
4997
  __webpack_require__.r(__webpack_exports__);
4619
4998
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -4685,13 +5064,13 @@ class DTCDataGroup {
4685
5064
  }
4686
5065
 
4687
5066
 
4688
- /***/ }),
5067
+ /***/ },
4689
5068
 
4690
- /***/ "./src/params/rfid_scenario/EDLDataGroups.js":
5069
+ /***/ "./src/params/rfid_scenario/EDLDataGroups.js"
4691
5070
  /*!***************************************************!*\
4692
5071
  !*** ./src/params/rfid_scenario/EDLDataGroups.js ***!
4693
5072
  \***************************************************/
4694
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
5073
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
4695
5074
 
4696
5075
  __webpack_require__.r(__webpack_exports__);
4697
5076
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -4835,13 +5214,13 @@ class EDLDataGroups {
4835
5214
  }
4836
5215
 
4837
5216
 
4838
- /***/ }),
5217
+ /***/ },
4839
5218
 
4840
- /***/ "./src/params/rfid_scenario/EIDDataGroups.js":
5219
+ /***/ "./src/params/rfid_scenario/EIDDataGroups.js"
4841
5220
  /*!***************************************************!*\
4842
5221
  !*** ./src/params/rfid_scenario/EIDDataGroups.js ***!
4843
5222
  \***************************************************/
4844
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
5223
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
4845
5224
 
4846
5225
  __webpack_require__.r(__webpack_exports__);
4847
5226
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -5041,13 +5420,13 @@ class EIDDataGroups {
5041
5420
  }
5042
5421
 
5043
5422
 
5044
- /***/ }),
5423
+ /***/ },
5045
5424
 
5046
- /***/ "./src/params/rfid_scenario/EPassportDataGroups.js":
5425
+ /***/ "./src/params/rfid_scenario/EPassportDataGroups.js"
5047
5426
  /*!*********************************************************!*\
5048
5427
  !*** ./src/params/rfid_scenario/EPassportDataGroups.js ***!
5049
5428
  \*********************************************************/
5050
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
5429
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
5051
5430
 
5052
5431
  __webpack_require__.r(__webpack_exports__);
5053
5432
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -5207,13 +5586,13 @@ class EPassportDataGroups {
5207
5586
  }
5208
5587
 
5209
5588
 
5210
- /***/ }),
5589
+ /***/ },
5211
5590
 
5212
- /***/ "./src/params/rfid_scenario/RFIDScenario.js":
5591
+ /***/ "./src/params/rfid_scenario/RFIDScenario.js"
5213
5592
  /*!**************************************************!*\
5214
5593
  !*** ./src/params/rfid_scenario/RFIDScenario.js ***!
5215
5594
  \**************************************************/
5216
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
5595
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
5217
5596
 
5218
5597
  __webpack_require__.r(__webpack_exports__);
5219
5598
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -5794,13 +6173,13 @@ const RFIDReadingBufferSize = {
5794
6173
  };
5795
6174
 
5796
6175
 
5797
- /***/ }),
6176
+ /***/ },
5798
6177
 
5799
- /***/ "./src/results/DocumentType.js":
6178
+ /***/ "./src/results/DocumentType.js"
5800
6179
  /*!*************************************!*\
5801
6180
  !*** ./src/results/DocumentType.js ***!
5802
6181
  \*************************************/
5803
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
6182
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
5804
6183
 
5805
6184
  __webpack_require__.r(__webpack_exports__);
5806
6185
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -6112,13 +6491,13 @@ const DocType = {
6112
6491
  };
6113
6492
 
6114
6493
 
6115
- /***/ }),
6494
+ /***/ },
6116
6495
 
6117
- /***/ "./src/results/Position.js":
6496
+ /***/ "./src/results/Position.js"
6118
6497
  /*!*********************************!*\
6119
6498
  !*** ./src/results/Position.js ***!
6120
6499
  \*********************************/
6121
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
6500
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6122
6501
 
6123
6502
  __webpack_require__.r(__webpack_exports__);
6124
6503
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -6217,13 +6596,13 @@ class Coordinate {
6217
6596
  }
6218
6597
 
6219
6598
 
6220
- /***/ }),
6599
+ /***/ },
6221
6600
 
6222
- /***/ "./src/results/Results.js":
6601
+ /***/ "./src/results/Results.js"
6223
6602
  /*!********************************!*\
6224
6603
  !*** ./src/results/Results.js ***!
6225
6604
  \********************************/
6226
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
6605
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6227
6606
 
6228
6607
  __webpack_require__.r(__webpack_exports__);
6229
6608
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -6246,9 +6625,11 @@ __webpack_require__.r(__webpack_exports__);
6246
6625
  /* harmony import */ var _visual_results_TextResult__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./visual_results/TextResult */ "./src/results/visual_results/TextResult.js");
6247
6626
  /* harmony import */ var _visual_results_TextField__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./visual_results/TextField */ "./src/results/visual_results/TextField.js");
6248
6627
  /* harmony import */ var _visible_digital_seals_VDSNCData__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./visible_digital_seals/VDSNCData */ "./src/results/visible_digital_seals/VDSNCData.js");
6249
- /* harmony import */ var _Position__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./Position */ "./src/results/Position.js");
6250
- /* harmony import */ var _DocumentType__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./DocumentType */ "./src/results/DocumentType.js");
6251
- /* harmony import */ var _TransactionInfo__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./TransactionInfo */ "./src/results/TransactionInfo.js");
6628
+ /* harmony import */ var _visible_digital_seals_VDSData__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./visible_digital_seals/VDSData */ "./src/results/visible_digital_seals/VDSData.js");
6629
+ /* harmony import */ var _Position__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./Position */ "./src/results/Position.js");
6630
+ /* harmony import */ var _DocumentType__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./DocumentType */ "./src/results/DocumentType.js");
6631
+ /* harmony import */ var _TransactionInfo__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./TransactionInfo */ "./src/results/TransactionInfo.js");
6632
+
6252
6633
 
6253
6634
 
6254
6635
 
@@ -6282,6 +6663,7 @@ class Results {
6282
6663
  chipPage
6283
6664
  barcodeResult
6284
6665
  vdsncData
6666
+ vdsData
6285
6667
  dtcData
6286
6668
  processingFinishedStatus
6287
6669
  morePagesAvailable
@@ -6456,13 +6838,14 @@ class Results {
6456
6838
  result.barcodeResult = _barcode_BarcodeResult__WEBPACK_IMPORTED_MODULE_2__.BarcodeResult.fromJson(jsonObject["barcodeResult"]);
6457
6839
  result.status = _status_ResultsStatus__WEBPACK_IMPORTED_MODULE_5__.ResultsStatus.fromJson(jsonObject["status"]);
6458
6840
  result.vdsncData = _visible_digital_seals_VDSNCData__WEBPACK_IMPORTED_MODULE_14__.VDSNCData.fromJson(jsonObject["vdsncData"]);
6841
+ result.vdsData = _visible_digital_seals_VDSData__WEBPACK_IMPORTED_MODULE_15__.VDSData.fromJson(jsonObject["vdsData"]);
6459
6842
  result.dtcData = jsonObject["dtcData"];
6460
- result.transactionInfo = _TransactionInfo__WEBPACK_IMPORTED_MODULE_17__.TransactionInfo.fromJson(jsonObject["transactionInfo"]);
6843
+ result.transactionInfo = _TransactionInfo__WEBPACK_IMPORTED_MODULE_18__.TransactionInfo.fromJson(jsonObject["transactionInfo"]);
6461
6844
 
6462
6845
  if (jsonObject["documentPosition"] != null) {
6463
6846
  result.documentPosition = [];
6464
6847
  for (const item of jsonObject["documentPosition"]) {
6465
- const position = _Position__WEBPACK_IMPORTED_MODULE_15__.Position.fromJson(item);
6848
+ const position = _Position__WEBPACK_IMPORTED_MODULE_16__.Position.fromJson(item);
6466
6849
  if (position != null) {
6467
6850
  result.documentPosition.push(position);
6468
6851
  }
@@ -6472,7 +6855,7 @@ class Results {
6472
6855
  if (jsonObject["barcodePosition"] != null) {
6473
6856
  result.barcodePosition = [];
6474
6857
  for (const item of jsonObject["barcodePosition"]) {
6475
- const position = _Position__WEBPACK_IMPORTED_MODULE_15__.Position.fromJson(item);
6858
+ const position = _Position__WEBPACK_IMPORTED_MODULE_16__.Position.fromJson(item);
6476
6859
  if (position != null) {
6477
6860
  result.barcodePosition.push(position);
6478
6861
  }
@@ -6482,7 +6865,7 @@ class Results {
6482
6865
  if (jsonObject["mrzPosition"] != null) {
6483
6866
  result.mrzPosition = [];
6484
6867
  for (const item of jsonObject["mrzPosition"]) {
6485
- const position = _Position__WEBPACK_IMPORTED_MODULE_15__.Position.fromJson(item);
6868
+ const position = _Position__WEBPACK_IMPORTED_MODULE_16__.Position.fromJson(item);
6486
6869
  if (position != null) {
6487
6870
  result.mrzPosition.push(position);
6488
6871
  }
@@ -6502,7 +6885,7 @@ class Results {
6502
6885
  if (jsonObject["documentType"] != null) {
6503
6886
  result.documentType = [];
6504
6887
  for (const item of jsonObject["documentType"]) {
6505
- const documentType = _DocumentType__WEBPACK_IMPORTED_MODULE_16__.DocumentType.fromJson(item);
6888
+ const documentType = _DocumentType__WEBPACK_IMPORTED_MODULE_17__.DocumentType.fromJson(item);
6506
6889
  if (documentType != null) {
6507
6890
  result.documentType.push(documentType);
6508
6891
  }
@@ -6526,6 +6909,7 @@ class Results {
6526
6909
  "rfidSessionData": this.rfidSessionData?.toJson(),
6527
6910
  "barcodeResult": this.barcodeResult?.toJson(),
6528
6911
  "vdsncData": this.vdsncData?.toJson(),
6912
+ "vdsData": this.vdsData?.toJson(),
6529
6913
  "dtcData": this.dtcData,
6530
6914
  "chipPage": this.chipPage,
6531
6915
  "processingFinishedStatus": this.processingFinishedStatus,
@@ -6590,17 +6974,20 @@ const ResultType = {
6590
6974
  RFID_IMAGE_DATA: 103,
6591
6975
  RFID_BINARY_DATA: 104,
6592
6976
  RFID_ORIGINAL_GRAPHICS: 105,
6593
- RFID_DTC_VC: 109
6977
+ RFID_DTC_VC: 109,
6978
+ MDL_PARSED_RESPONSE: 121,
6979
+ VDS_NC: 124,
6980
+ VDS: 125,
6594
6981
  };
6595
6982
 
6596
6983
 
6597
- /***/ }),
6984
+ /***/ },
6598
6985
 
6599
- /***/ "./src/results/TransactionInfo.js":
6986
+ /***/ "./src/results/TransactionInfo.js"
6600
6987
  /*!****************************************!*\
6601
6988
  !*** ./src/results/TransactionInfo.js ***!
6602
6989
  \****************************************/
6603
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
6990
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6604
6991
 
6605
6992
  __webpack_require__.r(__webpack_exports__);
6606
6993
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -6632,13 +7019,13 @@ class TransactionInfo {
6632
7019
  }
6633
7020
 
6634
7021
 
6635
- /***/ }),
7022
+ /***/ },
6636
7023
 
6637
- /***/ "./src/results/authenticity/Authenticity.js":
7024
+ /***/ "./src/results/authenticity/Authenticity.js"
6638
7025
  /*!**************************************************!*\
6639
7026
  !*** ./src/results/authenticity/Authenticity.js ***!
6640
7027
  \**************************************************/
6641
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7028
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6642
7029
 
6643
7030
  __webpack_require__.r(__webpack_exports__);
6644
7031
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -6669,13 +7056,13 @@ const Authenticity = {
6669
7056
  }
6670
7057
 
6671
7058
 
6672
- /***/ }),
7059
+ /***/ },
6673
7060
 
6674
- /***/ "./src/results/authenticity/AuthenticityCheck.js":
7061
+ /***/ "./src/results/authenticity/AuthenticityCheck.js"
6675
7062
  /*!*******************************************************!*\
6676
7063
  !*** ./src/results/authenticity/AuthenticityCheck.js ***!
6677
7064
  \*******************************************************/
6678
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7065
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6679
7066
 
6680
7067
  __webpack_require__.r(__webpack_exports__);
6681
7068
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -6729,13 +7116,13 @@ class AuthenticityCheck {
6729
7116
  }
6730
7117
 
6731
7118
 
6732
- /***/ }),
7119
+ /***/ },
6733
7120
 
6734
- /***/ "./src/results/authenticity/AuthenticityElement.js":
7121
+ /***/ "./src/results/authenticity/AuthenticityElement.js"
6735
7122
  /*!*********************************************************!*\
6736
7123
  !*** ./src/results/authenticity/AuthenticityElement.js ***!
6737
7124
  \*********************************************************/
6738
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7125
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6739
7126
 
6740
7127
  __webpack_require__.r(__webpack_exports__);
6741
7128
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -6783,13 +7170,13 @@ class AuthenticityElement {
6783
7170
  }
6784
7171
 
6785
7172
 
6786
- /***/ }),
7173
+ /***/ },
6787
7174
 
6788
- /***/ "./src/results/authenticity/AuthenticityResult.js":
7175
+ /***/ "./src/results/authenticity/AuthenticityResult.js"
6789
7176
  /*!********************************************************!*\
6790
7177
  !*** ./src/results/authenticity/AuthenticityResult.js ***!
6791
7178
  \********************************************************/
6792
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7179
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6793
7180
 
6794
7181
  __webpack_require__.r(__webpack_exports__);
6795
7182
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -6832,13 +7219,13 @@ class AuthenticityResult {
6832
7219
  }
6833
7220
 
6834
7221
 
6835
- /***/ }),
7222
+ /***/ },
6836
7223
 
6837
- /***/ "./src/results/authenticity/CheckDiagnose.js":
7224
+ /***/ "./src/results/authenticity/CheckDiagnose.js"
6838
7225
  /*!***************************************************!*\
6839
7226
  !*** ./src/results/authenticity/CheckDiagnose.js ***!
6840
7227
  \***************************************************/
6841
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7228
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6842
7229
 
6843
7230
  __webpack_require__.r(__webpack_exports__);
6844
7231
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -6973,13 +7360,13 @@ const CheckDiagnose = {
6973
7360
  }
6974
7361
 
6975
7362
 
6976
- /***/ }),
7363
+ /***/ },
6977
7364
 
6978
- /***/ "./src/results/authenticity/SecurityFeatureType.js":
7365
+ /***/ "./src/results/authenticity/SecurityFeatureType.js"
6979
7366
  /*!*********************************************************!*\
6980
7367
  !*** ./src/results/authenticity/SecurityFeatureType.js ***!
6981
7368
  \*********************************************************/
6982
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7369
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
6983
7370
 
6984
7371
  __webpack_require__.r(__webpack_exports__);
6985
7372
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7048,13 +7435,13 @@ const SecurityFeatureType = {
7048
7435
  }
7049
7436
 
7050
7437
 
7051
- /***/ }),
7438
+ /***/ },
7052
7439
 
7053
- /***/ "./src/results/barcode/BarcodeField.js":
7440
+ /***/ "./src/results/barcode/BarcodeField.js"
7054
7441
  /*!*********************************************!*\
7055
7442
  !*** ./src/results/barcode/BarcodeField.js ***!
7056
7443
  \*********************************************/
7057
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7444
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7058
7445
 
7059
7446
  __webpack_require__.r(__webpack_exports__);
7060
7447
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7099,13 +7486,13 @@ class BarcodeField {
7099
7486
  }
7100
7487
 
7101
7488
 
7102
- /***/ }),
7489
+ /***/ },
7103
7490
 
7104
- /***/ "./src/results/barcode/BarcodeResult.js":
7491
+ /***/ "./src/results/barcode/BarcodeResult.js"
7105
7492
  /*!**********************************************!*\
7106
7493
  !*** ./src/results/barcode/BarcodeResult.js ***!
7107
7494
  \**********************************************/
7108
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7495
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7109
7496
 
7110
7497
  __webpack_require__.r(__webpack_exports__);
7111
7498
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7144,13 +7531,13 @@ class BarcodeResult {
7144
7531
  }
7145
7532
 
7146
7533
 
7147
- /***/ }),
7534
+ /***/ },
7148
7535
 
7149
- /***/ "./src/results/barcode/BarcodeStatus.js":
7536
+ /***/ "./src/results/barcode/BarcodeStatus.js"
7150
7537
  /*!**********************************************!*\
7151
7538
  !*** ./src/results/barcode/BarcodeStatus.js ***!
7152
7539
  \**********************************************/
7153
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7540
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7154
7541
 
7155
7542
  __webpack_require__.r(__webpack_exports__);
7156
7543
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7191,13 +7578,13 @@ const BarcodeStatus = {
7191
7578
  }
7192
7579
 
7193
7580
 
7194
- /***/ }),
7581
+ /***/ },
7195
7582
 
7196
- /***/ "./src/results/barcode/BarcodeType.js":
7583
+ /***/ "./src/results/barcode/BarcodeType.js"
7197
7584
  /*!********************************************!*\
7198
7585
  !*** ./src/results/barcode/BarcodeType.js ***!
7199
7586
  \********************************************/
7200
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7587
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7201
7588
 
7202
7589
  __webpack_require__.r(__webpack_exports__);
7203
7590
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7226,13 +7613,13 @@ const BarcodeType = {
7226
7613
  }
7227
7614
 
7228
7615
 
7229
- /***/ }),
7616
+ /***/ },
7230
7617
 
7231
- /***/ "./src/results/barcode/PDF417Info.js":
7618
+ /***/ "./src/results/barcode/PDF417Info.js"
7232
7619
  /*!*******************************************!*\
7233
7620
  !*** ./src/results/barcode/PDF417Info.js ***!
7234
7621
  \*******************************************/
7235
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7622
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7236
7623
 
7237
7624
  __webpack_require__.r(__webpack_exports__);
7238
7625
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7264,13 +7651,13 @@ class PDF417Info {
7264
7651
  }
7265
7652
 
7266
7653
 
7267
- /***/ }),
7654
+ /***/ },
7268
7655
 
7269
- /***/ "./src/results/image_quality/ImageQuality.js":
7656
+ /***/ "./src/results/image_quality/ImageQuality.js"
7270
7657
  /*!***************************************************!*\
7271
7658
  !*** ./src/results/image_quality/ImageQuality.js ***!
7272
7659
  \***************************************************/
7273
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7660
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7274
7661
 
7275
7662
  __webpack_require__.r(__webpack_exports__);
7276
7663
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7321,13 +7708,13 @@ class ImageQuality {
7321
7708
  }
7322
7709
 
7323
7710
 
7324
- /***/ }),
7711
+ /***/ },
7325
7712
 
7326
- /***/ "./src/results/image_quality/ImageQualityCheckType.js":
7713
+ /***/ "./src/results/image_quality/ImageQualityCheckType.js"
7327
7714
  /*!************************************************************!*\
7328
7715
  !*** ./src/results/image_quality/ImageQualityCheckType.js ***!
7329
7716
  \************************************************************/
7330
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7717
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7331
7718
 
7332
7719
  __webpack_require__.r(__webpack_exports__);
7333
7720
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7355,13 +7742,13 @@ ImageQualityCheckType.getTranslation = async function (value) {
7355
7742
  }
7356
7743
 
7357
7744
 
7358
- /***/ }),
7745
+ /***/ },
7359
7746
 
7360
- /***/ "./src/results/image_quality/ImageQualityGroup.js":
7747
+ /***/ "./src/results/image_quality/ImageQualityGroup.js"
7361
7748
  /*!********************************************************!*\
7362
7749
  !*** ./src/results/image_quality/ImageQualityGroup.js ***!
7363
7750
  \********************************************************/
7364
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7751
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7365
7752
 
7366
7753
  __webpack_require__.r(__webpack_exports__);
7367
7754
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7410,13 +7797,13 @@ class ImageQualityGroup {
7410
7797
  }
7411
7798
 
7412
7799
 
7413
- /***/ }),
7800
+ /***/ },
7414
7801
 
7415
- /***/ "./src/results/rfid/AccessControlProcedureType.js":
7802
+ /***/ "./src/results/rfid/AccessControlProcedureType.js"
7416
7803
  /*!********************************************************!*\
7417
7804
  !*** ./src/results/rfid/AccessControlProcedureType.js ***!
7418
7805
  \********************************************************/
7419
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7806
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7420
7807
 
7421
7808
  __webpack_require__.r(__webpack_exports__);
7422
7809
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7456,13 +7843,13 @@ class AccessControlProcedureType {
7456
7843
  }
7457
7844
 
7458
7845
 
7459
- /***/ }),
7846
+ /***/ },
7460
7847
 
7461
- /***/ "./src/results/rfid/Application.js":
7848
+ /***/ "./src/results/rfid/Application.js"
7462
7849
  /*!*****************************************!*\
7463
7850
  !*** ./src/results/rfid/Application.js ***!
7464
7851
  \*****************************************/
7465
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7852
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7466
7853
 
7467
7854
  __webpack_require__.r(__webpack_exports__);
7468
7855
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7532,13 +7919,13 @@ const RFIDApplicationType = {
7532
7919
  }
7533
7920
 
7534
7921
 
7535
- /***/ }),
7922
+ /***/ },
7536
7923
 
7537
- /***/ "./src/results/rfid/Attribute.js":
7924
+ /***/ "./src/results/rfid/Attribute.js"
7538
7925
  /*!***************************************!*\
7539
7926
  !*** ./src/results/rfid/Attribute.js ***!
7540
7927
  \***************************************/
7541
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7928
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7542
7929
 
7543
7930
  __webpack_require__.r(__webpack_exports__);
7544
7931
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7570,13 +7957,13 @@ class Attribute {
7570
7957
  }
7571
7958
 
7572
7959
 
7573
- /***/ }),
7960
+ /***/ },
7574
7961
 
7575
- /***/ "./src/results/rfid/Authority.js":
7962
+ /***/ "./src/results/rfid/Authority.js"
7576
7963
  /*!***************************************!*\
7577
7964
  !*** ./src/results/rfid/Authority.js ***!
7578
7965
  \***************************************/
7579
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
7966
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7580
7967
 
7581
7968
  __webpack_require__.r(__webpack_exports__);
7582
7969
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7622,13 +8009,13 @@ class Authority {
7622
8009
  }
7623
8010
 
7624
8011
 
7625
- /***/ }),
8012
+ /***/ },
7626
8013
 
7627
- /***/ "./src/results/rfid/CardProperties.js":
8014
+ /***/ "./src/results/rfid/CardProperties.js"
7628
8015
  /*!********************************************!*\
7629
8016
  !*** ./src/results/rfid/CardProperties.js ***!
7630
8017
  \********************************************/
7631
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8018
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7632
8019
 
7633
8020
  __webpack_require__.r(__webpack_exports__);
7634
8021
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7693,13 +8080,13 @@ class CardProperties {
7693
8080
  }
7694
8081
 
7695
8082
 
7696
- /***/ }),
8083
+ /***/ },
7697
8084
 
7698
- /***/ "./src/results/rfid/CertificateChain.js":
8085
+ /***/ "./src/results/rfid/CertificateChain.js"
7699
8086
  /*!**********************************************!*\
7700
8087
  !*** ./src/results/rfid/CertificateChain.js ***!
7701
8088
  \**********************************************/
7702
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8089
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7703
8090
 
7704
8091
  __webpack_require__.r(__webpack_exports__);
7705
8092
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7781,13 +8168,13 @@ class CertificateChain {
7781
8168
  }
7782
8169
 
7783
8170
 
7784
- /***/ }),
8171
+ /***/ },
7785
8172
 
7786
- /***/ "./src/results/rfid/CertificateData.js":
8173
+ /***/ "./src/results/rfid/CertificateData.js"
7787
8174
  /*!*********************************************!*\
7788
8175
  !*** ./src/results/rfid/CertificateData.js ***!
7789
8176
  \*********************************************/
7790
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8177
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7791
8178
 
7792
8179
  __webpack_require__.r(__webpack_exports__);
7793
8180
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7815,13 +8202,13 @@ class CertificateData {
7815
8202
  }
7816
8203
  }
7817
8204
 
7818
- /***/ }),
8205
+ /***/ },
7819
8206
 
7820
- /***/ "./src/results/rfid/DataField.js":
8207
+ /***/ "./src/results/rfid/DataField.js"
7821
8208
  /*!***************************************!*\
7822
8209
  !*** ./src/results/rfid/DataField.js ***!
7823
8210
  \***************************************/
7824
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8211
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7825
8212
 
7826
8213
  __webpack_require__.r(__webpack_exports__);
7827
8214
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7852,13 +8239,13 @@ class DataField {
7852
8239
  }
7853
8240
  }
7854
8241
 
7855
- /***/ }),
8242
+ /***/ },
7856
8243
 
7857
- /***/ "./src/results/rfid/Extension.js":
8244
+ /***/ "./src/results/rfid/Extension.js"
7858
8245
  /*!***************************************!*\
7859
8246
  !*** ./src/results/rfid/Extension.js ***!
7860
8247
  \***************************************/
7861
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8248
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7862
8249
 
7863
8250
  __webpack_require__.r(__webpack_exports__);
7864
8251
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7886,13 +8273,13 @@ class Extension {
7886
8273
  }
7887
8274
  }
7888
8275
 
7889
- /***/ }),
8276
+ /***/ },
7890
8277
 
7891
- /***/ "./src/results/rfid/File.js":
8278
+ /***/ "./src/results/rfid/File.js"
7892
8279
  /*!**********************************!*\
7893
8280
  !*** ./src/results/rfid/File.js ***!
7894
8281
  \**********************************/
7895
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8282
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7896
8283
 
7897
8284
  __webpack_require__.r(__webpack_exports__);
7898
8285
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -7960,13 +8347,13 @@ class File {
7960
8347
  }
7961
8348
 
7962
8349
 
7963
- /***/ }),
8350
+ /***/ },
7964
8351
 
7965
- /***/ "./src/results/rfid/FileData.js":
8352
+ /***/ "./src/results/rfid/FileData.js"
7966
8353
  /*!**************************************!*\
7967
8354
  !*** ./src/results/rfid/FileData.js ***!
7968
8355
  \**************************************/
7969
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8356
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
7970
8357
 
7971
8358
  __webpack_require__.r(__webpack_exports__);
7972
8359
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8001,13 +8388,13 @@ class FileData {
8001
8388
  }
8002
8389
 
8003
8390
 
8004
- /***/ }),
8391
+ /***/ },
8005
8392
 
8006
- /***/ "./src/results/rfid/RFIDAccessControlProcedureType.js":
8393
+ /***/ "./src/results/rfid/RFIDAccessControlProcedureType.js"
8007
8394
  /*!************************************************************!*\
8008
8395
  !*** ./src/results/rfid/RFIDAccessControlProcedureType.js ***!
8009
8396
  \************************************************************/
8010
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8397
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8011
8398
 
8012
8399
  __webpack_require__.r(__webpack_exports__);
8013
8400
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8025,13 +8412,13 @@ const RFIDAccessControlProcedureType = {
8025
8412
  };
8026
8413
 
8027
8414
 
8028
- /***/ }),
8415
+ /***/ },
8029
8416
 
8030
- /***/ "./src/results/rfid/RFIDCertificateType.js":
8417
+ /***/ "./src/results/rfid/RFIDCertificateType.js"
8031
8418
  /*!*************************************************!*\
8032
8419
  !*** ./src/results/rfid/RFIDCertificateType.js ***!
8033
8420
  \*************************************************/
8034
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8421
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8035
8422
 
8036
8423
  __webpack_require__.r(__webpack_exports__);
8037
8424
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8052,13 +8439,13 @@ const RFIDCertificateType = {
8052
8439
  };
8053
8440
 
8054
8441
 
8055
- /***/ }),
8442
+ /***/ },
8056
8443
 
8057
- /***/ "./src/results/rfid/RFIDDataFileType.js":
8444
+ /***/ "./src/results/rfid/RFIDDataFileType.js"
8058
8445
  /*!**********************************************!*\
8059
8446
  !*** ./src/results/rfid/RFIDDataFileType.js ***!
8060
8447
  \**********************************************/
8061
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8448
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8062
8449
 
8063
8450
  __webpack_require__.r(__webpack_exports__);
8064
8451
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8165,13 +8552,13 @@ RFIDDataFileType.getTranslation = async function (value) {
8165
8552
  }
8166
8553
 
8167
8554
 
8168
- /***/ }),
8555
+ /***/ },
8169
8556
 
8170
- /***/ "./src/results/rfid/RFIDSessionData.js":
8557
+ /***/ "./src/results/rfid/RFIDSessionData.js"
8171
8558
  /*!*********************************************!*\
8172
8559
  !*** ./src/results/rfid/RFIDSessionData.js ***!
8173
8560
  \*********************************************/
8174
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8561
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8175
8562
 
8176
8563
  __webpack_require__.r(__webpack_exports__);
8177
8564
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8278,13 +8665,13 @@ class RFIDSessionData {
8278
8665
  }
8279
8666
 
8280
8667
 
8281
- /***/ }),
8668
+ /***/ },
8282
8669
 
8283
- /***/ "./src/results/rfid/RFIDValidity.js":
8670
+ /***/ "./src/results/rfid/RFIDValidity.js"
8284
8671
  /*!******************************************!*\
8285
8672
  !*** ./src/results/rfid/RFIDValidity.js ***!
8286
8673
  \******************************************/
8287
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8674
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8288
8675
 
8289
8676
  __webpack_require__.r(__webpack_exports__);
8290
8677
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8316,13 +8703,13 @@ class RFIDValidity {
8316
8703
  }
8317
8704
 
8318
8705
 
8319
- /***/ }),
8706
+ /***/ },
8320
8707
 
8321
- /***/ "./src/results/rfid/RFIDValue.js":
8708
+ /***/ "./src/results/rfid/RFIDValue.js"
8322
8709
  /*!***************************************!*\
8323
8710
  !*** ./src/results/rfid/RFIDValue.js ***!
8324
8711
  \***************************************/
8325
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8712
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8326
8713
 
8327
8714
  __webpack_require__.r(__webpack_exports__);
8328
8715
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8360,13 +8747,13 @@ class RFIDValue {
8360
8747
  }
8361
8748
 
8362
8749
 
8363
- /***/ }),
8750
+ /***/ },
8364
8751
 
8365
- /***/ "./src/results/rfid/SecurityObject.js":
8752
+ /***/ "./src/results/rfid/SecurityObject.js"
8366
8753
  /*!********************************************!*\
8367
8754
  !*** ./src/results/rfid/SecurityObject.js ***!
8368
8755
  \********************************************/
8369
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8756
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8370
8757
 
8371
8758
  __webpack_require__.r(__webpack_exports__);
8372
8759
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8416,13 +8803,13 @@ class SecurityObject {
8416
8803
  }
8417
8804
 
8418
8805
 
8419
- /***/ }),
8806
+ /***/ },
8420
8807
 
8421
- /***/ "./src/results/rfid/SecurityObjectCertificates.js":
8808
+ /***/ "./src/results/rfid/SecurityObjectCertificates.js"
8422
8809
  /*!********************************************************!*\
8423
8810
  !*** ./src/results/rfid/SecurityObjectCertificates.js ***!
8424
8811
  \********************************************************/
8425
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8812
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8426
8813
 
8427
8814
  __webpack_require__.r(__webpack_exports__);
8428
8815
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8451,13 +8838,13 @@ class SecurityObjectCertificates {
8451
8838
  }
8452
8839
 
8453
8840
 
8454
- /***/ }),
8841
+ /***/ },
8455
8842
 
8456
- /***/ "./src/results/rfid/SignerInfo.js":
8843
+ /***/ "./src/results/rfid/SignerInfo.js"
8457
8844
  /*!****************************************!*\
8458
8845
  !*** ./src/results/rfid/SignerInfo.js ***!
8459
8846
  \****************************************/
8460
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8847
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8461
8848
 
8462
8849
  __webpack_require__.r(__webpack_exports__);
8463
8850
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8543,13 +8930,63 @@ class SignerInfo {
8543
8930
  }
8544
8931
 
8545
8932
 
8546
- /***/ }),
8933
+ /***/ },
8934
+
8935
+ /***/ "./src/results/status/AgeStatus.js"
8936
+ /*!*****************************************!*\
8937
+ !*** ./src/results/status/AgeStatus.js ***!
8938
+ \*****************************************/
8939
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8940
+
8941
+ __webpack_require__.r(__webpack_exports__);
8942
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8943
+ /* harmony export */ AgeStatus: () => (/* binding */ AgeStatus)
8944
+ /* harmony export */ });
8945
+ /* harmony import */ var _CheckResult__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CheckResult */ "./src/results/status/CheckResult.js");
8946
+
8947
+
8948
+ class AgeStatus {
8949
+ threshold
8950
+ overThreshold
8951
+ over18
8952
+ over21
8953
+ over25
8954
+ over65
8955
+
8956
+ static fromJson(jsonObject) {
8957
+ if (jsonObject == null) return null;
8958
+ const result = new AgeStatus();
8959
+
8960
+ result.threshold = jsonObject["threshold"];
8961
+ result.overThreshold = jsonObject["overThreshold"];
8962
+ result.over18 = jsonObject["over18"];
8963
+ result.over21 = jsonObject["over21"];
8964
+ result.over25 = jsonObject["over25"];
8965
+ result.over65 = jsonObject["over65"];
8966
+
8967
+ return result;
8968
+ }
8547
8969
 
8548
- /***/ "./src/results/status/CheckResult.js":
8970
+ toJson() {
8971
+ return {
8972
+ "threshold": this.threshold,
8973
+ "overThreshold": this.overThreshold,
8974
+ "over18": this.over18,
8975
+ "over21": this.over21,
8976
+ "over25": this.over25,
8977
+ "over65": this.over65,
8978
+ }
8979
+ }
8980
+ }
8981
+
8982
+
8983
+ /***/ },
8984
+
8985
+ /***/ "./src/results/status/CheckResult.js"
8549
8986
  /*!*******************************************!*\
8550
8987
  !*** ./src/results/status/CheckResult.js ***!
8551
8988
  \*******************************************/
8552
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
8989
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8553
8990
 
8554
8991
  __webpack_require__.r(__webpack_exports__);
8555
8992
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8562,13 +8999,13 @@ const CheckResult = {
8562
8999
  };
8563
9000
 
8564
9001
 
8565
- /***/ }),
9002
+ /***/ },
8566
9003
 
8567
- /***/ "./src/results/status/OpticalStatus.js":
9004
+ /***/ "./src/results/status/OpticalStatus.js"
8568
9005
  /*!*********************************************!*\
8569
9006
  !*** ./src/results/status/OpticalStatus.js ***!
8570
9007
  \*********************************************/
8571
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9008
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8572
9009
 
8573
9010
  __webpack_require__.r(__webpack_exports__);
8574
9011
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8621,13 +9058,13 @@ class OpticalStatus {
8621
9058
  }
8622
9059
 
8623
9060
 
8624
- /***/ }),
9061
+ /***/ },
8625
9062
 
8626
- /***/ "./src/results/status/RFIDStatus.js":
9063
+ /***/ "./src/results/status/RFIDStatus.js"
8627
9064
  /*!******************************************!*\
8628
9065
  !*** ./src/results/status/RFIDStatus.js ***!
8629
9066
  \******************************************/
8630
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9067
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8631
9068
 
8632
9069
  __webpack_require__.r(__webpack_exports__);
8633
9070
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8674,13 +9111,13 @@ class RFIDStatus {
8674
9111
  }
8675
9112
 
8676
9113
 
8677
- /***/ }),
9114
+ /***/ },
8678
9115
 
8679
- /***/ "./src/results/status/ResultsStatus.js":
9116
+ /***/ "./src/results/status/ResultsStatus.js"
8680
9117
  /*!*********************************************!*\
8681
9118
  !*** ./src/results/status/ResultsStatus.js ***!
8682
9119
  \*********************************************/
8683
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9120
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8684
9121
 
8685
9122
  __webpack_require__.r(__webpack_exports__);
8686
9123
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8688,7 +9125,9 @@ __webpack_require__.r(__webpack_exports__);
8688
9125
  /* harmony export */ });
8689
9126
  /* harmony import */ var _CheckResult__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CheckResult */ "./src/results/status/CheckResult.js");
8690
9127
  /* harmony import */ var _OpticalStatus__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./OpticalStatus */ "./src/results/status/OpticalStatus.js");
8691
- /* harmony import */ var _RFIDStatus__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./RFIDStatus */ "./src/results/status/RFIDStatus.js");
9128
+ /* harmony import */ var _AgeStatus__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AgeStatus */ "./src/results/status/AgeStatus.js");
9129
+ /* harmony import */ var _RFIDStatus__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./RFIDStatus */ "./src/results/status/RFIDStatus.js");
9130
+
8692
9131
 
8693
9132
 
8694
9133
 
@@ -8701,6 +9140,10 @@ class ResultsStatus {
8701
9140
  detailsRFID
8702
9141
  portrait
8703
9142
  stopList
9143
+ mDL
9144
+ age
9145
+ captureProcessIntegrity
9146
+ ageStatus
8704
9147
 
8705
9148
  static fromJson(jsonObject) {
8706
9149
  if (jsonObject == null) return null;
@@ -8710,9 +9153,13 @@ class ResultsStatus {
8710
9153
  result.optical = jsonObject["optical"];
8711
9154
  result.detailsOptical = _OpticalStatus__WEBPACK_IMPORTED_MODULE_1__.OpticalStatus.fromJson(jsonObject["detailsOptical"]);
8712
9155
  result.rfid = jsonObject["rfid"];
8713
- result.detailsRFID = _RFIDStatus__WEBPACK_IMPORTED_MODULE_2__.RFIDStatus.fromJson(jsonObject["detailsRFID"]);
9156
+ result.detailsRFID = _RFIDStatus__WEBPACK_IMPORTED_MODULE_3__.RFIDStatus.fromJson(jsonObject["detailsRFID"]);
8714
9157
  result.portrait = jsonObject["portrait"];
8715
9158
  result.stopList = jsonObject["stopList"];
9159
+ result.mDL = jsonObject["mDL"];
9160
+ result.age = jsonObject["age"];
9161
+ result.captureProcessIntegrity = jsonObject["captureProcessIntegrity"];
9162
+ result.ageStatus = _AgeStatus__WEBPACK_IMPORTED_MODULE_2__.AgeStatus.fromJson(jsonObject["detailsAge"]);
8716
9163
 
8717
9164
  return result;
8718
9165
  }
@@ -8724,20 +9171,24 @@ class ResultsStatus {
8724
9171
  "rfid": this.rfid,
8725
9172
  "portrait": this.portrait,
8726
9173
  "stopList": this.stopList,
9174
+ "mDL": this.mDL,
9175
+ "age": this.age,
9176
+ "captureProcessIntegrity": this.captureProcessIntegrity,
8727
9177
  "detailsOptical": this.detailsOptical?.toJson(),
8728
9178
  "detailsRFID": this.detailsRFID?.toJson(),
9179
+ "detailsAge": this.ageStatus?.toJson(),
8729
9180
  }
8730
9181
  }
8731
9182
  }
8732
9183
 
8733
9184
 
8734
- /***/ }),
9185
+ /***/ },
8735
9186
 
8736
- /***/ "./src/results/visible_digital_seals/BytesData.js":
9187
+ /***/ "./src/results/visible_digital_seals/BytesData.js"
8737
9188
  /*!********************************************************!*\
8738
9189
  !*** ./src/results/visible_digital_seals/BytesData.js ***!
8739
9190
  \********************************************************/
8740
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9191
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8741
9192
 
8742
9193
  __webpack_require__.r(__webpack_exports__);
8743
9194
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8772,13 +9223,51 @@ class BytesData {
8772
9223
  }
8773
9224
 
8774
9225
 
8775
- /***/ }),
9226
+ /***/ },
9227
+
9228
+ /***/ "./src/results/visible_digital_seals/DocFeature.js"
9229
+ /*!*********************************************************!*\
9230
+ !*** ./src/results/visible_digital_seals/DocFeature.js ***!
9231
+ \*********************************************************/
9232
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
9233
+
9234
+ __webpack_require__.r(__webpack_exports__);
9235
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9236
+ /* harmony export */ DocFeature: () => (/* binding */ DocFeature)
9237
+ /* harmony export */ });
9238
+ /* harmony import */ var _BytesData__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BytesData */ "./src/results/visible_digital_seals/BytesData.js");
9239
+
9240
+
9241
+ class DocFeature {
9242
+ type
9243
+ data
9244
+
9245
+ static fromJson(jsonObject) {
9246
+ if (jsonObject == null) return null;
9247
+
9248
+ const result = new DocFeature();
9249
+ result.type = jsonObject["type"];
9250
+ result.data = _BytesData__WEBPACK_IMPORTED_MODULE_0__.BytesData.fromJson(jsonObject["data"]);
9251
+
9252
+ return result;
9253
+ }
9254
+
9255
+ toJson() {
9256
+ return {
9257
+ "type": this.type,
9258
+ "data": this.data?.toJson(),
9259
+ }
9260
+ }
9261
+ }
9262
+
9263
+
9264
+ /***/ },
8776
9265
 
8777
- /***/ "./src/results/visible_digital_seals/LDSParsingErrorCodes.js":
9266
+ /***/ "./src/results/visible_digital_seals/LDSParsingErrorCodes.js"
8778
9267
  /*!*******************************************************************!*\
8779
9268
  !*** ./src/results/visible_digital_seals/LDSParsingErrorCodes.js ***!
8780
9269
  \*******************************************************************/
8781
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9270
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8782
9271
 
8783
9272
  __webpack_require__.r(__webpack_exports__);
8784
9273
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -8921,13 +9410,13 @@ LDSParsingErrorCodes.getTranslation = async function (value) {
8921
9410
  }
8922
9411
 
8923
9412
 
8924
- /***/ }),
9413
+ /***/ },
8925
9414
 
8926
- /***/ "./src/results/visible_digital_seals/LDSParsingNotificationCodes.js":
9415
+ /***/ "./src/results/visible_digital_seals/LDSParsingNotificationCodes.js"
8927
9416
  /*!**************************************************************************!*\
8928
9417
  !*** ./src/results/visible_digital_seals/LDSParsingNotificationCodes.js ***!
8929
9418
  \**************************************************************************/
8930
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9419
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
8931
9420
 
8932
9421
  __webpack_require__.r(__webpack_exports__);
8933
9422
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -9168,13 +9657,105 @@ LDSParsingNotificationCodes.getTranslation = async function (value) {
9168
9657
  }
9169
9658
 
9170
9659
 
9171
- /***/ }),
9660
+ /***/ },
9172
9661
 
9173
- /***/ "./src/results/visible_digital_seals/VDSNCData.js":
9662
+ /***/ "./src/results/visible_digital_seals/VDSData.js"
9663
+ /*!******************************************************!*\
9664
+ !*** ./src/results/visible_digital_seals/VDSData.js ***!
9665
+ \******************************************************/
9666
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
9667
+
9668
+ __webpack_require__.r(__webpack_exports__);
9669
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9670
+ /* harmony export */ VDSData: () => (/* binding */ VDSData)
9671
+ /* harmony export */ });
9672
+ /* harmony import */ var _rfid_CertificateChain__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../rfid/CertificateChain */ "./src/results/rfid/CertificateChain.js");
9673
+ /* harmony import */ var _BytesData__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BytesData */ "./src/results/visible_digital_seals/BytesData.js");
9674
+ /* harmony import */ var _DocFeature__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./DocFeature */ "./src/results/visible_digital_seals/DocFeature.js");
9675
+
9676
+
9677
+
9678
+
9679
+ class VDSData {
9680
+ type
9681
+ docType
9682
+ featureRef
9683
+ version
9684
+ issuingCountry
9685
+ docIssueDate
9686
+ signature
9687
+ signatureDate
9688
+ signer
9689
+ certificate
9690
+ certificateChain
9691
+ docFeatures
9692
+ notifications
9693
+
9694
+ static fromJson(jsonObject) {
9695
+ if (jsonObject == null) return null;
9696
+ const result = new VDSData();
9697
+
9698
+ result.type = jsonObject["type"];
9699
+ result.docType = jsonObject["docType"];
9700
+ result.featureRef = jsonObject["featureRef"];
9701
+ result.version = jsonObject["version"];
9702
+ result.issuingCountry = jsonObject["issuingCountry"];
9703
+ result.docIssueDate = jsonObject["docIssueDate"];
9704
+ result.signature = _BytesData__WEBPACK_IMPORTED_MODULE_1__.BytesData.fromJson(jsonObject["signature"]);
9705
+ result.signatureDate = jsonObject["signatureDate"];
9706
+ result.signer = jsonObject["signer"];
9707
+ result.certificate = jsonObject["certificate"];
9708
+ result.notifications = jsonObject["notifications"];
9709
+
9710
+ if (jsonObject["certificateChain"] != null) {
9711
+ result.certificateChain = [];
9712
+ for (const item of jsonObject["certificateChain"]) {
9713
+ const certificateChain = _rfid_CertificateChain__WEBPACK_IMPORTED_MODULE_0__.CertificateChain.fromJson(item);
9714
+ if (certificateChain != null) {
9715
+ result.certificateChain.push(certificateChain);
9716
+ }
9717
+ }
9718
+ }
9719
+ if (jsonObject["docFeatures"] != null) {
9720
+ result.docFeatures = [];
9721
+ for (const item of jsonObject["docFeatures"]) {
9722
+ const docFeature = _DocFeature__WEBPACK_IMPORTED_MODULE_2__.DocFeature.fromJson(item);
9723
+ if (docFeature != null) {
9724
+ result.docFeatures.push(docFeature);
9725
+ }
9726
+ }
9727
+ }
9728
+
9729
+ return result;
9730
+ }
9731
+
9732
+ toJson() {
9733
+ return {
9734
+ "type": this.type,
9735
+ "docType": this.docType,
9736
+ "featureRef": this.featureRef,
9737
+ "version": this.version,
9738
+ "issuingCountry": this.issuingCountry,
9739
+ "docIssueDate": this.docIssueDate,
9740
+ "signature": this.signature?.toJson(),
9741
+ "signatureDate": this.signatureDate,
9742
+ "signer": this.signer,
9743
+ "certificate": this.certificate,
9744
+ "certificateChain": this.certificateChain?.map(e => e.toJson()),
9745
+ "docFeatures": this.docFeatures?.map(e => e.toJson()),
9746
+ "notifications": this.notifications,
9747
+ }
9748
+ }
9749
+ }
9750
+
9751
+
9752
+ /***/ },
9753
+
9754
+ /***/ "./src/results/visible_digital_seals/VDSNCData.js"
9174
9755
  /*!********************************************************!*\
9175
9756
  !*** ./src/results/visible_digital_seals/VDSNCData.js ***!
9176
9757
  \********************************************************/
9177
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9758
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
9178
9759
 
9179
9760
  __webpack_require__.r(__webpack_exports__);
9180
9761
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -9238,13 +9819,13 @@ class VDSNCData {
9238
9819
  }
9239
9820
 
9240
9821
 
9241
- /***/ }),
9822
+ /***/ },
9242
9823
 
9243
- /***/ "./src/results/visual_results/Comparison.js":
9824
+ /***/ "./src/results/visual_results/Comparison.js"
9244
9825
  /*!**************************************************!*\
9245
9826
  !*** ./src/results/visual_results/Comparison.js ***!
9246
9827
  \**************************************************/
9247
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9828
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
9248
9829
 
9249
9830
  __webpack_require__.r(__webpack_exports__);
9250
9831
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -9280,13 +9861,13 @@ class Comparison {
9280
9861
  }
9281
9862
  }
9282
9863
 
9283
- /***/ }),
9864
+ /***/ },
9284
9865
 
9285
- /***/ "./src/results/visual_results/FieldType.js":
9866
+ /***/ "./src/results/visual_results/FieldType.js"
9286
9867
  /*!*************************************************!*\
9287
9868
  !*** ./src/results/visual_results/FieldType.js ***!
9288
9869
  \*************************************************/
9289
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9870
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
9290
9871
 
9291
9872
  __webpack_require__.r(__webpack_exports__);
9292
9873
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -9948,6 +10529,9 @@ const FieldType = {
9948
10529
  NATIONALITY_CODE_ALPHA_2: 697,
9949
10530
  FIRST_ISSUE_DATE_CHECKDIGIT: 698,
9950
10531
  FIRST_ISSUE_DATE_CHECKSUM: 699,
10532
+ COMMERCIAL_INDICATOR: 701,
10533
+ NON_DOMICILED_INDICATOR: 702,
10534
+ JURISDICTION_SPECIFIC_DATA: 703,
9951
10535
  }
9952
10536
 
9953
10537
  FieldType.getTranslation = async function (value) {
@@ -9955,13 +10539,13 @@ FieldType.getTranslation = async function (value) {
9955
10539
  }
9956
10540
 
9957
10541
 
9958
- /***/ }),
10542
+ /***/ },
9959
10543
 
9960
- /***/ "./src/results/visual_results/GraphicField.js":
10544
+ /***/ "./src/results/visual_results/GraphicField.js"
9961
10545
  /*!****************************************************!*\
9962
10546
  !*** ./src/results/visual_results/GraphicField.js ***!
9963
10547
  \****************************************************/
9964
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10548
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
9965
10549
 
9966
10550
  __webpack_require__.r(__webpack_exports__);
9967
10551
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10019,13 +10603,13 @@ class GraphicField {
10019
10603
  }
10020
10604
  }
10021
10605
 
10022
- /***/ }),
10606
+ /***/ },
10023
10607
 
10024
- /***/ "./src/results/visual_results/GraphicFieldType.js":
10608
+ /***/ "./src/results/visual_results/GraphicFieldType.js"
10025
10609
  /*!********************************************************!*\
10026
10610
  !*** ./src/results/visual_results/GraphicFieldType.js ***!
10027
10611
  \********************************************************/
10028
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10612
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10029
10613
 
10030
10614
  __webpack_require__.r(__webpack_exports__);
10031
10615
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10057,13 +10641,13 @@ const GraphicFieldType = {
10057
10641
  FINGER_RIGHT_LITTLE: 309
10058
10642
  };
10059
10643
 
10060
- /***/ }),
10644
+ /***/ },
10061
10645
 
10062
- /***/ "./src/results/visual_results/GraphicResult.js":
10646
+ /***/ "./src/results/visual_results/GraphicResult.js"
10063
10647
  /*!*****************************************************!*\
10064
10648
  !*** ./src/results/visual_results/GraphicResult.js ***!
10065
10649
  \*****************************************************/
10066
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10650
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10067
10651
 
10068
10652
  __webpack_require__.r(__webpack_exports__);
10069
10653
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10099,13 +10683,13 @@ class GraphicResult {
10099
10683
  }
10100
10684
  }
10101
10685
 
10102
- /***/ }),
10686
+ /***/ },
10103
10687
 
10104
- /***/ "./src/results/visual_results/LCID.js":
10688
+ /***/ "./src/results/visual_results/LCID.js"
10105
10689
  /*!********************************************!*\
10106
10690
  !*** ./src/results/visual_results/LCID.js ***!
10107
10691
  \********************************************/
10108
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10692
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10109
10693
 
10110
10694
  __webpack_require__.r(__webpack_exports__);
10111
10695
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10288,13 +10872,13 @@ LCID.getTranslation = async function (value) {
10288
10872
  }
10289
10873
 
10290
10874
 
10291
- /***/ }),
10875
+ /***/ },
10292
10876
 
10293
- /***/ "./src/results/visual_results/Lights.js":
10877
+ /***/ "./src/results/visual_results/Lights.js"
10294
10878
  /*!**********************************************!*\
10295
10879
  !*** ./src/results/visual_results/Lights.js ***!
10296
10880
  \**********************************************/
10297
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10881
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10298
10882
 
10299
10883
  __webpack_require__.r(__webpack_exports__);
10300
10884
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10312,13 +10896,13 @@ const Lights = {
10312
10896
  WHITE_FULL_OVD: 6 | 67108864
10313
10897
  };
10314
10898
 
10315
- /***/ }),
10899
+ /***/ },
10316
10900
 
10317
- /***/ "./src/results/visual_results/RFIDOrigin.js":
10901
+ /***/ "./src/results/visual_results/RFIDOrigin.js"
10318
10902
  /*!**************************************************!*\
10319
10903
  !*** ./src/results/visual_results/RFIDOrigin.js ***!
10320
10904
  \**************************************************/
10321
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10905
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10322
10906
 
10323
10907
  __webpack_require__.r(__webpack_exports__);
10324
10908
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10352,13 +10936,13 @@ class RFIDOrigin {
10352
10936
  }
10353
10937
  }
10354
10938
 
10355
- /***/ }),
10939
+ /***/ },
10356
10940
 
10357
- /***/ "./src/results/visual_results/Rect.js":
10941
+ /***/ "./src/results/visual_results/Rect.js"
10358
10942
  /*!********************************************!*\
10359
10943
  !*** ./src/results/visual_results/Rect.js ***!
10360
10944
  \********************************************/
10361
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10945
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10362
10946
 
10363
10947
  __webpack_require__.r(__webpack_exports__);
10364
10948
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10392,13 +10976,13 @@ class Rect {
10392
10976
  }
10393
10977
  }
10394
10978
 
10395
- /***/ }),
10979
+ /***/ },
10396
10980
 
10397
- /***/ "./src/results/visual_results/Symbol.js":
10981
+ /***/ "./src/results/visual_results/Symbol.js"
10398
10982
  /*!**********************************************!*\
10399
10983
  !*** ./src/results/visual_results/Symbol.js ***!
10400
10984
  \**********************************************/
10401
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10985
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10402
10986
 
10403
10987
  __webpack_require__.r(__webpack_exports__);
10404
10988
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10432,13 +11016,13 @@ class Symbol {
10432
11016
  }
10433
11017
  }
10434
11018
 
10435
- /***/ }),
11019
+ /***/ },
10436
11020
 
10437
- /***/ "./src/results/visual_results/TextField.js":
11021
+ /***/ "./src/results/visual_results/TextField.js"
10438
11022
  /*!*************************************************!*\
10439
11023
  !*** ./src/results/visual_results/TextField.js ***!
10440
11024
  \*************************************************/
10441
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11025
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10442
11026
 
10443
11027
  __webpack_require__.r(__webpack_exports__);
10444
11028
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10536,13 +11120,13 @@ class TextField {
10536
11120
  }
10537
11121
  }
10538
11122
 
10539
- /***/ }),
11123
+ /***/ },
10540
11124
 
10541
- /***/ "./src/results/visual_results/TextResult.js":
11125
+ /***/ "./src/results/visual_results/TextResult.js"
10542
11126
  /*!**************************************************!*\
10543
11127
  !*** ./src/results/visual_results/TextResult.js ***!
10544
11128
  \**************************************************/
10545
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11129
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10546
11130
 
10547
11131
  __webpack_require__.r(__webpack_exports__);
10548
11132
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10604,13 +11188,13 @@ class TextResult {
10604
11188
  }
10605
11189
  }
10606
11190
 
10607
- /***/ }),
11191
+ /***/ },
10608
11192
 
10609
- /***/ "./src/results/visual_results/TextSource.js":
11193
+ /***/ "./src/results/visual_results/TextSource.js"
10610
11194
  /*!**************************************************!*\
10611
11195
  !*** ./src/results/visual_results/TextSource.js ***!
10612
11196
  \**************************************************/
10613
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11197
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10614
11198
 
10615
11199
  __webpack_require__.r(__webpack_exports__);
10616
11200
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10646,13 +11230,13 @@ class TextSource {
10646
11230
  }
10647
11231
  }
10648
11232
 
10649
- /***/ }),
11233
+ /***/ },
10650
11234
 
10651
- /***/ "./src/results/visual_results/Validity.js":
11235
+ /***/ "./src/results/visual_results/Validity.js"
10652
11236
  /*!************************************************!*\
10653
11237
  !*** ./src/results/visual_results/Validity.js ***!
10654
11238
  \************************************************/
10655
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11239
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10656
11240
 
10657
11241
  __webpack_require__.r(__webpack_exports__);
10658
11242
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10685,13 +11269,13 @@ class Validity {
10685
11269
  }
10686
11270
  }
10687
11271
 
10688
- /***/ }),
11272
+ /***/ },
10689
11273
 
10690
- /***/ "./src/results/visual_results/Value.js":
11274
+ /***/ "./src/results/visual_results/Value.js"
10691
11275
  /*!*********************************************!*\
10692
11276
  !*** ./src/results/visual_results/Value.js ***!
10693
11277
  \*********************************************/
10694
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11278
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10695
11279
 
10696
11280
  __webpack_require__.r(__webpack_exports__);
10697
11281
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10754,13 +11338,13 @@ class Value {
10754
11338
  }
10755
11339
  }
10756
11340
 
10757
- /***/ }),
11341
+ /***/ },
10758
11342
 
10759
- /***/ "./src/rfid/PAAttribute.js":
11343
+ /***/ "./src/rfid/PAAttribute.js"
10760
11344
  /*!*********************************!*\
10761
11345
  !*** ./src/rfid/PAAttribute.js ***!
10762
11346
  \*********************************/
10763
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11347
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10764
11348
 
10765
11349
  __webpack_require__.r(__webpack_exports__);
10766
11350
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10792,13 +11376,13 @@ class PAAttribute {
10792
11376
  }
10793
11377
 
10794
11378
 
10795
- /***/ }),
11379
+ /***/ },
10796
11380
 
10797
- /***/ "./src/rfid/PAResourcesIssuer.js":
11381
+ /***/ "./src/rfid/PAResourcesIssuer.js"
10798
11382
  /*!***************************************!*\
10799
11383
  !*** ./src/rfid/PAResourcesIssuer.js ***!
10800
11384
  \***************************************/
10801
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11385
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10802
11386
 
10803
11387
  __webpack_require__.r(__webpack_exports__);
10804
11388
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10842,13 +11426,13 @@ class PAResourcesIssuer {
10842
11426
  }
10843
11427
 
10844
11428
 
10845
- /***/ }),
11429
+ /***/ },
10846
11430
 
10847
- /***/ "./src/rfid/PKDCertificate.js":
11431
+ /***/ "./src/rfid/PKDCertificate.js"
10848
11432
  /*!************************************!*\
10849
11433
  !*** ./src/rfid/PKDCertificate.js ***!
10850
11434
  \************************************/
10851
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11435
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10852
11436
 
10853
11437
  __webpack_require__.r(__webpack_exports__);
10854
11438
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -10893,6 +11477,9 @@ const PKDResourceType = {
10893
11477
  DEFL: 5,
10894
11478
  DEVL: 6,
10895
11479
  BL: 7,
11480
+ LDIF_TA: 8,
11481
+ ML_TA: 9,
11482
+ CBOR: 10,
10896
11483
 
10897
11484
  getType(value) {
10898
11485
  switch (value) {
@@ -10919,13 +11506,13 @@ const PKDResourceType = {
10919
11506
  }
10920
11507
 
10921
11508
 
10922
- /***/ }),
11509
+ /***/ },
10923
11510
 
10924
- /***/ "./src/rfid/RFIDErrorCodes.js":
11511
+ /***/ "./src/rfid/RFIDErrorCodes.js"
10925
11512
  /*!************************************!*\
10926
11513
  !*** ./src/rfid/RFIDErrorCodes.js ***!
10927
11514
  \************************************/
10928
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11515
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
10929
11516
 
10930
11517
  __webpack_require__.r(__webpack_exports__);
10931
11518
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -11057,13 +11644,13 @@ RFIDErrorCodes.getTranslation = async function (value) {
11057
11644
  }
11058
11645
 
11059
11646
 
11060
- /***/ }),
11647
+ /***/ },
11061
11648
 
11062
- /***/ "./src/rfid/RFIDNotification.js":
11649
+ /***/ "./src/rfid/RFIDNotification.js"
11063
11650
  /*!**************************************!*\
11064
11651
  !*** ./src/rfid/RFIDNotification.js ***!
11065
11652
  \**************************************/
11066
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11653
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
11067
11654
 
11068
11655
  __webpack_require__.r(__webpack_exports__);
11069
11656
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -11141,13 +11728,13 @@ const RFIDNotificationCodes = {
11141
11728
  }
11142
11729
 
11143
11730
 
11144
- /***/ }),
11731
+ /***/ },
11145
11732
 
11146
- /***/ "./src/rfid/TAChallenge.js":
11733
+ /***/ "./src/rfid/TAChallenge.js"
11147
11734
  /*!*********************************!*\
11148
11735
  !*** ./src/rfid/TAChallenge.js ***!
11149
11736
  \*********************************/
11150
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11737
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
11151
11738
 
11152
11739
  __webpack_require__.r(__webpack_exports__);
11153
11740
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -11188,13 +11775,13 @@ class TAChallenge {
11188
11775
  }
11189
11776
 
11190
11777
 
11191
- /***/ }),
11778
+ /***/ },
11192
11779
 
11193
- /***/ "./src/rfid/TccParams.js":
11780
+ /***/ "./src/rfid/TccParams.js"
11194
11781
  /*!*******************************!*\
11195
11782
  !*** ./src/rfid/TccParams.js ***!
11196
11783
  \*******************************/
11197
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
11784
+ (__unused_webpack_module, __webpack_exports__, __webpack_require__) {
11198
11785
 
11199
11786
  __webpack_require__.r(__webpack_exports__);
11200
11787
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
@@ -11236,7 +11823,7 @@ class TccParams {
11236
11823
  }
11237
11824
 
11238
11825
 
11239
- /***/ })
11826
+ /***/ }
11240
11827
 
11241
11828
  /******/ });
11242
11829
  /************************************************************************/
@@ -11250,6 +11837,12 @@ class TccParams {
11250
11837
  /******/ if (cachedModule !== undefined) {
11251
11838
  /******/ return cachedModule.exports;
11252
11839
  /******/ }
11840
+ /******/ // Check if module exists (development only)
11841
+ /******/ if (__webpack_modules__[moduleId] === undefined) {
11842
+ /******/ var e = new Error("Cannot find module '" + moduleId + "'");
11843
+ /******/ e.code = 'MODULE_NOT_FOUND';
11844
+ /******/ throw e;
11845
+ /******/ }
11253
11846
  /******/ // Create a new module (and put it into the cache)
11254
11847
  /******/ var module = __webpack_module_cache__[moduleId] = {
11255
11848
  /******/ // no module.id needed