@regulaforensics/document-reader 9.1.485-nightly → 9.1.493-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RNDocumentReader.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +8 -0
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +346 -40
- package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +62 -8
- package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +62 -0
- package/examples/capacitor/ios/App/App/Info.plist +2 -0
- package/examples/capacitor/package.json +1 -1
- package/examples/ionic/config.xml +2 -0
- package/examples/ionic/package-lock.json +5257 -2650
- package/examples/ionic/package.json +10 -10
- package/examples/react_native/app.config.ts +3 -1
- package/examples/react_native/package-lock.json +3 -3
- package/examples/react_native/package.json +1 -1
- package/ios/RGLWConfig.m +9 -2
- package/ios/RGLWJSONConstructor.h +19 -0
- package/ios/RGLWJSONConstructor.m +349 -0
- package/ios/RGLWMain.m +49 -0
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/json.tsx +200 -95
- package/test/package-lock.json +1 -1
- package/test/test.tsx +12 -2
- package/www/capacitor/engagement/DataRetrieval.js +55 -0
- package/www/capacitor/engagement/DeviceEngagement.js +30 -0
- package/www/capacitor/engagement/DeviceRetrievalMethod.js +41 -0
- package/www/capacitor/engagement/DocumentRequestMDL.js +212 -0
- package/www/capacitor/engagement/NameSpaceMDL.js +33 -0
- package/www/capacitor/index.js +54 -2
- package/www/capacitor/info/DocReaderException.js +2 -0
- package/www/capacitor/params/Functionality.js +16 -0
- package/www/capacitor/params/customization/Customization.js +8 -0
- package/www/capacitor/params/process_params/ProcessParams.js +16 -0
- package/www/capacitor/results/Results.js +8 -1
- package/www/capacitor/results/status/AgeStatus.js +35 -0
- package/www/capacitor/results/status/ResultsStatus.js +13 -0
- package/www/capacitor/results/visible_digital_seals/DocFeature.js +23 -0
- package/www/capacitor/results/visible_digital_seals/VDSData.js +75 -0
- package/www/capacitor/results/visual_results/FieldType.js +3 -0
- package/www/capacitor/rfid/PKDCertificate.js +3 -0
- package/www/cordova.js +951 -177
- package/www/react-native/engagement/DataRetrieval.js +55 -0
- package/www/react-native/engagement/DeviceEngagement.js +30 -0
- package/www/react-native/engagement/DeviceRetrievalMethod.js +41 -0
- package/www/react-native/engagement/DocumentRequestMDL.js +212 -0
- package/www/react-native/engagement/NameSpaceMDL.js +33 -0
- package/www/react-native/index.js +54 -2
- package/www/react-native/info/DocReaderException.js +2 -0
- package/www/react-native/params/Functionality.js +16 -0
- package/www/react-native/params/customization/Customization.js +8 -0
- package/www/react-native/params/process_params/ProcessParams.js +16 -0
- package/www/react-native/results/Results.js +8 -1
- package/www/react-native/results/status/AgeStatus.js +35 -0
- package/www/react-native/results/status/ResultsStatus.js +13 -0
- package/www/react-native/results/visible_digital_seals/DocFeature.js +23 -0
- package/www/react-native/results/visible_digital_seals/VDSData.js +75 -0
- package/www/react-native/results/visual_results/FieldType.js +3 -0
- package/www/react-native/rfid/PKDCertificate.js +3 -0
- package/www/types/engagement/DataRetrieval.d.ts +28 -0
- package/www/types/engagement/DeviceEngagement.d.ts +16 -0
- package/www/types/engagement/DeviceRetrievalMethod.d.ts +18 -0
- package/www/types/engagement/DocumentRequestMDL.d.ts +61 -0
- package/www/types/engagement/NameSpaceMDL.d.ts +16 -0
- package/www/types/index.d.ts +35 -2
- package/www/types/info/DocReaderException.d.ts +2 -0
- package/www/types/params/Functionality.d.ts +7 -0
- package/www/types/params/customization/Customization.d.ts +5 -0
- package/www/types/params/process_params/ProcessParams.d.ts +13 -0
- package/www/types/results/Results.d.ts +9 -1
- package/www/types/results/status/AgeStatus.d.ts +14 -0
- package/www/types/results/status/ResultsStatus.d.ts +9 -0
- package/www/types/results/visible_digital_seals/DocFeature.d.ts +9 -0
- package/www/types/results/visible_digital_seals/VDSData.d.ts +32 -0
- package/www/types/results/visible_digital_seals/VDSNCData.d.ts +1 -1
- package/www/types/results/visual_results/FieldType.d.ts +6 -0
- package/www/types/rfid/PKDCertificate.d.ts +7 -1
package/www/cordova.js
CHANGED
|
@@ -398,6 +398,457 @@ class ScannerConfig {
|
|
|
398
398
|
}
|
|
399
399
|
|
|
400
400
|
|
|
401
|
+
/***/ },
|
|
402
|
+
|
|
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
|
+
|
|
401
852
|
/***/ },
|
|
402
853
|
|
|
403
854
|
/***/ "./src/index.js"
|
|
@@ -408,120 +859,132 @@ class ScannerConfig {
|
|
|
408
859
|
|
|
409
860
|
__webpack_require__.r(__webpack_exports__);
|
|
410
861
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
411
|
-
/* harmony export */ AccessControlProcedureType: () => (/* reexport safe */
|
|
412
|
-
/* harmony export */
|
|
413
|
-
/* harmony export */
|
|
414
|
-
/* harmony export */
|
|
415
|
-
/* harmony export */
|
|
416
|
-
/* harmony export */
|
|
417
|
-
/* harmony export */
|
|
418
|
-
/* harmony export */
|
|
419
|
-
/* harmony export */
|
|
420
|
-
/* harmony export */
|
|
421
|
-
/* harmony export */
|
|
422
|
-
/* harmony export */
|
|
423
|
-
/* harmony export */
|
|
424
|
-
/* harmony export */
|
|
425
|
-
/* harmony export */
|
|
426
|
-
/* harmony export */
|
|
427
|
-
/* harmony export */
|
|
428
|
-
/* harmony export */
|
|
429
|
-
/* harmony export */
|
|
430
|
-
/* harmony export */
|
|
431
|
-
/* harmony export */
|
|
432
|
-
/* harmony export */
|
|
433
|
-
/* harmony export */
|
|
434
|
-
/* harmony export */
|
|
435
|
-
/* harmony export */
|
|
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),
|
|
436
888
|
/* harmony export */ CheckResult: () => (/* reexport safe */ _results_status_CheckResult__WEBPACK_IMPORTED_MODULE_34__.CheckResult),
|
|
437
889
|
/* harmony export */ Comparison: () => (/* reexport safe */ _results_visual_results_Comparison__WEBPACK_IMPORTED_MODULE_18__.Comparison),
|
|
438
890
|
/* harmony export */ Coordinate: () => (/* reexport safe */ _results_Position__WEBPACK_IMPORTED_MODULE_31__.Coordinate),
|
|
439
|
-
/* harmony export */ CustomButtonTag: () => (/* reexport safe */
|
|
440
|
-
/* harmony export */ Customization: () => (/* reexport safe */
|
|
441
|
-
/* harmony export */ CustomizationColors: () => (/* reexport safe */
|
|
442
|
-
/* harmony export */ CustomizationFonts: () => (/* reexport safe */
|
|
443
|
-
/* harmony export */ CustomizationImages: () => (/* reexport safe */
|
|
444
|
-
/* harmony export */ DTCDataGroup: () => (/* reexport safe */
|
|
445
|
-
/* harmony export */ DataField: () => (/* reexport safe */
|
|
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),
|
|
446
902
|
/* harmony export */ DocFormat: () => (/* reexport safe */ _results_DocumentType__WEBPACK_IMPORTED_MODULE_28__.DocFormat),
|
|
447
903
|
/* harmony export */ DocReaderAction: () => (/* binding */ DocReaderAction),
|
|
448
904
|
/* harmony export */ DocReaderException: () => (/* reexport safe */ _info_DocReaderException__WEBPACK_IMPORTED_MODULE_8__.DocReaderException),
|
|
449
|
-
/* harmony export */ DocReaderFrame: () => (/* reexport safe */
|
|
905
|
+
/* harmony export */ DocReaderFrame: () => (/* reexport safe */ _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.DocReaderFrame),
|
|
450
906
|
/* harmony export */ DocReaderOrientation: () => (/* reexport safe */ _info_DocReaderScenario__WEBPACK_IMPORTED_MODULE_11__.DocReaderOrientation),
|
|
451
907
|
/* harmony export */ DocReaderScenario: () => (/* reexport safe */ _info_DocReaderScenario__WEBPACK_IMPORTED_MODULE_11__.DocReaderScenario),
|
|
452
908
|
/* harmony export */ DocReaderVersion: () => (/* reexport safe */ _info_DocReaderVersion__WEBPACK_IMPORTED_MODULE_6__.DocReaderVersion),
|
|
453
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),
|
|
454
912
|
/* harmony export */ DocumentType: () => (/* reexport safe */ _results_DocumentType__WEBPACK_IMPORTED_MODULE_28__.DocumentType),
|
|
455
913
|
/* harmony export */ DocumentTypeEnum: () => (/* reexport safe */ _results_DocumentType__WEBPACK_IMPORTED_MODULE_28__.DocType),
|
|
456
914
|
/* harmony export */ DocumentsDatabase: () => (/* reexport safe */ _info_DocumentsDatabase__WEBPACK_IMPORTED_MODULE_9__.DocumentsDatabase),
|
|
457
|
-
/* harmony export */ EDLDataGroups: () => (/* reexport safe */
|
|
458
|
-
/* harmony export */ EIDDataGroups: () => (/* reexport safe */
|
|
459
|
-
/* harmony export */ EPassportDataGroups: () => (/* reexport safe */
|
|
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),
|
|
460
918
|
/* harmony export */ ErrorCodes: () => (/* reexport safe */ _info_DocReaderException__WEBPACK_IMPORTED_MODULE_8__.ErrorCodes),
|
|
461
|
-
/* harmony export */ Extension: () => (/* reexport safe */
|
|
462
|
-
/* harmony export */ FaceApiParams: () => (/* reexport safe */
|
|
463
|
-
/* harmony export */ FaceApiSearchParams: () => (/* reexport safe */
|
|
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),
|
|
464
922
|
/* harmony export */ FieldType: () => (/* reexport safe */ _results_visual_results_FieldType__WEBPACK_IMPORTED_MODULE_22__.FieldType),
|
|
465
|
-
/* harmony export */ File: () => (/* reexport safe */
|
|
466
|
-
/* harmony export */ FileData: () => (/* reexport safe */
|
|
467
|
-
/* harmony export */ Font: () => (/* reexport safe */
|
|
468
|
-
/* harmony export */ FontStyle: () => (/* reexport safe */
|
|
469
|
-
/* harmony export */ FrameShapeType: () => (/* reexport safe */
|
|
470
|
-
/* harmony export */ Functionality: () => (/* reexport safe */
|
|
471
|
-
/* harmony export */ GlaresCheckParams: () => (/* reexport safe */
|
|
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),
|
|
472
930
|
/* harmony export */ GraphicField: () => (/* reexport safe */ _results_visual_results_GraphicField__WEBPACK_IMPORTED_MODULE_23__.GraphicField),
|
|
473
931
|
/* harmony export */ GraphicFieldType: () => (/* reexport safe */ _results_visual_results_GraphicFieldType__WEBPACK_IMPORTED_MODULE_14__.GraphicFieldType),
|
|
474
932
|
/* harmony export */ GraphicResult: () => (/* reexport safe */ _results_visual_results_GraphicResult__WEBPACK_IMPORTED_MODULE_27__.GraphicResult),
|
|
475
933
|
/* harmony export */ ImageFormat: () => (/* reexport safe */ _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__.ImageFormat),
|
|
476
934
|
/* harmony export */ ImageInputData: () => (/* reexport safe */ _config_RecognizeConfig__WEBPACK_IMPORTED_MODULE_5__.ImageInputData),
|
|
477
|
-
/* harmony export */ ImageQA: () => (/* reexport safe */
|
|
478
|
-
/* harmony export */ ImageQuality: () => (/* reexport safe */
|
|
479
|
-
/* harmony export */ ImageQualityCheckType: () => (/* reexport safe */
|
|
480
|
-
/* harmony export */ ImageQualityGroup: () => (/* reexport safe */
|
|
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),
|
|
481
939
|
/* harmony export */ InitConfig: () => (/* reexport safe */ _config_InitConfig__WEBPACK_IMPORTED_MODULE_2__.InitConfig),
|
|
482
940
|
/* harmony export */ LCID: () => (/* reexport safe */ _results_visual_results_LCID__WEBPACK_IMPORTED_MODULE_13__.LCID),
|
|
483
|
-
/* harmony export */ LDSParsingErrorCodes: () => (/* reexport safe */
|
|
484
|
-
/* harmony export */ LDSParsingNotificationCodes: () => (/* reexport safe */
|
|
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),
|
|
485
943
|
/* harmony export */ License: () => (/* reexport safe */ _info_License__WEBPACK_IMPORTED_MODULE_10__.License),
|
|
486
944
|
/* harmony export */ Lights: () => (/* reexport safe */ _results_visual_results_Lights__WEBPACK_IMPORTED_MODULE_20__.Lights),
|
|
487
|
-
/* harmony export */ LivenessParams: () => (/* reexport safe */
|
|
488
|
-
/* harmony export */ LogLevel: () => (/* reexport safe */
|
|
489
|
-
/* harmony export */
|
|
490
|
-
/* harmony export */
|
|
491
|
-
/* harmony export */
|
|
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),
|
|
492
955
|
/* harmony export */ OnlineMode: () => (/* reexport safe */ _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__.OnlineMode),
|
|
493
956
|
/* harmony export */ OnlineProcessingConfig: () => (/* reexport safe */ _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__.OnlineProcessingConfig),
|
|
494
957
|
/* harmony export */ OpticalStatus: () => (/* reexport safe */ _results_status_OpticalStatus__WEBPACK_IMPORTED_MODULE_35__.OpticalStatus),
|
|
495
|
-
/* harmony export */ PAAttribute: () => (/* reexport safe */
|
|
496
|
-
/* harmony export */ PAResourcesIssuer: () => (/* reexport safe */
|
|
497
|
-
/* harmony export */ PDF417Info: () => (/* reexport safe */
|
|
498
|
-
/* harmony export */ PKDCertificate: () => (/* reexport safe */
|
|
499
|
-
/* harmony export */ PKDResourceType: () => (/* reexport safe */
|
|
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),
|
|
500
963
|
/* harmony export */ Position: () => (/* reexport safe */ _results_Position__WEBPACK_IMPORTED_MODULE_31__.Position),
|
|
501
964
|
/* harmony export */ PrepareProgress: () => (/* reexport safe */ _info_PrepareProgress__WEBPACK_IMPORTED_MODULE_7__.PrepareProgress),
|
|
502
|
-
/* harmony export */ ProcessParams: () => (/* reexport safe */
|
|
965
|
+
/* harmony export */ ProcessParams: () => (/* reexport safe */ _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.ProcessParams),
|
|
503
966
|
/* harmony export */ ProcessingFinishedStatus: () => (/* reexport safe */ _results_Results__WEBPACK_IMPORTED_MODULE_29__.ProcessingFinishedStatus),
|
|
504
|
-
/* harmony export */ RFIDAccessControlProcedureType: () => (/* reexport safe */
|
|
505
|
-
/* harmony export */ RFIDApplicationType: () => (/* reexport safe */
|
|
506
|
-
/* harmony export */ RFIDAuthenticationProcedureType: () => (/* reexport safe */
|
|
507
|
-
/* harmony export */ RFIDCertificateType: () => (/* reexport safe */
|
|
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),
|
|
508
971
|
/* harmony export */ RFIDConfig: () => (/* reexport safe */ _config_RFIDConfig__WEBPACK_IMPORTED_MODULE_3__.RFIDConfig),
|
|
509
|
-
/* harmony export */ RFIDDataFileType: () => (/* reexport safe */
|
|
510
|
-
/* harmony export */ RFIDErrorCodes: () => (/* reexport safe */
|
|
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),
|
|
511
974
|
/* harmony export */ RFIDException: () => (/* reexport safe */ _info_RFIDException__WEBPACK_IMPORTED_MODULE_12__.RFIDException),
|
|
512
|
-
/* harmony export */ RFIDNotification: () => (/* reexport safe */
|
|
513
|
-
/* harmony export */ RFIDNotificationCodes: () => (/* reexport safe */
|
|
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),
|
|
514
977
|
/* harmony export */ RFIDOrigin: () => (/* reexport safe */ _results_visual_results_RFIDOrigin__WEBPACK_IMPORTED_MODULE_24__.RFIDOrigin),
|
|
515
|
-
/* harmony export */ RFIDParams: () => (/* reexport safe */
|
|
516
|
-
/* harmony export */ RFIDPasswordType: () => (/* reexport safe */
|
|
517
|
-
/* harmony export */ RFIDReadingBufferSize: () => (/* reexport safe */
|
|
518
|
-
/* harmony export */ RFIDSDKProfilerType: () => (/* reexport safe */
|
|
519
|
-
/* harmony export */ RFIDScenario: () => (/* reexport safe */
|
|
520
|
-
/* harmony export */ RFIDSessionData: () => (/* reexport safe */
|
|
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),
|
|
521
984
|
/* harmony export */ RFIDStatus: () => (/* reexport safe */ _results_status_RFIDStatus__WEBPACK_IMPORTED_MODULE_32__.RFIDStatus),
|
|
522
|
-
/* harmony export */ RFIDTerminalType: () => (/* reexport safe */
|
|
523
|
-
/* harmony export */ RFIDValidity: () => (/* reexport safe */
|
|
524
|
-
/* harmony export */ RFIDValue: () => (/* reexport safe */
|
|
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),
|
|
525
988
|
/* harmony export */ RecognizeConfig: () => (/* reexport safe */ _config_RecognizeConfig__WEBPACK_IMPORTED_MODULE_5__.RecognizeConfig),
|
|
526
989
|
/* harmony export */ Rect: () => (/* reexport safe */ _results_visual_results_Rect__WEBPACK_IMPORTED_MODULE_16__.Rect),
|
|
527
990
|
/* harmony export */ ResultType: () => (/* reexport safe */ _results_Results__WEBPACK_IMPORTED_MODULE_29__.ResultType),
|
|
@@ -529,22 +992,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
529
992
|
/* harmony export */ ResultsStatus: () => (/* reexport safe */ _results_status_ResultsStatus__WEBPACK_IMPORTED_MODULE_33__.ResultsStatus),
|
|
530
993
|
/* harmony export */ ScannerConfig: () => (/* reexport safe */ _config_ScannerConfig__WEBPACK_IMPORTED_MODULE_4__.ScannerConfig),
|
|
531
994
|
/* harmony export */ Scenario: () => (/* reexport safe */ _info_DocReaderScenario__WEBPACK_IMPORTED_MODULE_11__.Scenario),
|
|
532
|
-
/* harmony export */ SecurityFeatureType: () => (/* reexport safe */
|
|
533
|
-
/* harmony export */ SecurityObject: () => (/* reexport safe */
|
|
534
|
-
/* harmony export */ SecurityObjectCertificates: () => (/* reexport safe */
|
|
535
|
-
/* harmony export */ SignManagementAction: () => (/* reexport safe */
|
|
536
|
-
/* harmony export */ SignerInfo: () => (/* reexport safe */
|
|
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),
|
|
537
1000
|
/* harmony export */ Symbol: () => (/* reexport safe */ _results_visual_results_Symbol__WEBPACK_IMPORTED_MODULE_17__.Symbol),
|
|
538
|
-
/* harmony export */ TAChallenge: () => (/* reexport safe */
|
|
539
|
-
/* harmony export */ TccParams: () => (/* reexport safe */
|
|
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),
|
|
540
1003
|
/* harmony export */ TextField: () => (/* reexport safe */ _results_visual_results_TextField__WEBPACK_IMPORTED_MODULE_19__.TextField),
|
|
541
1004
|
/* harmony export */ TextResult: () => (/* reexport safe */ _results_visual_results_TextResult__WEBPACK_IMPORTED_MODULE_25__.TextResult),
|
|
542
1005
|
/* harmony export */ TextSource: () => (/* reexport safe */ _results_visual_results_TextSource__WEBPACK_IMPORTED_MODULE_26__.TextSource),
|
|
543
1006
|
/* harmony export */ TransactionInfo: () => (/* reexport safe */ _results_TransactionInfo__WEBPACK_IMPORTED_MODULE_30__.TransactionInfo),
|
|
544
|
-
/* harmony export */
|
|
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),
|
|
545
1009
|
/* harmony export */ Validity: () => (/* reexport safe */ _results_visual_results_Validity__WEBPACK_IMPORTED_MODULE_21__.Validity),
|
|
546
1010
|
/* harmony export */ Value: () => (/* reexport safe */ _results_visual_results_Value__WEBPACK_IMPORTED_MODULE_15__.Value),
|
|
547
|
-
/* harmony export */ ViewContentMode: () => (/* reexport safe */
|
|
1011
|
+
/* harmony export */ ViewContentMode: () => (/* reexport safe */ _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.ViewContentMode)
|
|
548
1012
|
/* harmony export */ });
|
|
549
1013
|
/* harmony import */ var _internal_bridge__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./internal/bridge */ "./src/internal/bridge.js");
|
|
550
1014
|
/* harmony import */ var _config_OnlineProcessingConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config/OnlineProcessingConfig */ "./src/config/OnlineProcessingConfig.js");
|
|
@@ -582,71 +1046,89 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
582
1046
|
/* harmony import */ var _results_status_ResultsStatus__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./results/status/ResultsStatus */ "./src/results/status/ResultsStatus.js");
|
|
583
1047
|
/* harmony import */ var _results_status_CheckResult__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./results/status/CheckResult */ "./src/results/status/CheckResult.js");
|
|
584
1048
|
/* harmony import */ var _results_status_OpticalStatus__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./results/status/OpticalStatus */ "./src/results/status/OpticalStatus.js");
|
|
585
|
-
/* harmony import */ var
|
|
586
|
-
/* harmony import */ var
|
|
587
|
-
/* harmony import */ var
|
|
588
|
-
/* harmony import */ var
|
|
589
|
-
/* harmony import */ var
|
|
590
|
-
/* harmony import */ var
|
|
591
|
-
/* harmony import */ var
|
|
592
|
-
/* harmony import */ var
|
|
593
|
-
/* harmony import */ var
|
|
594
|
-
/* harmony import */ var
|
|
595
|
-
/* harmony import */ var
|
|
596
|
-
/* harmony import */ var
|
|
597
|
-
/* harmony import */ var
|
|
598
|
-
/* harmony import */ var
|
|
599
|
-
/* harmony import */ var
|
|
600
|
-
/* harmony import */ var
|
|
601
|
-
/* harmony import */ var
|
|
602
|
-
/* harmony import */ var
|
|
603
|
-
/* harmony import */ var
|
|
604
|
-
/* harmony import */ var
|
|
605
|
-
/* harmony import */ var
|
|
606
|
-
/* harmony import */ var
|
|
607
|
-
/* harmony import */ var
|
|
608
|
-
/* harmony import */ var
|
|
609
|
-
/* harmony import */ var
|
|
610
|
-
/* harmony import */ var
|
|
611
|
-
/* harmony import */ var
|
|
612
|
-
/* harmony import */ var
|
|
613
|
-
/* harmony import */ var
|
|
614
|
-
/* harmony import */ var
|
|
615
|
-
/* harmony import */ var
|
|
616
|
-
/* harmony import */ var
|
|
617
|
-
/* harmony import */ var
|
|
618
|
-
/* harmony import */ var
|
|
619
|
-
/* harmony import */ var
|
|
620
|
-
/* harmony import */ var
|
|
621
|
-
/* harmony import */ var
|
|
622
|
-
/* harmony import */ var
|
|
623
|
-
/* harmony import */ var
|
|
624
|
-
/* harmony import */ var
|
|
625
|
-
/* harmony import */ var
|
|
626
|
-
/* harmony import */ var
|
|
627
|
-
/* harmony import */ var
|
|
628
|
-
/* harmony import */ var
|
|
629
|
-
/* harmony import */ var
|
|
630
|
-
/* harmony import */ var
|
|
631
|
-
/* harmony import */ var
|
|
632
|
-
/* harmony import */ var
|
|
633
|
-
/* harmony import */ var
|
|
634
|
-
/* harmony import */ var
|
|
635
|
-
/* harmony import */ var
|
|
636
|
-
/* harmony import */ var
|
|
637
|
-
/* harmony import */ var
|
|
638
|
-
/* harmony import */ var
|
|
639
|
-
/* harmony import */ var
|
|
640
|
-
/* harmony import */ var
|
|
641
|
-
/* harmony import */ var
|
|
642
|
-
/* harmony import */ var
|
|
643
|
-
/* harmony import */ var
|
|
644
|
-
/* harmony import */ var
|
|
645
|
-
/* harmony import */ var
|
|
646
|
-
/* harmony import */ var
|
|
647
|
-
/* harmony import */ var
|
|
648
|
-
/* harmony import */ var
|
|
649
|
-
/* harmony import */ var
|
|
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
|
+
|
|
1131
|
+
|
|
650
1132
|
|
|
651
1133
|
|
|
652
1134
|
|
|
@@ -850,28 +1332,28 @@ class DocumentReader {
|
|
|
850
1332
|
}
|
|
851
1333
|
|
|
852
1334
|
get functionality() { return this._functionality }
|
|
853
|
-
_functionality = new
|
|
1335
|
+
_functionality = new _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.Functionality()
|
|
854
1336
|
set functionality(val) {
|
|
855
1337
|
this._functionality = val;
|
|
856
1338
|
this._functionality._apply();
|
|
857
1339
|
}
|
|
858
1340
|
|
|
859
1341
|
get processParams() { return this._processParams }
|
|
860
|
-
_processParams = new
|
|
1342
|
+
_processParams = new _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.ProcessParams()
|
|
861
1343
|
set processParams(val) {
|
|
862
1344
|
this._processParams = val;
|
|
863
1345
|
this._processParams._apply();
|
|
864
1346
|
}
|
|
865
1347
|
|
|
866
1348
|
get customization() { return this._customization }
|
|
867
|
-
_customization = new
|
|
1349
|
+
_customization = new _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.Customization()
|
|
868
1350
|
set customization(val) {
|
|
869
1351
|
this._customization = val;
|
|
870
1352
|
this._customization._apply();
|
|
871
1353
|
}
|
|
872
1354
|
|
|
873
1355
|
get rfidScenario() { return this._rfidScenario }
|
|
874
|
-
_rfidScenario = new
|
|
1356
|
+
_rfidScenario = new _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDScenario()
|
|
875
1357
|
set rfidScenario(val) {
|
|
876
1358
|
this._rfidScenario = val;
|
|
877
1359
|
this._rfidScenario._apply();
|
|
@@ -887,10 +1369,10 @@ class DocumentReader {
|
|
|
887
1369
|
|
|
888
1370
|
resetConfiguration() {
|
|
889
1371
|
(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("resetConfiguration", []);
|
|
890
|
-
this._functionality = new
|
|
891
|
-
this._processParams = new
|
|
892
|
-
this._customization = new
|
|
893
|
-
this._rfidScenario = new
|
|
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();
|
|
894
1376
|
}
|
|
895
1377
|
|
|
896
1378
|
set onCustomButtonTapped(completion) {
|
|
@@ -1020,6 +1502,48 @@ class DocumentReader {
|
|
|
1020
1502
|
(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("endBackendTransaction", []);
|
|
1021
1503
|
}
|
|
1022
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
|
+
|
|
1023
1547
|
_successOrErrorFromJson(jsonString) {
|
|
1024
1548
|
var jsonObject = JSON.parse(jsonString);
|
|
1025
1549
|
var success = jsonObject["success"];
|
|
@@ -1044,22 +1568,22 @@ class DocumentReader {
|
|
|
1044
1568
|
|
|
1045
1569
|
async _getProcessParams() {
|
|
1046
1570
|
const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getProcessParams", []);
|
|
1047
|
-
return
|
|
1571
|
+
return _params_process_params_ProcessParams__WEBPACK_IMPORTED_MODULE_78__.ProcessParams.fromJson(JSON.parse(response));
|
|
1048
1572
|
}
|
|
1049
1573
|
|
|
1050
1574
|
async _getFunctionality() {
|
|
1051
1575
|
const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getFunctionality", []);
|
|
1052
|
-
return
|
|
1576
|
+
return _params_Functionality__WEBPACK_IMPORTED_MODULE_86__.Functionality.fromJson(JSON.parse(response));
|
|
1053
1577
|
}
|
|
1054
1578
|
|
|
1055
1579
|
async _getCustomization() {
|
|
1056
1580
|
const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getCustomization", []);
|
|
1057
|
-
return
|
|
1581
|
+
return _params_customization_Customization__WEBPACK_IMPORTED_MODULE_90__.Customization.fromJson(JSON.parse(response));
|
|
1058
1582
|
}
|
|
1059
1583
|
|
|
1060
1584
|
async _getRfidScenario() {
|
|
1061
1585
|
const response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("getRfidScenario", []);
|
|
1062
|
-
return
|
|
1586
|
+
return _params_rfid_scenario_RFIDScenario__WEBPACK_IMPORTED_MODULE_95__.RFIDScenario.fromJson(JSON.parse(response));
|
|
1063
1587
|
}
|
|
1064
1588
|
|
|
1065
1589
|
async _getLicense() {
|
|
@@ -1218,6 +1742,7 @@ const ErrorCodes = {
|
|
|
1218
1742
|
CAMERA_NO_PERMISSION: 29,
|
|
1219
1743
|
CAMERA_NOT_AVAILABLE: 30,
|
|
1220
1744
|
CANNOT_USE_CAMERA_IN_SCENARIO: 40,
|
|
1745
|
+
BLUETOOTH_NO_PERMISSION: 41,
|
|
1221
1746
|
BACKEND_ONLINE_PROCESSING: 303,
|
|
1222
1747
|
WRONG_INPUT: 400,
|
|
1223
1748
|
RESULT_UNAVAILABLE: 410,
|
|
@@ -1227,6 +1752,7 @@ const ErrorCodes = {
|
|
|
1227
1752
|
FEATURE_BLUETOOTH_LE_NOT_SUPPORTED: 601,
|
|
1228
1753
|
APP_BACKGROUND: 700,
|
|
1229
1754
|
ONLINE_PROCESSING_WRONG_INPUT: 800,
|
|
1755
|
+
MDL_EXCEPTION: 900,
|
|
1230
1756
|
NATIVE_JAVA_EXCEPTION: 1000
|
|
1231
1757
|
}
|
|
1232
1758
|
|
|
@@ -1862,6 +2388,12 @@ class Functionality {
|
|
|
1862
2388
|
this._set({ "preventScreenRecording": val });
|
|
1863
2389
|
}
|
|
1864
2390
|
|
|
2391
|
+
get homeIndicatorAutoHide() { return this._homeIndicatorAutoHide; }
|
|
2392
|
+
set homeIndicatorAutoHide(val) {
|
|
2393
|
+
this._homeIndicatorAutoHide = val;
|
|
2394
|
+
this._set({ "homeIndicatorAutoHide": val });
|
|
2395
|
+
}
|
|
2396
|
+
|
|
1865
2397
|
get showCaptureButtonDelayFromDetect() { return this._showCaptureButtonDelayFromDetect; }
|
|
1866
2398
|
set showCaptureButtonDelayFromDetect(val) {
|
|
1867
2399
|
this._showCaptureButtonDelayFromDetect = val;
|
|
@@ -1940,6 +2472,12 @@ class Functionality {
|
|
|
1940
2472
|
this._set({ "videoRecordingSizeDownscaleFactor": val });
|
|
1941
2473
|
}
|
|
1942
2474
|
|
|
2475
|
+
get mdlTimeout() { return this._mdlTimeout; }
|
|
2476
|
+
set mdlTimeout(val) {
|
|
2477
|
+
this._mdlTimeout = val;
|
|
2478
|
+
this._set({ "mdlTimeout": val });
|
|
2479
|
+
}
|
|
2480
|
+
|
|
1943
2481
|
get excludedCamera2Models() { return this._excludedCamera2Models; }
|
|
1944
2482
|
set excludedCamera2Models(val) {
|
|
1945
2483
|
this._excludedCamera2Models = val;
|
|
@@ -1980,6 +2518,7 @@ class Functionality {
|
|
|
1980
2518
|
result._singleResult = jsonObject["singleResult"];
|
|
1981
2519
|
result._torchTurnedOn = jsonObject["torchTurnedOn"];
|
|
1982
2520
|
result._preventScreenRecording = jsonObject["preventScreenRecording"];
|
|
2521
|
+
result._homeIndicatorAutoHide = jsonObject["homeIndicatorAutoHide"];
|
|
1983
2522
|
result._showCaptureButtonDelayFromDetect = jsonObject["showCaptureButtonDelayFromDetect"];
|
|
1984
2523
|
result._showCaptureButtonDelayFromStart = jsonObject["showCaptureButtonDelayFromStart"];
|
|
1985
2524
|
result._rfidTimeout = jsonObject["rfidTimeout"];
|
|
@@ -1993,6 +2532,7 @@ class Functionality {
|
|
|
1993
2532
|
result._zoomFactor = jsonObject["zoomFactor"];
|
|
1994
2533
|
result._exposure = jsonObject["exposure"];
|
|
1995
2534
|
result._videoRecordingSizeDownscaleFactor = jsonObject["videoRecordingSizeDownscaleFactor"];
|
|
2535
|
+
result._mdlTimeout = jsonObject["mdlTimeout"];
|
|
1996
2536
|
result._excludedCamera2Models = jsonObject["excludedCamera2Models"];
|
|
1997
2537
|
result._cameraResolutionAndroid = CameraSize.fromJson(jsonObject["cameraSize"]);
|
|
1998
2538
|
result._cameraResolutionIOS = jsonObject["videoSessionPreset"];
|
|
@@ -2020,6 +2560,7 @@ class Functionality {
|
|
|
2020
2560
|
"singleResult": this.singleResult,
|
|
2021
2561
|
"torchTurnedOn": this.torchTurnedOn,
|
|
2022
2562
|
"preventScreenRecording": this.preventScreenRecording,
|
|
2563
|
+
"homeIndicatorAutoHide": this.homeIndicatorAutoHide,
|
|
2023
2564
|
"showCaptureButtonDelayFromDetect": this.showCaptureButtonDelayFromDetect,
|
|
2024
2565
|
"showCaptureButtonDelayFromStart": this.showCaptureButtonDelayFromStart,
|
|
2025
2566
|
"rfidTimeout": this.rfidTimeout,
|
|
@@ -2033,6 +2574,7 @@ class Functionality {
|
|
|
2033
2574
|
"zoomFactor": this.zoomFactor,
|
|
2034
2575
|
"exposure": this.exposure,
|
|
2035
2576
|
"videoRecordingSizeDownscaleFactor": this.videoRecordingSizeDownscaleFactor,
|
|
2577
|
+
"mdlTimeout": this.mdlTimeout,
|
|
2036
2578
|
"excludedCamera2Models": this.excludedCamera2Models,
|
|
2037
2579
|
"cameraSize": this.cameraResolutionAndroid?.toJson(),
|
|
2038
2580
|
"videoSessionPreset": this.cameraResolutionIOS,
|
|
@@ -2378,6 +2920,12 @@ class Customization {
|
|
|
2378
2920
|
this._set({ "cameraPreviewVerticalPositionMultiplier": val });
|
|
2379
2921
|
}
|
|
2380
2922
|
|
|
2923
|
+
get multipageButtonPositionMultiplier() { return this._multipageButtonPositionMultiplier; }
|
|
2924
|
+
set multipageButtonPositionMultiplier(val) {
|
|
2925
|
+
this._multipageButtonPositionMultiplier = val;
|
|
2926
|
+
this._set({ "multipageButtonPositionMultiplier": val });
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2381
2929
|
get multipageAnimationFrontImage() { return this._multipageAnimationFrontImage; }
|
|
2382
2930
|
set multipageAnimationFrontImage(val) {
|
|
2383
2931
|
this._multipageAnimationFrontImage = val;
|
|
@@ -2614,6 +3162,7 @@ class Customization {
|
|
|
2614
3162
|
result._activityIndicatorPortraitPositionMultiplier = jsonObject["activityIndicatorPortraitPositionMultiplier"];
|
|
2615
3163
|
result._activityIndicatorLandscapePositionMultiplier = jsonObject["activityIndicatorLandscapePositionMultiplier"];
|
|
2616
3164
|
result._cameraPreviewVerticalPositionMultiplier = jsonObject["cameraPreviewVerticalPositionMultiplier"];
|
|
3165
|
+
result._multipageButtonPositionMultiplier = jsonObject["multipageButtonPositionMultiplier"];
|
|
2617
3166
|
result._multipageAnimationFrontImage = jsonObject["multipageAnimationFrontImage"];
|
|
2618
3167
|
result._multipageAnimationBackImage = jsonObject["multipageAnimationBackImage"];
|
|
2619
3168
|
result._borderBackgroundImage = jsonObject["borderBackgroundImage"];
|
|
@@ -2692,6 +3241,7 @@ class Customization {
|
|
|
2692
3241
|
"activityIndicatorPortraitPositionMultiplier": this.activityIndicatorPortraitPositionMultiplier,
|
|
2693
3242
|
"activityIndicatorLandscapePositionMultiplier": this.activityIndicatorLandscapePositionMultiplier,
|
|
2694
3243
|
"cameraPreviewVerticalPositionMultiplier": this.cameraPreviewVerticalPositionMultiplier,
|
|
3244
|
+
"multipageButtonPositionMultiplier": this.multipageButtonPositionMultiplier,
|
|
2695
3245
|
"multipageAnimationFrontImage": this.multipageAnimationFrontImage,
|
|
2696
3246
|
"multipageAnimationBackImage": this.multipageAnimationBackImage,
|
|
2697
3247
|
"borderBackgroundImage": this.borderBackgroundImage,
|
|
@@ -3957,6 +4507,12 @@ class ProcessParams {
|
|
|
3957
4507
|
this._set({ "returnTransliteratedFields": val });
|
|
3958
4508
|
}
|
|
3959
4509
|
|
|
4510
|
+
get checkCaptureProcessIntegrity() { return this._checkCaptureProcessIntegrity; }
|
|
4511
|
+
set checkCaptureProcessIntegrity(val) {
|
|
4512
|
+
this._checkCaptureProcessIntegrity = val;
|
|
4513
|
+
this._set({ "checkCaptureProcessIntegrity": val });
|
|
4514
|
+
}
|
|
4515
|
+
|
|
3960
4516
|
get barcodeParserType() { return this._barcodeParserType; }
|
|
3961
4517
|
set barcodeParserType(val) {
|
|
3962
4518
|
this._barcodeParserType = val;
|
|
@@ -4149,6 +4705,12 @@ class ProcessParams {
|
|
|
4149
4705
|
this._set({ "lcidFilter": val });
|
|
4150
4706
|
}
|
|
4151
4707
|
|
|
4708
|
+
get fieldTypesIgnoreFilter() { return this._fieldTypesIgnoreFilter; }
|
|
4709
|
+
set fieldTypesIgnoreFilter(val) {
|
|
4710
|
+
this._fieldTypesIgnoreFilter = val;
|
|
4711
|
+
this._set({ "fieldTypesIgnoreFilter": val });
|
|
4712
|
+
}
|
|
4713
|
+
|
|
4152
4714
|
_imageQA = new _ImageQA__WEBPACK_IMPORTED_MODULE_2__.ImageQA();
|
|
4153
4715
|
get imageQA() { return this._imageQA; }
|
|
4154
4716
|
set imageQA(val) { (this._imageQA = val)._apply(); }
|
|
@@ -4225,6 +4787,7 @@ class ProcessParams {
|
|
|
4225
4787
|
result._disableAuthResolutionFilter = jsonObject["disableAuthResolutionFilter"];
|
|
4226
4788
|
result._strictSecurityChecks = jsonObject["strictSecurityChecks"];
|
|
4227
4789
|
result._returnTransliteratedFields = jsonObject["returnTransliteratedFields"];
|
|
4790
|
+
result._checkCaptureProcessIntegrity = jsonObject["checkCaptureProcessIntegrity"];
|
|
4228
4791
|
result._barcodeParserType = jsonObject["barcodeParserType"];
|
|
4229
4792
|
result._perspectiveAngle = jsonObject["perspectiveAngle"];
|
|
4230
4793
|
result._minDPI = jsonObject["minDPI"];
|
|
@@ -4257,6 +4820,7 @@ class ProcessParams {
|
|
|
4257
4820
|
result._documentGroupFilter = jsonObject["documentGroupFilter"];
|
|
4258
4821
|
result._lcidIgnoreFilter = jsonObject["lcidIgnoreFilter"];
|
|
4259
4822
|
result._lcidFilter = jsonObject["lcidFilter"];
|
|
4823
|
+
result._fieldTypesIgnoreFilter = jsonObject["fieldTypesIgnoreFilter"];
|
|
4260
4824
|
result._imageQA = _ImageQA__WEBPACK_IMPORTED_MODULE_2__.ImageQA.fromJson(jsonObject["imageQA"]);
|
|
4261
4825
|
result._rfidParams = _RFIDParams__WEBPACK_IMPORTED_MODULE_3__.RFIDParams.fromJson(jsonObject["rfidParams"]);
|
|
4262
4826
|
result._faceApiParams = _FaceApiParams__WEBPACK_IMPORTED_MODULE_4__.FaceApiParams.fromJson(jsonObject["faceApiParams"]);
|
|
@@ -4308,6 +4872,7 @@ class ProcessParams {
|
|
|
4308
4872
|
"disableAuthResolutionFilter": this.disableAuthResolutionFilter,
|
|
4309
4873
|
"strictSecurityChecks": this.strictSecurityChecks,
|
|
4310
4874
|
"returnTransliteratedFields": this.returnTransliteratedFields,
|
|
4875
|
+
"checkCaptureProcessIntegrity": this.checkCaptureProcessIntegrity,
|
|
4311
4876
|
"measureSystem": this.measureSystem,
|
|
4312
4877
|
"barcodeParserType": this.barcodeParserType,
|
|
4313
4878
|
"perspectiveAngle": this.perspectiveAngle,
|
|
@@ -4340,6 +4905,7 @@ class ProcessParams {
|
|
|
4340
4905
|
"documentGroupFilter": this.documentGroupFilter,
|
|
4341
4906
|
"lcidIgnoreFilter": this.lcidIgnoreFilter,
|
|
4342
4907
|
"lcidFilter": this.lcidFilter,
|
|
4908
|
+
"fieldTypesIgnoreFilter": this.fieldTypesIgnoreFilter,
|
|
4343
4909
|
"imageQA": this.imageQA?.toJson(),
|
|
4344
4910
|
"rfidParams": this.rfidParams?.toJson(),
|
|
4345
4911
|
"faceApiParams": this.faceApiParams?.toJson(),
|
|
@@ -6059,9 +6625,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6059
6625
|
/* harmony import */ var _visual_results_TextResult__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./visual_results/TextResult */ "./src/results/visual_results/TextResult.js");
|
|
6060
6626
|
/* harmony import */ var _visual_results_TextField__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./visual_results/TextField */ "./src/results/visual_results/TextField.js");
|
|
6061
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");
|
|
6062
|
-
/* harmony import */ var
|
|
6063
|
-
/* harmony import */ var
|
|
6064
|
-
/* harmony import */ var
|
|
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
|
+
|
|
6065
6633
|
|
|
6066
6634
|
|
|
6067
6635
|
|
|
@@ -6095,6 +6663,7 @@ class Results {
|
|
|
6095
6663
|
chipPage
|
|
6096
6664
|
barcodeResult
|
|
6097
6665
|
vdsncData
|
|
6666
|
+
vdsData
|
|
6098
6667
|
dtcData
|
|
6099
6668
|
processingFinishedStatus
|
|
6100
6669
|
morePagesAvailable
|
|
@@ -6269,13 +6838,14 @@ class Results {
|
|
|
6269
6838
|
result.barcodeResult = _barcode_BarcodeResult__WEBPACK_IMPORTED_MODULE_2__.BarcodeResult.fromJson(jsonObject["barcodeResult"]);
|
|
6270
6839
|
result.status = _status_ResultsStatus__WEBPACK_IMPORTED_MODULE_5__.ResultsStatus.fromJson(jsonObject["status"]);
|
|
6271
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"]);
|
|
6272
6842
|
result.dtcData = jsonObject["dtcData"];
|
|
6273
|
-
result.transactionInfo =
|
|
6843
|
+
result.transactionInfo = _TransactionInfo__WEBPACK_IMPORTED_MODULE_18__.TransactionInfo.fromJson(jsonObject["transactionInfo"]);
|
|
6274
6844
|
|
|
6275
6845
|
if (jsonObject["documentPosition"] != null) {
|
|
6276
6846
|
result.documentPosition = [];
|
|
6277
6847
|
for (const item of jsonObject["documentPosition"]) {
|
|
6278
|
-
const position =
|
|
6848
|
+
const position = _Position__WEBPACK_IMPORTED_MODULE_16__.Position.fromJson(item);
|
|
6279
6849
|
if (position != null) {
|
|
6280
6850
|
result.documentPosition.push(position);
|
|
6281
6851
|
}
|
|
@@ -6285,7 +6855,7 @@ class Results {
|
|
|
6285
6855
|
if (jsonObject["barcodePosition"] != null) {
|
|
6286
6856
|
result.barcodePosition = [];
|
|
6287
6857
|
for (const item of jsonObject["barcodePosition"]) {
|
|
6288
|
-
const position =
|
|
6858
|
+
const position = _Position__WEBPACK_IMPORTED_MODULE_16__.Position.fromJson(item);
|
|
6289
6859
|
if (position != null) {
|
|
6290
6860
|
result.barcodePosition.push(position);
|
|
6291
6861
|
}
|
|
@@ -6295,7 +6865,7 @@ class Results {
|
|
|
6295
6865
|
if (jsonObject["mrzPosition"] != null) {
|
|
6296
6866
|
result.mrzPosition = [];
|
|
6297
6867
|
for (const item of jsonObject["mrzPosition"]) {
|
|
6298
|
-
const position =
|
|
6868
|
+
const position = _Position__WEBPACK_IMPORTED_MODULE_16__.Position.fromJson(item);
|
|
6299
6869
|
if (position != null) {
|
|
6300
6870
|
result.mrzPosition.push(position);
|
|
6301
6871
|
}
|
|
@@ -6315,7 +6885,7 @@ class Results {
|
|
|
6315
6885
|
if (jsonObject["documentType"] != null) {
|
|
6316
6886
|
result.documentType = [];
|
|
6317
6887
|
for (const item of jsonObject["documentType"]) {
|
|
6318
|
-
const documentType =
|
|
6888
|
+
const documentType = _DocumentType__WEBPACK_IMPORTED_MODULE_17__.DocumentType.fromJson(item);
|
|
6319
6889
|
if (documentType != null) {
|
|
6320
6890
|
result.documentType.push(documentType);
|
|
6321
6891
|
}
|
|
@@ -6339,6 +6909,7 @@ class Results {
|
|
|
6339
6909
|
"rfidSessionData": this.rfidSessionData?.toJson(),
|
|
6340
6910
|
"barcodeResult": this.barcodeResult?.toJson(),
|
|
6341
6911
|
"vdsncData": this.vdsncData?.toJson(),
|
|
6912
|
+
"vdsData": this.vdsData?.toJson(),
|
|
6342
6913
|
"dtcData": this.dtcData,
|
|
6343
6914
|
"chipPage": this.chipPage,
|
|
6344
6915
|
"processingFinishedStatus": this.processingFinishedStatus,
|
|
@@ -6403,7 +6974,10 @@ const ResultType = {
|
|
|
6403
6974
|
RFID_IMAGE_DATA: 103,
|
|
6404
6975
|
RFID_BINARY_DATA: 104,
|
|
6405
6976
|
RFID_ORIGINAL_GRAPHICS: 105,
|
|
6406
|
-
RFID_DTC_VC: 109
|
|
6977
|
+
RFID_DTC_VC: 109,
|
|
6978
|
+
MDL_PARSED_RESPONSE: 121,
|
|
6979
|
+
VDS_NC: 124,
|
|
6980
|
+
VDS: 125,
|
|
6407
6981
|
};
|
|
6408
6982
|
|
|
6409
6983
|
|
|
@@ -8356,6 +8930,56 @@ class SignerInfo {
|
|
|
8356
8930
|
}
|
|
8357
8931
|
|
|
8358
8932
|
|
|
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
|
+
}
|
|
8969
|
+
|
|
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
|
+
|
|
8359
8983
|
/***/ },
|
|
8360
8984
|
|
|
8361
8985
|
/***/ "./src/results/status/CheckResult.js"
|
|
@@ -8501,7 +9125,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8501
9125
|
/* harmony export */ });
|
|
8502
9126
|
/* harmony import */ var _CheckResult__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CheckResult */ "./src/results/status/CheckResult.js");
|
|
8503
9127
|
/* harmony import */ var _OpticalStatus__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./OpticalStatus */ "./src/results/status/OpticalStatus.js");
|
|
8504
|
-
/* harmony import */ var
|
|
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
|
+
|
|
8505
9131
|
|
|
8506
9132
|
|
|
8507
9133
|
|
|
@@ -8514,6 +9140,10 @@ class ResultsStatus {
|
|
|
8514
9140
|
detailsRFID
|
|
8515
9141
|
portrait
|
|
8516
9142
|
stopList
|
|
9143
|
+
mDL
|
|
9144
|
+
age
|
|
9145
|
+
captureProcessIntegrity
|
|
9146
|
+
ageStatus
|
|
8517
9147
|
|
|
8518
9148
|
static fromJson(jsonObject) {
|
|
8519
9149
|
if (jsonObject == null) return null;
|
|
@@ -8523,9 +9153,13 @@ class ResultsStatus {
|
|
|
8523
9153
|
result.optical = jsonObject["optical"];
|
|
8524
9154
|
result.detailsOptical = _OpticalStatus__WEBPACK_IMPORTED_MODULE_1__.OpticalStatus.fromJson(jsonObject["detailsOptical"]);
|
|
8525
9155
|
result.rfid = jsonObject["rfid"];
|
|
8526
|
-
result.detailsRFID =
|
|
9156
|
+
result.detailsRFID = _RFIDStatus__WEBPACK_IMPORTED_MODULE_3__.RFIDStatus.fromJson(jsonObject["detailsRFID"]);
|
|
8527
9157
|
result.portrait = jsonObject["portrait"];
|
|
8528
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"]);
|
|
8529
9163
|
|
|
8530
9164
|
return result;
|
|
8531
9165
|
}
|
|
@@ -8537,8 +9171,12 @@ class ResultsStatus {
|
|
|
8537
9171
|
"rfid": this.rfid,
|
|
8538
9172
|
"portrait": this.portrait,
|
|
8539
9173
|
"stopList": this.stopList,
|
|
9174
|
+
"mDL": this.mDL,
|
|
9175
|
+
"age": this.age,
|
|
9176
|
+
"captureProcessIntegrity": this.captureProcessIntegrity,
|
|
8540
9177
|
"detailsOptical": this.detailsOptical?.toJson(),
|
|
8541
9178
|
"detailsRFID": this.detailsRFID?.toJson(),
|
|
9179
|
+
"detailsAge": this.ageStatus?.toJson(),
|
|
8542
9180
|
}
|
|
8543
9181
|
}
|
|
8544
9182
|
}
|
|
@@ -8585,6 +9223,44 @@ class BytesData {
|
|
|
8585
9223
|
}
|
|
8586
9224
|
|
|
8587
9225
|
|
|
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
|
+
|
|
8588
9264
|
/***/ },
|
|
8589
9265
|
|
|
8590
9266
|
/***/ "./src/results/visible_digital_seals/LDSParsingErrorCodes.js"
|
|
@@ -8981,6 +9657,98 @@ LDSParsingNotificationCodes.getTranslation = async function (value) {
|
|
|
8981
9657
|
}
|
|
8982
9658
|
|
|
8983
9659
|
|
|
9660
|
+
/***/ },
|
|
9661
|
+
|
|
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
|
+
|
|
8984
9752
|
/***/ },
|
|
8985
9753
|
|
|
8986
9754
|
/***/ "./src/results/visible_digital_seals/VDSNCData.js"
|
|
@@ -9761,6 +10529,9 @@ const FieldType = {
|
|
|
9761
10529
|
NATIONALITY_CODE_ALPHA_2: 697,
|
|
9762
10530
|
FIRST_ISSUE_DATE_CHECKDIGIT: 698,
|
|
9763
10531
|
FIRST_ISSUE_DATE_CHECKSUM: 699,
|
|
10532
|
+
COMMERCIAL_INDICATOR: 701,
|
|
10533
|
+
NON_DOMICILED_INDICATOR: 702,
|
|
10534
|
+
JURISDICTION_SPECIFIC_DATA: 703,
|
|
9764
10535
|
}
|
|
9765
10536
|
|
|
9766
10537
|
FieldType.getTranslation = async function (value) {
|
|
@@ -10706,6 +11477,9 @@ const PKDResourceType = {
|
|
|
10706
11477
|
DEFL: 5,
|
|
10707
11478
|
DEVL: 6,
|
|
10708
11479
|
BL: 7,
|
|
11480
|
+
LDIF_TA: 8,
|
|
11481
|
+
ML_TA: 9,
|
|
11482
|
+
CBOR: 10,
|
|
10709
11483
|
|
|
10710
11484
|
getType(value) {
|
|
10711
11485
|
switch (value) {
|