@regulaforensics/cordova-plugin-document-reader-api 7.4.620 → 7.5.78-rc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitlab/report.yaml +75 -0
- package/.gitlab-ci.yml +49 -0
- package/README.md +1 -1
- package/example/config.xml +14 -12
- package/example/package.json +4 -4
- package/example/www/js/index.js +5 -0
- package/package.json +4 -8
- package/plugin.xml +7 -5
- package/src/android/BluetoothUtil.kt +105 -59
- package/src/android/Config.kt +63 -5
- package/src/android/DocumentReader.kt +66 -47
- package/src/android/JSONConstructor.kt +39 -14
- package/src/android/Utils.kt +7 -2
- package/src/android/build.gradle +2 -4
- package/src/ios/RGLWConfig.h +2 -0
- package/src/ios/RGLWConfig.m +103 -50
- package/src/ios/RGLWDocumentReader.h +4 -1
- package/src/ios/RGLWDocumentReader.m +71 -21
- package/src/ios/RGLWJSONConstructor.h +8 -0
- package/src/ios/RGLWJSONConstructor.m +77 -9
- package/www/DocumentReader.js +82 -6
- package/.github/ISSUE_TEMPLATE/config.yml +0 -5
package/www/DocumentReader.js
CHANGED
|
@@ -702,7 +702,7 @@ class RegulaException {
|
|
|
702
702
|
if (jsonObject == null) return null
|
|
703
703
|
const result = new RegulaException()
|
|
704
704
|
|
|
705
|
-
result.
|
|
705
|
+
result.code = jsonObject["code"]
|
|
706
706
|
result.message = jsonObject["message"]
|
|
707
707
|
|
|
708
708
|
return result
|
|
@@ -993,9 +993,10 @@ class OnlineProcessingConfig {
|
|
|
993
993
|
|
|
994
994
|
result.mode = jsonObject["mode"]
|
|
995
995
|
result.url = jsonObject["url"]
|
|
996
|
-
result.
|
|
996
|
+
result.processParams = ProcessParams.fromJson(jsonObject["processParams"])
|
|
997
997
|
result.imageFormat = jsonObject["imageFormat"]
|
|
998
998
|
result.imageCompressionQuality = jsonObject["imageCompressionQuality"]
|
|
999
|
+
result.requestHeaders = jsonObject["requestHeaders"]
|
|
999
1000
|
|
|
1000
1001
|
return result
|
|
1001
1002
|
}
|
|
@@ -1040,6 +1041,7 @@ class RecognizeConfig {
|
|
|
1040
1041
|
result.scenario = jsonObject["scenario"]
|
|
1041
1042
|
result.onlineProcessingConfig = OnlineProcessingConfig.fromJson(jsonObject["onlineProcessingConfig"])
|
|
1042
1043
|
result.oneShotIdentification = jsonObject["oneShotIdentification"]
|
|
1044
|
+
result.dtc = jsonObject["dtc"]
|
|
1043
1045
|
result.livePortrait = jsonObject["livePortrait"]
|
|
1044
1046
|
result.extPortrait = jsonObject["extPortrait"]
|
|
1045
1047
|
result.image = jsonObject["image"]
|
|
@@ -1094,6 +1096,7 @@ class TransactionInfo {
|
|
|
1094
1096
|
|
|
1095
1097
|
result.transactionId = jsonObject["transactionId"]
|
|
1096
1098
|
result.tag = jsonObject["tag"]
|
|
1099
|
+
result.sessionLogFolder = jsonObject["sessionLogFolder"]
|
|
1097
1100
|
|
|
1098
1101
|
return result
|
|
1099
1102
|
}
|
|
@@ -1138,6 +1141,7 @@ class DocumentReaderResults {
|
|
|
1138
1141
|
result.documentType.push(DocumentReaderDocumentType.fromJson(jsonObject["documentType"][i]))
|
|
1139
1142
|
result.status = DocumentReaderResultsStatus.fromJson(jsonObject["status"])
|
|
1140
1143
|
result.vdsncData = VDSNCData.fromJson(jsonObject["vdsncData"])
|
|
1144
|
+
result.dtcData = jsonObject["dtcData"]
|
|
1141
1145
|
result.transactionInfo = TransactionInfo.fromJson(jsonObject["transactionInfo"])
|
|
1142
1146
|
|
|
1143
1147
|
return result
|
|
@@ -1177,6 +1181,7 @@ class Functionality {
|
|
|
1177
1181
|
result.recordScanningProcess = jsonObject["recordScanningProcess"]
|
|
1178
1182
|
result.manualMultipageMode = jsonObject["manualMultipageMode"]
|
|
1179
1183
|
result.singleResult = jsonObject["singleResult"]
|
|
1184
|
+
result.torchTurnedOn = jsonObject["torchTurnedOn"]
|
|
1180
1185
|
result.showCaptureButtonDelayFromDetect = jsonObject["showCaptureButtonDelayFromDetect"]
|
|
1181
1186
|
result.showCaptureButtonDelayFromStart = jsonObject["showCaptureButtonDelayFromStart"]
|
|
1182
1187
|
result.rfidTimeout = jsonObject["rfidTimeout"]
|
|
@@ -1230,6 +1235,7 @@ class ImageQA {
|
|
|
1230
1235
|
result.expectedPass.push(jsonObject["expectedPass"][i])
|
|
1231
1236
|
result.documentPositionIndent = jsonObject["documentPositionIndent"]
|
|
1232
1237
|
result.brightnessThreshold = jsonObject["brightnessThreshold"]
|
|
1238
|
+
result.occlusionCheck = jsonObject["occlusionCheck"]
|
|
1233
1239
|
|
|
1234
1240
|
return result
|
|
1235
1241
|
}
|
|
@@ -1291,6 +1297,7 @@ class BackendProcessingConfig {
|
|
|
1291
1297
|
result.url = jsonObject["url"]
|
|
1292
1298
|
result.httpHeaders = jsonObject["httpHeaders"]
|
|
1293
1299
|
result.rfidServerSideChipVerification = jsonObject["rfidServerSideChipVerification"]
|
|
1300
|
+
result.timeoutConnection = jsonObject["timeoutConnection"]
|
|
1294
1301
|
|
|
1295
1302
|
return result
|
|
1296
1303
|
}
|
|
@@ -1305,6 +1312,8 @@ class LivenessParams {
|
|
|
1305
1312
|
result.checkMLI = jsonObject["checkMLI"]
|
|
1306
1313
|
result.checkHolo = jsonObject["checkHolo"]
|
|
1307
1314
|
result.checkED = jsonObject["checkED"]
|
|
1315
|
+
result.checkBlackAndWhiteCopy = jsonObject["checkBlackAndWhiteCopy"]
|
|
1316
|
+
result.checkDynaprint = jsonObject["checkDynaprint"]
|
|
1308
1317
|
|
|
1309
1318
|
return result
|
|
1310
1319
|
}
|
|
@@ -1330,6 +1339,7 @@ class AuthenticityParams {
|
|
|
1330
1339
|
result.checkPhotoEmbedding = jsonObject["checkPhotoEmbedding"]
|
|
1331
1340
|
result.checkPhotoComparison = jsonObject["checkPhotoComparison"]
|
|
1332
1341
|
result.checkLetterScreen = jsonObject["checkLetterScreen"]
|
|
1342
|
+
result.checkSecurityText = jsonObject["checkSecurityText"]
|
|
1333
1343
|
|
|
1334
1344
|
return result
|
|
1335
1345
|
}
|
|
@@ -1366,11 +1376,16 @@ class ProcessParams {
|
|
|
1366
1376
|
result.shouldReturnPackageForReprocess = jsonObject["shouldReturnPackageForReprocess"]
|
|
1367
1377
|
result.disablePerforationOCR = jsonObject["disablePerforationOCR"]
|
|
1368
1378
|
result.respectImageQuality = jsonObject["respectImageQuality"]
|
|
1379
|
+
result.strictImageQuality = jsonObject["strictImageQuality"]
|
|
1369
1380
|
result.splitNames = jsonObject["splitNames"]
|
|
1370
1381
|
result.useFaceApi = jsonObject["useFaceApi"]
|
|
1371
1382
|
result.useAuthenticityCheck = jsonObject["useAuthenticityCheck"]
|
|
1372
1383
|
result.checkHologram = jsonObject["checkHologram"]
|
|
1373
1384
|
result.generateNumericCodes = jsonObject["generateNumericCodes"]
|
|
1385
|
+
result.strictBarcodeDigitalSignatureCheck = jsonObject["strictBarcodeDigitalSignatureCheck"]
|
|
1386
|
+
result.selectLongestNames = jsonObject["selectLongestNames"]
|
|
1387
|
+
result.generateDTCVC = jsonObject["generateDTCVC"]
|
|
1388
|
+
result.strictDLCategoryExpiry = jsonObject["strictDLCategoryExpiry"]
|
|
1374
1389
|
result.barcodeParserType = jsonObject["barcodeParserType"]
|
|
1375
1390
|
result.perspectiveAngle = jsonObject["perspectiveAngle"]
|
|
1376
1391
|
result.minDPI = jsonObject["minDPI"]
|
|
@@ -1389,7 +1404,6 @@ class ProcessParams {
|
|
|
1389
1404
|
result.dateFormat = jsonObject["dateFormat"]
|
|
1390
1405
|
result.scenario = jsonObject["scenario"]
|
|
1391
1406
|
result.captureButtonScenario = jsonObject["captureButtonScenario"]
|
|
1392
|
-
result.sessionLogFolder = jsonObject["sessionLogFolder"]
|
|
1393
1407
|
result.timeout = jsonObject["timeout"]
|
|
1394
1408
|
result.timeoutFromFirstDetect = jsonObject["timeoutFromFirstDetect"]
|
|
1395
1409
|
result.timeoutFromFirstDocType = jsonObject["timeoutFromFirstDocType"]
|
|
@@ -1506,6 +1520,8 @@ class Customization {
|
|
|
1506
1520
|
result.cameraFrameBorderWidth = jsonObject["cameraFrameBorderWidth"]
|
|
1507
1521
|
result.cameraFrameLineLength = jsonObject["cameraFrameLineLength"]
|
|
1508
1522
|
result.cameraFrameOffsetWidth = jsonObject["cameraFrameOffsetWidth"]
|
|
1523
|
+
result.nextPageAnimationStartDelay = jsonObject["nextPageAnimationStartDelay"]
|
|
1524
|
+
result.nextPageAnimationEndDelay = jsonObject["nextPageAnimationEndDelay"]
|
|
1509
1525
|
result.cameraFrameShapeType = jsonObject["cameraFrameShapeType"]
|
|
1510
1526
|
result.status = jsonObject["status"]
|
|
1511
1527
|
result.resultStatus = jsonObject["resultStatus"]
|
|
@@ -1519,6 +1535,7 @@ class Customization {
|
|
|
1519
1535
|
result.activityIndicatorColor = jsonObject["activityIndicatorColor"]
|
|
1520
1536
|
result.statusBackgroundColor = jsonObject["statusBackgroundColor"]
|
|
1521
1537
|
result.cameraPreviewBackgroundColor = jsonObject["cameraPreviewBackgroundColor"]
|
|
1538
|
+
result.backgroundMaskColor = jsonObject["backgroundMaskColor"]
|
|
1522
1539
|
result.statusPositionMultiplier = jsonObject["statusPositionMultiplier"]
|
|
1523
1540
|
result.resultStatusPositionMultiplier = jsonObject["resultStatusPositionMultiplier"]
|
|
1524
1541
|
result.toolbarSize = jsonObject["toolbarSize"]
|
|
@@ -1660,6 +1677,21 @@ class EIDDataGroups {
|
|
|
1660
1677
|
}
|
|
1661
1678
|
}
|
|
1662
1679
|
|
|
1680
|
+
class DTCDataGroup {
|
|
1681
|
+
static fromJson(jsonObject) {
|
|
1682
|
+
if (jsonObject == null) return null
|
|
1683
|
+
const result = new DTCDataGroup()
|
|
1684
|
+
|
|
1685
|
+
result.DG17 = jsonObject["DG17"]
|
|
1686
|
+
result.DG18 = jsonObject["DG18"]
|
|
1687
|
+
result.DG22 = jsonObject["DG22"]
|
|
1688
|
+
result.DG23 = jsonObject["DG23"]
|
|
1689
|
+
result.DG24 = jsonObject["DG24"]
|
|
1690
|
+
|
|
1691
|
+
return result
|
|
1692
|
+
}
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1663
1695
|
class RFIDScenario {
|
|
1664
1696
|
static fromJson(jsonObject) {
|
|
1665
1697
|
if (jsonObject == null) return null
|
|
@@ -1699,6 +1731,10 @@ class RFIDScenario {
|
|
|
1699
1731
|
result.applyAmendments = jsonObject["applyAmendments"]
|
|
1700
1732
|
result.autoSettings = jsonObject["autoSettings"]
|
|
1701
1733
|
result.proceedReadingAlways = jsonObject["proceedReadingAlways"]
|
|
1734
|
+
result.readDTC = jsonObject["readDTC"]
|
|
1735
|
+
result.mrzStrictCheck = jsonObject["mrzStrictCheck"]
|
|
1736
|
+
result.loadCRLFromRemote = jsonObject["loadCRLFromRemote"]
|
|
1737
|
+
result.independentSODStatus = jsonObject["independentSODStatus"]
|
|
1702
1738
|
result.readingBuffer = jsonObject["readingBuffer"]
|
|
1703
1739
|
result.onlineTAToSignDataType = jsonObject["onlineTAToSignDataType"]
|
|
1704
1740
|
result.defaultReadingBufferSize = jsonObject["defaultReadingBufferSize"]
|
|
@@ -1714,9 +1750,11 @@ class RFIDScenario {
|
|
|
1714
1750
|
result.mrz = jsonObject["mrz"]
|
|
1715
1751
|
result.eSignPINDefault = jsonObject["eSignPINDefault"]
|
|
1716
1752
|
result.eSignPINNewValue = jsonObject["eSignPINNewValue"]
|
|
1753
|
+
result.cardAccess = jsonObject["cardAccess"]
|
|
1717
1754
|
result.eDLDataGroups = EDLDataGroups.fromJson(jsonObject["eDLDataGroups"])
|
|
1718
1755
|
result.ePassportDataGroups = EPassportDataGroups.fromJson(jsonObject["ePassportDataGroups"])
|
|
1719
1756
|
result.eIDDataGroups = EIDDataGroups.fromJson(jsonObject["eIDDataGroups"])
|
|
1757
|
+
result.dtcDataGroups = DTCDataGroup.fromJson(jsonObject["dtcDataGroups"])
|
|
1720
1758
|
|
|
1721
1759
|
return result
|
|
1722
1760
|
}
|
|
@@ -2089,6 +2127,7 @@ const eRPRM_ResultType = {
|
|
|
2089
2127
|
RPRM_RESULT_TYPE_STATUS: 33,
|
|
2090
2128
|
RPRM_RESULT_TYPE_PORTRAIT_COMPARISON: 34,
|
|
2091
2129
|
RPRM_RESULT_TYPE_EXT_PORTRAIT: 35,
|
|
2130
|
+
RFID_RESULT_TYPE_RFID_DTC_VC: 109,
|
|
2092
2131
|
}
|
|
2093
2132
|
|
|
2094
2133
|
const FrameShapeType = {
|
|
@@ -2219,6 +2258,7 @@ const DocumentReaderErrorCodes = {
|
|
|
2219
2258
|
FINALIZE_FAILED: 28,
|
|
2220
2259
|
CAMERA_NO_PERMISSION: 29,
|
|
2221
2260
|
CAMERA_NOT_AVAILABLE: 30,
|
|
2261
|
+
CANNOT_USE_CAMERA_IN_SCENARIO: 40,
|
|
2222
2262
|
NATIVE_JAVA_EXCEPTION: 1000,
|
|
2223
2263
|
BACKEND_ONLINE_PROCESSING: 303,
|
|
2224
2264
|
WRONG_INPUT: 400,
|
|
@@ -2249,6 +2289,7 @@ const ScenarioIdentifier = {
|
|
|
2249
2289
|
SCENARIO_OCR_FREE: "OcrFree",
|
|
2250
2290
|
SCENARIO_CREDIT_CARD: "CreditCard",
|
|
2251
2291
|
SCENARIO_CAPTURE: "Capture",
|
|
2292
|
+
SCENARIO_DTC: "DTC",
|
|
2252
2293
|
}
|
|
2253
2294
|
|
|
2254
2295
|
const eRFID_AccessControl_ProcedureType = {
|
|
@@ -2336,6 +2377,7 @@ const ViewContentMode = {
|
|
|
2336
2377
|
|
|
2337
2378
|
const BarcodeResult = {
|
|
2338
2379
|
NO_ERR: 0,
|
|
2380
|
+
INVALID_RESULT: 140,
|
|
2339
2381
|
NULL_PTR_ERR: -6001,
|
|
2340
2382
|
BAD_ARG_ERR: -6002,
|
|
2341
2383
|
SIZE_ERR: -6003,
|
|
@@ -2367,6 +2409,17 @@ const BarcodeResult = {
|
|
|
2367
2409
|
IPDECODE_ERROR_LOADING_DEV_TABLE: -4512,
|
|
2368
2410
|
}
|
|
2369
2411
|
|
|
2412
|
+
const eRFID_Application_Type = {
|
|
2413
|
+
ePASSPORT: 1,
|
|
2414
|
+
eID: 2,
|
|
2415
|
+
eSIGN: 3,
|
|
2416
|
+
eDL: 4,
|
|
2417
|
+
LDS2_TRAVEL_RECORDS: 5,
|
|
2418
|
+
LDS2_VISA_RECORDS: 6,
|
|
2419
|
+
LDS2_ADD_BIOMETRICS: 7,
|
|
2420
|
+
eDTC_PC: 8,
|
|
2421
|
+
}
|
|
2422
|
+
|
|
2370
2423
|
const eSignManagementAction = {
|
|
2371
2424
|
smaUndefined: 0,
|
|
2372
2425
|
smaCreatePIN: 1,
|
|
@@ -2420,12 +2473,15 @@ const eCheckDiagnose = {
|
|
|
2420
2473
|
FALSE_LUMINISCENCE_IN_BLANK: 55,
|
|
2421
2474
|
BAD_AREA_IN_AXIAL: 60,
|
|
2422
2475
|
FALSE_IPI_PARAMETERS: 65,
|
|
2476
|
+
ENCRYPTED_IPI_NOT_FOUND: 66,
|
|
2477
|
+
ENCRYPTED_IPI_DATA_DONT_MATCH: 67,
|
|
2423
2478
|
FIELD_POS_CORRECTOR_HIGHLIGHT_IR: 80,
|
|
2424
2479
|
FIELD_POS_CORRECTOR_GLARES_IN_PHOTO_AREA: 81,
|
|
2425
2480
|
FIELD_POS_CORRECTOR_PHOTO_REPLACED: 82,
|
|
2426
2481
|
FIELD_POS_CORRECTOR_LANDMARKS_CHECK_ERROR: 83,
|
|
2427
2482
|
FIELD_POS_CORRECTOR_FACE_PRESENCE_CHECK_ERROR: 84,
|
|
2428
2483
|
FIELD_POS_CORRECTOR_FACE_ABSENCE_CHECK_ERROR: 85,
|
|
2484
|
+
CHD_FIELD_POS_CORRECTOR_INCORRECT_HEAD_POSITION: 86,
|
|
2429
2485
|
OVI_IR_INVISIBLE: 90,
|
|
2430
2486
|
OVI_INSUFFICIENT_AREA: 91,
|
|
2431
2487
|
OVI_COLOR_INVARIABLE: 92,
|
|
@@ -2460,6 +2516,7 @@ const eCheckDiagnose = {
|
|
|
2460
2516
|
BARCODE_SIZE_PARAMS_ERROR: 142,
|
|
2461
2517
|
NOT_ALL_BARCODES_READ: 143,
|
|
2462
2518
|
GLARES_IN_BARCODE_AREA: 144,
|
|
2519
|
+
CHD_NO_CERTIFICATE_FOR_DIGITAL_SIGNATURE_CHECK: 145,
|
|
2463
2520
|
PORTRAIT_COMPARISON_PORTRAITS_DIFFER: 150,
|
|
2464
2521
|
PORTRAIT_COMPARISON_NO_SERVICE_REPLY: 151,
|
|
2465
2522
|
PORTRAIT_COMPARISON_SERVICE_ERROR: 152,
|
|
@@ -2489,6 +2546,8 @@ const eCheckDiagnose = {
|
|
|
2489
2546
|
OCR_QUALITY_INVALID_FONT: 221,
|
|
2490
2547
|
OCR_QUALITY_INVALID_BACKGROUND: 222,
|
|
2491
2548
|
LAS_INK_INVALID_LINES_FREQUENCY: 230,
|
|
2549
|
+
DOC_LIVENESS_DOCUMENT_NOT_LIVE: 238,
|
|
2550
|
+
CHD_DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED: 239,
|
|
2492
2551
|
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED: 240,
|
|
2493
2552
|
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND: 241,
|
|
2494
2553
|
ICAO_IDB_BASE_32_ERROR: 243,
|
|
@@ -2796,6 +2855,7 @@ const eImageQualityCheckType = {
|
|
|
2796
2855
|
IQC_PORTRAIT: 7,
|
|
2797
2856
|
IQC_HANDWRITTEN: 8,
|
|
2798
2857
|
IQC_BRIGHTNESS: 9,
|
|
2858
|
+
IQC_OCCLUSION: 10,
|
|
2799
2859
|
}
|
|
2800
2860
|
|
|
2801
2861
|
const MRZFormat = {
|
|
@@ -2883,6 +2943,8 @@ const eRPRM_SecurityFeatureType = {
|
|
|
2883
2943
|
SECURITY_FEATURE_TYPE_PORTRAIT_COMPARISON_BARCODE_VS_CAMERA: 49,
|
|
2884
2944
|
SECURITY_FEATURE_TYPE_CHECK_DIGITAL_SIGNATURE: 50,
|
|
2885
2945
|
SECURITY_FEATURE_TYPE_CONTACT_CHIP_CLASSIFICATION: 51,
|
|
2946
|
+
SECURITY_FEATURE_TYPE_HEAD_POSITION_CHECK: 52,
|
|
2947
|
+
SECURITY_FEATURE_TYPE_LIVENESS_BLACK_AND_WHITE_COPY_CHECK: 53,
|
|
2886
2948
|
}
|
|
2887
2949
|
|
|
2888
2950
|
const OnlineMode = {
|
|
@@ -3263,6 +3325,11 @@ const eRFID_DataFile_Type = {
|
|
|
3263
3325
|
DFT_PASSPORT_SOD: 21,
|
|
3264
3326
|
DFT_PASSPORT_CVCA: 22,
|
|
3265
3327
|
DFT_PASSPORT_COM: 23,
|
|
3328
|
+
DFT_DTC_DG17: 57,
|
|
3329
|
+
DFT_DTC_DG18: 58,
|
|
3330
|
+
DFT_DTC_DG22: 62,
|
|
3331
|
+
DFT_DTC_DG23: 63,
|
|
3332
|
+
DFT_DTC_DG24: 64,
|
|
3266
3333
|
DFT_ID_DG1: 101,
|
|
3267
3334
|
DFT_ID_DG2: 102,
|
|
3268
3335
|
DFT_ID_DG3: 103,
|
|
@@ -3616,6 +3683,9 @@ const eVisualFieldType = {
|
|
|
3616
3683
|
FT_DOCUMENT_DISCRIMINATOR: 334,
|
|
3617
3684
|
FT_DATA_DISCRIMINATOR: 335,
|
|
3618
3685
|
FT_ISO_ISSUER_ID_NUMBER: 336,
|
|
3686
|
+
FT_DTC_VERSION: 337,
|
|
3687
|
+
FT_DTC_ID: 338,
|
|
3688
|
+
FT_DTC_DATE_OF_EXPIRY: 339,
|
|
3619
3689
|
FT_GNIB_NUMBER: 340,
|
|
3620
3690
|
FT_DEPT_NUMBER: 341,
|
|
3621
3691
|
FT_TELEX_CODE: 342,
|
|
@@ -3968,6 +4038,9 @@ const eVisualFieldType = {
|
|
|
3968
4038
|
FT_METHOD_OF_TESTING: 689,
|
|
3969
4039
|
FT_DIGITAL_TRAVEL_AUTHORIZATION_NUMBER: 690,
|
|
3970
4040
|
FT_DATE_OF_FIRST_POSITIVE_TEST_RESULT: 691,
|
|
4041
|
+
FT_EF_CARD_ACCESS: 692,
|
|
4042
|
+
FT_SHORT_FLIGHT_NUMBER: 693,
|
|
4043
|
+
FT_AIRLINE_CODE: 694,
|
|
3971
4044
|
}
|
|
3972
4045
|
|
|
3973
4046
|
const DocReaderOrientation = {
|
|
@@ -4201,6 +4274,7 @@ const Enum = {
|
|
|
4201
4274
|
eRFID_Password_Type,
|
|
4202
4275
|
ViewContentMode,
|
|
4203
4276
|
BarcodeResult,
|
|
4277
|
+
eRFID_Application_Type,
|
|
4204
4278
|
eSignManagementAction,
|
|
4205
4279
|
eCheckDiagnose,
|
|
4206
4280
|
RFIDDelegate,
|
|
@@ -4243,8 +4317,6 @@ const DocumentReader = {}
|
|
|
4243
4317
|
|
|
4244
4318
|
DocumentReader.getDocumentReaderIsReady = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getDocumentReaderIsReady"])
|
|
4245
4319
|
DocumentReader.getDocumentReaderStatus = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getDocumentReaderStatus"])
|
|
4246
|
-
DocumentReader.isAuthenticatorAvailableForUse = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["isAuthenticatorAvailableForUse"])
|
|
4247
|
-
DocumentReader.isBlePermissionsGranted = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["isBlePermissionsGranted"])
|
|
4248
4320
|
DocumentReader.getRfidSessionStatus = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getRfidSessionStatus"])
|
|
4249
4321
|
DocumentReader.setRfidSessionStatus = (status, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setRfidSessionStatus", status])
|
|
4250
4322
|
DocumentReader.getTag = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getTag"])
|
|
@@ -4284,14 +4356,17 @@ DocumentReader.setTCCParams = (params, successCallback, errorCallback) => cordov
|
|
|
4284
4356
|
DocumentReader.addPKDCertificates = (certificates, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["addPKDCertificates", certificates])
|
|
4285
4357
|
DocumentReader.clearPKDCertificates = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["clearPKDCertificates"])
|
|
4286
4358
|
DocumentReader.startNewSession = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["startNewSession"])
|
|
4287
|
-
DocumentReader.
|
|
4359
|
+
DocumentReader.connectBluetoothDevice = (btDeviceName, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["connectBluetoothDevice", btDeviceName])
|
|
4288
4360
|
DocumentReader.setLocalizationDictionary = (dictionary, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["setLocalizationDictionary", dictionary])
|
|
4289
4361
|
DocumentReader.getLicense = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getLicense"])
|
|
4290
4362
|
DocumentReader.getAvailableScenarios = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getAvailableScenarios"])
|
|
4291
4363
|
DocumentReader.getIsRFIDAvailableForUse = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getIsRFIDAvailableForUse"])
|
|
4364
|
+
DocumentReader.isAuthenticatorRFIDAvailableForUse = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["isAuthenticatorRFIDAvailableForUse"])
|
|
4365
|
+
DocumentReader.isAuthenticatorAvailableForUse = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["isAuthenticatorAvailableForUse"])
|
|
4292
4366
|
DocumentReader.getDocReaderVersion = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getDocReaderVersion"])
|
|
4293
4367
|
DocumentReader.getDocReaderDocumentsDatabase = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getDocReaderDocumentsDatabase"])
|
|
4294
4368
|
DocumentReader.finalizePackage = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["finalizePackage"])
|
|
4369
|
+
DocumentReader.endBackendTransaction = (successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["endBackendTransaction"])
|
|
4295
4370
|
DocumentReader.getTranslation = (className, value, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["getTranslation", className, value])
|
|
4296
4371
|
|
|
4297
4372
|
DocumentReader.textFieldValueByType = (results, fieldType, successCallback, errorCallback) => cordova.exec(successCallback, errorCallback, "DocumentReader", "exec", ["textFieldValueByType", results.rawResult, fieldType])
|
|
@@ -4401,6 +4476,7 @@ DocumentReaderPlugin.Customization = Customization
|
|
|
4401
4476
|
DocumentReaderPlugin.EDLDataGroups = EDLDataGroups
|
|
4402
4477
|
DocumentReaderPlugin.EPassportDataGroups = EPassportDataGroups
|
|
4403
4478
|
DocumentReaderPlugin.EIDDataGroups = EIDDataGroups
|
|
4479
|
+
DocumentReaderPlugin.DTCDataGroup = DTCDataGroup
|
|
4404
4480
|
DocumentReaderPlugin.RFIDScenario = RFIDScenario
|
|
4405
4481
|
DocumentReaderPlugin.PrepareProgress = PrepareProgress
|
|
4406
4482
|
|