@regulaforensics/react-native-document-reader-api 6.8.1 → 6.9.1
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/RNDocumentReaderApi.podspec +1 -1
- package/android/build.gradle +18 -1
- package/android/src/main/java/com/regula/documentreader/BluetoothUtil.kt +6 -6
- package/android/src/main/java/com/regula/documentreader/Helpers.java +117 -3
- package/android/src/main/java/com/regula/documentreader/JSONConstructor.java +182 -261
- package/android/src/main/java/com/regula/documentreader/RNRegulaDocumentReaderModule.java +142 -125
- package/android/src/main/java/com/regula/documentreader/RegulaConfig.java +114 -26
- package/example/.bundle/config +2 -0
- package/example/.eslintrc.js +1 -1
- package/example/.prettierrc.js +2 -2
- package/example/.watchmanconfig +1 -1
- package/example/App.tsx +358 -0
- package/example/Gemfile +6 -0
- package/example/Gemfile.lock +98 -0
- package/example/__tests__/{App-test.js → App.test.tsx} +3 -0
- package/example/android/app/build.gradle +77 -59
- package/example/android/app/src/debug/AndroidManifest.xml +1 -1
- package/example/android/app/src/debug/java/com/regula/dr/fullrfid/ReactNativeFlipper.java +7 -4
- package/example/android/app/src/main/AndroidManifest.xml +4 -9
- package/example/android/app/src/main/java/com/regula/dr/fullrfid/MainActivity.java +17 -0
- package/example/android/app/src/main/java/com/regula/dr/fullrfid/MainApplication.java +17 -36
- package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/example/android/app/src/main/res/values/styles.xml +2 -2
- package/example/android/app/src/release/java/com/regula/dr/fullrfid/ReactNativeFlipper.java +20 -0
- package/example/android/build.gradle +7 -18
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/example/android/gradle.properties +42 -2
- package/example/android/gradlew +164 -105
- package/example/android/gradlew.bat +92 -89
- package/example/android/settings.gradle +2 -1
- package/example/app.json +1 -1
- package/example/ios/.xcode.env +11 -0
- package/example/ios/DocumentReader/AppDelegate.h +2 -4
- package/example/ios/DocumentReader/AppDelegate.mm +26 -0
- package/example/ios/DocumentReader/DocumentReader.entitlements +0 -1
- package/example/ios/DocumentReader/Images.xcassets/AppIcon.appiconset/Contents.json +30 -15
- package/example/ios/DocumentReader/Info.plist +8 -4
- package/example/ios/DocumentReader/main.m +2 -1
- package/example/ios/DocumentReader.xcodeproj/project.pbxproj +134 -96
- package/example/ios/DocumentReaderTests/DocumentReaderTests.m +14 -13
- package/example/ios/Podfile +45 -15
- package/example/jest.config.js +3 -0
- package/example/metro.config.js +18 -15
- package/example/package-lock.json +13091 -0
- package/example/package.json +32 -22
- package/example/tsconfig.json +3 -0
- package/index.d.ts +426 -3015
- package/index.js +253 -2954
- package/ios/RGLWJSONConstructor.h +8 -6
- package/ios/RGLWJSONConstructor.m +109 -92
- package/ios/RGLWRegulaConfig.h +2 -1
- package/ios/RGLWRegulaConfig.m +139 -41
- package/ios/RNRegulaDocumentReader.m +55 -42
- package/package.json +1 -1
- package/example/.buckconfig +0 -6
- package/example/.editorconfig +0 -3
- package/example/.flowconfig +0 -65
- package/example/.gitattributes +0 -3
- package/example/App.js +0 -399
- package/example/android/app/BUCK +0 -55
- package/example/android/app/_BUCK +0 -55
- package/example/android/app/build_defs.bzl +0 -19
- package/example/android/app/src/main/assets/index.android.bundle +0 -636
- package/example/android/app/src/main/res/drawable-mdpi/images_id.png +0 -0
- package/example/android/app/src/main/res/drawable-mdpi/images_portrait.png +0 -0
- package/example/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecheckbox_img_ic_check_box.png +0 -0
- package/example/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png +0 -0
- package/example/android/app/src/main/res/drawable-mdpi/node_modules_reactnativecheckbox_img_ic_indeterminate_check_box.png +0 -0
- package/example/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativecheckbox_img_ic_check_box.png +0 -0
- package/example/android/app/src/main/res/drawable-xhdpi/node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png +0 -0
- package/example/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativecheckbox_img_ic_check_box.png +0 -0
- package/example/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png +0 -0
- package/example/ios/DocumentReader/AppDelegate.m +0 -62
- package/example/ios/DocumentReader/Base.lproj/LaunchScreen.xib +0 -42
package/index.js
CHANGED
|
@@ -11,61 +11,21 @@ export class DocumentReaderScenario {
|
|
|
11
11
|
result.name = jsonObject["name"]
|
|
12
12
|
result.caption = jsonObject["caption"]
|
|
13
13
|
result.description = jsonObject["description"]
|
|
14
|
-
|
|
15
|
-
return result
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export class CoreDetailedScenario {
|
|
20
|
-
static fromJson(jsonObject) {
|
|
21
|
-
if (jsonObject == null) return null
|
|
22
|
-
const result = new CoreDetailedScenario()
|
|
23
|
-
|
|
24
|
-
result.uvTorch = jsonObject["uvTorch"]
|
|
25
|
-
result.frameOrientation = jsonObject["frameOrientation"]
|
|
26
|
-
result.faceExt = jsonObject["faceExt"]
|
|
27
14
|
result.multiPageOff = jsonObject["multiPageOff"]
|
|
28
|
-
result.seriesProcessMode = jsonObject["seriesProcessMode"]
|
|
29
15
|
result.frameKWHLandscape = jsonObject["frameKWHLandscape"]
|
|
30
16
|
result.frameKWHPortrait = jsonObject["frameKWHPortrait"]
|
|
31
17
|
result.frameKWHDoublePageSpreadPortrait = jsonObject["frameKWHDoublePageSpreadPortrait"]
|
|
32
18
|
result.frameKWHDoublePageSpreadLandscape = jsonObject["frameKWHDoublePageSpreadLandscape"]
|
|
33
|
-
result.
|
|
34
|
-
result.
|
|
35
|
-
result.
|
|
19
|
+
result.frameOrientation = jsonObject["frameOrientation"]
|
|
20
|
+
result.uvTorch = jsonObject["uvTorch"]
|
|
21
|
+
result.faceExt = jsonObject["faceExt"]
|
|
22
|
+
result.seriesProcessMode = jsonObject["seriesProcessMode"]
|
|
36
23
|
result.manualCrop = jsonObject["manualCrop"]
|
|
37
24
|
|
|
38
25
|
return result
|
|
39
26
|
}
|
|
40
27
|
}
|
|
41
28
|
|
|
42
|
-
export class FaceMetaData {
|
|
43
|
-
static fromJson(jsonObject) {
|
|
44
|
-
if (jsonObject == null) return null
|
|
45
|
-
const result = new FaceMetaData()
|
|
46
|
-
|
|
47
|
-
result.ID = jsonObject["ID"]
|
|
48
|
-
result.rollAngle = jsonObject["rollAngle"]
|
|
49
|
-
result.bounds = Bounds.fromJson(jsonObject["bounds"])
|
|
50
|
-
|
|
51
|
-
return result
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export class Bounds {
|
|
56
|
-
static fromJson(jsonObject) {
|
|
57
|
-
if (jsonObject == null) return null
|
|
58
|
-
const result = new Bounds()
|
|
59
|
-
|
|
60
|
-
result.x = jsonObject["x"]
|
|
61
|
-
result.y = jsonObject["y"]
|
|
62
|
-
result.width = jsonObject["width"]
|
|
63
|
-
result.height = jsonObject["height"]
|
|
64
|
-
|
|
65
|
-
return result
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
29
|
export class Rect {
|
|
70
30
|
static fromJson(jsonObject) {
|
|
71
31
|
if (jsonObject == null) return null
|
|
@@ -101,7 +61,7 @@ export class DocumentReaderGraphicField {
|
|
|
101
61
|
|
|
102
62
|
result.sourceType = jsonObject["sourceType"]
|
|
103
63
|
result.fieldType = jsonObject["fieldType"]
|
|
104
|
-
result.
|
|
64
|
+
result.light = jsonObject["light"]
|
|
105
65
|
result.pageIndex = jsonObject["pageIndex"]
|
|
106
66
|
result.originalPageIndex = jsonObject["originalPageIndex"]
|
|
107
67
|
result.fieldName = jsonObject["fieldName"]
|
|
@@ -303,8 +263,6 @@ export class DocumentReaderNotification {
|
|
|
303
263
|
if (jsonObject == null) return null
|
|
304
264
|
const result = new DocumentReaderNotification()
|
|
305
265
|
|
|
306
|
-
result.code = jsonObject["code"]
|
|
307
|
-
result.value = jsonObject["value"]
|
|
308
266
|
result.notificationCode = jsonObject["notificationCode"]
|
|
309
267
|
result.dataFileType = jsonObject["dataFileType"]
|
|
310
268
|
result.progress = jsonObject["progress"]
|
|
@@ -615,6 +573,26 @@ export class RFIDSessionData {
|
|
|
615
573
|
if (jsonObject["securityObjects"] != null)
|
|
616
574
|
for (const i in jsonObject["securityObjects"])
|
|
617
575
|
result.securityObjects.push(SecurityObject.fromJson(jsonObject["securityObjects"][i]))
|
|
576
|
+
result.dataGroups = []
|
|
577
|
+
if (jsonObject["dataGroups"] != null)
|
|
578
|
+
for (const i in jsonObject["dataGroups"])
|
|
579
|
+
result.dataGroups.push(jsonObject["dataGroups"][i])
|
|
580
|
+
result.dataFields = []
|
|
581
|
+
if (jsonObject["dataFields"] != null)
|
|
582
|
+
for (const i in jsonObject["dataFields"])
|
|
583
|
+
result.dataFields.push(DataField.fromJson(jsonObject["dataFields"][i]))
|
|
584
|
+
|
|
585
|
+
return result
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
export class DataField {
|
|
590
|
+
static fromJson(jsonObject) {
|
|
591
|
+
if (jsonObject == null) return null
|
|
592
|
+
const result = new DataField()
|
|
593
|
+
|
|
594
|
+
result.data = jsonObject["data"]
|
|
595
|
+
result.fieldType = jsonObject["fieldType"]
|
|
618
596
|
|
|
619
597
|
return result
|
|
620
598
|
}
|
|
@@ -720,7 +698,7 @@ export class DocumentReaderCompletion {
|
|
|
720
698
|
|
|
721
699
|
result.action = jsonObject["action"]
|
|
722
700
|
result.results = DocumentReaderResults.fromJson(jsonObject["results"])
|
|
723
|
-
result.error =
|
|
701
|
+
result.error = RegulaException.fromJson(jsonObject["error"])
|
|
724
702
|
|
|
725
703
|
return result
|
|
726
704
|
}
|
|
@@ -738,10 +716,10 @@ export class RfidNotificationCompletion {
|
|
|
738
716
|
}
|
|
739
717
|
}
|
|
740
718
|
|
|
741
|
-
export class
|
|
719
|
+
export class RegulaException {
|
|
742
720
|
static fromJson(jsonObject) {
|
|
743
721
|
if (jsonObject == null) return null
|
|
744
|
-
const result = new
|
|
722
|
+
const result = new RegulaException()
|
|
745
723
|
|
|
746
724
|
result.errorCode = jsonObject["errorCode"]
|
|
747
725
|
result.message = jsonObject["message"]
|
|
@@ -950,6 +928,7 @@ export class DocReaderDocumentsDatabase {
|
|
|
950
928
|
result.databaseDescription = jsonObject["databaseDescription"]
|
|
951
929
|
result.countriesNumber = jsonObject["countriesNumber"]
|
|
952
930
|
result.documentsNumber = jsonObject["documentsNumber"]
|
|
931
|
+
result.size = jsonObject["size"]
|
|
953
932
|
|
|
954
933
|
return result
|
|
955
934
|
}
|
|
@@ -1020,6 +999,142 @@ export class DocumentReaderValidity {
|
|
|
1020
999
|
}
|
|
1021
1000
|
}
|
|
1022
1001
|
|
|
1002
|
+
export class FaceApiParams {
|
|
1003
|
+
static fromJson(jsonObject) {
|
|
1004
|
+
if (jsonObject == null) return null
|
|
1005
|
+
const result = new FaceApiParams()
|
|
1006
|
+
|
|
1007
|
+
result.url = jsonObject["url"]
|
|
1008
|
+
result.mode = jsonObject["mode"]
|
|
1009
|
+
result.searchParams = Search.fromJson(jsonObject["searchParams"])
|
|
1010
|
+
result.threshold = jsonObject["threshold"]
|
|
1011
|
+
result.serviceTimeout = jsonObject["serviceTimeout"]
|
|
1012
|
+
result.proxy = jsonObject["proxy"]
|
|
1013
|
+
result.proxyPassword = jsonObject["proxyPassword"]
|
|
1014
|
+
result.proxyType = jsonObject["proxyType"]
|
|
1015
|
+
|
|
1016
|
+
return result
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
export class Search {
|
|
1021
|
+
static fromJson(jsonObject) {
|
|
1022
|
+
if (jsonObject == null) return null
|
|
1023
|
+
const result = new Search()
|
|
1024
|
+
|
|
1025
|
+
result.limit = jsonObject["limit"]
|
|
1026
|
+
result.threshold = jsonObject["threshold"]
|
|
1027
|
+
result.groupIds = []
|
|
1028
|
+
if (jsonObject["groupIds"] != null)
|
|
1029
|
+
for (const i in jsonObject["groupIds"])
|
|
1030
|
+
result.groupIds.push(jsonObject["groupIds"][i])
|
|
1031
|
+
|
|
1032
|
+
return result
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
export class ImageQA {
|
|
1037
|
+
static fromJson(jsonObject) {
|
|
1038
|
+
if (jsonObject == null) return null
|
|
1039
|
+
const result = new ImageQA()
|
|
1040
|
+
|
|
1041
|
+
result.dpiThreshold = jsonObject["dpiThreshold"]
|
|
1042
|
+
result.angleThreshold = jsonObject["angleThreshold"]
|
|
1043
|
+
result.focusCheck = jsonObject["focusCheck"]
|
|
1044
|
+
result.glaresCheck = jsonObject["glaresCheck"]
|
|
1045
|
+
result.colornessCheck = jsonObject["colornessCheck"]
|
|
1046
|
+
result.moireCheck = jsonObject["moireCheck"]
|
|
1047
|
+
result.expectedPass = []
|
|
1048
|
+
if (jsonObject["expectedPass"] != null)
|
|
1049
|
+
for (const i in jsonObject["expectedPass"])
|
|
1050
|
+
result.expectedPass.push(jsonObject["expectedPass"][i])
|
|
1051
|
+
result.glaresCheckParams = GlaresCheckParams.fromJson(jsonObject["glaresCheckParams"])
|
|
1052
|
+
result.documentPositionIndent = jsonObject["documentPositionIndent"]
|
|
1053
|
+
|
|
1054
|
+
return result
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
export class GlaresCheckParams {
|
|
1059
|
+
static fromJson(jsonObject) {
|
|
1060
|
+
if (jsonObject == null) return null
|
|
1061
|
+
const result = new GlaresCheckParams()
|
|
1062
|
+
|
|
1063
|
+
result.imgMarginPart = jsonObject["imgMarginPart"]
|
|
1064
|
+
result.maxGlaringPart = jsonObject["maxGlaringPart"]
|
|
1065
|
+
|
|
1066
|
+
return result
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
export class RFIDParams {
|
|
1071
|
+
static fromJson(jsonObject) {
|
|
1072
|
+
if (jsonObject == null) return null
|
|
1073
|
+
const result = new RFIDParams()
|
|
1074
|
+
|
|
1075
|
+
result.paIgnoreNotificationCodes = []
|
|
1076
|
+
if (jsonObject["paIgnoreNotificationCodes"] != null)
|
|
1077
|
+
for (const i in jsonObject["paIgnoreNotificationCodes"])
|
|
1078
|
+
result.paIgnoreNotificationCodes.push(jsonObject["paIgnoreNotificationCodes"][i])
|
|
1079
|
+
|
|
1080
|
+
return result
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
export class OnlineProcessingConfig {
|
|
1085
|
+
static fromJson(jsonObject) {
|
|
1086
|
+
if (jsonObject == null) return null
|
|
1087
|
+
const result = new OnlineProcessingConfig()
|
|
1088
|
+
|
|
1089
|
+
result.mode = jsonObject["mode"]
|
|
1090
|
+
result.url = jsonObject["url"]
|
|
1091
|
+
result.processParam = jsonObject["processParam"]
|
|
1092
|
+
result.imageFormat = jsonObject["imageFormat"]
|
|
1093
|
+
result.imageCompressionQuality = jsonObject["imageCompressionQuality"]
|
|
1094
|
+
|
|
1095
|
+
return result
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
export class ScannerConfig {
|
|
1100
|
+
static fromJson(jsonObject) {
|
|
1101
|
+
if (jsonObject == null) return null
|
|
1102
|
+
const result = new ScannerConfig()
|
|
1103
|
+
|
|
1104
|
+
result.scenario = jsonObject["scenario"]
|
|
1105
|
+
result.livePortrait = jsonObject["livePortrait"]
|
|
1106
|
+
result.extPortrait = jsonObject["extPortrait"]
|
|
1107
|
+
result.onlineProcessingConfig = OnlineProcessingConfig.fromJson(jsonObject["onlineProcessingConfig"])
|
|
1108
|
+
result.cameraId = jsonObject["cameraId"]
|
|
1109
|
+
|
|
1110
|
+
return result
|
|
1111
|
+
}
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
export class RecognizeConfig {
|
|
1115
|
+
static fromJson(jsonObject) {
|
|
1116
|
+
if (jsonObject == null) return null
|
|
1117
|
+
const result = new RecognizeConfig()
|
|
1118
|
+
|
|
1119
|
+
result.scenario = jsonObject["scenario"]
|
|
1120
|
+
result.livePortrait = jsonObject["livePortrait"]
|
|
1121
|
+
result.extPortrait = jsonObject["extPortrait"]
|
|
1122
|
+
result.onlineProcessingConfig = OnlineProcessingConfig.fromJson(jsonObject["onlineProcessingConfig"])
|
|
1123
|
+
result.image = jsonObject["image"]
|
|
1124
|
+
result.oneShotIdentification = jsonObject["oneShotIdentification"]
|
|
1125
|
+
result.images = []
|
|
1126
|
+
if (jsonObject["images"] != null)
|
|
1127
|
+
for (const i in jsonObject["images"])
|
|
1128
|
+
result.images.push(jsonObject["images"][i])
|
|
1129
|
+
result.imageInputData = []
|
|
1130
|
+
if (jsonObject["imageInputData"] != null)
|
|
1131
|
+
for (const i in jsonObject["imageInputData"])
|
|
1132
|
+
result.imageInputData.push(ImageInputData.fromJson(jsonObject["imageInputData"][i]))
|
|
1133
|
+
|
|
1134
|
+
return result
|
|
1135
|
+
}
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1023
1138
|
export class DocumentReaderResults {
|
|
1024
1139
|
constructor() {
|
|
1025
1140
|
// temporary fix, otherwise rawResult can't be accessed in textFieldValueByType
|
|
@@ -1141,173 +1256,6 @@ export class DocumentReaderResults {
|
|
|
1141
1256
|
|
|
1142
1257
|
return result
|
|
1143
1258
|
}
|
|
1144
|
-
|
|
1145
|
-
/**
|
|
1146
|
-
* @deprecated Use textFieldValueBy...()
|
|
1147
|
-
*/
|
|
1148
|
-
getTextFieldValueByType({ fieldType, lcid = 0, source = -1, original = false }) {
|
|
1149
|
-
if (this.textResult == null) return null
|
|
1150
|
-
const field = this.findByTypeAndLcid(fieldType, lcid)
|
|
1151
|
-
if (field == null) return null
|
|
1152
|
-
const value = this.findBySource(field, source)
|
|
1153
|
-
if (value == null) return null
|
|
1154
|
-
return original ? value.originalValue : value.value
|
|
1155
|
-
}
|
|
1156
|
-
|
|
1157
|
-
/**
|
|
1158
|
-
* @deprecated
|
|
1159
|
-
*/
|
|
1160
|
-
getTextFieldStatusByType(fieldType, lcid = 0) {
|
|
1161
|
-
if (this.textResult == null) return 0
|
|
1162
|
-
const field = this.findByTypeAndLcid(fieldType, lcid)
|
|
1163
|
-
return field != null ? field.status : 0
|
|
1164
|
-
}
|
|
1165
|
-
|
|
1166
|
-
/**
|
|
1167
|
-
* @deprecated Use graphicFieldImageBy...()
|
|
1168
|
-
*/
|
|
1169
|
-
getGraphicFieldImageByType({ fieldType, source = -1, pageIndex = -1, light = -1 }) {
|
|
1170
|
-
if (this.graphicResult == null) return null
|
|
1171
|
-
const foundFields = []
|
|
1172
|
-
|
|
1173
|
-
for (const field of this.graphicResult.fields)
|
|
1174
|
-
if (field.fieldType === fieldType)
|
|
1175
|
-
foundFields.push(field)
|
|
1176
|
-
if (source !== -1)
|
|
1177
|
-
for (const index in foundFields)
|
|
1178
|
-
if (foundFields[index].sourceType !== source)
|
|
1179
|
-
foundFields.splice(index, 1)
|
|
1180
|
-
if (light !== -1)
|
|
1181
|
-
for (const index in foundFields)
|
|
1182
|
-
if (foundFields[index].lightType !== light)
|
|
1183
|
-
foundFields.splice(index, 1)
|
|
1184
|
-
if (pageIndex !== -1)
|
|
1185
|
-
for (const index in foundFields)
|
|
1186
|
-
if (foundFields[index].pageIndex !== pageIndex)
|
|
1187
|
-
foundFields.splice(index, 1)
|
|
1188
|
-
if (foundFields.length > 0)
|
|
1189
|
-
return foundFields[0].value
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
/**
|
|
1193
|
-
* @deprecated
|
|
1194
|
-
*/
|
|
1195
|
-
getQualityResult(imageQualityCheckType, securityFeature = -1, pageIndex = 0) {
|
|
1196
|
-
let resultSum = 2
|
|
1197
|
-
if (this.imageQuality == null) return resultSum
|
|
1198
|
-
|
|
1199
|
-
let imageQualityGroup
|
|
1200
|
-
|
|
1201
|
-
for (const iq of this.imageQuality)
|
|
1202
|
-
if (iq != null && iq.pageIndex === pageIndex)
|
|
1203
|
-
imageQualityGroup = iq
|
|
1204
|
-
if (imageQualityGroup == null)
|
|
1205
|
-
return resultSum
|
|
1206
|
-
|
|
1207
|
-
for (const field of imageQualityGroup.imageQualityList)
|
|
1208
|
-
if (field.type === imageQualityCheckType)
|
|
1209
|
-
if (securityFeature === -1) {
|
|
1210
|
-
if (field.result === 0) {
|
|
1211
|
-
resultSum = 0
|
|
1212
|
-
break
|
|
1213
|
-
}
|
|
1214
|
-
if (field.result === 1)
|
|
1215
|
-
resultSum = field.result
|
|
1216
|
-
} else if (field.featureType === securityFeature) {
|
|
1217
|
-
resultSum = field.result
|
|
1218
|
-
break
|
|
1219
|
-
}
|
|
1220
|
-
|
|
1221
|
-
return resultSum
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
/**
|
|
1225
|
-
* @deprecated
|
|
1226
|
-
*/
|
|
1227
|
-
findByTypeAndLcid(type, lcid) {
|
|
1228
|
-
let field
|
|
1229
|
-
const foundFields = []
|
|
1230
|
-
|
|
1231
|
-
for (field of this.textResult.fields)
|
|
1232
|
-
if (field.fieldType === type)
|
|
1233
|
-
foundFields.push(field)
|
|
1234
|
-
if (foundFields.length <= 0)
|
|
1235
|
-
return null
|
|
1236
|
-
|
|
1237
|
-
let foundField = null
|
|
1238
|
-
|
|
1239
|
-
for (field of foundFields)
|
|
1240
|
-
if (lcid === 0) {
|
|
1241
|
-
foundField = field
|
|
1242
|
-
if (field.lcid === lcid)
|
|
1243
|
-
break
|
|
1244
|
-
} else if (field.lcid === lcid)
|
|
1245
|
-
return field
|
|
1246
|
-
|
|
1247
|
-
return foundField
|
|
1248
|
-
}
|
|
1249
|
-
|
|
1250
|
-
/**
|
|
1251
|
-
* @deprecated
|
|
1252
|
-
*/
|
|
1253
|
-
findBySource(field, sourceType) {
|
|
1254
|
-
let value
|
|
1255
|
-
if (sourceType === -1) {
|
|
1256
|
-
const mrzVal = this.findBySource(field, 3)
|
|
1257
|
-
if (mrzVal != null)
|
|
1258
|
-
return mrzVal
|
|
1259
|
-
value = this.findBySource(field, 18)
|
|
1260
|
-
if (value != null)
|
|
1261
|
-
return value
|
|
1262
|
-
const visualVal = this.findBySource(field, 17)
|
|
1263
|
-
return visualVal != null ? visualVal : null
|
|
1264
|
-
}
|
|
1265
|
-
for (const item of field.values)
|
|
1266
|
-
if (item.sourceType === sourceType)
|
|
1267
|
-
return item
|
|
1268
|
-
|
|
1269
|
-
return null
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
/**
|
|
1273
|
-
* @deprecated Use containers()
|
|
1274
|
-
*/
|
|
1275
|
-
getContainers(resultTypes) {
|
|
1276
|
-
try {
|
|
1277
|
-
const json = JSON.parse(this.rawResult)
|
|
1278
|
-
const containerList = json.List
|
|
1279
|
-
const resultArray = []
|
|
1280
|
-
for (const container of containerList){
|
|
1281
|
-
if (container == null || container.length == 0)
|
|
1282
|
-
continue
|
|
1283
|
-
for (const resultType of resultTypes)
|
|
1284
|
-
if(resultType == container.result_type){
|
|
1285
|
-
resultArray.push(container)
|
|
1286
|
-
break
|
|
1287
|
-
}
|
|
1288
|
-
}
|
|
1289
|
-
if (resultArray.length == 0)
|
|
1290
|
-
return null
|
|
1291
|
-
const newContainerList = {}
|
|
1292
|
-
newContainerList.List = resultArray
|
|
1293
|
-
const newJson = {}
|
|
1294
|
-
newJson.ContainerList = newContainerList
|
|
1295
|
-
newJson.TransactionInfo = json.TransactionInfo
|
|
1296
|
-
} catch (error) {
|
|
1297
|
-
return null
|
|
1298
|
-
}
|
|
1299
|
-
}
|
|
1300
|
-
|
|
1301
|
-
/**
|
|
1302
|
-
* @deprecated Use encryptedContainers()
|
|
1303
|
-
*/
|
|
1304
|
-
getEncryptedContainers() {
|
|
1305
|
-
return this.getContainers([
|
|
1306
|
-
eRPRM_ResultType.RPRM_RESULT_TYPE_INTERNAL_RFID_SESSION,
|
|
1307
|
-
eRPRM_ResultType.RPRM_RESULT_TYPE_INTERNAL_ENCRYPTED_RCL,
|
|
1308
|
-
eRPRM_ResultType.RPRM_RESULT_TYPE_INTERNAL_LICENSE
|
|
1309
|
-
])
|
|
1310
|
-
}
|
|
1311
1259
|
}
|
|
1312
1260
|
|
|
1313
1261
|
// Enum
|
|
@@ -1338,10 +1286,9 @@ export const eRPRM_Authenticity = {
|
|
|
1338
1286
|
HOLOGRAMS_DETECTION: 524288,
|
|
1339
1287
|
MRZ: 8388608,
|
|
1340
1288
|
STATUS_ONLY: 0x80000000,
|
|
1341
|
-
OVI:
|
|
1342
|
-
LIVENESS:
|
|
1343
|
-
OCR:
|
|
1344
|
-
UV: 1 | 4 | 16,
|
|
1289
|
+
OVI: 1024,
|
|
1290
|
+
LIVENESS: 2097152,
|
|
1291
|
+
OCR: 4194304,
|
|
1345
1292
|
}
|
|
1346
1293
|
|
|
1347
1294
|
export const eRFID_ErrorCodes = {
|
|
@@ -1459,241 +1406,6 @@ export const eRFID_ErrorCodes = {
|
|
|
1459
1406
|
RFID_ERROR_LAYER34_SAM_ERROR: 0x840D0000,
|
|
1460
1407
|
RFID_ERROR_LAYER34_SAM_COLLISION: 0x840E0000,
|
|
1461
1408
|
RFID_ERROR_LAYER34_SAM_ACKNOWLEDGE: 0x840F0000,
|
|
1462
|
-
|
|
1463
|
-
getTranslation: function (value) {
|
|
1464
|
-
switch (value) {
|
|
1465
|
-
case this.RFID_ERROR_NO_ERROR:
|
|
1466
|
-
return "RFID: No error"
|
|
1467
|
-
case this.RFID_ERROR_ALREADY_DONE:
|
|
1468
|
-
return "RFID: The requested operation is already performed"
|
|
1469
|
-
case this.RFID_ERROR_FAILED:
|
|
1470
|
-
return "RFID: Failed"
|
|
1471
|
-
case this.RFID_ERROR_NO_CHIP_DETECTED:
|
|
1472
|
-
return "RFID: No chip is detected"
|
|
1473
|
-
case this.RFID_ERROR_NOT_AVAILABLE:
|
|
1474
|
-
return "RFID: Unavailable"
|
|
1475
|
-
case this.RFID_ERROR_INVALID_PARAMETER:
|
|
1476
|
-
return "RFID: Invalid parameter in ExecuteCommand() call found"
|
|
1477
|
-
case this.RFID_ERROR_NOT_INITIALIZED:
|
|
1478
|
-
return "RFID: Device is uninitialized"
|
|
1479
|
-
case this.RFID_ERROR_NOT_ENOUGH_MEMORY:
|
|
1480
|
-
return "RFID: Out of memory"
|
|
1481
|
-
case this.RFID_ERROR_INVALID_DIRECTORY:
|
|
1482
|
-
return "RFID: Invalid directory"
|
|
1483
|
-
case this.RFID_ERROR_UNKNOWN_COMMAND:
|
|
1484
|
-
return "RFID: Unknown command"
|
|
1485
|
-
case this.RFID_ERROR_FILE_IO_ERROR:
|
|
1486
|
-
return "RFID File: IO Error"
|
|
1487
|
-
case this.RFID_ERROR_BUSY:
|
|
1488
|
-
return "RFID: RFID is busy"
|
|
1489
|
-
case this.RFID_ERROR_OLD_FIRMWARE:
|
|
1490
|
-
return "RFID: The firmware needs to be updated to a newer version"
|
|
1491
|
-
case this.RFID_ERROR_PCSC_FAILED:
|
|
1492
|
-
return "PCSC: Failed"
|
|
1493
|
-
case this.RFID_ERROR_PCSC_READER_NOT_AVAILABLE:
|
|
1494
|
-
return "PCSC: The reader is unavailable"
|
|
1495
|
-
case this.RFID_ERROR_PCSC_CANT_CONNECT_CARD:
|
|
1496
|
-
return "PCSC: The card cannot be connected"
|
|
1497
|
-
case this.RFID_ERROR_PCSC_CARD_IS_NOT_CONNECTED:
|
|
1498
|
-
return "PCSC: The card is not connected"
|
|
1499
|
-
case this.RFID_ERROR_PCSC_OPERATION_CANCELLED:
|
|
1500
|
-
return "PCSC: Operation is cancelled"
|
|
1501
|
-
case this.RFID_ERROR_PCSC_CARD_IS_BUSY:
|
|
1502
|
-
return "PCSC: The card is busy"
|
|
1503
|
-
case this.RFID_ERROR_PCSC_FAILED_SCARD:
|
|
1504
|
-
return "PCSC: Failed Smart Card"
|
|
1505
|
-
case this.RFID_ERROR_PCSC_EXT_LE_FAILED:
|
|
1506
|
-
return "PCSC: ExtLe Failed"
|
|
1507
|
-
case this.RFID_ERROR_LAYER6_SECURITY_MANAGER:
|
|
1508
|
-
return "LAYER6: Secure Messaging was not activated"
|
|
1509
|
-
case this.RFID_ERROR_LAYER6_APP_SELECTION_FAILURE:
|
|
1510
|
-
return "LAYER6: ISO7816_A_03 \"Application selection failure\""
|
|
1511
|
-
case this.RFID_ERROR_LAYER6_MUTUAL_AUTH_MAC_FAIL:
|
|
1512
|
-
return "LAYER6: ISO7816_B_01 \"Mutual authentication MAC failure\""
|
|
1513
|
-
case this.RFID_ERROR_LAYER6_MUTUAL_AUTH_ENC_FAIL:
|
|
1514
|
-
return "LAYER6: ISO7816_B_02 \"Mutual authentication encryption failure\""
|
|
1515
|
-
case this.RFID_ERROR_LAYER6_MUTUAL_AUTH_FAILURE:
|
|
1516
|
-
return "LAYER6: ISO7816_B_03 \"Mutual authentication failure\""
|
|
1517
|
-
case this.RFID_ERROR_LAYER6_MUTUAL_AUTH_FAILURE_DATA:
|
|
1518
|
-
return "LAYER6: ISO7816_B_03 \"Mutual authentication failure data\""
|
|
1519
|
-
case this.RFID_ERROR_LAYER6_SM_DO_8E_MISSING:
|
|
1520
|
-
return "LAYER6: SM failure – MAC missing"
|
|
1521
|
-
case this.RFID_ERROR_LAYER6_SM_DO_87_MISSING:
|
|
1522
|
-
return "LAYER6: SM failure – cryptogram missing"
|
|
1523
|
-
case this.RFID_ERROR_LAYER6_SM_DO_99_MISSING:
|
|
1524
|
-
return "LAYER6: SM failure – secured status bytes missing"
|
|
1525
|
-
case this.RFID_ERROR_LAYER6_SM_MAC_INCORRECT:
|
|
1526
|
-
return "LAYER6: SM failure – incorrect MAC"
|
|
1527
|
-
case this.RFID_ERROR_LAYER6_SM_DO_87_INCORRECT:
|
|
1528
|
-
return "LAYER6: SM failure – incorrect cryptogram"
|
|
1529
|
-
case this.RFID_ERROR_LAYER6_NON_TLV_RESPONSE_DATA:
|
|
1530
|
-
return "LAYER6: Not TLV response data"
|
|
1531
|
-
case this.RFID_ERROR_LAYER6_WRONG_RND_ICC_LENGTH:
|
|
1532
|
-
return "LAYER6: Wrong data length (APDU_INS_GET_CHALLENGE)"
|
|
1533
|
-
case this.RFID_ERROR_LAYER6_INT_AUTH_FAILURE:
|
|
1534
|
-
return "LAYER6: APDU_INS_INTERNAL_AUTHENTICATE failure"
|
|
1535
|
-
case this.RFID_ERROR_LAYER6_MSE_SET_KAT_FAILURE:
|
|
1536
|
-
return "LAYER6: MSE:Set KAT failure"
|
|
1537
|
-
case this.RFID_ERROR_LAYER6_MSE_SET_DST_FAILURE:
|
|
1538
|
-
return "LAYER6: MSE:Set DST failure"
|
|
1539
|
-
case this.RFID_ERROR_LAYER6_PSO_CERTIFICATE_FAILURE:
|
|
1540
|
-
return "LAYER6: PSO CERTIFICATE failure"
|
|
1541
|
-
case this.RFID_ERROR_LAYER6_MSE_SET_AT_FAILURE:
|
|
1542
|
-
return "LAYER6: MSE:Set AT failure"
|
|
1543
|
-
case this.RFID_ERROR_LAYER6_GET_CHALLENGE_FAILURE:
|
|
1544
|
-
return "LAYER6: GET CHALLENGE failure"
|
|
1545
|
-
case this.RFID_ERROR_LAYER6_EXT_AUTH_FAILURE:
|
|
1546
|
-
return "LAYER6: APDU_INS_EXTERNAL_AUTHENTICATE (external authentication) failure"
|
|
1547
|
-
case this.RFID_ERROR_LAYER6_GENERAL_AUTH_FAILURE:
|
|
1548
|
-
return "LAYER6: General Authenticity Failure"
|
|
1549
|
-
case this.RFID_ERROR_LAYER6_FILE_NOT_FOUND:
|
|
1550
|
-
return "LAYER6: File selection failure / file not found"
|
|
1551
|
-
case this.RFID_ERROR_LAYER6_FILE_EOF1:
|
|
1552
|
-
return "LAYER6: Reading beyond EOF / Unexpected EOF"
|
|
1553
|
-
case this.RFID_ERROR_LAYER6_FILE_EOF2:
|
|
1554
|
-
return "LAYER6: Reading beyond EOF / Unexpected EOF"
|
|
1555
|
-
case this.RFID_ERROR_LAYER6_INCORRECT_PARAMS:
|
|
1556
|
-
return "LAYER6: Incorrect params"
|
|
1557
|
-
case this.RFID_ERROR_LAYER6_NO_REFERENCE_DATA:
|
|
1558
|
-
return "LAYER6: No reference data"
|
|
1559
|
-
case this.RFID_ERROR_LAYER6_PWD_SUSPEND:
|
|
1560
|
-
return "LAYER6: PWD suspended"
|
|
1561
|
-
case this.RFID_ERROR_LAYER6_PWD_BLOCKED:
|
|
1562
|
-
return "LAYER6: PWD blocked"
|
|
1563
|
-
case this.RFID_ERROR_LAYER6_PWD_DEACTIVATED:
|
|
1564
|
-
return "LAYER6: PWD deactivated"
|
|
1565
|
-
case this.RFID_ERROR_LAYER6_PWD_BLOCKED2:
|
|
1566
|
-
return "LAYER6: PWD blocked 2"
|
|
1567
|
-
case this.RFID_ERROR_LAYER6_PWD_DEACTIVATED2:
|
|
1568
|
-
return "LAYER6: PWD deactivated 2"
|
|
1569
|
-
case this.RFID_ERROR_LAYER6_PWD_SUSPEND2:
|
|
1570
|
-
return "LAYER6: PWD suspended 2"
|
|
1571
|
-
case this.RFID_ERROR_LAYER6_PWD_FAILED:
|
|
1572
|
-
return "LAYER6: PWD failed"
|
|
1573
|
-
case this.RFID_ERROR_NOT_PERFORMED:
|
|
1574
|
-
return "RFID: Not performed"
|
|
1575
|
-
case this.RFID_ERROR_SESSION_IS_CLOSED:
|
|
1576
|
-
return "RFID: Session is closed"
|
|
1577
|
-
case this.RFID_ERROR_SESSION_TERMINAL_UNSUPPORTED_OPERATION:
|
|
1578
|
-
return "RFID: Unsupported terminal operation"
|
|
1579
|
-
case this.RFID_ERROR_SESSION_TERMINAL_TYPE_UNKNOWN:
|
|
1580
|
-
return "RFID: Terminal type unknown"
|
|
1581
|
-
case this.RFID_ERROR_SESSION_TERMINAL_TYPE_BAD_CERTIFICATE:
|
|
1582
|
-
return "RFID: Terminal type bad certificate"
|
|
1583
|
-
case this.RFID_ERROR_SESSION_TERMINAL_TYPE_NOT_SET:
|
|
1584
|
-
return "RFID: Terminal type not set"
|
|
1585
|
-
case this.RFID_ERROR_SESSION_PROCEDURE_TYPE_UNKNOWN:
|
|
1586
|
-
return "RFID: Unknown procedure type"
|
|
1587
|
-
case this.RFID_ERROR_Session_Procedure_Type_Unsupported:
|
|
1588
|
-
return "RFID: Unsupported procedure type"
|
|
1589
|
-
case this.RFID_ERROR_SESSION_PROCEDURE_TYPE_NOT_SET:
|
|
1590
|
-
return "RFID: Procedure type not set"
|
|
1591
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_UNKNOWN_TYPE:
|
|
1592
|
-
return "RFID: Access key unknown type"
|
|
1593
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_UNSUPPORTED_SM_TYPE:
|
|
1594
|
-
return "RFID: Access key unsupported SM type"
|
|
1595
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_INCORRECT_SM_TYPE:
|
|
1596
|
-
return "RFID: Access key incorrect SM type"
|
|
1597
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_RESTRICTED:
|
|
1598
|
-
return "RFID: Access key restricted"
|
|
1599
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_INCORRECT_DATA:
|
|
1600
|
-
return "RFID: Access key incorrect data"
|
|
1601
|
-
case this.RFID_ERROR_SESSION_ACCESS_KEY_NOT_SET:
|
|
1602
|
-
return "RFID: Access key not set"
|
|
1603
|
-
case this.RFID_ERROR_SESSION_PWD_MANAGEMENT_NOT_AUTHORIZED:
|
|
1604
|
-
return "RFID: PWD management not authorized"
|
|
1605
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_UNKNOWN_TYPE:
|
|
1606
|
-
return "RFID: Access control unknown type"
|
|
1607
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_SM:
|
|
1608
|
-
return "RFID: Access control unknown type"
|
|
1609
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_PACE:
|
|
1610
|
-
return "RFID: PACE required"
|
|
1611
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_CA_KEYS:
|
|
1612
|
-
return "RFID: CA keys required"
|
|
1613
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_TA:
|
|
1614
|
-
return "RFID: TA required"
|
|
1615
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_REQUIRES_CA:
|
|
1616
|
-
return "RFID: CA required"
|
|
1617
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_INCORRECT_OPTION_CA:
|
|
1618
|
-
return "RFID: Incorrect option CA"
|
|
1619
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_CA_FAILED:
|
|
1620
|
-
return "RFID: CA failed"
|
|
1621
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_TA_FAILED:
|
|
1622
|
-
return "RFID: TA failed"
|
|
1623
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_AA_FAILED:
|
|
1624
|
-
return "RFID: AA failed"
|
|
1625
|
-
case this.RFID_ERROR_SESSION_ACCESS_CONTROL_RI_FAILED:
|
|
1626
|
-
return "RFID: RI failed"
|
|
1627
|
-
case this.RFID_ERROR_SESSION_PA_SIGNATURE_CHECK_FAILED:
|
|
1628
|
-
return "RFID: SO signature check failed"
|
|
1629
|
-
case this.RFID_ERROR_SESSION_PA_HASH_CHECK_FAILED:
|
|
1630
|
-
return "RFID: Hash check failed"
|
|
1631
|
-
case this.RFID_ERROR_SESSION_INVALID_AUX_DATA_DATE_OF_EXPIRY:
|
|
1632
|
-
return "RFID: Invalid aux data - date of expiry"
|
|
1633
|
-
case this.RFID_ERROR_SESSION_INVALID_AUX_DATA_DATE_OF_BIRTH:
|
|
1634
|
-
return "RFID: Invalid aux data - date of birth"
|
|
1635
|
-
case this.RFID_ERROR_SESSION_INVALID_AUX_DATA_COMMUNITY_ID:
|
|
1636
|
-
return "RFID: Invalid aux data - community ID"
|
|
1637
|
-
case this.RFID_ERROR_SESSION_E_SIGN_REQUIRES_APP_SELECTION:
|
|
1638
|
-
return "RFID: eSign requires app selection"
|
|
1639
|
-
case this.RFID_ERROR_SESSION_E_SIGN_PIN_NOT_SET:
|
|
1640
|
-
return "RFID: eSign PIN not set"
|
|
1641
|
-
case this.RFID_ERROR_SESSION_E_SIGN_PIN_NOT_VERIFIED:
|
|
1642
|
-
return "RFID: eSign PIN not verified"
|
|
1643
|
-
case this.RFID_ERROR_SESSION_INCORRECT_DATA:
|
|
1644
|
-
return "RFID: Incorrect data"
|
|
1645
|
-
case this.RFID_ERROR_SESSION_FILE_NOT_ENOUGH_DATA:
|
|
1646
|
-
return "RFID file: Insufficient data"
|
|
1647
|
-
case this.RFID_ERROR_SESSION_FILE_INCORRECT_DATA:
|
|
1648
|
-
return "RFID file: Incorrect data"
|
|
1649
|
-
case this.RFID_ERROR_SESSION_FILE_UNEXPECTED_DATA:
|
|
1650
|
-
return "RFID file: Unexpected data"
|
|
1651
|
-
case this.RFID_ERROR_SESSION_FILE_CONTENTS_UNEXPECTED_DATA:
|
|
1652
|
-
return "RFID file: Contains unexpected data"
|
|
1653
|
-
case this.RFID_ERROR_SESSION_FILE_WRONG_TAG:
|
|
1654
|
-
return "RFID file: Wrong tag"
|
|
1655
|
-
case this.RFID_ERROR_SESSION_FILE_CANT_USE_DATA:
|
|
1656
|
-
return "RFID file: Cannot use data"
|
|
1657
|
-
case this.RFID_ERROR_SESSION_FILE_CANT_READ_DATA:
|
|
1658
|
-
return "RFID file: Cannot read data"
|
|
1659
|
-
case this.RFID_ERROR_SESSION_FILE_ACCESS_DENIED:
|
|
1660
|
-
return "RFID file: Access denied"
|
|
1661
|
-
case this.RFID_ERROR_LAYER34_NO_ERROR:
|
|
1662
|
-
return "RFID: Layer 34 - No error"
|
|
1663
|
-
case this.RFID_ERROR_LAYER34_TIME_OUT:
|
|
1664
|
-
return "RFID: Layer 34 - Timeout"
|
|
1665
|
-
case this.RFID_ERROR_LAYER34_COLLISION:
|
|
1666
|
-
return "RFID: Layer 34 - Collision"
|
|
1667
|
-
case this.RFID_ERROR_LAYER34_CRC:
|
|
1668
|
-
return "RFID: Layer 34 - CRC"
|
|
1669
|
-
case this.RFID_ERROR_LAYER34_DATA_INTEGRITY:
|
|
1670
|
-
return "RFID: Layer 34 - Data integrity"
|
|
1671
|
-
case this.RFID_ERROR_LAYER34_DATA_LENGTH:
|
|
1672
|
-
return "RFID: Layer 34 - Data length"
|
|
1673
|
-
case this.RFID_ERROR_Layer34_RFU:
|
|
1674
|
-
return "RFID: Layer 34 - RFU"
|
|
1675
|
-
case this.RFID_ERROR_LAYER34_COLLISION_TOO_MANY:
|
|
1676
|
-
return "RFID: Layer 34 - Too many collision"
|
|
1677
|
-
case this.RFID_ERROR_LAYER34_PROTOCOL_B:
|
|
1678
|
-
return "RFID: Layer 34 - Protocol B"
|
|
1679
|
-
case this.RFID_ERROR_LAYER34_DATA_CONTENTS:
|
|
1680
|
-
return "RFID: Layer 34 - Data contents"
|
|
1681
|
-
case this.RFID_ERROR_LAYER34_PROTOCOL:
|
|
1682
|
-
return "RFID: Layer 34 - Protocol"
|
|
1683
|
-
case this.RFID_ERROR_LAYER34_GLOBAL_TIME_OUT:
|
|
1684
|
-
return "RFID: Layer 34 - Globa timeout"
|
|
1685
|
-
case this.RFID_ERROR_LAYER34_MIFARE_AUTH:
|
|
1686
|
-
return "RFID: Layer 34 - MIFARE auth"
|
|
1687
|
-
case this.RFID_ERROR_LAYER34_SAM_ERROR:
|
|
1688
|
-
return "RFID: Layer 34 - SAM error"
|
|
1689
|
-
case this.RFID_ERROR_LAYER34_SAM_COLLISION:
|
|
1690
|
-
return "RFID: Layer 34 - SAM collision"
|
|
1691
|
-
case this.RFID_ERROR_LAYER34_SAM_ACKNOWLEDGE:
|
|
1692
|
-
return "RFID: Layer 34 - SAM acknowledge"
|
|
1693
|
-
default:
|
|
1694
|
-
return value
|
|
1695
|
-
}
|
|
1696
|
-
}
|
|
1697
1409
|
}
|
|
1698
1410
|
|
|
1699
1411
|
export const eLDS_ParsingErrorCodes = {
|
|
@@ -1823,267 +1535,6 @@ export const eLDS_ParsingErrorCodes = {
|
|
|
1823
1535
|
ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_ALGORITHM: 0x81000308,
|
|
1824
1536
|
ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_CERTIFICATE: 0x81000309,
|
|
1825
1537
|
ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_VALUE: 0x8100030A,
|
|
1826
|
-
|
|
1827
|
-
getTranslation: function (value) {
|
|
1828
|
-
switch (value) {
|
|
1829
|
-
case this.ERR_LDS_OK:
|
|
1830
|
-
return "OK"
|
|
1831
|
-
case this.ERR_LDS_ASN_INCORRECT_DATA:
|
|
1832
|
-
return "Error - ASN: Incorrect data"
|
|
1833
|
-
case this.RR_LDS_ASN_NOT_ENOUGH_DATA:
|
|
1834
|
-
return "Error - ASN: Not enough data"
|
|
1835
|
-
case this.ERR_LDS_ASN_CONTENTS_UNEXPECTED_DATA:
|
|
1836
|
-
return "Error - ASN: Contents unexpected data"
|
|
1837
|
-
case this.ERR_LDS_ASN_SIGNED_DATA_INCORRECT_DATA:
|
|
1838
|
-
return "Error - ASN Signed data: Incorrect data"
|
|
1839
|
-
case this.ERR_LDS_ASN_SIGNED_DATA_ENCAP_CONTENTS_INCORRECT_DATA:
|
|
1840
|
-
return "Error - ASN Signed data: Encap contents incorrect data"
|
|
1841
|
-
case this.ERR_LDS_ASN_SIGNED_DATA_VERSION_INCORRECT_DATA:
|
|
1842
|
-
return "Error - ASN Signed data: Version incorrect data"
|
|
1843
|
-
case this.ERR_LDS_ASN_SIGNED_DATA_DIGEST_ALGORITHMS_INCORRECT_DATA:
|
|
1844
|
-
return "Error - ASN Signed data: Digest algorithms incorrect data"
|
|
1845
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_INCORRECT_DATA:
|
|
1846
|
-
return "Error - ASN LDS object: Incorrect data"
|
|
1847
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_VERSION_INCORRECT_DATA:
|
|
1848
|
-
return "Error - ASN LDS object: Version incorrect data"
|
|
1849
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_DIGEST_ALGORITHM_INCORRECT_DATA:
|
|
1850
|
-
return "Error - ASN LDS object: Digest algorithm incorrect data"
|
|
1851
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_DG_HASHES_INCORRECT_DATA:
|
|
1852
|
-
return "Error - ASN LDS object: DG hashes incorrect data"
|
|
1853
|
-
case this.ERR_LDS_ASN_LDS_OBJECT_VERSION_INFO_INCORRECT_DATA:
|
|
1854
|
-
return "Error - ASN LDS object: Version info incorrect data"
|
|
1855
|
-
case this.ERR_LDS_ASN_CERTIFICATE_INCORRECT_DATA:
|
|
1856
|
-
return "Error - ASN Certificate: Incorrect data"
|
|
1857
|
-
case this.ERR_LDS_ASN_CERTIFICATE_VERSION_INCORRECT_DATA:
|
|
1858
|
-
return "Error - ASN Certificate: Version incorrect data"
|
|
1859
|
-
case this.ERR_LDS_ASN_CERTIFICATE_SN_INCORRECT_DATA:
|
|
1860
|
-
return "Error - ASN Certificate: SN incorrect data"
|
|
1861
|
-
case this.ERR_LDS_ASN_CERTIFICATE_SIGNATURE_INCORRECT_DATA:
|
|
1862
|
-
return "Error - ASN Certificate: Signature incorrect data"
|
|
1863
|
-
case this.ERR_LDS_ASN_CERTIFICATE_ISSUER_INCORRECT_DATA:
|
|
1864
|
-
return "Error - ASN Certificate: Issuer incorrect data"
|
|
1865
|
-
case this.ERR_LDS_ASN_CERTIFICATE_VALIDITY_INCORRECT_DATA:
|
|
1866
|
-
return "Error - ASN Certificate: Validity incorrect data"
|
|
1867
|
-
case this.ERR_LDS_ASN_CERTIFICATE_SUBJECT_INCORRECT_DATA:
|
|
1868
|
-
return "Error - ASN Certificate: Subject incorrect data"
|
|
1869
|
-
case this.ERR_LDS_ASN_CERTIFICATE_SUBJECT_PK_INCORRECT_DATA:
|
|
1870
|
-
return "Error - ASN Certificate: Subject PK incorrect data"
|
|
1871
|
-
case this.ERR_LDS_ASN_CERTIFICATE_EXTENSIONS_INCORRECT_DATA:
|
|
1872
|
-
return "Error - ASN Certificate: Extensions incorrect data"
|
|
1873
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_INCORRECT_DATA:
|
|
1874
|
-
return "Error - ASN Signer info: Incorrect data"
|
|
1875
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_VERSION_INCORRECT_DATA:
|
|
1876
|
-
return "Error - ASN Signer info: Version incorrect data"
|
|
1877
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_SID_INCORRECT_DATA:
|
|
1878
|
-
return "Error - ASN Signer info: SID incorrect data"
|
|
1879
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_DIGEST_ALG_INCORRECT_DATA:
|
|
1880
|
-
return "Error - ASN Signer info: Digest algorithms incorrect data"
|
|
1881
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_SIGNED_ATTRS_INCORRECT_DATA:
|
|
1882
|
-
return "Error - ASN Signer info: Signed attributes incorrect data"
|
|
1883
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_SIGN_ALG_INCORRECT_DATA:
|
|
1884
|
-
return "Error - ASN Signer info: Sign algorithms incorrect data"
|
|
1885
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_SIGNATURE_INCORRECT_DATA:
|
|
1886
|
-
return "Error - ASN Signer info: Signature incorrect data"
|
|
1887
|
-
case this.ERR_LDS_ASN_SIGNER_INFO_UNSIGNED_ATTRS_INCORRECT_DATA:
|
|
1888
|
-
return "Error - ASN Signer info: Unsigned attributes incorrect data"
|
|
1889
|
-
case this.ERR_LDS_ICAO_LDS_OBJECT_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
1890
|
-
return "Error - ICAO LDS object: Unsupported digest algorithm"
|
|
1891
|
-
case -this.ERR_LDS_ICAO_SIGNED_DATA_SIGNER_INFOS_EMPTY:
|
|
1892
|
-
return "Error - ICAO Signed data: Signer info empty"
|
|
1893
|
-
case this.ERR_LDS_ICAO_SIGNER_INFO_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
1894
|
-
return "Error - ICAO Signer info: Unsupported digest algorithm"
|
|
1895
|
-
case this.ERR_LDS_ICAO_SIGNER_INFO_UNSUPPORTED_SIGNATURE_ALGORITHM:
|
|
1896
|
-
return "Error - ICAO Signer info: Unsupported signature algorithm"
|
|
1897
|
-
case this.ERR_LDS_ICAO_SIGNER_INFO_MESSAGE_DIGEST_ERROR:
|
|
1898
|
-
return "Error - ICAO Signer info: Message digest error"
|
|
1899
|
-
case this.ERR_LDS_ICAO_SIGNER_INFO_SIGNED_ATTRS_MISSED:
|
|
1900
|
-
return "Error - ICAO Signer info: Signed attributes missed"
|
|
1901
|
-
case this.ERR_LDS_AUTH_SIGNER_INFO_CANT_FIND_CERTIFICATE:
|
|
1902
|
-
return "Error - Auth: Signer info cannot find certificate"
|
|
1903
|
-
case this.ERR_LDS_AUTH_ERROR:
|
|
1904
|
-
return "Error - Auth: Error"
|
|
1905
|
-
case this.ERR_LDS_AUTH_UNSUPPORTED_SIGNATURE_ALGORITHM:
|
|
1906
|
-
return "Error - Auth: Unsupported signature algorithm"
|
|
1907
|
-
case this.ERR_LDS_AUTH_UNSUPPORTED_PUBLIC_KEY_ALGORITHM:
|
|
1908
|
-
return "Error - Auth: Unsupported public key algorithm"
|
|
1909
|
-
case this.ERR_LDS_AUTH_MESSED_ALGORITHMS:
|
|
1910
|
-
return "Error - Auth: Messed algorithms"
|
|
1911
|
-
case this.ERR_LDS_AUTH_PUBLIC_KEY_DATA_INVALID:
|
|
1912
|
-
return "Error - Auth: Public key data invalid"
|
|
1913
|
-
case this.ERR_LDS_AUTH_ALGORITHM_PARAMETERS_DATA_INVALID:
|
|
1914
|
-
return "Error - Auth: Algorithm parameters data invalid"
|
|
1915
|
-
case this.ERR_LDS_AUTH_SIGNATURE_DATA_INVALID:
|
|
1916
|
-
return "Error - Auth: Signature data invalid"
|
|
1917
|
-
case this.ERR_LDS_AUTH_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
1918
|
-
return "Error - Auth: Unsupported digest algorithm"
|
|
1919
|
-
case this.ERR_LDS_AUTH_SIGNATURE_DATA_INCORRECT:
|
|
1920
|
-
return "Error - Auth: Signature data incorrect"
|
|
1921
|
-
case this.ERR_LDS_AUTH_ALGORITHM_PARAMETERS_NOT_DEFINED:
|
|
1922
|
-
return "Error - Auth: Algorithm parameters not defined"
|
|
1923
|
-
case this.ERR_LDS_AUTH_SIGNATURE_CHECK_FAILED:
|
|
1924
|
-
return "Error - Auth: Signature check failed"
|
|
1925
|
-
case this.ERR_LDS_DG_WRONG_TAH:
|
|
1926
|
-
return "Error - DG: Wrong Tag"
|
|
1927
|
-
case this.ERR_LDS_PACE_INFO_NOT_AVAILABLE:
|
|
1928
|
-
return "Error - PACE: Info Not Available"
|
|
1929
|
-
case this.ERR_LDS_PACE_SYMMETRIC_CYPHER_CANT_INITIALIZE:
|
|
1930
|
-
return "Error - PACE: Symmetric Cypher Cannot Initialize"
|
|
1931
|
-
case this.ERR_LDS_PACE_KEY_AGREEMENT_CANT_INITIALIZE:
|
|
1932
|
-
return "Error - PACE: Key Agreement Cannot Initialize"
|
|
1933
|
-
case this.ERR_LDS_PACE_EPHEMERAL_KEYS_CANT_CREATE:
|
|
1934
|
-
return "Error - PACE: Ephemeral Keys Cannot Create"
|
|
1935
|
-
case this.ERR_LDS_PACE_MAPPING_CANT_DECODE_NONCE:
|
|
1936
|
-
return "Error - PACE: Mapping Cannot Decode Nonce"
|
|
1937
|
-
case this.ERR_LDS_PACE_SHARED_SECRET_CANT_CREATE:
|
|
1938
|
-
return "Error - PACE: Shared Secret Cannot Create"
|
|
1939
|
-
case this.ERR_LDS_PACE_DOMAIN_PARAMS_UNSUPPORTED_FORMAT:
|
|
1940
|
-
return "Error - PACE: Domain Params Unsupported Format"
|
|
1941
|
-
case this.ERR_LDS_PACE_EPHEMERAL_KEYS_INCORRECT:
|
|
1942
|
-
return "Error - PACE: Ephemeral Keys Incorrect"
|
|
1943
|
-
case this.ERR_LDS_PACE_MAPPING_EPHEMERAL_KEYS_INCORRECT:
|
|
1944
|
-
return "Error - PACE: Mapping Ephemeral Keys Incorrect"
|
|
1945
|
-
case this.ERR_LDS_PACE_MAPPING_CANT_PERFORM:
|
|
1946
|
-
return "Error - PACE: Mapping Cannot Perform"
|
|
1947
|
-
case this.ERR_LDS_PACE_NON_MATCHING_AUTH_TOKENS:
|
|
1948
|
-
return "Error - PACE: Non-Matching Auth Tokens"
|
|
1949
|
-
case this.ERR_LDS_CA_CANT_FIND_PUBLIC_KEY:
|
|
1950
|
-
return "Error - CA: Cannot Find Public Key"
|
|
1951
|
-
case this.ERR_LDS_CA_CANT_FIND_INFO:
|
|
1952
|
-
return "Error - CA: Cannot Find Info"
|
|
1953
|
-
case this.ERR_LDS_CA_INCORRECT_VERSION:
|
|
1954
|
-
return "Error - CA: Incorrect Version"
|
|
1955
|
-
case this.ERR_LDS_CA_CANT_FIND_DOMAIN_PARAMETERS:
|
|
1956
|
-
return "Error - CA: Cannot Find Domain Parameters"
|
|
1957
|
-
case this.ERR_LDS_CA_KEY_AGREEMENT_CANT_INITIALIZE:
|
|
1958
|
-
return "Error - CA: Key Agreement Cannot Initialize"
|
|
1959
|
-
case this.ERR_LDS_CA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM:
|
|
1960
|
-
return "Error - CA: Public Key Unsupported Algorithm"
|
|
1961
|
-
case this.ERR_LDS_CA_EPHEMERAL_KEYS_CANT_CREATE:
|
|
1962
|
-
return "Error - CA: Ephemeral Keys Cannot Create"
|
|
1963
|
-
case this.ERR_LDS_CA_SHARED_SECRET_CANT_CREATE:
|
|
1964
|
-
return "Error - CA: Shared Secret Cannot Create"
|
|
1965
|
-
case this.ERR_LDS_CA_NON_MATCHING_AUTH_TOKENS:
|
|
1966
|
-
return "Error - CA: Non-Matching Auth Tokens"
|
|
1967
|
-
case this.ERR_LDS_TA_INCORRECT_VERSION:
|
|
1968
|
-
return "Error - TA: Incorrect Version"
|
|
1969
|
-
case this.ERR_LDS_TA_CANT_BUILD_CERTIFICATE_CHAIN:
|
|
1970
|
-
return "Error - TA: Cannot Build Certificate Chain"
|
|
1971
|
-
case this.ERR_LDS_TA_CANT_FIND_IS_PRIVATE_KEY:
|
|
1972
|
-
return "Error - TA: Cannot Find IS Private Key"
|
|
1973
|
-
case this.ERR_LDS_TA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM:
|
|
1974
|
-
return "Error - TA: Public Key Unsupported Algorithm"
|
|
1975
|
-
case this.ERR_LDS_TA_SIGNATURE_BUILDING_ERROR:
|
|
1976
|
-
return "Error - TA: Signature Building Error"
|
|
1977
|
-
case this.ERR_LDS_TA_INVALID_KEY_ALGORITHM_PARAMETERS:
|
|
1978
|
-
return "Error - TA: Invalid Key Algorithm Parameters"
|
|
1979
|
-
case this.ERR_LDS_AA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM:
|
|
1980
|
-
return "Error - AA: Public Key Unsupported Algorithm"
|
|
1981
|
-
case this.ERR_LDS_AA_PUBLIC_KEY_INCORRECT_DATA:
|
|
1982
|
-
return "Error - AA: Public Key Incorrect Data"
|
|
1983
|
-
case this.ERR_LDS_AA_PUBLIC_KEY_INCORRECT_PARAMETERS:
|
|
1984
|
-
return "Error - AA: Public Key Incorrect Parameters"
|
|
1985
|
-
case this.ERR_LDS_AA_PUBLIC_KEY_UNDEFINED_PARAMETERS:
|
|
1986
|
-
return "Error - AA: Public Key Undefined Parameters"
|
|
1987
|
-
case this.ERR_LDS_AA_SIGNATURE_INCORRECT_DATA:
|
|
1988
|
-
return "Error - AA: Signature Incorrect Data"
|
|
1989
|
-
case this.ERR_LDS_AA_UNSUPPORTED_RECOVERY_SCHEME:
|
|
1990
|
-
return "Error - AA: Unsupported recovery scheme"
|
|
1991
|
-
case this.ERR_LDS_AA_INCORRECT_TRAILER:
|
|
1992
|
-
return "Error - AA: Incorrect Trailer"
|
|
1993
|
-
case this.ERR_LDS_AA_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
1994
|
-
return "Error - AA: Unsupported Digest Algorithm"
|
|
1995
|
-
case this.ERR_LDS_RI_SECTOR_KEY_CANT_FIND:
|
|
1996
|
-
return "Error - RI: Sector Key Cannot Find"
|
|
1997
|
-
case this.ERR_LDS_RI_SECTOR_KEY_INCORRECT_DATA:
|
|
1998
|
-
return "Error - RI: Sector Key Incorrect Data"
|
|
1999
|
-
case this.ERR_LDS_RI_SECTOR_KEY_INCOMPLETE_DATA:
|
|
2000
|
-
return "Error - RI: Sector Key Incomplete Data"
|
|
2001
|
-
case this.ERR_LDS_CV_CERTIFICATE_MISSING_MANDATORY_DATA_PK:
|
|
2002
|
-
return "Error - CV Certificate: Missing mandatory data PK"
|
|
2003
|
-
case this.ERR_LDS_CV_CERTIFICATE_PUBLIC_KEY_UNSUPPORTED:
|
|
2004
|
-
return "Error - CV Certificate: Public key unsupported"
|
|
2005
|
-
case this.ERR_LDS_CV_CERTIFICATE_CHAT_UNSUPPORTED_TERMINAL_TYPE:
|
|
2006
|
-
return "Error - CV Certificate: CHAT unsupported terminal type"
|
|
2007
|
-
case this.ERR_LDS_CV_CERTIFICATE_PRIVATE_KEY_UNSUPPORTED:
|
|
2008
|
-
return "Error - CV Certificate: Private key unsupported"
|
|
2009
|
-
case this.ERR_LDS_CV_CERTIFICATE_PRIVATE_KEY_INVALID_PARAMS:
|
|
2010
|
-
return "Error - CV Certificate: Private key invalid params"
|
|
2011
|
-
case this.ERR_LDS_CV_CERTIFICATE_INCORRECT_DATA:
|
|
2012
|
-
return "Error - CV Certificate: Incorrect data"
|
|
2013
|
-
case this.ERR_LDS_CV_CERTIFICATE_CPI_INCORRECT_DATA:
|
|
2014
|
-
return "Error - CV Certificate: CPI incorrect data"
|
|
2015
|
-
case this.ERR_LDS_CV_CERTIFICATE_CAR_INCORRECT_DATA:
|
|
2016
|
-
return "Error - CV Certificate: CAR incorrect data"
|
|
2017
|
-
case this.ERR_LDS_CV_CERTIFICATE_PUBLIC_KEY_INCORRECT_DATA:
|
|
2018
|
-
return "Error - CV Certificate: Public key incorrect data"
|
|
2019
|
-
case this.ERR_LDS_CV_CERTIFICATE_CHR_INCORRECT_DATA:
|
|
2020
|
-
return "Error - CV Certificate: CHR incorrect data"
|
|
2021
|
-
case this.ERR_LDS_CV_CERTIFICATE_CHAT_INCORRECT_DATA:
|
|
2022
|
-
return "Error - CV Certificate: CHAT incorrect data"
|
|
2023
|
-
case this.ERR_LDS_CV_CERTIFICATE_VALID_FROM_INCORRECT_DATA:
|
|
2024
|
-
return "Error - CV Certificate: Valid from incorrect data"
|
|
2025
|
-
case this.ERR_LDS_CV_CERTIFICATE_VALID_TO_INCORRECT_DATA:
|
|
2026
|
-
return "Error - CV Certificate: Valid to incorrect data"
|
|
2027
|
-
case this.ERR_LDS_CV_CERTIFICATE_EXTENSIONS_INCORRECT_DATA:
|
|
2028
|
-
return "Error - CV Certificate: Extensions incorrect data"
|
|
2029
|
-
case this.ERR_LDS_CV_CERTIFICATE_PRIVATE_KEY_INCORRECT_DATA:
|
|
2030
|
-
return "Error - CV Certificate: Private key incorrect data"
|
|
2031
|
-
case this.ERR_LDS_CV_CERTIFICATE_PRIVATE_KEY_MISSING:
|
|
2032
|
-
return "Error - CV Certificate: Private key missing"
|
|
2033
|
-
case this.ERR_LDS_BAP_SYMMETRIC_CYPHER_CANT_INITIALIZE:
|
|
2034
|
-
return "Error - BAP: Symmetric Cypher Cannot Initialize"
|
|
2035
|
-
case this.ERR_LDS_DG_CONTENTS_UNEXPECTED_DATA:
|
|
2036
|
-
return "Error - DG: Contents unexpected data"
|
|
2037
|
-
case this.ERR_LDS_ICAO_SIGNED_DATA_SIGNER_INFOS_EMPTY:
|
|
2038
|
-
return "Error - ICAO Signed data: Signer info empty"
|
|
2039
|
-
case this.ERR_LDS_PACE_CAM_DATA_CANT_VERIFY:
|
|
2040
|
-
return "Error - PACE: CAM data cannot verify"
|
|
2041
|
-
case this.ERR_LDS_PACE_CAM_DATA_INCORRECT:
|
|
2042
|
-
return "Error - PACE: CAM data incorrect"
|
|
2043
|
-
case this.ERR_LDS_PACE_CAM_DATA_NON_MATCHING:
|
|
2044
|
-
return "Error - PACE: CAM data non-matching"
|
|
2045
|
-
case this.ERR_LDS_PACE_IM_RANDOM_MAPPING_FAILED:
|
|
2046
|
-
return "Error - PACE: Random mapping failed"
|
|
2047
|
-
case this.ERR_LDS_PACE_IM_SCHEME_INCORRECT:
|
|
2048
|
-
return "Error - PACE: IM scheme incorrect"
|
|
2049
|
-
case this.ERR_LDS_VDS_ISSUING_COUNTRY_INCORRECT_DATA:
|
|
2050
|
-
return "Error - VDS: Issuing country incorrect data"
|
|
2051
|
-
case this.ERR_LDS_VDS_ISSUING_COUNTRY_SIZE:
|
|
2052
|
-
return "Error - VDS: Issuing country size"
|
|
2053
|
-
case this.ERR_LDS_VDS_NC_INCORRECT_DATA:
|
|
2054
|
-
return "Error - VDS: Incorrect data"
|
|
2055
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_CERTIFICATE:
|
|
2056
|
-
return "Error - VDS: Missing or incorrect certificate"
|
|
2057
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_DATA:
|
|
2058
|
-
return "Error - VDS: Missing or incorrect data"
|
|
2059
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_HEADER:
|
|
2060
|
-
return "Error - VDS: Missing or incorrect header"
|
|
2061
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_ISSUING_COUNTRY:
|
|
2062
|
-
return "Error - VDS: Missing or incorrect issuing country"
|
|
2063
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_MESSAGE:
|
|
2064
|
-
return "Error - VDS: Missing or incorrect message"
|
|
2065
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIGNATURE:
|
|
2066
|
-
return "Error - VDS: Missing or incorrect signature"
|
|
2067
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_ALGORITHM:
|
|
2068
|
-
return "Error - VDS: Missing or incorrect signature algorithm"
|
|
2069
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_VALUE:
|
|
2070
|
-
return "Error - VDS: Missing or incorrect signature value"
|
|
2071
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_TYPE:
|
|
2072
|
-
return "Error - VDS: Missing or incorrect type"
|
|
2073
|
-
case this.ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_VERSION:
|
|
2074
|
-
return "Error - VDS: Missing or incorrect version"
|
|
2075
|
-
case this.ERR_LDS_VDS_SIGNATURE_INCORRECT_DATA:
|
|
2076
|
-
return "Error - VDS: Signature incorrect data"
|
|
2077
|
-
case this.ERR_LDS_VDS_SIGNER_CERTIFICATE_DATA:
|
|
2078
|
-
return "Error - VDS: Signature certificate data"
|
|
2079
|
-
case this.ERR_LDS_VDS_SIGNER_CERTIFICATE_SIZE:
|
|
2080
|
-
return "Error - VDS: Signature certificate size"
|
|
2081
|
-
case this.ERR_LDS_VDS_UNSUPPORTED_VERSION:
|
|
2082
|
-
return "Error - VDS: Unsupported version"
|
|
2083
|
-
default:
|
|
2084
|
-
return value
|
|
2085
|
-
}
|
|
2086
|
-
}
|
|
2087
1538
|
}
|
|
2088
1539
|
|
|
2089
1540
|
export const eRFID_CertificateType = {
|
|
@@ -2146,7 +1597,10 @@ export const eRPRM_ResultType = {
|
|
|
2146
1597
|
RFID_RESULT_TYPE_RFID_ORIGINAL_GRAPHICS: 105,
|
|
2147
1598
|
RPRM_RESULT_TYPE_BARCODE_POSITION: 62,
|
|
2148
1599
|
RPRM_RESULT_TYPE_MRZ_POSITION: 61,
|
|
1600
|
+
RPRM_RESULT_TYPE_LIVE_PORTRAIT: 32,
|
|
2149
1601
|
RPRM_RESULT_TYPE_STATUS: 33,
|
|
1602
|
+
RPRM_RESULT_TYPE_PORTRAIT_COMPARISON: 34,
|
|
1603
|
+
RPRM_RESULT_TYPE_EXT_PORTRAIT: 35,
|
|
2150
1604
|
}
|
|
2151
1605
|
|
|
2152
1606
|
export const CameraTypes = {
|
|
@@ -2244,6 +1698,41 @@ export const eRFID_AuthenticationProcedureType = {
|
|
|
2244
1698
|
aptGeneral: 3,
|
|
2245
1699
|
}
|
|
2246
1700
|
|
|
1701
|
+
export const DocumentReaderErrorCodes = {
|
|
1702
|
+
INITIALIZATION_CORE_ABSENT: 0,
|
|
1703
|
+
INITIALIZATION_FAILED: 1,
|
|
1704
|
+
INCORRECT_SCENARIO: 2,
|
|
1705
|
+
NO_RESULT: 3,
|
|
1706
|
+
REMOVE_DATABASE: 4,
|
|
1707
|
+
FETCHING_DATABASE: 5,
|
|
1708
|
+
DB_ID_NOT_FOUND: 6,
|
|
1709
|
+
DB_DESCRIPTION_NOT_FOUND: 7,
|
|
1710
|
+
SAVE_DB: 8,
|
|
1711
|
+
DOWNLOAD_DB_INCORRECT_CHECKSUM: 9,
|
|
1712
|
+
DB_DOWNLOAD: 10,
|
|
1713
|
+
LICENSE_ABSENT_OR_CORRUPTED: 13,
|
|
1714
|
+
LICENSE_INVALID_DATE: 14,
|
|
1715
|
+
LICENSE_INVALID_VERSION: 15,
|
|
1716
|
+
LICENSE_INVALID_DEVICE_ID: 16,
|
|
1717
|
+
LICENSE_INVALID_SYSTEM_OR_APP_ID: 17,
|
|
1718
|
+
LICENSE_NO_CAPABILITIES: 18,
|
|
1719
|
+
LICENSE_NO_AUTHENTICITY: 19,
|
|
1720
|
+
RECORD_PROCESS_INVALID_OUTPUT_URL: 20,
|
|
1721
|
+
LICENSE_ONLINE_ERROR: 21,
|
|
1722
|
+
LICENSE_NO_DATABASE: 22,
|
|
1723
|
+
LICENSE_DATABASE_INCORRECT: 23,
|
|
1724
|
+
INVALID_TCC_PARAMS: 24,
|
|
1725
|
+
RFID_IN_PROGRESS: 25,
|
|
1726
|
+
NATIVE_JAVA_EXCEPTION: 1000,
|
|
1727
|
+
BACKEND_ONLINE_PROCESSING: 303,
|
|
1728
|
+
WRONG_INPUT: 400,
|
|
1729
|
+
STATE_EXCEPTION: 500,
|
|
1730
|
+
BLE_EXCEPTION: 600,
|
|
1731
|
+
FEATURE_BLUETOOTH_LE_NOT_SUPPORTED: 601,
|
|
1732
|
+
APP_BACKGROUND: 700,
|
|
1733
|
+
ONLINE_PROCESSING_WRONG_INPUT: 800,
|
|
1734
|
+
}
|
|
1735
|
+
|
|
2247
1736
|
export const ScenarioIdentifier = {
|
|
2248
1737
|
SCENARIO_MRZ: "Mrz",
|
|
2249
1738
|
SCENARIO_BARCODE: "Barcode",
|
|
@@ -2447,6 +1936,7 @@ export const eCheckDiagnose = {
|
|
|
2447
1936
|
BARCODE_DATA_FORMAT_ERROR: 141,
|
|
2448
1937
|
BARCODE_SIZE_PARAMS_ERROR: 142,
|
|
2449
1938
|
NOT_ALL_BARCODES_READ: 143,
|
|
1939
|
+
GLARES_IN_BARCODE_AREA: 144,
|
|
2450
1940
|
PORTRAIT_COMPARISON_PORTRAITS_DIFFER: 150,
|
|
2451
1941
|
PORTRAIT_COMPARISON_NO_SERVICE_REPLY: 151,
|
|
2452
1942
|
PORTRAIT_COMPARISON_SERVICE_ERROR: 152,
|
|
@@ -2476,8 +1966,9 @@ export const eCheckDiagnose = {
|
|
|
2476
1966
|
OCR_QUALITY_INVALID_FONT: 221,
|
|
2477
1967
|
OCR_QUALITY_INVALID_BACKGROUND: 222,
|
|
2478
1968
|
LAS_INK_INVALID_LINES_FREQUENCY: 230,
|
|
2479
|
-
LAST_DIAGNOSE_VALUE: 250,
|
|
2480
1969
|
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED: 240,
|
|
1970
|
+
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND: 241,
|
|
1971
|
+
LAST_DIAGNOSE_VALUE: 250,
|
|
2481
1972
|
}
|
|
2482
1973
|
|
|
2483
1974
|
export const RFIDDelegate = {
|
|
@@ -2737,449 +2228,6 @@ export const eLDS_ParsingNotificationCodes = {
|
|
|
2737
2228
|
NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_CANT_FIND_CSCA: 0x92000117,
|
|
2738
2229
|
NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_REVOKED: 0x92000118,
|
|
2739
2230
|
NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_SIGNATURE_INVALID: 0x92000119,
|
|
2740
|
-
|
|
2741
|
-
getTranslation: function (value) {
|
|
2742
|
-
switch (value) {
|
|
2743
|
-
case this.NTF_LDS_ASN_CERTIFICATE_INCORRECT_VERSION:
|
|
2744
|
-
return "Notification - ASN certificate: Incorrect version"
|
|
2745
|
-
case this.NTF_LDS_ASN_CERTIFICATE_NON_MATCHING_SIGNATURE_ALGORITHM:
|
|
2746
|
-
return "Notification - ASN certificate: Non-matching signature algorithm"
|
|
2747
|
-
case this.NTF_LDS_ASN_CERTIFICATE_INCORRECT_TIME_CODING:
|
|
2748
|
-
return "Notification - ASN certificate: Incorrect time coding"
|
|
2749
|
-
case this.NTF_LDS_ASN_CERTIFICATE_INCORRECT_USE_OF_GENERALIZED_TIME:
|
|
2750
|
-
return "Notification - ASN certificate: Incorrect use of generalized time"
|
|
2751
|
-
case this.NTF_LDS_ASN_CERTIFICATE_EMPTY_ISSUER:
|
|
2752
|
-
return "Notification - ASN certificate: Empty issuer"
|
|
2753
|
-
case this.NTF_LDS_ASN_CERTIFICATE_EMPTY_SUBJECT:
|
|
2754
|
-
return "Notification - ASN certificate: Empty subject"
|
|
2755
|
-
case this.NTF_LDS_ASN_CERTIFICATE_UNSUPPORTED_CRITICAL_EXTENSION:
|
|
2756
|
-
return "Notification - ASN certificate: Unsupported critical extension"
|
|
2757
|
-
case this.NTF_LDS_ASN_CERTIFICATE_FORCED_DEFAULT_CSCA_ROLE:
|
|
2758
|
-
return "Notification - ASN certificate: Forced default CSCA role"
|
|
2759
|
-
case this.NTF_LDS_ASN_CERTIFICATE_FORCED_DEFAULT_DS_ROLE:
|
|
2760
|
-
return "Notification - ASN certificate: Forced Default DS role"
|
|
2761
|
-
case this.NTF_LDS_ASN_CERTIFICATE_INCORRECT_ISSUER_SUBJECT_DS:
|
|
2762
|
-
return "Notification - ASN certificate: Incorrect issuer subject DS"
|
|
2763
|
-
case this.NTF_LDS_ASN_CERTIFICATE_DUPLICATING_EXTENSIONS:
|
|
2764
|
-
return "Notification - ASN certificate: Duplicating extensions"
|
|
2765
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_VERSION_MISSED:
|
|
2766
|
-
return "Notification - ICAO certificate: Version missed"
|
|
2767
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_VERSION_INCORRECT:
|
|
2768
|
-
return "Notification - ICAO certificate: Version incorrect"
|
|
2769
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_COUNTRY_MISSED:
|
|
2770
|
-
return "Notification - ICAO certificate: Issuer country missed"
|
|
2771
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_COMMON_NAME_MISSED:
|
|
2772
|
-
return "Notification - ICAO certificate: Issuer common name missed"
|
|
2773
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_COUNTRY_NON_COMPLIANT:
|
|
2774
|
-
return "Notification - ICAO certificate: Issuer country non-compliant"
|
|
2775
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COUNTRY_MISSED:
|
|
2776
|
-
return "Notification - ICAO certificate: Subject country missed"
|
|
2777
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COMMON_NAME_MISSED:
|
|
2778
|
-
return "Notification - ICAO certificate: Subject common name missed"
|
|
2779
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COUNTRY_NON_COMPLIANT:
|
|
2780
|
-
return "Notification - ICAO certificate: Subject country non-compliant"
|
|
2781
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_USING_NON_COMPLIANT_DATA:
|
|
2782
|
-
return "Notification - ICAO certificate: Using non-compliant data"
|
|
2783
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_UNSUPPORTED_SIGNATURE_ALGORITHM:
|
|
2784
|
-
return "Notification - ICAO certificate: Unsupported signature algorithm"
|
|
2785
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_UNSUPPORTED_PUBLIC_KEY_ALGORITHM:
|
|
2786
|
-
return "Notification - ICAO certificate: Unsupported public key algorithm"
|
|
2787
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_MISSED_EXTENSIONS:
|
|
2788
|
-
return "Notification - ICAO certificate: Missed extensions"
|
|
2789
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_VALIDITY:
|
|
2790
|
-
return "Notification - ICAO certificate: Validity"
|
|
2791
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_USING_NON_COMPLIANT_DATA:
|
|
2792
|
-
return "Notification - ICAO certificate extension: Using non-compliant data"
|
|
2793
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_KEY_USAGE_MISSED:
|
|
2794
|
-
return "Notification - ICAO certificate extension: Key usage missed"
|
|
2795
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_KEY_USAGE_NOT_CRITICAL:
|
|
2796
|
-
return "Notification - ICAO certificate extension: Key usage not critical"
|
|
2797
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_KEY_USAGE_INCORRECT_DATA:
|
|
2798
|
-
return "Notification - ICAO certificate extension: Key usage incorrect data"
|
|
2799
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_MISSED:
|
|
2800
|
-
return "Notification - ICAO certificate extension: Basic constraints missed"
|
|
2801
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_INCORRECT_USAGE1:
|
|
2802
|
-
return "Notification - ICAO certificate extension: Basic constraints incorrect usage 1"
|
|
2803
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_INCORRECT_USAGE2:
|
|
2804
|
-
return "Notification - ICAO certificate extension: Basic constraints incorrect usage 2"
|
|
2805
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_NOT_CRITICAL:
|
|
2806
|
-
return "Notification - ICAO certificate extension: Basic constraints not critical"
|
|
2807
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_INCORRECT_DATA:
|
|
2808
|
-
return "Notification - ICAO certificate extension: Basic constraints incorrect data"
|
|
2809
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_PATH_LEN_C_MISSED:
|
|
2810
|
-
return "Notification - ICAO certificate extension: Basic constraints path LenC missed"
|
|
2811
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_BASIC_C_PATH_LEN_C_INCORRECT:
|
|
2812
|
-
return "Notification - ICAO certificate extension: Basic constraints path LenC incorrect"
|
|
2813
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_EXT_KEY_USAGE_NOT_CRITICAL:
|
|
2814
|
-
return "Notification - ICAO certificate extension: Ext key usage not critical"
|
|
2815
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_EXT_KEY_USAGE_INCORRECT_USAGE:
|
|
2816
|
-
return "Notification - ICAO certificate extension: Ext key usage incorrect usage"
|
|
2817
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_EXT_KEY_USAGE_INCORRECT_DATA:
|
|
2818
|
-
return "Notification - ICAO certificate extension: Ext key usage incorrect data"
|
|
2819
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_AUTH_KEY_ID_MISSED:
|
|
2820
|
-
return "Notification - ICAO certificate extension Auth key: ID missed"
|
|
2821
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_AUTH_KEY_ID_INCORRECT_DATA:
|
|
2822
|
-
return "Notification - ICAO certificate extension Auth key: Incorrect data"
|
|
2823
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_AUTH_KEY_ID_KEY_ID_MISSED:
|
|
2824
|
-
return "Notification - ICAO certificate extension Auth key: Key ID missed"
|
|
2825
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_KEY_ID_MISSED:
|
|
2826
|
-
return "Notification - ICAO certificate extension: Subject key ID missed"
|
|
2827
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_KEY_ID_INCORRECT_DATA:
|
|
2828
|
-
return "Notification - ICAO certificate extension: Subject key ID incorrect data"
|
|
2829
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_PRIVATE_KEY_UP_MISSED:
|
|
2830
|
-
return "Notification - ICAO certificate extension: Private key UP missed"
|
|
2831
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_PRIVATE_KEY_UP_INCORRECT_DATA:
|
|
2832
|
-
return "Notification - ICAO certificate extension: Private key UP incorrect data"
|
|
2833
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_PRIVATE_KEY_UP_EMPTY:
|
|
2834
|
-
return "Notification - ICAO certificate extension: Private key UP empty"
|
|
2835
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_MISSED:
|
|
2836
|
-
return "Notification - ICAO certificate extension: Subject alt name missed"
|
|
2837
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_INCORRECT_DATA:
|
|
2838
|
-
return "Notification - ICAO certificate extension: Subject alt name incorrect data"
|
|
2839
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_EMPTY:
|
|
2840
|
-
return "Notification - ICAO certificate extension: Subject alt name empty"
|
|
2841
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_NON_COMPLIANT:
|
|
2842
|
-
return "Notification - ICAO certificate extension: Subject alt name non-compliant"
|
|
2843
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_CRITICAL:
|
|
2844
|
-
return "Notification - ICAO certificate extension: Subject alt name critical"
|
|
2845
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_DN_EMPTY:
|
|
2846
|
-
return "Notification - ICAO certificate extension: Subject alt name DN empty"
|
|
2847
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_DN_INCORRECT:
|
|
2848
|
-
return "Notification - ICAO certificate extension: Subject alt name DN incorrect"
|
|
2849
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_SUBJECT_ALT_NAME_DN_NON_COMPLIANT:
|
|
2850
|
-
return "Notification - ICAO certificate extension: Subject alt name DN non-compliant"
|
|
2851
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_MISSED:
|
|
2852
|
-
return "Notification - ICAO certificate extension: Issuer alt name missed"
|
|
2853
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_INCORRECT_DATA:
|
|
2854
|
-
return "Notification - ICAO certificate extension: Issuer alt name incorrect data"
|
|
2855
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_EMPTY:
|
|
2856
|
-
return "Notification - ICAO certificate extension: Issuer alt name empty"
|
|
2857
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_NON_COMPLIANT:
|
|
2858
|
-
return "Notification - ICAO certificate extension: Issuer alt name non-compliant"
|
|
2859
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_DN_EMPTY:
|
|
2860
|
-
return "Notification - ICAO certificate extension: Issuer alt name DN empty"
|
|
2861
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_DN_INCORRECT:
|
|
2862
|
-
return "Notification - ICAO certificate extension: Issuer alt name DN incorrect"
|
|
2863
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_DN_NON_COMPLIANT:
|
|
2864
|
-
return "Notification - ICAO certificate extension: Issuer alt name DN non-compliant"
|
|
2865
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_MISSED:
|
|
2866
|
-
return "Notification - ICAO certificate extension Doc type list: Missed"
|
|
2867
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_INCORRECT_DATA:
|
|
2868
|
-
return "Notification - ICAO certificate extension Doc type list: Incorrect data"
|
|
2869
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_VERSION:
|
|
2870
|
-
return "Notification - ICAO certificate extension Doc type list: Version"
|
|
2871
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_DOC_TYPES:
|
|
2872
|
-
return "Notification - ICAO certificate extension Doc type list: Doc types"
|
|
2873
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_DOC_TYPES_EMPTY:
|
|
2874
|
-
return "Notification - ICAO certificate extension Doc type list: Doc types empty"
|
|
2875
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CERT_POLICIES_INCORRECT_DATA:
|
|
2876
|
-
return "Notification - ICAO certificate extension: Dert policies incorrect data"
|
|
2877
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CERT_POLICIES_EMPTY:
|
|
2878
|
-
return "Notification - ICAO certificate extension: Cert policies empty"
|
|
2879
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CERT_POLICIES_POLICY_ID_MISSED:
|
|
2880
|
-
return "Notification - ICAO certificate extension: Cert policies policy ID missed"
|
|
2881
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CRL_DIST_POINT_MISSED:
|
|
2882
|
-
return "Notification - ICAO certificate extension: CRL dist point missed"
|
|
2883
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CRL_DIST_POINT_INCORRECT_DATA:
|
|
2884
|
-
return "Notification - ICAO certificate extension: CRL dist point incorrect data"
|
|
2885
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CRL_DIST_POINT_EMPTY:
|
|
2886
|
-
return "Notification - ICAO certificate extension: CRL dist point empty"
|
|
2887
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CRL_DIST_POINT_POINT_MISSED:
|
|
2888
|
-
return "Notification - ICAO certificate extension: CRL dist point point missed"
|
|
2889
|
-
case this.NTF_LDS_ICAO_COM_LDS_VERSION_INCORRECT:
|
|
2890
|
-
return "Notification - ICAO COM: LDS version incorrect"
|
|
2891
|
-
case this.NTF_LDS_ICAO_COM_LDS_VERSION_MISSING:
|
|
2892
|
-
return "Notification - ICAO COM: LDS version missing"
|
|
2893
|
-
case this.NTF_LDS_ICAO_COM_UNICODE_VERSION_INCORRECT:
|
|
2894
|
-
return "Notification - ICAO COM: Unicode version incorrect"
|
|
2895
|
-
case this.NTF_LDS_ICAO_COM_UNICODE_VERSION_MISSING:
|
|
2896
|
-
return "Notification - ICAO COM: Unicode version missing"
|
|
2897
|
-
case this.NTF_LDS_ICAO_COM_DGPM_INCORRECT:
|
|
2898
|
-
return "Notification - ICAO COM: DGPM incorrect"
|
|
2899
|
-
case this.NTF_LDS_ICAO_COM_DGPM_MISSING:
|
|
2900
|
-
return "Notification - ICAO COM: DGPM missing"
|
|
2901
|
-
case this.NTF_LDS_ICAO_COM_DGPM_UNEXPECTED:
|
|
2902
|
-
return "Notification - ICAO COM: DGPM unexpected"
|
|
2903
|
-
case this.NTF_LDS_ICAO_APPLICATION_LDS_VERSION_UNSUPPORTED:
|
|
2904
|
-
return "Notification - ICAO application: LDS version unsupported"
|
|
2905
|
-
case this.NTF_LDS_ICAO_APPLICATION_UNICODE_VERSION_UNSUPPORTED:
|
|
2906
|
-
return "Notification - ICAO application: Unicode version unsupported"
|
|
2907
|
-
case this.NTF_LDS_ICAO_APPLICATION_LDS_VERSION_INCONSISTENT:
|
|
2908
|
-
return "Notification - ICAO application: LDS version inconsistent"
|
|
2909
|
-
case this.NTF_LDS_ICAO_APPLICATION_UNICODE_VERSION_INCONSISTENT:
|
|
2910
|
-
return "Notification - ICAO application: Unicode version inconsistent"
|
|
2911
|
-
case this.NTF_LDS_ASN_SIGNED_DATA_OID_INCORRECT:
|
|
2912
|
-
return "Notification - ASN signed data: OID incorrect"
|
|
2913
|
-
case this.NTF_LDS_ASN_SIGNED_DATA_VERSION_INCORRECT:
|
|
2914
|
-
return "Notification - ASN signed data: Version incorrect"
|
|
2915
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_VERSION_INCORRECT:
|
|
2916
|
-
return "Notification - ICAO signed data: Version incorrect"
|
|
2917
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_DIGEST_ALGORITHMS_EMPTY:
|
|
2918
|
-
return "Notification - ICAO signed data: Digest algorithms empty"
|
|
2919
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_DIGEST_ALGORITHMS_UNSUPPORTED:
|
|
2920
|
-
return "Notification - ICAO signed data: Digest algorithms unsupported"
|
|
2921
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_SIGNER_INFOS_MULTIPLE_ENTRIES:
|
|
2922
|
-
return "Notification - ICAO signed data: Signer infos multiple entries"
|
|
2923
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_CERTIFICATES_MISSED:
|
|
2924
|
-
return "Notification - ICAO signed data: Certificates missed"
|
|
2925
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_CERTIFICATES_EMPTY:
|
|
2926
|
-
return "Notification - ICAO signed data: Certificates empty"
|
|
2927
|
-
case this.NTF_LDS_ICAO_SIGNED_DATA_CRLS_INCORRECT_USAGE:
|
|
2928
|
-
return "Notification - ICAO signed data: CRLs incorrect usage"
|
|
2929
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_INCORRECT_CONTENT_OID:
|
|
2930
|
-
return "Notification - ICAO LDS object: Incorrect content OID"
|
|
2931
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_DG_NUMBER_INCORRECT:
|
|
2932
|
-
return "Notification - ICAO LDS object: DG number incorrect"
|
|
2933
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_DG_HASH_MISSING:
|
|
2934
|
-
return "Notification - ICAO LDS object: DG hash missing"
|
|
2935
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_DG_HASH_EXTRA:
|
|
2936
|
-
return "Notification - ICAO LDS object: DG hash extra"
|
|
2937
|
-
case this.NTF_LDS_ICAO_LDS_OBJECT_VERSION_INCORRECT:
|
|
2938
|
-
return "Notification - ICAO LDS object: Version incorrect"
|
|
2939
|
-
case this.NTF_LDS_ICAO_MASTER_LIST_VERSION_INCORRECT:
|
|
2940
|
-
return "Notification - ICAO master list: Version incorrect"
|
|
2941
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_VERSION_INCORRECT:
|
|
2942
|
-
return "Notification - ASN signer info: Version incorrect"
|
|
2943
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SID_INCORRECT_CHOICE:
|
|
2944
|
-
return "Notification - ASN signer info: SID incorrect choice"
|
|
2945
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SID_DIGEST_ALGORITHM_NOT_LISTED:
|
|
2946
|
-
return "Notification - ASN signer info: SID digest algorithm not listed"
|
|
2947
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_MESSAGE_DIGEST_ATTR_MISSING:
|
|
2948
|
-
return "Notification - ASN signer info: Message digest attr missing"
|
|
2949
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_MESSAGE_DIGEST_ATTR_DATA:
|
|
2950
|
-
return "Notification - ASN signer info: Message digest attr data"
|
|
2951
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_MESSAGE_DIGEST_ATTR_Value:
|
|
2952
|
-
return "Notification - ASN signer info: Message digest attr value"
|
|
2953
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_CONTENT_TYPE_ATTR_MISSING:
|
|
2954
|
-
return "Notification - ASN signer info: Content type attr missing"
|
|
2955
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_CONTENT_TYPE_ATTR_DATA:
|
|
2956
|
-
return "Notification - ASN signer info: Content type attr data"
|
|
2957
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_CONTENT_TYPE_ATTR_VALUE:
|
|
2958
|
-
return "Notification - ASN signer info: Content type attr value"
|
|
2959
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SIGNING_TIME_ATTR_MISSING:
|
|
2960
|
-
return "Notification - ASN signer info: Signing time attr missing"
|
|
2961
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SIGNING_TIME_ATTR_DATA:
|
|
2962
|
-
return "Notification - ASN signer info: Signing time attr data"
|
|
2963
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_SIGNING_TIME_ATTR_VALUE:
|
|
2964
|
-
return "Notification - ASN signer info: Signing time attr value"
|
|
2965
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_VALIDITY:
|
|
2966
|
-
return "Notification - Auth signer info: Certificate validity"
|
|
2967
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_ROOT_IS_NOT_TRUSTED:
|
|
2968
|
-
return "Notification - Auth signer info: Certificate root is not trusted"
|
|
2969
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_CANT_FIND_CSCA:
|
|
2970
|
-
return "Notification - Auth signer info: Certificate cannot find CSCA"
|
|
2971
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_REVOKED:
|
|
2972
|
-
return "Notification - Auth signer info: Certificate revoked"
|
|
2973
|
-
case this.NTF_LDS_AUTH_SIGNER_INFO_CERTIFICATE_SIGNATURE_INVALID:
|
|
2974
|
-
return "Notification - Auth signer info: Certificate signature invalid"
|
|
2975
|
-
case this.NTF_LDS_UNSUPPORTED_IMAGE_FORMAT:
|
|
2976
|
-
return "Notification: Unsupported image format"
|
|
2977
|
-
case this.NTF_LDS_MRZ_DOCUMENT_TYPE_UNKNOWN:
|
|
2978
|
-
return "Notification - MRZ: Document type unknown"
|
|
2979
|
-
case this.NTF_LDS_MRZ_ISSUING_STATE_SYNTAX_ERROR:
|
|
2980
|
-
return "Notification - MRZ: Issuing state syntax error"
|
|
2981
|
-
case this.NTF_LDS_MRZ_NAME_IS_VOID:
|
|
2982
|
-
return "Notification - MRZ: Name is void"
|
|
2983
|
-
case this.NTF_LDS_MRZ_NUMBER_INCORRECT_CHECKSUM:
|
|
2984
|
-
return "Notification - MRZ: Number incorrect checksum"
|
|
2985
|
-
case this.NTF_LDS_MRZ_NATIONALITY_SYNTAX_ERROR:
|
|
2986
|
-
return "Notification - MRZ: Nationality syntax error"
|
|
2987
|
-
case this.NTF_LDS_MRZ_DOB_SYNTAX_ERROR:
|
|
2988
|
-
return "Notification - MRZ: DOB syntax error"
|
|
2989
|
-
case this.NTF_LDS_MRZ_DOB_ERROR:
|
|
2990
|
-
return "Notification - MRZ: DOB error"
|
|
2991
|
-
case this.NTF_LDS_MRZ_DOB_INCORRECT_CHECKSUM:
|
|
2992
|
-
return "Notification - MRZ: DOB incorrect checksum"
|
|
2993
|
-
case this.NTF_LDS_MRZ_SEX_INCORRECT:
|
|
2994
|
-
return "Notification - MRZ: Sex incorrect"
|
|
2995
|
-
case this.NTF_LDS_MRZ_DOE_SYNTAX_ERROR:
|
|
2996
|
-
return "Notification - MRZ: DOE syntax error"
|
|
2997
|
-
case this.NTF_LDS_MRZ_DOE_ERROR:
|
|
2998
|
-
return "Notification - MRZ: DOE error"
|
|
2999
|
-
case this.NTF_LDS_MRZ_DOE_INCORRECT_CHECKSUM:
|
|
3000
|
-
return "Notification - MRZ: DOE incorrect checksum"
|
|
3001
|
-
case this.NTF_LDS_MRZ_OPTIONAL_DATA_INCORRECT_CHECKSUM:
|
|
3002
|
-
return "Notification - MRZ: Optional data incorrect checksum"
|
|
3003
|
-
case this.NTF_LDS_MRZ_INCORRECT_CHECKSUM:
|
|
3004
|
-
return "Notification - MRZ: Incorrect checksum"
|
|
3005
|
-
case this.NTF_LDS_MRZ_INCORRECT:
|
|
3006
|
-
return "Notification - MRZ: Incorrect"
|
|
3007
|
-
case this.NTF_LDS_BIOMETRICS_FORMAT_OWNER_MISSING:
|
|
3008
|
-
return "Notification - Biometrics: Format owner missing"
|
|
3009
|
-
case this.NTF_LDS_BIOMETRICS_FORMAT_OWNER_INCORRECT:
|
|
3010
|
-
return "Notification - Biometrics: Format owner incorrect"
|
|
3011
|
-
case this.NTF_LDS_BIOMETRICS_FORMAT_TYPE_MISSING:
|
|
3012
|
-
return "Notification - Biometrics: Format type missing"
|
|
3013
|
-
case this.NTF_LDS_BIOMETRICS_FORMAT_TYPE_INCORRECT:
|
|
3014
|
-
return "Notification - Biometrics: Format type incorrect"
|
|
3015
|
-
case this.NTF_LDS_BIOMETRICS_TYPE_INCORRECT:
|
|
3016
|
-
return "Notification - Biometrics: Type incorrect"
|
|
3017
|
-
case this.NTF_LDS_BIOMETRICS_SUB_TYPE_MISSING:
|
|
3018
|
-
return "Notification - Biometrics: Subtype missing"
|
|
3019
|
-
case this.NTF_LDS_BIOMETRICS_SUB_TYPE_INCORRECT:
|
|
3020
|
-
return "Notification - Biometrics: Subtype incorrect"
|
|
3021
|
-
case this.NTF_LDS_BIOMETRICS_BDB_IMAGE_MISSING:
|
|
3022
|
-
return "Notification - Biometrics: BDB image missing"
|
|
3023
|
-
case this.NTF_LDS_BIOMETRICS_BDB_FORMAT_ID_INCORRECT:
|
|
3024
|
-
return "Notification - Biometrics: BDB format ID incorrect"
|
|
3025
|
-
case this.NTF_LDS_BIOMETRICS_BDB_VERSION_INCORRECT:
|
|
3026
|
-
return "Notification - Biometrics: BDB version incorrect"
|
|
3027
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_LENGTH_INCORRECT:
|
|
3028
|
-
return "Notification - Biometrics: BDB data length incorrect"
|
|
3029
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_GENDER:
|
|
3030
|
-
return "Notification - Biometrics: BDB Data Gender"
|
|
3031
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_EYE_COLOR:
|
|
3032
|
-
return "Notification - Biometrics: BDB Data Eye Color"
|
|
3033
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_HAIR_COLOR:
|
|
3034
|
-
return "Notification - Biometrics: BDB Data Hair Color"
|
|
3035
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_YAW:
|
|
3036
|
-
return "Notification - Biometrics: BDB Data Pose Angle Yaw"
|
|
3037
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_PITCH:
|
|
3038
|
-
return "Notification - Biometrics: BDB Data Pose Angle Pitch"
|
|
3039
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_ROLL:
|
|
3040
|
-
return "Notification - Biometrics: BDB Data Pose Angle Roll"
|
|
3041
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_U_YAW:
|
|
3042
|
-
return "Notification - Biometrics: BDB Data Pose Angle U Yaw"
|
|
3043
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_U_PITCH:
|
|
3044
|
-
return "Notification - Biometrics: BDB Data Pose Angle U Pitch"
|
|
3045
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_POSE_ANGLE_U_ROLL:
|
|
3046
|
-
return "Notification - Biometrics: BDB Data Pose Angle U Roll"
|
|
3047
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_FACE_IMAGE_TYPE:
|
|
3048
|
-
return "Notification - Biometrics: BDB Data Face Image Type"
|
|
3049
|
-
case this.NTF_LDS_BIOMETRICS_BDB_DATA_IMAGE_DATA_TYPE:
|
|
3050
|
-
return "Notification - Biometrics: BDB Data Image Data Type"
|
|
3051
|
-
case this.NTF_LDS_SI_PACE_INFO_UNSUPPORTED_STD_PARAMETERS:
|
|
3052
|
-
return "Notification - SI: PACE Info Unsupported Std Parameters"
|
|
3053
|
-
case this.NTF_LDS_SI_PACE_INFO_DEPRECATED_VERSION:
|
|
3054
|
-
return "Notification - SI: PACE Info Deprecated Version"
|
|
3055
|
-
case this.NTF_LDS_SI_PACE_DOMAIN_PARAMS_USING_STD_REF:
|
|
3056
|
-
return "Notification - SI: PACE Domain Params Using Std Ref"
|
|
3057
|
-
case this.NTF_LDS_SI_PACE_DOMAIN_PARAMS_UNSUPPORTED_ALGORITHM:
|
|
3058
|
-
return "Notification - SI: PACE Domain Params Unsupported Algorithm"
|
|
3059
|
-
case this.NTF_LDS_SI_CA_INFO_INCORRECT_VERSION:
|
|
3060
|
-
return "Notification - SI: CA Info Incorrect Version"
|
|
3061
|
-
case this.NTF_LDS_SI_CA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM:
|
|
3062
|
-
return "Notification - SI: CA PublicKey Unsupported Algorithm"
|
|
3063
|
-
case this.NTF_LDS_SI_CA_DOMAIN_PARAMS_UNSUPPORTED_ALGORITHM:
|
|
3064
|
-
return "Notification - SI: CA Domain Params Unsupported Algorithm"
|
|
3065
|
-
case this.NTF_LDS_SI_TA_INFO_INCORRECT_VERSION:
|
|
3066
|
-
return "Notification - SI: TA Info Incorrect Version"
|
|
3067
|
-
case this.NTF_LDS_SI_TA_INFO_FILE_ID_FOR_VERSION2:
|
|
3068
|
-
return "Notification - SI: TA Info File ID For Version 2"
|
|
3069
|
-
case this.NTF_LDS_SI_EID_SECURITY_UNSUPPORTED_DIGEST_ALGORITHM:
|
|
3070
|
-
return "Notification - SI: eID Security Unsupported Digest Algorithm"
|
|
3071
|
-
case this.NTF_LDS_SI_RI_INFO_INCORRECT_VERSION:
|
|
3072
|
-
return "Notification - SI: RI info incorrect version"
|
|
3073
|
-
case this.NTF_LDS_SI_RI_DOMAIN_PARAMS_UNSUPPORTED_ALGORITHM:
|
|
3074
|
-
return "Notification - SI: RI domain params unsupported algorithm"
|
|
3075
|
-
case this.NTF_LDS_SI_AA_INFO_INCORRECT_VERSION:
|
|
3076
|
-
return "Notification - SI: AA info incorrect version"
|
|
3077
|
-
case this.NTF_LDS_SI_AA_INFO_UNSUPPORTED_ALGORITHM:
|
|
3078
|
-
return "Notification - SI: AA info unsupported algorithm"
|
|
3079
|
-
case this.NTF_LDS_SI_AA_INFO_INCONSISTENT_ALGORITHM_REFERENCE:
|
|
3080
|
-
return "Notification - SI: AA info inconsistent algorithm reference"
|
|
3081
|
-
case this.NTF_LDS_SI_STORAGE_PACE_INFO_NOT_AVAILABLE:
|
|
3082
|
-
return "Notification - SI: PACE Info Not Available"
|
|
3083
|
-
case this.NTF_LDS_SI_STORAGE_PACE_INFO_NO_STD_PARAMETERS:
|
|
3084
|
-
return "Notification - SI: PACE Info No Std Parameters"
|
|
3085
|
-
case this.NTF_LDS_SI_STORAGE_PACE_INFO_NO_MATCHING_DOMAIN_PARAMS:
|
|
3086
|
-
return "Notification - SI: PACE Info No Matching Domain Params"
|
|
3087
|
-
case this.NTF_LDS_SI_STORAGE_CA_INFO_NOT_AVAILABLE:
|
|
3088
|
-
return "Notification - SI: CA Info Not Available"
|
|
3089
|
-
case this.NTF_LDS_SI_STORAGE_CA_DOMAIN_PARAMS_NO_REQUIRED_OPTION:
|
|
3090
|
-
return "Notification - SI: CA Domain Params No Required Option"
|
|
3091
|
-
case this.NTF_LDS_SI_STORAGE_CA_DOMAIN_PARAMS_NOT_AVAILABLE:
|
|
3092
|
-
return "Notification - SI: CA Domain Params Not Available"
|
|
3093
|
-
case this.NTF_LDS_SI_STORAGE_CA_ANONYMOUS_INFOS:
|
|
3094
|
-
return "Notification - SI: CA Anonymous Infos"
|
|
3095
|
-
case this.NTF_LDS_SI_STORAGE_CA_INFO_NO_MATCHING_DOMAIN_PARAMS:
|
|
3096
|
-
return "Notification - SI: CA Info No Matching Domain Params"
|
|
3097
|
-
case this.NTF_LDS_SI_STORAGE_CA_INFO_NO_MATCHING_PUBLIC_KEY:
|
|
3098
|
-
return "Notification - SI: CA Info No Matching Public Key"
|
|
3099
|
-
case this.NTF_LDS_SI_STORAGE_CA_INCORRECT_INFOS_QUANTITY:
|
|
3100
|
-
return "Notification - SI: CA Incorrect Infos Quantity"
|
|
3101
|
-
case this.NTF_LDS_SI_STORAGE_TA_INFO_NOT_AVAILABLE:
|
|
3102
|
-
return "Notification - SI: TA Info Not Available"
|
|
3103
|
-
case this.NTF_LDS_SI_STORAGE_CARD_INFO_LOCATOR_MULTIPLE_ENTRIES:
|
|
3104
|
-
return "Notification - SI: Card Info Locator Multiple Entries"
|
|
3105
|
-
case this.NTF_LDS_SI_STORAGE_EID_SECURITY_INFO_MULTIPLE_ENTRIES:
|
|
3106
|
-
return "Notification - SI: eID Security Info Multiple Entries"
|
|
3107
|
-
case this.NTF_LDS_SI_STORAGE_PRIVILEGED_TI_MULTIPLE_ENTRIES:
|
|
3108
|
-
return "Notification - SI: Privileged TI Multiple Entries"
|
|
3109
|
-
case this.NTF_LDS_SI_STORAGE_PRIVILEGED_TI_INCORRECT_USAGE:
|
|
3110
|
-
return "Notification - SI: Privileged TI Incorrect Usage"
|
|
3111
|
-
case this.NTF_LDS_SI_STORAGE_RI_DOMAIN_PARAMS_MULTIPLE_ENTRIES:
|
|
3112
|
-
return "Notification - SI: RI domain params multiple entries"
|
|
3113
|
-
case this.NTF_LDS_SI_STORAGE_PACE_INFOS_NON_CONSISTANT:
|
|
3114
|
-
return "Notification - SI: Storage PACE Info Non Consistant"
|
|
3115
|
-
case this.NTF_LDS_CV_CERTIFICATE_PROFILE_INCORRECT_VERSION:
|
|
3116
|
-
return "Notification - CV Certificate: Profile incorrect version"
|
|
3117
|
-
case this.NTF_LDS_CV_CERTIFICATE_VALIDITY:
|
|
3118
|
-
return "Notification - CV Certificate: Validity"
|
|
3119
|
-
case this.NTF_LDS_CV_CERTIFICATE_NON_CV_CA_DOMAIN_PARAMETERS:
|
|
3120
|
-
return "Notification - CV Certificate: Non CVCA domain parameters"
|
|
3121
|
-
case this.NTF_LDS_CV_CERTIFICATE_PRIVATE_KEY_INCORRECT_VERSION:
|
|
3122
|
-
return "Notification - CV Certificate: Private key incorrect version"
|
|
3123
|
-
case this.NTF_LDS_TA_PACE_STATIC_BINDING_USED:
|
|
3124
|
-
return "Notification - TA: PACE static binding used"
|
|
3125
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_VALIDITY:
|
|
3126
|
-
return "Notification - Auth ML signer info: Certificate validity"
|
|
3127
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_ROOT_IS_NOT_TRUSTED:
|
|
3128
|
-
return "Notification - Auth ML signer info: Certificate root is not trusted"
|
|
3129
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_CANT_FIND_CSCA:
|
|
3130
|
-
return "Notification - Auth ML signer info: Certificate cannot find CSCA"
|
|
3131
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_REVOKED:
|
|
3132
|
-
return "Notification - Auth ML signer info: Certificate revoked"
|
|
3133
|
-
case this.NTF_LDS_AUTH_ML_SIGNER_INFO_CERTIFICATE_SIGNATURE_INVALID:
|
|
3134
|
-
return "Notification - Auth ML signer info: Certificate signature invalid"
|
|
3135
|
-
case this.NTF_LDS_ASN_SIGNED_DATA_CONTENT_OID_INCORRECT:
|
|
3136
|
-
return "Notification - ASN signed data: Content OID incorrect"
|
|
3137
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_LIST_CONTENT_DESCRIPTION_ATTR_DATA:
|
|
3138
|
-
return "Notification - ASN signer info: List content description attr data"
|
|
3139
|
-
case this.NTF_LDS_ASN_SIGNER_INFO_LIST_CONTENT_DESCRIPTION_ATTR_MISSING:
|
|
3140
|
-
return "Notification - ASN signer info: List content description attr missing"
|
|
3141
|
-
case this.NTF_LDS_BSI_BLACK_LIST_VERSION_INCORRECT:
|
|
3142
|
-
return "Notification - BSI: Black list version incorrect"
|
|
3143
|
-
case this.NTF_LDS_BSI_DEFECT_LIST_VERSION_INCORRECT:
|
|
3144
|
-
return "Notification - BSI: Defect list version incorrect"
|
|
3145
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_CSCA_ALT_NAMES_NON_MATCHING:
|
|
3146
|
-
return "Notification - ICAO certificate extension: CSCA alt names non-matching"
|
|
3147
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_CRITICAL:
|
|
3148
|
-
return "Notification - ICAO certificate extension Doc type list: Critical"
|
|
3149
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_DOC_TYPE_LIST_NON_COMPLIANT:
|
|
3150
|
-
return "Notification - ICAO certificate extension Doc type list: non-compliant"
|
|
3151
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_ISSUER_ALT_NAME_CRITICAL:
|
|
3152
|
-
return "Notification - ICAO certificate extension: Issuer alt name critical"
|
|
3153
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_NAME_CHANGE_CRITICAL:
|
|
3154
|
-
return "Notification - ICAO certificate extension: Name change critical"
|
|
3155
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_NAME_CHANGE_INCORRECT_DATA:
|
|
3156
|
-
return "Notification - ICAO certificate extension: Name change incorrect data"
|
|
3157
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_NAME_CHANGE_NON_COMPLIANT:
|
|
3158
|
-
return "Notification - ICAO certificate extension: Name change non-compliant"
|
|
3159
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_EXT_OPTIONAL_CRITICAL:
|
|
3160
|
-
return "Notification - ICAO certificate extension: Optional critical"
|
|
3161
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_ATTRIBUTE_NON_COMPLIANT:
|
|
3162
|
-
return "Notification - ICAO certificate: Issuer attribute non-compliant"
|
|
3163
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_SN_NON_COMPLIANT:
|
|
3164
|
-
return "Notification - ICAO certificate: Issuer SN non-compliant"
|
|
3165
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_ISSUER_SUBJECT_COUNTRY_NON_MATCHING:
|
|
3166
|
-
return "Notification - ICAO certificate: Issuer subject country non-matching"
|
|
3167
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SN_NON_COMPLIANT:
|
|
3168
|
-
return "Notification - ICAO certificate: SN non-compliant"
|
|
3169
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_ATTRIBUTE_NON_COMPLIANT:
|
|
3170
|
-
return "Notification - ICAO certificate: Subject attribute non-compliant"
|
|
3171
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COMMON_NAME_NON_COMPLIANT:
|
|
3172
|
-
return "Notification - ICAO certificate: Subject common name non-compliant"
|
|
3173
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_NON_COMPLIANT:
|
|
3174
|
-
return "Notification - ICAO certificate: Subject non-compliant"
|
|
3175
|
-
case this.NTF_LDS_ICAO_CERTIFICATE_SUBJECT_SN_NON_COMPLIANT:
|
|
3176
|
-
return "Notification - ICAO certificate: Subject SN non-compliant"
|
|
3177
|
-
case this.NTF_LDS_ICAO_DEVIATION_LIST_VERSION_INCORRECT:
|
|
3178
|
-
return "Notification - ICAO Deviation list: Version incorrect"
|
|
3179
|
-
default:
|
|
3180
|
-
return value
|
|
3181
|
-
}
|
|
3182
|
-
}
|
|
3183
2231
|
}
|
|
3184
2232
|
|
|
3185
2233
|
export const eImageQualityCheckType = {
|
|
@@ -3192,31 +2240,6 @@ export const eImageQualityCheckType = {
|
|
|
3192
2240
|
IQC_SCREEN_CAPTURE: 6,
|
|
3193
2241
|
IQC_PORTRAIT: 7,
|
|
3194
2242
|
IQC_HANDWRITTEN: 8,
|
|
3195
|
-
|
|
3196
|
-
getTranslation: function (value) {
|
|
3197
|
-
switch (value) {
|
|
3198
|
-
case this.IQC_IMAGE_GLARES:
|
|
3199
|
-
return "Glares"
|
|
3200
|
-
case this.IQC_IMAGE_FOCUS:
|
|
3201
|
-
return "Focus"
|
|
3202
|
-
case this.IQC_IMAGE_RESOLUTION:
|
|
3203
|
-
return "Resolution"
|
|
3204
|
-
case this.IQC_IMAGE_COLORNESS:
|
|
3205
|
-
return "Color"
|
|
3206
|
-
case this.IQC_PERSPECTIVE:
|
|
3207
|
-
return "Perspective angle"
|
|
3208
|
-
case this.IQC_BOUNDS:
|
|
3209
|
-
return "Bounds"
|
|
3210
|
-
case this.IQC_SCREEN_CAPTURE:
|
|
3211
|
-
return "Moire pattern"
|
|
3212
|
-
case this.IQC_PORTRAIT:
|
|
3213
|
-
return "Portrait"
|
|
3214
|
-
case this.IQC_HANDWRITTEN:
|
|
3215
|
-
return "Handwritten"
|
|
3216
|
-
default:
|
|
3217
|
-
return value
|
|
3218
|
-
}
|
|
3219
|
-
}
|
|
3220
2243
|
}
|
|
3221
2244
|
|
|
3222
2245
|
export const MRZFormat = {
|
|
@@ -3248,10 +2271,11 @@ export const BarcodeType = {
|
|
|
3248
2271
|
DATAMATRIX: 16,
|
|
3249
2272
|
ALL_1D: 17,
|
|
3250
2273
|
CODE11: 18,
|
|
2274
|
+
JABCODE: 19,
|
|
3251
2275
|
}
|
|
3252
2276
|
|
|
3253
2277
|
export const eRPRM_SecurityFeatureType = {
|
|
3254
|
-
|
|
2278
|
+
NONE: -1,
|
|
3255
2279
|
SECURITY_FEATURE_TYPE_BLANK: 0,
|
|
3256
2280
|
SECURITY_FEATURE_TYPE_FILL: 1,
|
|
3257
2281
|
SECURITY_FEATURE_TYPE_PHOTO: 2,
|
|
@@ -3296,6 +2320,7 @@ export const eRPRM_SecurityFeatureType = {
|
|
|
3296
2320
|
SECURITY_FEATURE_TYPE_BARCODE_SIZE_CHECK: 42,
|
|
3297
2321
|
SECURITY_FEATURE_TYPE_LAS_INK: 43,
|
|
3298
2322
|
SECURITY_FEATURE_TYPE_LIVENESS_MLI: 44,
|
|
2323
|
+
SECURITY_FEATURE_TYPE_LIVENESS_BARCODE_BACKGROUND: 45,
|
|
3299
2324
|
}
|
|
3300
2325
|
|
|
3301
2326
|
export const OnlineMode = {
|
|
@@ -3587,57 +2612,6 @@ export const eGraphicFieldType = {
|
|
|
3587
2612
|
GF_FINGER_RIGHT_MIDDLE: 307,
|
|
3588
2613
|
GF_FINGER_RIGHT_RING: 308,
|
|
3589
2614
|
GF_FINGER_RIGHT_LITTLE: 309,
|
|
3590
|
-
|
|
3591
|
-
getTranslation: function (value) {
|
|
3592
|
-
switch (value) {
|
|
3593
|
-
case this.GF_PORTRAIT:
|
|
3594
|
-
return "Portrait"
|
|
3595
|
-
case this.GF_FINGERPR:
|
|
3596
|
-
return "Fingerprint"
|
|
3597
|
-
case this.GF_EYE:
|
|
3598
|
-
return "Iris"
|
|
3599
|
-
case this.GF_SIGNATURE:
|
|
3600
|
-
return "Signature"
|
|
3601
|
-
case this.GF_BAR_CODE:
|
|
3602
|
-
return "Barcode"
|
|
3603
|
-
case this.GF_PROOF_OF_CITIZENSHIP:
|
|
3604
|
-
return "Proof of citizenship"
|
|
3605
|
-
case this.GF_DOCUMENT_IMAGE:
|
|
3606
|
-
return "Document image"
|
|
3607
|
-
case this.GF_COLOR_DYNAMIC:
|
|
3608
|
-
return "Color dynamics"
|
|
3609
|
-
case this.GF_GHOST_PORTRAIT:
|
|
3610
|
-
return "Ghost portrait"
|
|
3611
|
-
case this.GF_STAMP:
|
|
3612
|
-
return "Stamp"
|
|
3613
|
-
case this.GF_PORTRAIT_OF_CHILD:
|
|
3614
|
-
return "Portrait of child"
|
|
3615
|
-
case this.GF_OTHER:
|
|
3616
|
-
return "Other"
|
|
3617
|
-
case this.GF_FINGER_LEFT_THUMB:
|
|
3618
|
-
return "Left thumb"
|
|
3619
|
-
case this.GF_FINGER_LEFT_INDEX:
|
|
3620
|
-
return "Left index finger"
|
|
3621
|
-
case this.GF_FINGER_LEFT_MIDDLE:
|
|
3622
|
-
return "Left middle finger"
|
|
3623
|
-
case this.GF_FINGER_LEFT_RING:
|
|
3624
|
-
return "Left ring finger"
|
|
3625
|
-
case this.GF_FINGER_LEFT_LITTLE:
|
|
3626
|
-
return "Left little finger"
|
|
3627
|
-
case this.GF_FINGER_RIGHT_THUMB:
|
|
3628
|
-
return "Right thumb"
|
|
3629
|
-
case this.GF_FINGER_RIGHT_INDEX:
|
|
3630
|
-
return "Right index finger"
|
|
3631
|
-
case this.GF_FINGER_RIGHT_MIDDLE:
|
|
3632
|
-
return "Right middle finger"
|
|
3633
|
-
case this.GF_FINGER_RIGHT_RING:
|
|
3634
|
-
return "Right ring finger"
|
|
3635
|
-
case this.GF_FINGER_RIGHT_LITTLE:
|
|
3636
|
-
return "Right little finger"
|
|
3637
|
-
default:
|
|
3638
|
-
return value
|
|
3639
|
-
}
|
|
3640
|
-
}
|
|
3641
2615
|
}
|
|
3642
2616
|
|
|
3643
2617
|
export const RegDeviceConfigType = {
|
|
@@ -3756,169 +2730,6 @@ export const eRFID_DataFile_Type = {
|
|
|
3756
2730
|
DFT_VDS: 900,
|
|
3757
2731
|
DFT_VDSNC: 901,
|
|
3758
2732
|
DFT_USERDEFINED: 1000,
|
|
3759
|
-
|
|
3760
|
-
getTranslation: function (value) {
|
|
3761
|
-
switch (value) {
|
|
3762
|
-
case this.DFT_MIFARE_DATA:
|
|
3763
|
-
return "MIFARE data"
|
|
3764
|
-
case this.DFT_DL_COM:
|
|
3765
|
-
return "EF.COM"
|
|
3766
|
-
case this.DFT_PASSPORT_DG1:
|
|
3767
|
-
return "Machine Readable Zone (DG1)"
|
|
3768
|
-
case this.DFT_ID_DG1:
|
|
3769
|
-
return "Document type" + " (DG1)"
|
|
3770
|
-
case this.DFT_DL_DG1:
|
|
3771
|
-
return "Text data elements (DG1)"
|
|
3772
|
-
case this.DFT_PASSPORT_DG2:
|
|
3773
|
-
return "Biometry - Facial data (DG2)"
|
|
3774
|
-
case this.DFT_ID_DG2:
|
|
3775
|
-
return "Issuing state" + " (DG2)"
|
|
3776
|
-
case this.DFT_DL_DG2:
|
|
3777
|
-
return "License holder information (DG2)"
|
|
3778
|
-
case this.DFT_PASSPORT_DG3:
|
|
3779
|
-
return "Biometry - Fingerprint(s) (DG3)"
|
|
3780
|
-
case this.DFT_ID_DG3:
|
|
3781
|
-
return "Date of expiry" + " (DG3)"
|
|
3782
|
-
case this.DFT_DL_DG3:
|
|
3783
|
-
return "Issuing authority details (DG3)"
|
|
3784
|
-
case this.DFT_PASSPORT_DG4:
|
|
3785
|
-
return "Biometry - Iris Data (DG4)"
|
|
3786
|
-
case this.DFT_ID_DG4:
|
|
3787
|
-
return "Given name" + " (DG4)"
|
|
3788
|
-
case this.DFT_DL_DG4:
|
|
3789
|
-
return "Portrait image (DG4)"
|
|
3790
|
-
case this.DFT_PASSPORT_DG5:
|
|
3791
|
-
return "Portrait(s) (DG5)"
|
|
3792
|
-
case this.DFT_ID_DG5:
|
|
3793
|
-
return "Family name" + " (DG5)"
|
|
3794
|
-
case this.DFT_DL_DG5:
|
|
3795
|
-
return "Signature / usual mark image (DG5)"
|
|
3796
|
-
case this.DFT_PASSPORT_DG6:
|
|
3797
|
-
return "not defined (DG6)"
|
|
3798
|
-
case this.DFT_ID_DG6:
|
|
3799
|
-
return "Pseudonym" + " (DG6)"
|
|
3800
|
-
case this.DFT_DL_DG6:
|
|
3801
|
-
return "Biometry - Facial data (DG6)"
|
|
3802
|
-
case this.DFT_PASSPORT_DG7:
|
|
3803
|
-
return "Signature / usual mark image (DG7)"
|
|
3804
|
-
case this.DFT_ID_DG7:
|
|
3805
|
-
return "Academic title" + " (DG7)"
|
|
3806
|
-
case this.DFT_DL_DG7:
|
|
3807
|
-
return "Biometry - Fingerprint(s) (DG7)"
|
|
3808
|
-
case this.DFT_PASSPORT_DG8:
|
|
3809
|
-
return "not defined (DG8)"
|
|
3810
|
-
case this.DFT_ID_DG8:
|
|
3811
|
-
return "Date of birth" + " (DG8)"
|
|
3812
|
-
case this.DFT_DL_DG8:
|
|
3813
|
-
return "Biometry - Iris Data (DG8)"
|
|
3814
|
-
case this.DFT_PASSPORT_DG9:
|
|
3815
|
-
return "not defined (DG9)"
|
|
3816
|
-
case this.DFT_ID_DG9:
|
|
3817
|
-
return "Place of birth" + " (DG9)"
|
|
3818
|
-
case this.DFT_DL_DG9:
|
|
3819
|
-
return "Biometry - Other (DG9)"
|
|
3820
|
-
case this.DFT_PASSPORT_DG10:
|
|
3821
|
-
return "not defined (DG10)"
|
|
3822
|
-
case this.DFT_ID_DG10:
|
|
3823
|
-
return "Nationality" + " (DG10)"
|
|
3824
|
-
case this.DFT_DL_DG10:
|
|
3825
|
-
return "not defined (DG10)"
|
|
3826
|
-
case this.DFT_PASSPORT_DG11:
|
|
3827
|
-
return "Additional personal detail(s) (DG11)"
|
|
3828
|
-
case this.DFT_ID_DG11:
|
|
3829
|
-
return "Sex" + " (DG11)"
|
|
3830
|
-
case this.DFT_DL_DG11:
|
|
3831
|
-
return "Optional domestic data (DG11)"
|
|
3832
|
-
case this.DFT_PASSPORT_DG12:
|
|
3833
|
-
return "Additional document details (DG12)"
|
|
3834
|
-
case this.DFT_ID_DG12:
|
|
3835
|
-
return "Optional details" + " (DG12)"
|
|
3836
|
-
case this.DFT_DL_DG12:
|
|
3837
|
-
return "Non-match alert (DG12)"
|
|
3838
|
-
case this.DFT_PASSPORT_DG13:
|
|
3839
|
-
return "Optional detail(s) (DG13)"
|
|
3840
|
-
case this.DFT_ID_DG13:
|
|
3841
|
-
return "Undefined" + " (DG13)"
|
|
3842
|
-
case this.DFT_DL_DG13:
|
|
3843
|
-
return "Active Authentication info (DG13)"
|
|
3844
|
-
case this.DFT_PASSPORT_DG14:
|
|
3845
|
-
return "EAC info (DG14)"
|
|
3846
|
-
case this.DFT_ID_DG14:
|
|
3847
|
-
return "Undefined" + " (DG14)"
|
|
3848
|
-
case this.DFT_DL_DG14:
|
|
3849
|
-
return "EAC info (DG14)"
|
|
3850
|
-
case this.DFT_PASSPORT_DG15:
|
|
3851
|
-
return "Active Authentication info (DG15)"
|
|
3852
|
-
case this.DFT_ID_DG15:
|
|
3853
|
-
return "Undefined" + " (DG15)"
|
|
3854
|
-
case this.DFT_PASSPORT_DG16:
|
|
3855
|
-
return "Person(s) to notify (DG16)"
|
|
3856
|
-
case this.DFT_ID_DG16:
|
|
3857
|
-
return "Undefined" + " (DG16)"
|
|
3858
|
-
case this.DFT_PASSPORT_DG17:
|
|
3859
|
-
return "DG17"
|
|
3860
|
-
case this.DFT_ID_DG17:
|
|
3861
|
-
return "Place of registration" + " (DG17)"
|
|
3862
|
-
case this.DFT_PASSPORT_DG18:
|
|
3863
|
-
return "DG18"
|
|
3864
|
-
case this.DFT_ID_DG18:
|
|
3865
|
-
return "Place of registration" + " (DG18)"
|
|
3866
|
-
case this.DFT_PASSPORT_DG19:
|
|
3867
|
-
return "DG19"
|
|
3868
|
-
case this.DFT_ID_DG19:
|
|
3869
|
-
return "Residence permit 1" + " (DG19)"
|
|
3870
|
-
case this.DFT_PASSPORT_DG20:
|
|
3871
|
-
return "DG20"
|
|
3872
|
-
case this.DFT_ID_DG20:
|
|
3873
|
-
return "Residence permit 2" + " (DG20)"
|
|
3874
|
-
case this.DFT_ID_DG21:
|
|
3875
|
-
return "Optional details" + " (DG21)"
|
|
3876
|
-
case this.DFT_DL_SOD:
|
|
3877
|
-
return "EF.SOD"
|
|
3878
|
-
case this.DFT_PASSPORT_CVCA:
|
|
3879
|
-
return "EF.CVCA"
|
|
3880
|
-
case this.DFT_MIFARE_VALIDITY:
|
|
3881
|
-
return "MIFARE validity"
|
|
3882
|
-
case this.DFT_PACE_CARDACCESS:
|
|
3883
|
-
return "EF.CardAccess"
|
|
3884
|
-
case this.DFT_PACE_CARDSECURITY:
|
|
3885
|
-
return "EF.CardSecurity"
|
|
3886
|
-
case this.DFT_PACE_CHIPSECURITY:
|
|
3887
|
-
return "EF.ChipSecurity"
|
|
3888
|
-
case this.DFT_CERTIFICATE:
|
|
3889
|
-
return "Certificate"
|
|
3890
|
-
case this.DFT_APP_DIRECTORY:
|
|
3891
|
-
return "App directory"
|
|
3892
|
-
case this.DFT_ATR:
|
|
3893
|
-
return "DFT_ATR"
|
|
3894
|
-
case this.DFT_CHIP_PROPERTIES:
|
|
3895
|
-
return "DFT_CHIP_PROPERTIES"
|
|
3896
|
-
case this.DFT_DEFECTLIST:
|
|
3897
|
-
return "DFT_DEFECTLIST"
|
|
3898
|
-
case this.DFT_DEVIATIONLIST:
|
|
3899
|
-
return "DFT_DEVIATIONLIST"
|
|
3900
|
-
case this.DFT_DL_CE:
|
|
3901
|
-
return "DFT_DL_CE"
|
|
3902
|
-
case this.DFT_DL_CVCA:
|
|
3903
|
-
return "DFT_DL_CVCA"
|
|
3904
|
-
case this.DFT_ESIGN_PK:
|
|
3905
|
-
return "DFT_ESIGN_PK"
|
|
3906
|
-
case this.DFT_ESIGN_SIGNEDDATA:
|
|
3907
|
-
return "DFT_ESIGN_SIGNEDDATA"
|
|
3908
|
-
case this.DFT_LOGDATA:
|
|
3909
|
-
return "DFT_LOGDATA"
|
|
3910
|
-
case this.DFT_MASTERLIST:
|
|
3911
|
-
return "DFT_MASTERLIST"
|
|
3912
|
-
case this.DFT_SESSION:
|
|
3913
|
-
return "DFT_SESSION"
|
|
3914
|
-
case this.DFT_UNSPECIFIED:
|
|
3915
|
-
return "DFT_UNSPECIFIED"
|
|
3916
|
-
case this.DFT_USERDEFINED:
|
|
3917
|
-
return "DFT_USERDEFINED"
|
|
3918
|
-
default:
|
|
3919
|
-
return value
|
|
3920
|
-
}
|
|
3921
|
-
}
|
|
3922
2733
|
}
|
|
3923
2734
|
|
|
3924
2735
|
export const eVisualFieldType = {
|
|
@@ -4538,1225 +3349,20 @@ export const eVisualFieldType = {
|
|
|
4538
3349
|
FT_DLCLASSCODE_EC1_NOTES: 664,
|
|
4539
3350
|
FT_DLCLASSCODE_EC1_TO: 665,
|
|
4540
3351
|
FT_PLACE_OF_BIRTH_CITY: 666,
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
|
|
4555
|
-
return "Date of birth"
|
|
4556
|
-
case this.FT_PLACE_OF_BIRTH:
|
|
4557
|
-
return "Place of birth"
|
|
4558
|
-
case this.FT_PERSONAL_NUMBER:
|
|
4559
|
-
return "Personal number"
|
|
4560
|
-
case this.FT_SURNAME:
|
|
4561
|
-
return "Surname"
|
|
4562
|
-
case this.FT_GIVEN_NAMES:
|
|
4563
|
-
return "Given name"
|
|
4564
|
-
case this.FT_MOTHERS_NAME:
|
|
4565
|
-
return "Mother\'s name"
|
|
4566
|
-
case this.FT_NATIONALITY:
|
|
4567
|
-
return "Nationality"
|
|
4568
|
-
case this.FT_SEX:
|
|
4569
|
-
return "Sex"
|
|
4570
|
-
case this.FT_HEIGHT:
|
|
4571
|
-
return "Height"
|
|
4572
|
-
case this.FT_WEIGHT:
|
|
4573
|
-
return "Weight"
|
|
4574
|
-
case this.FT_EYES_COLOR:
|
|
4575
|
-
return "Eye color"
|
|
4576
|
-
case this.FT_HAIR_COLOR:
|
|
4577
|
-
return "Hair color"
|
|
4578
|
-
case this.FT_ADDRESS:
|
|
4579
|
-
return "Address"
|
|
4580
|
-
case this.FT_DONOR:
|
|
4581
|
-
return "Donor"
|
|
4582
|
-
case this.FT_SOCIAL_SECURITY_NUMBER:
|
|
4583
|
-
return "Social insurance number"
|
|
4584
|
-
case this.FT_DL_CLASS:
|
|
4585
|
-
return "DL category"
|
|
4586
|
-
case this.FT_DL_ENDORSED:
|
|
4587
|
-
return "DL endorsement code"
|
|
4588
|
-
case this.FT_DL_RESTRICTION_CODE:
|
|
4589
|
-
return "DL Restriction Code"
|
|
4590
|
-
case this.FT_DL_UNDER_21_DATE:
|
|
4591
|
-
return "Date of 21st birthday"
|
|
4592
|
-
case this.FT_AUTHORITY:
|
|
4593
|
-
return "Issuing authority"
|
|
4594
|
-
case this.FT_SURNAME_AND_GIVEN_NAMES:
|
|
4595
|
-
return "Surname and given names"
|
|
4596
|
-
case this.FT_NATIONALITY_CODE:
|
|
4597
|
-
return "Nationality code"
|
|
4598
|
-
case this.FT_PASSPORT_NUMBER:
|
|
4599
|
-
return "Passport number"
|
|
4600
|
-
case this.FT_INVITATION_NUMBER:
|
|
4601
|
-
return "Invitation number"
|
|
4602
|
-
case this.FT_VISA_ID:
|
|
4603
|
-
return "Visa ID"
|
|
4604
|
-
case this.FT_VISA_CLASS:
|
|
4605
|
-
return "Visa Class"
|
|
4606
|
-
case this.FT_VISA_SUB_CLASS:
|
|
4607
|
-
return "Visa subclass"
|
|
4608
|
-
case this.FT_MRZ_STRING_1:
|
|
4609
|
-
return "MRZ line 1"
|
|
4610
|
-
case this.FT_MRZ_STRING_2:
|
|
4611
|
-
return "MRZ line 2"
|
|
4612
|
-
case this.FT_MRZ_STRING_3:
|
|
4613
|
-
return "MRZ line 3"
|
|
4614
|
-
case this.FT_MRZ_TYPE:
|
|
4615
|
-
return "MRZ Type"
|
|
4616
|
-
case this.FT_OPTIONAL_DATA:
|
|
4617
|
-
return "Optional data"
|
|
4618
|
-
case this.FT_DOCUMENT_CLASS_NAME:
|
|
4619
|
-
return "Document class"
|
|
4620
|
-
case this.FT_ISSUING_STATE_NAME:
|
|
4621
|
-
return "Issuing state"
|
|
4622
|
-
case this.FT_PLACE_OF_ISSUE:
|
|
4623
|
-
return "Place of issue"
|
|
4624
|
-
case this.FT_DOCUMENT_NUMBER_CHECKSUM:
|
|
4625
|
-
return "Checksum for document number"
|
|
4626
|
-
case this.FT_DATE_OF_BIRTH_CHECKSUM:
|
|
4627
|
-
return "Checksum for date of birth"
|
|
4628
|
-
case this.FT_DATE_OF_EXPIRY_CHECKSUM:
|
|
4629
|
-
return "Checksum for date of expiry"
|
|
4630
|
-
case this.FT_PERSONAL_NUMBER_CHECKSUM:
|
|
4631
|
-
return "Checksum for personal number"
|
|
4632
|
-
case this.FT_FINAL_CHECKSUM:
|
|
4633
|
-
return "Final checksum"
|
|
4634
|
-
case this.FT_PASSPORT_NUMBER_CHECKSUM:
|
|
4635
|
-
return "Checksum for passport number"
|
|
4636
|
-
case this.FT_INVITATION_NUMBER_CHECKSUM:
|
|
4637
|
-
return "Checksum for invitation number"
|
|
4638
|
-
case this.FT_VISA_ID_CHECKSUM:
|
|
4639
|
-
return "Checksum for visa ID"
|
|
4640
|
-
case this.FT_SURNAME_AND_GIVEN_NAMES_CHECKSUM:
|
|
4641
|
-
return "Checksum for surname and given names"
|
|
4642
|
-
case this.FT_VISA_VALID_UNTIL_CHECKSUM:
|
|
4643
|
-
return "Checksum for visa expiry date"
|
|
4644
|
-
case this.FT_OTHER:
|
|
4645
|
-
return "Other"
|
|
4646
|
-
case this.FT_MRZ_STRINGS:
|
|
4647
|
-
return "MRZ lines"
|
|
4648
|
-
case this.FT_NAME_SUFFIX:
|
|
4649
|
-
return "Name suffix"
|
|
4650
|
-
case this.FT_NAME_PREFIX:
|
|
4651
|
-
return "Name prefix"
|
|
4652
|
-
case this.FT_DATE_OF_ISSUE_CHECKSUM:
|
|
4653
|
-
return "Checksum for date of issue"
|
|
4654
|
-
case this.FT_DATE_OF_ISSUE_CHECK_DIGIT:
|
|
4655
|
-
return "Check digit for date of issue"
|
|
4656
|
-
case this.FT_DOCUMENT_SERIES:
|
|
4657
|
-
return "Document series"
|
|
4658
|
-
case this.FT_REG_CERT_REG_NUMBER:
|
|
4659
|
-
return "Registration number"
|
|
4660
|
-
case this.FT_REG_CERT_CAR_MODEL:
|
|
4661
|
-
return "Vehicle model"
|
|
4662
|
-
case this.FT_REG_CERT_CAR_COLOR:
|
|
4663
|
-
return "Vehicle color"
|
|
4664
|
-
case this.FT_REG_CERT_BODY_NUMBER:
|
|
4665
|
-
return "Body number"
|
|
4666
|
-
case this.FT_REG_CERT_CAR_TYPE:
|
|
4667
|
-
return "Vehicle type"
|
|
4668
|
-
case this.FT_REG_CERT_MAX_WEIGHT:
|
|
4669
|
-
return "Max permissible weight"
|
|
4670
|
-
case this.FT_REG_CERT_WEIGHT:
|
|
4671
|
-
return "Unladen mass"
|
|
4672
|
-
case this.FT_ADDRESS_AREA:
|
|
4673
|
-
return "Area"
|
|
4674
|
-
case this.FT_ADDRESS_STATE:
|
|
4675
|
-
return "State"
|
|
4676
|
-
case this.FT_ADDRESS_BUILDING:
|
|
4677
|
-
return "Unit"
|
|
4678
|
-
case this.FT_ADDRESS_HOUSE:
|
|
4679
|
-
return "Building"
|
|
4680
|
-
case this.FT_ADDRESS_FLAT:
|
|
4681
|
-
return "Apartment"
|
|
4682
|
-
case this.FT_PLACE_OF_REGISTRATION:
|
|
4683
|
-
return "Place of registration"
|
|
4684
|
-
case this.FT_DATE_OF_REGISTRATION:
|
|
4685
|
-
return "Date of registration"
|
|
4686
|
-
case this.FT_RESIDENT_FROM:
|
|
4687
|
-
return "Resident from"
|
|
4688
|
-
case this.FT_RESIDENT_UNTIL:
|
|
4689
|
-
return "Resident until"
|
|
4690
|
-
case this.FT_AUTHORITY_CODE:
|
|
4691
|
-
return "Issuing authority code"
|
|
4692
|
-
case this.FT_PLACE_OF_BIRTH_AREA:
|
|
4693
|
-
return "Country/region of birth"
|
|
4694
|
-
case this.FT_PLACE_OF_BIRTH_STATE_CODE:
|
|
4695
|
-
return "Birth state code"
|
|
4696
|
-
case this.FT_ADDRESS_STREET:
|
|
4697
|
-
return "Street"
|
|
4698
|
-
case this.FT_ADDRESS_CITY:
|
|
4699
|
-
return "City"
|
|
4700
|
-
case this.FT_ADDRESS_JURISDICTION_CODE:
|
|
4701
|
-
return "Jurisdiction code"
|
|
4702
|
-
case this.FT_ADDRESS_POSTAL_CODE:
|
|
4703
|
-
return "Postal code"
|
|
4704
|
-
case this.FT_DOCUMENT_NUMBER_CHECK_DIGIT:
|
|
4705
|
-
return "Check digit for document number"
|
|
4706
|
-
case this.FT_DATE_OF_BIRTH_CHECK_DIGIT:
|
|
4707
|
-
return "Check digit for date of birth"
|
|
4708
|
-
case this.FT_DATE_OF_EXPIRY_CHECK_DIGIT:
|
|
4709
|
-
return "Check digit for date of expiry"
|
|
4710
|
-
case this.FT_PERSONAL_NUMBER_CHECK_DIGIT:
|
|
4711
|
-
return "Check digit for personal number"
|
|
4712
|
-
case this.FT_FINAL_CHECK_DIGIT:
|
|
4713
|
-
return "Final check digit"
|
|
4714
|
-
case this.FT_PASSPORT_NUMBER_CHECK_DIGIT:
|
|
4715
|
-
return "Check digit for passport number"
|
|
4716
|
-
case this.FT_INVITATION_NUMBER_CHECK_DIGIT:
|
|
4717
|
-
return "Check digit for invitation number"
|
|
4718
|
-
case this.FT_VISA_ID_CHECK_DIGIT:
|
|
4719
|
-
return "Check digit for visa ID"
|
|
4720
|
-
case this.FT_SURNAME_AND_GIVEN_NAMES_CHECK_DIGIT:
|
|
4721
|
-
return "Check digit for surname and given names"
|
|
4722
|
-
case this.FT_VISA_VALID_UNTIL_CHECK_DIGIT:
|
|
4723
|
-
return "Check digit for visa expiry date"
|
|
4724
|
-
case this.FT_PERMIT_DL_CLASS:
|
|
4725
|
-
return "Permit class"
|
|
4726
|
-
case this.FT_PERMIT_DATE_OF_EXPIRY:
|
|
4727
|
-
return "Permit expiry date"
|
|
4728
|
-
case this.FT_PERMIT_IDENTIFIER:
|
|
4729
|
-
return "Permit identifier"
|
|
4730
|
-
case this.FT_PERMIT_DATE_OF_ISSUE:
|
|
4731
|
-
return "Permit issue date"
|
|
4732
|
-
case this.FT_PERMIT_RESTRICTION_CODE:
|
|
4733
|
-
return "Permit restriction code"
|
|
4734
|
-
case this.FT_PERMIT_ENDORSED:
|
|
4735
|
-
return "Permit endorsement code"
|
|
4736
|
-
case this.FT_ISSUE_TIMESTAMP:
|
|
4737
|
-
return "Issue time"
|
|
4738
|
-
case this.FT_NUMBER_OF_DUPLICATES:
|
|
4739
|
-
return "Number of duplicates"
|
|
4740
|
-
case this.FT_MEDICAL_INDICATOR_CODES:
|
|
4741
|
-
return "Medical notes/codes"
|
|
4742
|
-
case this.FT_NON_RESIDENT_INDICATOR:
|
|
4743
|
-
return "Non-resident indicator"
|
|
4744
|
-
case this.FT_VISA_TYPE:
|
|
4745
|
-
return "Visa type"
|
|
4746
|
-
case this.FT_VISA_VALID_FROM:
|
|
4747
|
-
return "Visa valid from"
|
|
4748
|
-
case this.FT_VISA_VALID_UNTIL:
|
|
4749
|
-
return "Visa valid until"
|
|
4750
|
-
case this.FT_DURATION_OF_STAY:
|
|
4751
|
-
return "Duration of stay"
|
|
4752
|
-
case this.FT_NUMBER_OF_ENTRIES:
|
|
4753
|
-
return "Number of entries"
|
|
4754
|
-
case this.FT_DAY:
|
|
4755
|
-
return "Day"
|
|
4756
|
-
case this.FT_MONTH:
|
|
4757
|
-
return "Month"
|
|
4758
|
-
case this.FT_YEAR:
|
|
4759
|
-
return "Year"
|
|
4760
|
-
case this.FT_UNIQUE_CUSTOMER_IDENTIFIER:
|
|
4761
|
-
return "Unique customer identifier"
|
|
4762
|
-
case this.FT_COMMERCIAL_VEHICLE_CODES:
|
|
4763
|
-
return "Commercial vehicle code"
|
|
4764
|
-
case this.FT_AKA_DATE_OF_BIRTH:
|
|
4765
|
-
return "AKA: Date of birth"
|
|
4766
|
-
case this.FT_AKA_SOCIAL_SECURITY_NUMBER:
|
|
4767
|
-
return "AKA: Social Insurance Number"
|
|
4768
|
-
case this.FT_AKA_SURNAME:
|
|
4769
|
-
return "AKA: Surname"
|
|
4770
|
-
case this.FT_AKA_GIVEN_NAMES:
|
|
4771
|
-
return "AKA: Given name"
|
|
4772
|
-
case this.FT_AKA_NAME_SUFFIX:
|
|
4773
|
-
return "AKA: Name suffix"
|
|
4774
|
-
case this.FT_AKA_NAME_PREFIX:
|
|
4775
|
-
return "AKA: Name prefix"
|
|
4776
|
-
case this.FT_MAILING_ADDRESS_STREET:
|
|
4777
|
-
return "Mailing address - street"
|
|
4778
|
-
case this.FT_MAILING_ADDRESS_CITY:
|
|
4779
|
-
return "Mailing address - city"
|
|
4780
|
-
case this.FT_MAILING_ADDRESS_JURISDICTION_CODE:
|
|
4781
|
-
return "Mailing address - jurisdiction code"
|
|
4782
|
-
case this.FT_MAILING_ADDRESS_POSTAL_CODE:
|
|
4783
|
-
return "Mailing address - postal code"
|
|
4784
|
-
case this.FT_AUDIT_INFORMATION:
|
|
4785
|
-
return "Number for validation"
|
|
4786
|
-
case this.FT_INVENTORY_NUMBER:
|
|
4787
|
-
return "Inventory number"
|
|
4788
|
-
case this.FT_RACE_ETHNICITY:
|
|
4789
|
-
return "Race/ethnicity"
|
|
4790
|
-
case this.FT_JURISDICTION_VEHICLE_CLASS:
|
|
4791
|
-
return "Jurisdiction vehicle class"
|
|
4792
|
-
case this.FT_JURISDICTION_ENDORSEMENT_CODE:
|
|
4793
|
-
return "Jurisdiction endorsement code"
|
|
4794
|
-
case this.FT_JURISDICTION_RESTRICTION_CODE:
|
|
4795
|
-
return "Jurisdiction restriction code"
|
|
4796
|
-
case this.FT_FAMILY_NAME:
|
|
4797
|
-
return "Family name"
|
|
4798
|
-
case this.FT_GIVEN_NAMES_RUS:
|
|
4799
|
-
return "Given name (National)"
|
|
4800
|
-
case this.FT_VISA_ID_RUS:
|
|
4801
|
-
return "Visa ID (National)"
|
|
4802
|
-
case this.FT_FATHERS_NAME:
|
|
4803
|
-
return "Father\'s name"
|
|
4804
|
-
case this.FT_FATHERS_NAME_RUS:
|
|
4805
|
-
return "Father\'s name (National)"
|
|
4806
|
-
case this.FT_SURNAME_AND_GIVEN_NAMES_RUS:
|
|
4807
|
-
return "Surname and given names (National)"
|
|
4808
|
-
case this.FT_PLACE_OF_BIRTH_RUS:
|
|
4809
|
-
return "Place of birth (National)"
|
|
4810
|
-
case this.FT_AUTHORITY_RUS:
|
|
4811
|
-
return "Issuing authority (National)"
|
|
4812
|
-
case this.FT_ISSUING_STATE_CODE_NUMERIC:
|
|
4813
|
-
return "Numeric issuing state code"
|
|
4814
|
-
case this.FT_NATIONALITY_CODE_NUMERIC:
|
|
4815
|
-
return "Numeric nationality code"
|
|
4816
|
-
case this.FT_ENGINE_POWER:
|
|
4817
|
-
return "Engine power"
|
|
4818
|
-
case this.FT_ENGINE_VOLUME:
|
|
4819
|
-
return "Engine volume"
|
|
4820
|
-
case this.FT_CHASSIS_NUMBER:
|
|
4821
|
-
return "Chassis number"
|
|
4822
|
-
case this.FT_ENGINE_NUMBER:
|
|
4823
|
-
return "Engine number"
|
|
4824
|
-
case this.FT_ENGINE_MODEL:
|
|
4825
|
-
return "Engine model"
|
|
4826
|
-
case this.FT_VEHICLE_CATEGORY:
|
|
4827
|
-
return "Vehicle category"
|
|
4828
|
-
case this.FT_IDENTITY_CARD_NUMBER:
|
|
4829
|
-
return "Identity card number"
|
|
4830
|
-
case this.FT_CONTROL_NO:
|
|
4831
|
-
return "Control number"
|
|
4832
|
-
case this.FT_PARRENTS_GIVEN_NAMES:
|
|
4833
|
-
return "Parents\' given names"
|
|
4834
|
-
case this.FT_SECOND_SURNAME:
|
|
4835
|
-
return "Second surname"
|
|
4836
|
-
case this.FT_MIDDLE_NAME:
|
|
4837
|
-
return "Middle name"
|
|
4838
|
-
case this.FT_REG_CERT_VIN:
|
|
4839
|
-
return "Vehicle identification number"
|
|
4840
|
-
case this.FT_REG_CERT_VIN_CHECK_DIGIT:
|
|
4841
|
-
return "Check digit for VIN"
|
|
4842
|
-
case this.FT_REG_CERT_VIN_CHECKSUM:
|
|
4843
|
-
return "Checksum for VIN"
|
|
4844
|
-
case this.FT_LINE_1_CHECK_DIGIT:
|
|
4845
|
-
return "Check digit for line 1"
|
|
4846
|
-
case this.FT_LINE_2_CHECK_DIGIT:
|
|
4847
|
-
return "Check digit for line 2"
|
|
4848
|
-
case this.FT_LINE_3_CHECK_DIGIT:
|
|
4849
|
-
return "Check digit for line 3"
|
|
4850
|
-
case this.FT_LINE_1_CHECKSUM:
|
|
4851
|
-
return "Checksum for line 1"
|
|
4852
|
-
case this.FT_LINE_2_CHECKSUM:
|
|
4853
|
-
return "Checksum for line 2"
|
|
4854
|
-
case this.FT_LINE_3_CHECKSUM:
|
|
4855
|
-
return "Checksum for line 3"
|
|
4856
|
-
case this.FT_REG_CERT_REG_NUMBER_CHECK_DIGIT:
|
|
4857
|
-
return "Check digit for registration number"
|
|
4858
|
-
case this.FT_REG_CERT_REG_NUMBER_CHECKSUM:
|
|
4859
|
-
return "Checksum for registration number"
|
|
4860
|
-
case this.FT_REG_CERT_VEHICLE_ITS_CODE:
|
|
4861
|
-
return "Vehicle ITS code"
|
|
4862
|
-
case this.FT_CARD_ACCESS_NUMBER:
|
|
4863
|
-
return "Card access number"
|
|
4864
|
-
case this.FT_MARITAL_STATUS:
|
|
4865
|
-
return "Marital status"
|
|
4866
|
-
case this.FT_COMPANY_NAME:
|
|
4867
|
-
return "Company name"
|
|
4868
|
-
case this.FT_SPECIAL_NOTES:
|
|
4869
|
-
return "Special notes"
|
|
4870
|
-
case this.FT_SURNAME_OF_SPOSE:
|
|
4871
|
-
return "Spouse\'s surname"
|
|
4872
|
-
case this.FT_TRACKING_NUMBER:
|
|
4873
|
-
return "Tracking number"
|
|
4874
|
-
case this.FT_BOOKLET_NUMBER:
|
|
4875
|
-
return "Booklet number"
|
|
4876
|
-
case this.FT_CHILDREN:
|
|
4877
|
-
return "Children"
|
|
4878
|
-
case this.FT_COPY:
|
|
4879
|
-
return "Copy"
|
|
4880
|
-
case this.FT_SERIAL_NUMBER:
|
|
4881
|
-
return "Serial number"
|
|
4882
|
-
case this.FT_DOSSIER_NUMBER:
|
|
4883
|
-
return "Dossier number"
|
|
4884
|
-
case this.FT_AKA_SURNAME_AND_GIVEN_NAMES:
|
|
4885
|
-
return "AKA: Surname and given names"
|
|
4886
|
-
case this.FT_TERRITORIAL_VALIDITY:
|
|
4887
|
-
return "Territorial validity"
|
|
4888
|
-
case this.FT_MRZ_STRINGS_WITH_CORRECT_CHECK_SUMS:
|
|
4889
|
-
return "MRZ lines with correct checksums"
|
|
4890
|
-
case this.FT_DL_CDL_RESTRICTION_CODE:
|
|
4891
|
-
return "CDL Restriction Code"
|
|
4892
|
-
case this.FT_DL_UNDER_18_DATE:
|
|
4893
|
-
return "Date of 18th birthday"
|
|
4894
|
-
case this.FT_DL_RECORD_CREATED:
|
|
4895
|
-
return "Record created"
|
|
4896
|
-
case this.FT_DL_DUPLICATE_DATE:
|
|
4897
|
-
return "Date of duplicate issue"
|
|
4898
|
-
case this.FT_DL_ISS_TYPE:
|
|
4899
|
-
return "Card type"
|
|
4900
|
-
case this.FT_MILITARY_BOOK_NUMBER:
|
|
4901
|
-
return "Military ID number"
|
|
4902
|
-
case this.FT_DESTINATION:
|
|
4903
|
-
return "Destination"
|
|
4904
|
-
case this.FT_BLOOD_GROUP:
|
|
4905
|
-
return "Blood group"
|
|
4906
|
-
case this.FT_SEQUENCE_NUMBER:
|
|
4907
|
-
return "Sequence number"
|
|
4908
|
-
case this.FT_REG_CERT_BODY_TYPE:
|
|
4909
|
-
return "Body type"
|
|
4910
|
-
case this.FT_REG_CERT_CAR_MARK:
|
|
4911
|
-
return "Vehicle make"
|
|
4912
|
-
case this.FT_TRANSACTION_NUMBER:
|
|
4913
|
-
return "Transaction number"
|
|
4914
|
-
case this.FT_AGE:
|
|
4915
|
-
return "Age"
|
|
4916
|
-
case this.FT_FOLIO_NUMBER:
|
|
4917
|
-
return "Folio number"
|
|
4918
|
-
case this.FT_VOTER_KEY:
|
|
4919
|
-
return "Voter Key"
|
|
4920
|
-
case this.FT_ADDRESS_MUNICIPALITY:
|
|
4921
|
-
return "Municipality"
|
|
4922
|
-
case this.FT_ADDRESS_LOCATION:
|
|
4923
|
-
return "Location"
|
|
4924
|
-
case this.FT_SECTION:
|
|
4925
|
-
return "Section"
|
|
4926
|
-
case this.FT_OCR_NUMBER:
|
|
4927
|
-
return "OCR number"
|
|
4928
|
-
case this.FT_FEDERAL_ELECTIONS:
|
|
4929
|
-
return "Federal elections"
|
|
4930
|
-
case this.FT_REFERENCE_NUMBER:
|
|
4931
|
-
return "Unique number"
|
|
4932
|
-
case this.FT_OPTIONAL_DATA_CHECKSUM:
|
|
4933
|
-
return "Checksum for optional data"
|
|
4934
|
-
case this.FT_OPTIONAL_DATA_CHECK_DIGIT:
|
|
4935
|
-
return "Check digit for optional data"
|
|
4936
|
-
case this.FT_VISA_NUMBER:
|
|
4937
|
-
return "Visa Number"
|
|
4938
|
-
case this.FT_VISA_NUMBER_CHECKSUM:
|
|
4939
|
-
return "Checksum for visa number"
|
|
4940
|
-
case this.FT_VISA_NUMBER_CHECK_DIGIT:
|
|
4941
|
-
return "Check digit for visa number"
|
|
4942
|
-
case this.FT_VOTER:
|
|
4943
|
-
return "Voter"
|
|
4944
|
-
case this.FT_PREVIOUS_TYPE:
|
|
4945
|
-
return "Type/number of the previous document"
|
|
4946
|
-
case this.FT_FIELD_FROM_MRZ:
|
|
4947
|
-
return "Field from MRZ"
|
|
4948
|
-
case this.FT_CURRENT_DATE:
|
|
4949
|
-
return "Current date"
|
|
4950
|
-
case this.FT_STATUS_DATE_OF_EXPIRY:
|
|
4951
|
-
return "Status Expiry Date"
|
|
4952
|
-
case this.FT_BANKNOTE_NUMBER:
|
|
4953
|
-
return "Banknote number"
|
|
4954
|
-
case this.FT_CSC_CODE:
|
|
4955
|
-
return "CSC Code"
|
|
4956
|
-
case this.FT_ARTISTIC_NAME:
|
|
4957
|
-
return "Pseudonym"
|
|
4958
|
-
case this.FT_ACADEMIC_TITLE:
|
|
4959
|
-
return "Academic title"
|
|
4960
|
-
case this.FT_ADDRESS_COUNTRY:
|
|
4961
|
-
return "Country"
|
|
4962
|
-
case this.FT_ADDRESS_ZIPCODE:
|
|
4963
|
-
return "ZIP code"
|
|
4964
|
-
case this.FT_E_ID_RESIDENCE_PERMIT_1:
|
|
4965
|
-
return "Residence permit 1"
|
|
4966
|
-
case this.FT_E_ID_RESIDENCE_PERMIT_2:
|
|
4967
|
-
return "Residence permit 2"
|
|
4968
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_STREET:
|
|
4969
|
-
return "Place of birth: Street"
|
|
4970
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_CITY:
|
|
4971
|
-
return "Place of birth: City"
|
|
4972
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_STATE:
|
|
4973
|
-
return "Place of birth: State"
|
|
4974
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_COUNTRY:
|
|
4975
|
-
return "Place of birth: Country"
|
|
4976
|
-
case this.FT_E_ID_PLACE_OF_BIRTH_ZIPCODE:
|
|
4977
|
-
return "Place of birth: Postal code"
|
|
4978
|
-
case this.FT_CDL_CLASS:
|
|
4979
|
-
return "CDL Class"
|
|
4980
|
-
case this.FT_DL_UNDER_19_DATE:
|
|
4981
|
-
return "Date of 19th birthday"
|
|
4982
|
-
case this.FT_WEIGHT_POUNDS:
|
|
4983
|
-
return "Weight (pound)"
|
|
4984
|
-
case this.FT_LIMITED_DURATION_DOCUMENT_INDICATOR:
|
|
4985
|
-
return "Indicator of document limited duration"
|
|
4986
|
-
case this.FT_ENDORSEMENT_EXPIRATION_DATE:
|
|
4987
|
-
return "Endorsement expiration date"
|
|
4988
|
-
case this.FT_REVISION_DATE:
|
|
4989
|
-
return "Revision date"
|
|
4990
|
-
case this.FT_COMPLIANCE_TYPE:
|
|
4991
|
-
return "Compliance type"
|
|
4992
|
-
case this.FT_FAMILY_NAME_TRUNCATION:
|
|
4993
|
-
return "Truncated surname/given name at birth"
|
|
4994
|
-
case this.FT_FIRST_NAME_TRUNCATION:
|
|
4995
|
-
return "First name truncation"
|
|
4996
|
-
case this.FT_MIDDLE_NAME_TRUNCATION:
|
|
4997
|
-
return "Middle name truncation"
|
|
4998
|
-
case this.FT_EXAM_DATE:
|
|
4999
|
-
return "Exam date"
|
|
5000
|
-
case this.FT_ORGANIZATION:
|
|
5001
|
-
return "Organization"
|
|
5002
|
-
case this.FT_DEPARTMENT:
|
|
5003
|
-
return "Department"
|
|
5004
|
-
case this.FT_PAY_GRADE:
|
|
5005
|
-
return "Pay grade"
|
|
5006
|
-
case this.FT_RANK:
|
|
5007
|
-
return "Rank"
|
|
5008
|
-
case this.FT_BENEFITS_NUMBER:
|
|
5009
|
-
return "Benefits number"
|
|
5010
|
-
case this.FT_SPONSOR_SERVICE:
|
|
5011
|
-
return "Sponsor service"
|
|
5012
|
-
case this.FT_SPONSOR_STATUS:
|
|
5013
|
-
return "Sponsor status"
|
|
5014
|
-
case this.FT_SPONSOR:
|
|
5015
|
-
return "Sponsor"
|
|
5016
|
-
case this.FT_RELATIONSHIP:
|
|
5017
|
-
return "Relationship"
|
|
5018
|
-
case this.FT_USCIS:
|
|
5019
|
-
return "USCIS"
|
|
5020
|
-
case this.FT_CATEGORY:
|
|
5021
|
-
return "Category"
|
|
5022
|
-
case this.FT_CONDITIONS:
|
|
5023
|
-
return "Conditions"
|
|
5024
|
-
case this.FT_IDENTIFIER:
|
|
5025
|
-
return "Identifier"
|
|
5026
|
-
case this.FT_CONFIGURATION:
|
|
5027
|
-
return "Configuration"
|
|
5028
|
-
case this.FT_DISCRETIONARY_DATA:
|
|
5029
|
-
return "Discretionary data"
|
|
5030
|
-
case this.FT_LINE_1_OPTIONAL_DATA:
|
|
5031
|
-
return "Optional data from line 1"
|
|
5032
|
-
case this.FT_LINE_2_OPTIONAL_DATA:
|
|
5033
|
-
return "Optional data from line 2"
|
|
5034
|
-
case this.FT_LINE_3_OPTIONAL_DATA:
|
|
5035
|
-
return "Optional data from line 3"
|
|
5036
|
-
case this.FT_EQV_CODE:
|
|
5037
|
-
return "EQV code"
|
|
5038
|
-
case this.FT_ALT_CODE:
|
|
5039
|
-
return "ALT code"
|
|
5040
|
-
case this.FT_BINARY_CODE:
|
|
5041
|
-
return "Binary code"
|
|
5042
|
-
case this.FT_PSEUDO_CODE:
|
|
5043
|
-
return "Pseudocode"
|
|
5044
|
-
case this.FT_FEE:
|
|
5045
|
-
return "Fee"
|
|
5046
|
-
case this.FT_STAMP_NUMBER:
|
|
5047
|
-
return "Stamp number"
|
|
5048
|
-
case this.FT_GNIB_NUMBER:
|
|
5049
|
-
return "GNIB number"
|
|
5050
|
-
case this.FT_DEPT_NUMBER:
|
|
5051
|
-
return "Department number"
|
|
5052
|
-
case this.FT_TELEX_CODE:
|
|
5053
|
-
return "Telegraph code"
|
|
5054
|
-
case this.FT_ALLERGIES:
|
|
5055
|
-
return "Allergies"
|
|
5056
|
-
case this.FT_SP_CODE:
|
|
5057
|
-
return "Special code"
|
|
5058
|
-
case this.FT_COURT_CODE:
|
|
5059
|
-
return "Court code"
|
|
5060
|
-
case this.FT_CTY:
|
|
5061
|
-
return "County"
|
|
5062
|
-
case this.FT_SPONSOR_SSN:
|
|
5063
|
-
return "Sponsor SSN"
|
|
5064
|
-
case this.FT_DO_D_NUMBER:
|
|
5065
|
-
return "DoD number"
|
|
5066
|
-
case this.FT_MC_NOVICE_DATE:
|
|
5067
|
-
return "Expiry date of Motorcycle Novice status"
|
|
5068
|
-
case this.FT_DUF_NUMBER:
|
|
5069
|
-
return "DUF number"
|
|
5070
|
-
case this.FT_AGY:
|
|
5071
|
-
return "AGY"
|
|
5072
|
-
case this.FT_PNR_CODE:
|
|
5073
|
-
return "PNR code"
|
|
5074
|
-
case this.FT_FROM_AIRPORT_CODE:
|
|
5075
|
-
return "Code of the airport of departure"
|
|
5076
|
-
case this.FT_TO_AIRPORT_CODE:
|
|
5077
|
-
return "Code of the airport of arrival"
|
|
5078
|
-
case this.FT_FLIGHT_NUMBER:
|
|
5079
|
-
return "Flight number"
|
|
5080
|
-
case this.FT_DATE_OF_FLIGHT:
|
|
5081
|
-
return "Date of flight"
|
|
5082
|
-
case this.FT_SEAT_NUMBER:
|
|
5083
|
-
return "Seat number"
|
|
5084
|
-
case this.FT_DATE_OF_ISSUE_BOARDING_PASS:
|
|
5085
|
-
return "Date of boarding pass issue"
|
|
5086
|
-
case this.FT_CCW_UNTIL:
|
|
5087
|
-
return "CCW until"
|
|
5088
|
-
case this.FT_REFERENCE_NUMBER_CHECKSUM:
|
|
5089
|
-
return "Unique number checksum"
|
|
5090
|
-
case this.FT_REFERENCE_NUMBER_CHECK_DIGIT:
|
|
5091
|
-
return "Unique number check digit"
|
|
5092
|
-
case this.FT_ROOM_NUMBER:
|
|
5093
|
-
return "Room number"
|
|
5094
|
-
case this.FT_RELIGION:
|
|
5095
|
-
return "Religion"
|
|
5096
|
-
case this.FT_REMAINDER_TERM:
|
|
5097
|
-
return "Months to expire"
|
|
5098
|
-
case this.FT_ELECTRONIC_TICKET_INDICATOR:
|
|
5099
|
-
return "Electronic ticket indicator"
|
|
5100
|
-
case this.FT_COMPARTMENT_CODE:
|
|
5101
|
-
return "Compartment code"
|
|
5102
|
-
case this.FT_CHECK_IN_SEQUENCE_NUMBER:
|
|
5103
|
-
return "Check-in sequence number"
|
|
5104
|
-
case this.FT_AIRLINE_DESIGNATOR_OF_BOARDING_PASS_ISSUER:
|
|
5105
|
-
return "Airline designator of boarding pass issuer"
|
|
5106
|
-
case this.FT_AIRLINE_NUMERIC_CODE:
|
|
5107
|
-
return "Airline numeric code"
|
|
5108
|
-
case this.FT_TICKET_NUMBER:
|
|
5109
|
-
return "Ticket number"
|
|
5110
|
-
case this.FT_FREQUENT_FLYER_AIRLINE_DESIGNATOR:
|
|
5111
|
-
return "Frequent flyer airline designator"
|
|
5112
|
-
case this.FT_FREQUENT_FLYER_NUMBER:
|
|
5113
|
-
return "Frequent flyer number"
|
|
5114
|
-
case this.FT_FREE_BAGGAGE_ALLOWANCE:
|
|
5115
|
-
return "Free baggage allowance"
|
|
5116
|
-
case this.FT_PDF_417_CODEC:
|
|
5117
|
-
return "PDF417 codec"
|
|
5118
|
-
case this.FT_IDENTITY_CARD_NUMBER_CHECKSUM:
|
|
5119
|
-
return "Checksum for identity card number"
|
|
5120
|
-
case this.FT_IDENTITY_CARD_NUMBER_CHECK_DIGIT:
|
|
5121
|
-
return "Check digit for identity card number"
|
|
5122
|
-
case this.FT_VETERAN:
|
|
5123
|
-
return "Veteran"
|
|
5124
|
-
case this.FT_DL_CLASS_CODE_A_1_FROM:
|
|
5125
|
-
return "DL category A1 valid from"
|
|
5126
|
-
case this.FT_DL_CLASS_CODE_A_1_TO:
|
|
5127
|
-
return "DL category A1 valid to"
|
|
5128
|
-
case this.FT_DL_CLASS_CODE_A_1_NOTES:
|
|
5129
|
-
return "DL category A1 codes"
|
|
5130
|
-
case this.FT_DL_CLASS_CODE_A_FROM:
|
|
5131
|
-
return "DL category A valid from"
|
|
5132
|
-
case this.FT_DL_CLASS_CODE_A_TO:
|
|
5133
|
-
return "DL category A valid to"
|
|
5134
|
-
case this.FT_DL_CLASS_CODE_A_NOTES:
|
|
5135
|
-
return "DL category A codes"
|
|
5136
|
-
case this.FT_DL_CLASS_CODE_B_FROM:
|
|
5137
|
-
return "DL category B valid from"
|
|
5138
|
-
case this.FT_DL_CLASS_CODE_B_TO:
|
|
5139
|
-
return "DL category B valid to"
|
|
5140
|
-
case this.FT_DL_CLASS_CODE_B_NOTES:
|
|
5141
|
-
return "DL category B codes"
|
|
5142
|
-
case this.FT_DL_CLASS_CODE_C_1_FROM:
|
|
5143
|
-
return "DL category C1 valid from"
|
|
5144
|
-
case this.FT_DL_CLASS_CODE_C_1_TO:
|
|
5145
|
-
return "DL category C1 valid to"
|
|
5146
|
-
case this.FT_DL_CLASS_CODE_C_1_NOTES:
|
|
5147
|
-
return "DL category C1 codes"
|
|
5148
|
-
case this.FT_DL_CLASS_CODE_C_FROM:
|
|
5149
|
-
return "DL category C valid from"
|
|
5150
|
-
case this.FT_DL_CLASS_CODE_C_TO:
|
|
5151
|
-
return "DL category C valid to"
|
|
5152
|
-
case this.FT_DL_CLASS_CODE_C_NOTES:
|
|
5153
|
-
return "DL category C codes"
|
|
5154
|
-
case this.FT_DL_CLASS_CODE_D_1_FROM:
|
|
5155
|
-
return "DL category D1 valid from"
|
|
5156
|
-
case this.FT_DL_CLASS_CODE_D_1_TO:
|
|
5157
|
-
return "DL category D1 valid to"
|
|
5158
|
-
case this.FT_DL_CLASS_CODE_D_1_NOTES:
|
|
5159
|
-
return "DL category D1 codes"
|
|
5160
|
-
case this.FT_DL_CLASS_CODE_D_FROM:
|
|
5161
|
-
return "DL category D valid from"
|
|
5162
|
-
case this.FT_DL_CLASS_CODE_D_TO:
|
|
5163
|
-
return "DL category D valid to"
|
|
5164
|
-
case this.FT_DL_CLASS_CODE_D_NOTES:
|
|
5165
|
-
return "DL category D codes"
|
|
5166
|
-
case this.FT_DL_CLASS_CODE_BE_FROM:
|
|
5167
|
-
return "DL category BE valid from"
|
|
5168
|
-
case this.FT_DL_CLASS_CODE_BE_TO:
|
|
5169
|
-
return "DL category BE valid to"
|
|
5170
|
-
case this.FT_DL_CLASS_CODE_BE_NOTES:
|
|
5171
|
-
return "DL category BE codes"
|
|
5172
|
-
case this.FT_DL_CLASS_CODE_C_1_E_FROM:
|
|
5173
|
-
return "DL category C1E valid from"
|
|
5174
|
-
case this.FT_DL_CLASS_CODE_C_1_E_TO:
|
|
5175
|
-
return "DL category C1E valid to"
|
|
5176
|
-
case this.FT_DL_CLASS_CODE_C_1_E_NOTES:
|
|
5177
|
-
return "DL category C1E codes"
|
|
5178
|
-
case this.FT_DL_CLASS_CODE_CE_FROM:
|
|
5179
|
-
return "DL category CE valid from"
|
|
5180
|
-
case this.FT_DL_CLASS_CODE_CE_TO:
|
|
5181
|
-
return "DL category CE valid to"
|
|
5182
|
-
case this.FT_DL_CLASS_CODE_CE_NOTES:
|
|
5183
|
-
return "DL category CE codes"
|
|
5184
|
-
case this.FT_DL_CLASS_CODE_D_1_E_FROM:
|
|
5185
|
-
return "DL category D1E valid from"
|
|
5186
|
-
case this.FT_DL_CLASS_CODE_D_1_E_TO:
|
|
5187
|
-
return "DL category D1E valid to"
|
|
5188
|
-
case this.FT_DL_CLASS_CODE_D_1_E_NOTES:
|
|
5189
|
-
return "DL category D1E codes"
|
|
5190
|
-
case this.FT_DL_CLASS_CODE_DE_FROM:
|
|
5191
|
-
return "DL category DE valid from"
|
|
5192
|
-
case this.FT_DL_CLASS_CODE_DE_TO:
|
|
5193
|
-
return "DL category DE valid to"
|
|
5194
|
-
case this.FT_DL_CLASS_CODE_DE_NOTES:
|
|
5195
|
-
return "DL category DE codes"
|
|
5196
|
-
case this.FT_DL_CLASS_CODE_M_FROM:
|
|
5197
|
-
return "DL category M valid from"
|
|
5198
|
-
case this.FT_DL_CLASS_CODE_M_TO:
|
|
5199
|
-
return "DL category M valid to"
|
|
5200
|
-
case this.FT_DL_CLASS_CODE_M_NOTES:
|
|
5201
|
-
return "DL category M codes"
|
|
5202
|
-
case this.FT_DL_CLASS_CODE_L_FROM:
|
|
5203
|
-
return "DL category L valid from"
|
|
5204
|
-
case this.FT_DL_CLASS_CODE_L_TO:
|
|
5205
|
-
return "DL category L valid to"
|
|
5206
|
-
case this.FT_DL_CLASS_CODE_L_NOTES:
|
|
5207
|
-
return "DL category L codes"
|
|
5208
|
-
case this.FT_DL_CLASS_CODE_T_FROM:
|
|
5209
|
-
return "DL category T valid from"
|
|
5210
|
-
case this.FT_DL_CLASS_CODE_T_TO:
|
|
5211
|
-
return "DL category T valid to"
|
|
5212
|
-
case this.FT_DL_CLASS_CODE_T_NOTES:
|
|
5213
|
-
return "DL category T codes"
|
|
5214
|
-
case this.FT_DL_CLASS_CODE_AM_FROM:
|
|
5215
|
-
return "DL category AM valid from"
|
|
5216
|
-
case this.FT_DL_CLASS_CODE_AM_TO:
|
|
5217
|
-
return "DL category AM valid to"
|
|
5218
|
-
case this.FT_DL_CLASS_CODE_AM_NOTES:
|
|
5219
|
-
return "DL category AM codes"
|
|
5220
|
-
case this.FT_DL_CLASS_CODE_A_2_FROM:
|
|
5221
|
-
return "DL category A2 valid from"
|
|
5222
|
-
case this.FT_DL_CLASS_CODE_A_2_TO:
|
|
5223
|
-
return "DL category A2 valid to"
|
|
5224
|
-
case this.FT_DL_CLASS_CODE_A_2_NOTES:
|
|
5225
|
-
return "DL category A2 codes"
|
|
5226
|
-
case this.FT_DL_CLASS_CODE_B_1_FROM:
|
|
5227
|
-
return "DL category B1 valid from"
|
|
5228
|
-
case this.FT_DL_CLASS_CODE_B_1_TO:
|
|
5229
|
-
return "DL category B1 valid to"
|
|
5230
|
-
case this.FT_DL_CLASS_CODE_B_1_NOTES:
|
|
5231
|
-
return "DL category B1 codes"
|
|
5232
|
-
case this.FT_SURNAME_AT_BIRTH:
|
|
5233
|
-
return "Surname at birth"
|
|
5234
|
-
case this.FT_CIVIL_STATUS:
|
|
5235
|
-
return "Civil status"
|
|
5236
|
-
case this.FT_NUMBER_OF_SEATS:
|
|
5237
|
-
return "Number of seats"
|
|
5238
|
-
case this.FT_NUMBER_OF_STANDING_PLACES:
|
|
5239
|
-
return "Number of standing places"
|
|
5240
|
-
case this.FT_MAX_SPEED:
|
|
5241
|
-
return "Max speed"
|
|
5242
|
-
case this.FT_FUEL_TYPE:
|
|
5243
|
-
return "Fuel type"
|
|
5244
|
-
case this.FT_EC_ENVIRONMENTAL_TYPE:
|
|
5245
|
-
return "Vehicle environmental type"
|
|
5246
|
-
case this.FT_POWER_WEIGHT_RATIO:
|
|
5247
|
-
return "Power-to-weight ratio"
|
|
5248
|
-
case this.FT_MAX_MASS_OF_TRAILER_BRAKED:
|
|
5249
|
-
return "Max mass of trailer (braked)"
|
|
5250
|
-
case this.FT_MAX_MASS_OF_TRAILER_UNBRAKED:
|
|
5251
|
-
return "Max mass of trailer (unbraked)"
|
|
5252
|
-
case this.FT_TRANSMISSION_TYPE:
|
|
5253
|
-
return "Transmission type"
|
|
5254
|
-
case this.FT_TRAILER_HITCH:
|
|
5255
|
-
return "Trailer hitch"
|
|
5256
|
-
case this.FT_ACCOMPANIED_BY:
|
|
5257
|
-
return "Accompanied by"
|
|
5258
|
-
case this.FT_POLICE_DISTRICT:
|
|
5259
|
-
return "Police district"
|
|
5260
|
-
case this.FT_FIRST_ISSUE_DATE:
|
|
5261
|
-
return "First issue date"
|
|
5262
|
-
case this.FT_PAYLOAD_CAPACITY:
|
|
5263
|
-
return "Payload capacity"
|
|
5264
|
-
case this.FT_NUMBER_OF_AXELS:
|
|
5265
|
-
return "Number of axles"
|
|
5266
|
-
case this.FT_PERMISSIBLE_AXLE_LOAD:
|
|
5267
|
-
return "Permissible axle load"
|
|
5268
|
-
case this.FT_PRECINCT:
|
|
5269
|
-
return "Precinct"
|
|
5270
|
-
case this.FT_INVITED_BY:
|
|
5271
|
-
return "Invited by"
|
|
5272
|
-
case this.FT_PURPOSE_OF_ENTRY:
|
|
5273
|
-
return "Purpose of entry"
|
|
5274
|
-
case this.FT_SKIN_COLOR:
|
|
5275
|
-
return "Skin color"
|
|
5276
|
-
case this.FT_COMPLEXION:
|
|
5277
|
-
return "Complexion"
|
|
5278
|
-
case this.FT_AIRPORT_FROM:
|
|
5279
|
-
return "Airport of departure"
|
|
5280
|
-
case this.FT_AIRPORT_TO:
|
|
5281
|
-
return "Airport of arrival"
|
|
5282
|
-
case this.FT_AIRLINE_NAME:
|
|
5283
|
-
return "Airline name"
|
|
5284
|
-
case this.FT_AIRLINE_NAME_FREQUENT_FLYER:
|
|
5285
|
-
return "Airline loyalty program for frequent flyers"
|
|
5286
|
-
case this.FT_LICENSE_NUMBER:
|
|
5287
|
-
return "License number"
|
|
5288
|
-
case this.FT_IN_TANKS:
|
|
5289
|
-
return "In tanks"
|
|
5290
|
-
case this.FT_EXEPT_IN_TANKS:
|
|
5291
|
-
return "Other than tanks"
|
|
5292
|
-
case this.FT_FAST_TRACK:
|
|
5293
|
-
return "Fast Track service"
|
|
5294
|
-
case this.FT_OWNER:
|
|
5295
|
-
return "Owner"
|
|
5296
|
-
case this.FT_MRZ_STRINGS_ICAO_RFID:
|
|
5297
|
-
return "MRZ lines from ICAO RFID"
|
|
5298
|
-
case this.FT_NUMBER_OF_CARD_ISSUANCE:
|
|
5299
|
-
return "Number of card issuances"
|
|
5300
|
-
case this.FT_NUMBER_OF_CARD_ISSUANCE_CHECKSUM:
|
|
5301
|
-
return "Checksum for number of card issuances"
|
|
5302
|
-
case this.FT_NUMBER_OF_CARD_ISSUANCE_CHECK_DIGIT:
|
|
5303
|
-
return "Check digit for number of card issuances"
|
|
5304
|
-
case this.FT_CENTURY_DATE_OF_BIRTH:
|
|
5305
|
-
return "Century of birth"
|
|
5306
|
-
case this.FT_DL_CLASSCODE_A3_FROM:
|
|
5307
|
-
return "DL category A3 valid from"
|
|
5308
|
-
case this.FT_DL_CLASSCODE_A3_TO:
|
|
5309
|
-
return "DL category A3 valid to"
|
|
5310
|
-
case this.FT_DL_CLASSCODE_A3_NOTES:
|
|
5311
|
-
return "DL category A3 codes"
|
|
5312
|
-
case this.FT_DL_CLASSCODE_C2_FROM:
|
|
5313
|
-
return "DL category C2 valid from"
|
|
5314
|
-
case this.FT_DL_CLASSCODE_C2_TO:
|
|
5315
|
-
return "DL category C2 valid to"
|
|
5316
|
-
case this.FT_DL_CLASSCODE_C2_NOTES:
|
|
5317
|
-
return "DL category C2 codes"
|
|
5318
|
-
case this.FT_DL_CLASSCODE_B2_FROM:
|
|
5319
|
-
return "DL category B2 valid from"
|
|
5320
|
-
case this.FT_DL_CLASSCODE_B2_TO:
|
|
5321
|
-
return "DL category B2 valid to"
|
|
5322
|
-
case this.FT_DL_CLASSCODE_B2_NOTES:
|
|
5323
|
-
return "DL category B2 codes"
|
|
5324
|
-
case this.FT_DL_CLASSCODE_D2_FROM:
|
|
5325
|
-
return "DL category D2 valid from"
|
|
5326
|
-
case this.FT_DL_CLASSCODE_D2_TO:
|
|
5327
|
-
return "DL category D2 valid to"
|
|
5328
|
-
case this.FT_DL_CLASSCODE_D2_NOTES:
|
|
5329
|
-
return "DL category D2 codes"
|
|
5330
|
-
case this.FT_DL_CLASSCODE_B2E_FROM:
|
|
5331
|
-
return "DL category B2E valid from"
|
|
5332
|
-
case this.FT_DL_CLASSCODE_B2E_TO:
|
|
5333
|
-
return "DL category B2E valid to"
|
|
5334
|
-
case this.FT_DL_CLASSCODE_B2E_NOTES:
|
|
5335
|
-
return "DL category B2E codes"
|
|
5336
|
-
case this.FT_DL_CLASSCODE_G_FROM:
|
|
5337
|
-
return "DL category G valid from"
|
|
5338
|
-
case this.FT_DL_CLASSCODE_G_TO:
|
|
5339
|
-
return "DL category G valid to"
|
|
5340
|
-
case this.FT_DL_CLASSCODE_G_NOTES:
|
|
5341
|
-
return "DL category G codes"
|
|
5342
|
-
case this.FT_DL_CLASSCODE_J_FROM:
|
|
5343
|
-
return "DL category J valid from"
|
|
5344
|
-
case this.FT_DL_CLASSCODE_J_TO:
|
|
5345
|
-
return "DL category J valid to"
|
|
5346
|
-
case this.FT_DL_CLASSCODE_J_NOTES:
|
|
5347
|
-
return "DL category J codes"
|
|
5348
|
-
case this.FT_DL_CLASSCODE_LC_FROM:
|
|
5349
|
-
return "DL category LC valid from"
|
|
5350
|
-
case this.FT_DL_CLASSCODE_LC_TO:
|
|
5351
|
-
return "DL category LC valid to"
|
|
5352
|
-
case this.FT_DLC_LASSCODE_LC_NOTES:
|
|
5353
|
-
return "DL category LC codes"
|
|
5354
|
-
case this.FT_BANKCARDNUMBER:
|
|
5355
|
-
return "Bank card number"
|
|
5356
|
-
case this.FT_BANKCARDVALIDTHRU:
|
|
5357
|
-
return "Bank card validity"
|
|
5358
|
-
case this.FT_TAX_NUMBER:
|
|
5359
|
-
return "Tax number"
|
|
5360
|
-
case this.FT_SBH_SECURITYOPTIONS:
|
|
5361
|
-
return "SBH security options"
|
|
5362
|
-
case this.FT_SBH_INTEGRITYOPTIONS:
|
|
5363
|
-
return "SBH integrity options"
|
|
5364
|
-
case this.FT_DATE_OF_CREATION:
|
|
5365
|
-
return "Creation date"
|
|
5366
|
-
case this.FT_VALIDITY_PERIOD:
|
|
5367
|
-
return "Validity period"
|
|
5368
|
-
case this.FT_PATRON_HEADER_VERSION:
|
|
5369
|
-
return "Patron header version"
|
|
5370
|
-
case this.FT_BDB_TYPE:
|
|
5371
|
-
return "BDB type"
|
|
5372
|
-
case this.FT_BIOMETRIC_TYPE:
|
|
5373
|
-
return "Biometric type"
|
|
5374
|
-
case this.FT_BIOMETRIC_SUBTYPE:
|
|
5375
|
-
return "Biometric subtype"
|
|
5376
|
-
case this.FT_BIOMETRIC_PRODUCTID:
|
|
5377
|
-
return "Biometric product ID"
|
|
5378
|
-
case this.FT_BIOMETRIC_FORMAT_OWNER:
|
|
5379
|
-
return "Biometric format owner"
|
|
5380
|
-
case this.FT_BIOMETRIC_FORMAT_TYPE:
|
|
5381
|
-
return "Biometric format type"
|
|
5382
|
-
case this.FT_PHONE:
|
|
5383
|
-
return "Phone"
|
|
5384
|
-
case this.FT_PROFESSION:
|
|
5385
|
-
return "Profession"
|
|
5386
|
-
case this.FT_TITLE:
|
|
5387
|
-
return "Position"
|
|
5388
|
-
case this.FT_PERSONAL_SUMMARY:
|
|
5389
|
-
return "Personal data summary"
|
|
5390
|
-
case this.FT_OTHER_VALID_ID:
|
|
5391
|
-
return "Other valid IDs"
|
|
5392
|
-
case this.FT_CUSTODY_INFO:
|
|
5393
|
-
return "Custody info"
|
|
5394
|
-
case this.FT_OTHER_NAME:
|
|
5395
|
-
return "Other name"
|
|
5396
|
-
case this.FT_OBSERVATIONS:
|
|
5397
|
-
return "Observations"
|
|
5398
|
-
case this.FT_TAX:
|
|
5399
|
-
return "Tax"
|
|
5400
|
-
case this.FT_DATE_OF_PERSONALIZATION:
|
|
5401
|
-
return "Personalization date"
|
|
5402
|
-
case this.FT_PERSONALIZATION_SN:
|
|
5403
|
-
return "Serial number of personalization"
|
|
5404
|
-
case this.FT_OTHERPERSON_NAME:
|
|
5405
|
-
return "Other person, name"
|
|
5406
|
-
case this.FT_PERSONTONOTIFY_DATE_OF_RECORD:
|
|
5407
|
-
return "Notify person: Date of record"
|
|
5408
|
-
case this.FT_PERSONTONOTIFY_NAME:
|
|
5409
|
-
return "Notify person: Name"
|
|
5410
|
-
case this.FT_PERSONTONOTIFY_PHONE:
|
|
5411
|
-
return "Notify person: Phone"
|
|
5412
|
-
case this.FT_PERSONTONOTIFY_ADDRESS:
|
|
5413
|
-
return "Notify person: Address"
|
|
5414
|
-
case this.FT_DS_CERTIFICATE_ISSUER:
|
|
5415
|
-
return "DS certificate issuer"
|
|
5416
|
-
case this.FT_DS_CERTIFICATE_SUBJECT:
|
|
5417
|
-
return "DS certificate subject"
|
|
5418
|
-
case this.FT_DS_CERTIFICATE_VALIDFROM:
|
|
5419
|
-
return "DS certificate valid from"
|
|
5420
|
-
case this.FT_DS_CERTIFICATE_VALIDTO:
|
|
5421
|
-
return "DS certificate valid to"
|
|
5422
|
-
case this.FT_VRC_DATAOBJECT_ENTRY:
|
|
5423
|
-
return "Vehicle data from the DG1 data group"
|
|
5424
|
-
case this.FT_GRANDFATHERNAME:
|
|
5425
|
-
return "Grandfather\'s name"
|
|
5426
|
-
case this.FT_HEALTH_NUMBER:
|
|
5427
|
-
return "Health insurance number"
|
|
5428
|
-
case this.FT_TYPE_APPROVAL_NUMBER:
|
|
5429
|
-
return "Type of approval number"
|
|
5430
|
-
case this.FT_ADMINISTRATIVE_NUMBER:
|
|
5431
|
-
return "Administrative number"
|
|
5432
|
-
case this.FT_DOCUMENT_DISCRIMINATOR:
|
|
5433
|
-
return "Document discriminator"
|
|
5434
|
-
case this.FT_DATA_DISCRIMINATOR:
|
|
5435
|
-
return "Data discriminator"
|
|
5436
|
-
case this.FT_ISO_ISSUER_ID_NUMBER:
|
|
5437
|
-
return "ID number of ISO issuer"
|
|
5438
|
-
case this.FT_SELECTEE_INDICATOR:
|
|
5439
|
-
return "Selectee indicator"
|
|
5440
|
-
case this.FT_MOTHER_SURNAME:
|
|
5441
|
-
return "Mother\'s surname"
|
|
5442
|
-
case this.FT_MOTHER_GIVENNAME:
|
|
5443
|
-
return "Mother\'s given name"
|
|
5444
|
-
case this.FT_FATHER_SURNAME:
|
|
5445
|
-
return "Father\'s surname"
|
|
5446
|
-
case this.FT_FATHER_GIVENNAME:
|
|
5447
|
-
return "Father\'s given name"
|
|
5448
|
-
case this.FT_MOTHER_DATEOFBIRTH:
|
|
5449
|
-
return "Mother\'s date of birth"
|
|
5450
|
-
case this.FT_FATHER_DATEOFBIRTH:
|
|
5451
|
-
return "Father\'s date of birth"
|
|
5452
|
-
case this.FT_MOTHER_PERSONALNUMBER:
|
|
5453
|
-
return "Mother\'s personal number"
|
|
5454
|
-
case this.FT_FATHER_PERSONALNUMBER:
|
|
5455
|
-
return "Father\'s personal number"
|
|
5456
|
-
case this.FT_MOTHER_PLACEOFBIRTH:
|
|
5457
|
-
return "Mother\'s place of birth"
|
|
5458
|
-
case this.FT_FATHER_PLACEOFBIRTH:
|
|
5459
|
-
return "Father\'s place of birth"
|
|
5460
|
-
case this.FT_MOTHER_COUNTRYOFBIRTH:
|
|
5461
|
-
return "Mother\'s country of birth"
|
|
5462
|
-
case this.FT_FATHER_COUNTRYOFBIRTH:
|
|
5463
|
-
return "Father\'s country of birth"
|
|
5464
|
-
case this.FT_DATE_FIRST_RENEWAL:
|
|
5465
|
-
return "Date of first renewal"
|
|
5466
|
-
case this.FT_DATE_SECOND_RENEWAL:
|
|
5467
|
-
return "Date of second renewal"
|
|
5468
|
-
case this.FT_PLACE_OF_EXAMINATION:
|
|
5469
|
-
return "Place of examination"
|
|
5470
|
-
case this.FT_APPLICATION_NUMBER:
|
|
5471
|
-
return "Application number"
|
|
5472
|
-
case this.FT_VOUCHER_NUMBER:
|
|
5473
|
-
return "Voucher number"
|
|
5474
|
-
case this.FT_AUTHORIZATION_NUMBER:
|
|
5475
|
-
return "Authorization number"
|
|
5476
|
-
case this.FT_FACULTY:
|
|
5477
|
-
return "Faculty"
|
|
5478
|
-
case this.FT_FORM_OF_EDUCATION:
|
|
5479
|
-
return "Form of education"
|
|
5480
|
-
case this.FT_DNI_NUMBER:
|
|
5481
|
-
return "DNI number"
|
|
5482
|
-
case this.FT_RETIREMENT_NUMBER:
|
|
5483
|
-
return "Retirement number"
|
|
5484
|
-
case this.FT_PROFESSIONAL_ID_NUMBER:
|
|
5485
|
-
return "Professional ID number"
|
|
5486
|
-
case this.FT_AGE_AT_ISSUE:
|
|
5487
|
-
return "Age at issue"
|
|
5488
|
-
case this.FT_YEARS_SINCE_ISSUE:
|
|
5489
|
-
return "Years since issue"
|
|
5490
|
-
case this.FT_DLCLASSCODE_BTP_FROM:
|
|
5491
|
-
return "DL category BTP valid from"
|
|
5492
|
-
case this.FT_DLCLASSCODE_BTP_NOTES:
|
|
5493
|
-
return "DL category BTP codes"
|
|
5494
|
-
case this.FT_DLCLASSCODE_BTP_TO:
|
|
5495
|
-
return "DL category BTP valid to"
|
|
5496
|
-
case this.FT_DLCLASSCODE_C3_FROM:
|
|
5497
|
-
return "DL category C3 valid from"
|
|
5498
|
-
case this.FT_DLCLASSCODE_C3_NOTES:
|
|
5499
|
-
return "DL category C3 codes"
|
|
5500
|
-
case this.FT_DLCLASSCODE_C3_TO:
|
|
5501
|
-
return "DL category C3 valid to"
|
|
5502
|
-
case this.FT_DLCLASSCODE_E_FROM:
|
|
5503
|
-
return "DL category E valid from"
|
|
5504
|
-
case this.FT_DLCLASSCODE_E_NOTES:
|
|
5505
|
-
return "DL category E codes"
|
|
5506
|
-
case this.FT_DLCLASSCODE_E_TO:
|
|
5507
|
-
return "DL category E valid to"
|
|
5508
|
-
case this.FT_DLCLASSCODE_F_FROM:
|
|
5509
|
-
return "DL category F valid from"
|
|
5510
|
-
case this.FT_DLCLASSCODE_F_NOTES:
|
|
5511
|
-
return "DL category F codes"
|
|
5512
|
-
case this.FT_DLCLASSCODE_F_TO:
|
|
5513
|
-
return "DL category F valid to"
|
|
5514
|
-
case this.FT_DLCLASSCODE_FA_FROM:
|
|
5515
|
-
return "DL category FA valid from"
|
|
5516
|
-
case this.FT_DLCLASSCODE_FA_NOTES:
|
|
5517
|
-
return "DL category FA codes"
|
|
5518
|
-
case this.FT_DLCLASSCODE_FA_TO:
|
|
5519
|
-
return "DL category FA valid to"
|
|
5520
|
-
case this.FT_DLCLASSCODE_FA1_FROM:
|
|
5521
|
-
return "DL category FA1 valid from"
|
|
5522
|
-
case this.FT_DLCLASSCODE_FA1_NOTES:
|
|
5523
|
-
return "DL category FA1 codes"
|
|
5524
|
-
case this.FT_DLCLASSCODE_FA1_TO:
|
|
5525
|
-
return "DL category FA1 valid to"
|
|
5526
|
-
case this.FT_DLCLASSCODE_FB_FROM:
|
|
5527
|
-
return "DL category FB valid from"
|
|
5528
|
-
case this.FT_DLCLASSCODE_FB_NOTES:
|
|
5529
|
-
return "DL category FB codes"
|
|
5530
|
-
case this.FT_DLCLASSCODE_FB_TO:
|
|
5531
|
-
return "DL category FB valid to"
|
|
5532
|
-
case this.FT_DLCLASSCODE_G1_FROM:
|
|
5533
|
-
return "DL category G1 valid from"
|
|
5534
|
-
case this.FT_DLCLASSCODE_G1_NOTES:
|
|
5535
|
-
return "DL category G1 codes"
|
|
5536
|
-
case this.FT_DLCLASSCODE_G1_TO:
|
|
5537
|
-
return "DL category G1 valid to"
|
|
5538
|
-
case this.FT_DLCLASSCODE_H_FROM:
|
|
5539
|
-
return "DL category H valid from"
|
|
5540
|
-
case this.FT_DLCLASSCODE_H_NOTES:
|
|
5541
|
-
return "DL category H codes"
|
|
5542
|
-
case this.FT_DLCLASSCODE_H_TO:
|
|
5543
|
-
return "DL category H valid to"
|
|
5544
|
-
case this.FT_DLCLASSCODE_I_FROM:
|
|
5545
|
-
return "DL category I valid from"
|
|
5546
|
-
case this.FT_DLCLASSCODE_I_NOTES:
|
|
5547
|
-
return "DL category I codes"
|
|
5548
|
-
case this.FT_DLCLASSCODE_I_TO:
|
|
5549
|
-
return "DL category I valid to"
|
|
5550
|
-
case this.FT_DLCLASSCODE_K_FROM:
|
|
5551
|
-
return "DL category K valid from"
|
|
5552
|
-
case this.FT_DLCLASSCODE_K_NOTES:
|
|
5553
|
-
return "DL category K codes"
|
|
5554
|
-
case this.FT_DLCLASSCODE_K_TO:
|
|
5555
|
-
return "DL category K valid to"
|
|
5556
|
-
case this.FT_DLCLASSCODE_LK_FROM:
|
|
5557
|
-
return "DL category LK valid from"
|
|
5558
|
-
case this.FT_DLCLASSCODE_LK_NOTES:
|
|
5559
|
-
return "DL category LK codes"
|
|
5560
|
-
case this.FT_DLCLASSCODE_LK_TO:
|
|
5561
|
-
return "DL category LK valid to"
|
|
5562
|
-
case this.FT_DLCLASSCODE_N_FROM:
|
|
5563
|
-
return "DL category N valid from"
|
|
5564
|
-
case this.FT_DLCLASSCODE_N_NOTES:
|
|
5565
|
-
return "DL category N codes"
|
|
5566
|
-
case this.FT_DLCLASSCODE_N_TO:
|
|
5567
|
-
return "DL category N valid to"
|
|
5568
|
-
case this.FT_DLCLASSCODE_S_FROM:
|
|
5569
|
-
return "DL category S valid from"
|
|
5570
|
-
case this.FT_DLCLASSCODE_S_NOTES:
|
|
5571
|
-
return "DL category S codes"
|
|
5572
|
-
case this.FT_DLCLASSCODE_S_TO:
|
|
5573
|
-
return "DL category S valid to"
|
|
5574
|
-
case this.FT_DLCLASSCODE_TB_FROM:
|
|
5575
|
-
return "DL category TB valid from"
|
|
5576
|
-
case this.FT_DLCLASSCODE_TB_NOTES:
|
|
5577
|
-
return "DL category TB codes"
|
|
5578
|
-
case this.FT_DLCLASSCODE_TB_TO:
|
|
5579
|
-
return "DL category TB valid to"
|
|
5580
|
-
case this.FT_DLCLASSCODE_TM_FROM:
|
|
5581
|
-
return "DL category TM valid from"
|
|
5582
|
-
case this.FT_DLCLASSCODE_TM_NOTES:
|
|
5583
|
-
return "DL category TM codes"
|
|
5584
|
-
case this.FT_DLCLASSCODE_TM_TO:
|
|
5585
|
-
return "DL category TM valid to"
|
|
5586
|
-
case this.FT_DLCLASSCODE_TR_FROM:
|
|
5587
|
-
return "DL category TR valid from"
|
|
5588
|
-
case this.FT_DLCLASSCODE_TR_NOTES:
|
|
5589
|
-
return "DL category TR codes"
|
|
5590
|
-
case this.FT_DLCLASSCODE_TR_TO:
|
|
5591
|
-
return "DL category TR valid to"
|
|
5592
|
-
case this.FT_DLCLASSCODE_TV_FROM:
|
|
5593
|
-
return "DL category TV valid from"
|
|
5594
|
-
case this.FT_DLCLASSCODE_TV_NOTES:
|
|
5595
|
-
return "DL category TV codes"
|
|
5596
|
-
case this.FT_DLCLASSCODE_TV_TO:
|
|
5597
|
-
return "DL category TV valid to"
|
|
5598
|
-
case this.FT_DLCLASSCODE_V_FROM:
|
|
5599
|
-
return "DL category V valid from"
|
|
5600
|
-
case this.FT_DLCLASSCODE_V_NOTES:
|
|
5601
|
-
return "DL category V codes"
|
|
5602
|
-
case this.FT_DLCLASSCODE_V_TO:
|
|
5603
|
-
return "DL category V valid to"
|
|
5604
|
-
case this.FT_DLCLASSCODE_W_FROM:
|
|
5605
|
-
return "DL category W valid from"
|
|
5606
|
-
case this.FT_DLCLASSCODE_W_NOTES:
|
|
5607
|
-
return "DL category W codes"
|
|
5608
|
-
case this.FT_DLCLASSCODE_W_TO:
|
|
5609
|
-
return "DL category W valid to"
|
|
5610
|
-
case this.FT_CALIBER:
|
|
5611
|
-
return "Caliber"
|
|
5612
|
-
case this.FT_CITIZENSHIP_OF_FIRST_PERSON:
|
|
5613
|
-
return "Citizenship of the first person"
|
|
5614
|
-
case this.FT_CITIZENSHIP_OF_SECOND_PERSON:
|
|
5615
|
-
return "Citizenship of the second person"
|
|
5616
|
-
case this.FT_CVV:
|
|
5617
|
-
return "CVV/CVC"
|
|
5618
|
-
case this.FT_DATE_OF_BIRTH_OF_HUSBAND:
|
|
5619
|
-
return "Date of birth of husband"
|
|
5620
|
-
case this.FT_DATE_OF_BIRTH_OF_WIFE:
|
|
5621
|
-
return "Date of birth of wife"
|
|
5622
|
-
case this.FT_MAKE:
|
|
5623
|
-
return "Make"
|
|
5624
|
-
case this.FT_MODEL:
|
|
5625
|
-
return "Model"
|
|
5626
|
-
case this.FT_NUMBER_OF_CYLINDERS:
|
|
5627
|
-
return "Number of cylinders"
|
|
5628
|
-
case this.FT_SURNAME_OF_HUSBAND_AFTER_REGISTRATION:
|
|
5629
|
-
return "Surname of husband after registration"
|
|
5630
|
-
case this.FT_SURNAME_OF_WIFE_AFTER_REGISTRATION:
|
|
5631
|
-
return "Surname of wife after registration"
|
|
5632
|
-
case this.FT_URL:
|
|
5633
|
-
return "URL"
|
|
5634
|
-
case this.FT_DATE_OF_INSURANCE_EXPIRY:
|
|
5635
|
-
return "Expiry date of insurance"
|
|
5636
|
-
case this.FT_MORTGAGE_BY:
|
|
5637
|
-
return "Mortgage by"
|
|
5638
|
-
case this.FT_OLD_DOCUMENT_NUMBER:
|
|
5639
|
-
return "Old document number"
|
|
5640
|
-
case this.FT_OLD_DATE_OF_ISSUE:
|
|
5641
|
-
return "Old date of issue"
|
|
5642
|
-
case this.FT_OLD_PLACE_OF_ISSUE:
|
|
5643
|
-
return "Old place of issue"
|
|
5644
|
-
case this.FT_DLCLASSCODE_LR_FROM:
|
|
5645
|
-
return "DL category LR valid from"
|
|
5646
|
-
case this.FT_DLCLASSCODE_LR_TO:
|
|
5647
|
-
return "DL category LR valid to"
|
|
5648
|
-
case this.FT_DLCLASSCODE_LR_NOTES:
|
|
5649
|
-
return "DL category LR codes"
|
|
5650
|
-
case this.FT_DLCLASSCODE_MR_FROM:
|
|
5651
|
-
return "DL category MR valid from"
|
|
5652
|
-
case this.FT_DLCLASSCODE_MR_TO:
|
|
5653
|
-
return "DL category MR valid to"
|
|
5654
|
-
case this.FT_DLCLASSCODE_MR_NOTES:
|
|
5655
|
-
return "DL category MR codes"
|
|
5656
|
-
case this.FT_DLCLASSCODE_HR_FROM:
|
|
5657
|
-
return "DL category HR valid from"
|
|
5658
|
-
case this.FT_DLCLASSCODE_HR_TO:
|
|
5659
|
-
return "DL category HR valid to"
|
|
5660
|
-
case this.FT_DLCLASSCODE_HR_NOTES:
|
|
5661
|
-
return "DL category HR codes"
|
|
5662
|
-
case this.FT_DLCLASSCODE_HC_FROM:
|
|
5663
|
-
return "DL category HC valid from"
|
|
5664
|
-
case this.FT_DLCLASSCODE_HC_TO:
|
|
5665
|
-
return "DL category HC valid to"
|
|
5666
|
-
case this.FT_DLCLASSCODE_HC_NOTES:
|
|
5667
|
-
return "DL category HC codes"
|
|
5668
|
-
case this.FT_DLCLASSCODE_MC_FROM:
|
|
5669
|
-
return "DL category MC valid from"
|
|
5670
|
-
case this.FT_DLCLASSCODE_MC_TO:
|
|
5671
|
-
return "DL category MC valid to"
|
|
5672
|
-
case this.FT_DLCLASSCODE_MC_NOTES:
|
|
5673
|
-
return "DL category MC codes"
|
|
5674
|
-
case this.FT_DLCLASSCODE_RE_FROM:
|
|
5675
|
-
return "DL category RE valid from"
|
|
5676
|
-
case this.FT_DLCLASSCODE_RE_TO:
|
|
5677
|
-
return "DL category RE valid to"
|
|
5678
|
-
case this.FT_DLCLASSCODE_RE_NOTES:
|
|
5679
|
-
return "DL category RE codes"
|
|
5680
|
-
case this.FT_DLCLASSCODE_R_FROM:
|
|
5681
|
-
return "DL category R valid from"
|
|
5682
|
-
case this.FT_DLCLASSCODE_R_TO:
|
|
5683
|
-
return "DL category R valid to"
|
|
5684
|
-
case this.FT_DLCLASSCODE_R_NOTES:
|
|
5685
|
-
return "DL category R codes"
|
|
5686
|
-
case this.FT_DLCLASSCODE_CA_FROM:
|
|
5687
|
-
return "DL category CA valid from"
|
|
5688
|
-
case this.FT_DLCLASSCODE_CA_TO:
|
|
5689
|
-
return "DL category CA valid to"
|
|
5690
|
-
case this.FT_DLCLASSCODE_CA_NOTES:
|
|
5691
|
-
return "DL category CA codes"
|
|
5692
|
-
case this.FT_CITIZENSHIP_STATUS:
|
|
5693
|
-
return "Citizenship status"
|
|
5694
|
-
case this.FT_MILITARY_SERVICE_FROM:
|
|
5695
|
-
return "Military service from"
|
|
5696
|
-
case this.FT_MILITARY_SERVICE_TO:
|
|
5697
|
-
return "Military service to"
|
|
5698
|
-
case this.FT_DLCLASSCODE_D3_FROM:
|
|
5699
|
-
return "DL category D3 valid from"
|
|
5700
|
-
case this.FT_DLCLASSCODE_D3_NOTES:
|
|
5701
|
-
return "DL category D3 codes"
|
|
5702
|
-
case this.FT_DLCLASSCODE_D3_TO:
|
|
5703
|
-
return "DL category D3 valid to"
|
|
5704
|
-
case this.FT_DLCLASSCODE_NT_FROM:
|
|
5705
|
-
return "DL category NT valid from"
|
|
5706
|
-
case this.FT_DLCLASSCODE_NT_NOTES:
|
|
5707
|
-
return "DL category NT codes"
|
|
5708
|
-
case this.FT_DLCLASSCODE_NT_TO:
|
|
5709
|
-
return "DL category NT valid to"
|
|
5710
|
-
case this.FT_DLCLASSCODE_TN_FROM:
|
|
5711
|
-
return "DL category TN valid from"
|
|
5712
|
-
case this.FT_DLCLASSCODE_TN_NOTES:
|
|
5713
|
-
return "DL category TN codes"
|
|
5714
|
-
case this.FT_DLCLASSCODE_TN_TO:
|
|
5715
|
-
return "DL category TN valid to"
|
|
5716
|
-
case this.FT_ALT_DATE_OF_EXPIRY:
|
|
5717
|
-
return "Alternative date of expiry"
|
|
5718
|
-
case this.FT_DLCLASSCODE_CD_FROM:
|
|
5719
|
-
return "DL category CD valid from"
|
|
5720
|
-
case this.FT_DLCLASSCODE_CD_TO:
|
|
5721
|
-
return "DL category CD valid to"
|
|
5722
|
-
case this.FT_DLCLASSCODE_CD_NOTES:
|
|
5723
|
-
return "DL category CD codes"
|
|
5724
|
-
case this.FT_FIRST_NAME:
|
|
5725
|
-
return "First name"
|
|
5726
|
-
case this.FT_DATE_OF_ARRIVAL:
|
|
5727
|
-
return "Date of arrival"
|
|
5728
|
-
case this.FT_ISSUER_IDENTIFICATION_NUMBER:
|
|
5729
|
-
return "Issuer identification number"
|
|
5730
|
-
case this.FT_PAYMENT_PERIOD_FROM:
|
|
5731
|
-
return "Payment period from"
|
|
5732
|
-
case this.FT_PAYMENT_PERIOD_TO:
|
|
5733
|
-
return "Payment period to"
|
|
5734
|
-
case this.FT_VACCINATION_CERTIFICATE_IDENTIFIER:
|
|
5735
|
-
return "Unique vaccination certificate identifier"
|
|
5736
|
-
case this.FT_SECOND_NAME:
|
|
5737
|
-
return "Second name"
|
|
5738
|
-
case this.FT_THIRD_NAME:
|
|
5739
|
-
return "Third name"
|
|
5740
|
-
case this.FT_FOURTH_NAME:
|
|
5741
|
-
return "Fourth name"
|
|
5742
|
-
case this.FT_LAST_NAME:
|
|
5743
|
-
return "Last name"
|
|
5744
|
-
case this.FT_DLCLASSCODE_PW_FROM:
|
|
5745
|
-
return "DL class code PW valid from"
|
|
5746
|
-
case this.FT_DLCLASSCODE_PW_NOTES:
|
|
5747
|
-
return "DL class code PW notes"
|
|
5748
|
-
case this.FT_DLCLASSCODE_PW_TO:
|
|
5749
|
-
return "DL class code PW valid to"
|
|
5750
|
-
case this.FT_DLCLASSCODE_RM_FROM:
|
|
5751
|
-
return "DL class code RM valid from"
|
|
5752
|
-
case this.FT_DLCLASSCODE_RM_NOTES:
|
|
5753
|
-
return "DL class code RM notes"
|
|
5754
|
-
case this.FT_DLCLASSCODE_RM_TO:
|
|
5755
|
-
return "DL class code RM valid to"
|
|
5756
|
-
default:
|
|
5757
|
-
return value
|
|
5758
|
-
}
|
|
5759
|
-
}
|
|
3352
|
+
FT_YEAR_OF_BIRTH: 667,
|
|
3353
|
+
FT_YEAR_OF_EXPIRY: 668,
|
|
3354
|
+
FT_GRANDFATHER_NAME_MATERNAL: 669,
|
|
3355
|
+
FT_FIRST_SURNAME: 670,
|
|
3356
|
+
FT_MONTH_OF_BIRTH: 671,
|
|
3357
|
+
FT_ADDRESS_FLOOR_NUMBER: 672,
|
|
3358
|
+
FT_ADDRESS_ENTRANCE: 673,
|
|
3359
|
+
FT_ADDRESS_BLOCK_NUMBER: 674,
|
|
3360
|
+
FT_ADDRESS_STREET_NUMBER: 675,
|
|
3361
|
+
FT_ADDRESS_STREET_TYPE: 676,
|
|
3362
|
+
FT_ADDRESS_CITY_SECTOR: 677,
|
|
3363
|
+
FT_ADDRESS_COUNTY_TYPE: 678,
|
|
3364
|
+
FT_ADDRESS_CITY_TYPE: 679,
|
|
3365
|
+
FT_ADDRESS_BUILDING_TYPE: 680,
|
|
5760
3366
|
}
|
|
5761
3367
|
|
|
5762
3368
|
export const DocReaderOrientation = {
|
|
@@ -5924,325 +3530,6 @@ export const LCID = {
|
|
|
5924
3530
|
VIETNAMESE: 1066,
|
|
5925
3531
|
CTC_SIMPLIFIED: 50001,
|
|
5926
3532
|
CTC_TRADITIONAL: 50002,
|
|
5927
|
-
|
|
5928
|
-
getTranslation: function (value) {
|
|
5929
|
-
switch (value) {
|
|
5930
|
-
case this.LATIN:
|
|
5931
|
-
return "Latin"
|
|
5932
|
-
case this.AFRIKAANS:
|
|
5933
|
-
return "Afrikaans"
|
|
5934
|
-
case this.ABKHAZIAN_CYRILLIC:
|
|
5935
|
-
return "Abkhazian (Cyrillic)"
|
|
5936
|
-
case this.ALBANIAN:
|
|
5937
|
-
return "Albanian"
|
|
5938
|
-
case this.AMHARIC:
|
|
5939
|
-
return "Amharic"
|
|
5940
|
-
case this.ARABIC_ALGERIA:
|
|
5941
|
-
return "Arabic (Algeria)"
|
|
5942
|
-
case this.ARABIC_BAHRAIN:
|
|
5943
|
-
return "Arabic (Bahrain)"
|
|
5944
|
-
case this.ARABIC_EGYPT:
|
|
5945
|
-
return "Arabic (Egypt)"
|
|
5946
|
-
case this.ARABIC_IRAQ:
|
|
5947
|
-
return "Arabic (Iraq)"
|
|
5948
|
-
case this.ARABIC_JORDAN:
|
|
5949
|
-
return "Arabic (Jordan)"
|
|
5950
|
-
case this.ARABIC_KUWAIT:
|
|
5951
|
-
return "Arabic (Kuwait)"
|
|
5952
|
-
case this.ARABIC_LEBANON:
|
|
5953
|
-
return "Arabic (Lebanon)"
|
|
5954
|
-
case this.ARABIC_LIBYA:
|
|
5955
|
-
return "Arabic (Libya)"
|
|
5956
|
-
case this.ARABIC_MOROCCO:
|
|
5957
|
-
return "Arabic (Morocco)"
|
|
5958
|
-
case this.ARABIC_OMAN:
|
|
5959
|
-
return "Arabic (Oman)"
|
|
5960
|
-
case this.ARABIC_QATAR:
|
|
5961
|
-
return "Arabic (Qatar)"
|
|
5962
|
-
case this.ARABIC_SAUDI_ARABIA:
|
|
5963
|
-
return "Arabic (Saudi Arabia)"
|
|
5964
|
-
case this.ARABIC_SYRIA:
|
|
5965
|
-
return "Arabic (Syria)"
|
|
5966
|
-
case this.ARABIC_TUNISIA:
|
|
5967
|
-
return "Arabic (Tunisia)"
|
|
5968
|
-
case this.ARABIC_UAE:
|
|
5969
|
-
return "Arabic (U.A.E.)"
|
|
5970
|
-
case this.ARABIC_YEMEN:
|
|
5971
|
-
return "Arabic (Yemen)"
|
|
5972
|
-
case this.ARABIC_ARMENIAN:
|
|
5973
|
-
return "Armenian"
|
|
5974
|
-
case this.ARABIC_WORLD:
|
|
5975
|
-
return "Arabic (World)"
|
|
5976
|
-
case this.AZERI_CYRILIC:
|
|
5977
|
-
return "Azeri (Cyrillic)"
|
|
5978
|
-
case this.AZERI_LATIN:
|
|
5979
|
-
return "Azeri (Latin)"
|
|
5980
|
-
case this.BASQUE:
|
|
5981
|
-
return "Basque"
|
|
5982
|
-
case this.BANK_CARD:
|
|
5983
|
-
return "Bank Card"
|
|
5984
|
-
case this.BANK_CARD_CVV2:
|
|
5985
|
-
return "Bank Card CVV2"
|
|
5986
|
-
case this.BANK_CARD_NAME:
|
|
5987
|
-
return "Bank Card Name"
|
|
5988
|
-
case this.BANK_CARD_NUMBER:
|
|
5989
|
-
return "Bank Card Number"
|
|
5990
|
-
case this.BANK_CARD_VALID_THRU:
|
|
5991
|
-
return "Bank Card Valid Thru"
|
|
5992
|
-
case this.BELARUSIAN:
|
|
5993
|
-
return "Belarusian"
|
|
5994
|
-
case this.BENGALI:
|
|
5995
|
-
return "Bengali"
|
|
5996
|
-
case this.BULGARIAN:
|
|
5997
|
-
return "Bulgarian"
|
|
5998
|
-
case this.CATALAN:
|
|
5999
|
-
return "Catalan"
|
|
6000
|
-
case this.CHINESE_HONGKONG_SAR:
|
|
6001
|
-
return "Chinese (HongKong S.A.R.)"
|
|
6002
|
-
case this.CHINESE_MACAO_SAR:
|
|
6003
|
-
return "Chinese (Macao S.A.R.)"
|
|
6004
|
-
case this.CHINESE:
|
|
6005
|
-
return "Chinese"
|
|
6006
|
-
case this.CHINESE_SINGAPORE:
|
|
6007
|
-
return "Chinese (Singapore)"
|
|
6008
|
-
case this.CHINESE_TAIWAN:
|
|
6009
|
-
return "Chinese (Taiwan)"
|
|
6010
|
-
case this.CROATIAN:
|
|
6011
|
-
return "Croatian"
|
|
6012
|
-
case this.CZECH:
|
|
6013
|
-
return "Czech"
|
|
6014
|
-
case this.DANISH:
|
|
6015
|
-
return "Danish"
|
|
6016
|
-
case this.DIVEHI:
|
|
6017
|
-
return "Divehi"
|
|
6018
|
-
case this.DUTCH_BELGIUM:
|
|
6019
|
-
return "Dutch (Belgium)"
|
|
6020
|
-
case this.DUTCH_NETHERLANDS:
|
|
6021
|
-
return "Dutch (Netherlands)"
|
|
6022
|
-
case this.ENGLISH_AUSTRALIA:
|
|
6023
|
-
return "English (Australia)"
|
|
6024
|
-
case this.ENGLISH_BELIZE:
|
|
6025
|
-
return "English (Belize)"
|
|
6026
|
-
case this.ENGLISH_CANADA:
|
|
6027
|
-
return "English (Canada)"
|
|
6028
|
-
case this.ENGLISH_CARRIBEAN:
|
|
6029
|
-
return "English (Caribbean)"
|
|
6030
|
-
case this.ENGLISH_IRELAND:
|
|
6031
|
-
return "English (Ireland)"
|
|
6032
|
-
case this.ENGLISH_JAMAICA:
|
|
6033
|
-
return "English (Jamaica)"
|
|
6034
|
-
case this.ENGLISH_NEW_ZEALAND:
|
|
6035
|
-
return "English (New Zealand)"
|
|
6036
|
-
case this.ENGLISH_PHILIPPINES:
|
|
6037
|
-
return "English (Philippines)"
|
|
6038
|
-
case this.ENGLISH_SOUTH_AFRICA:
|
|
6039
|
-
return "English (South Africa)"
|
|
6040
|
-
case this.ENGLISH_TRINIDAD:
|
|
6041
|
-
return "English (Trinidad)"
|
|
6042
|
-
case this.ENGLISH_UK:
|
|
6043
|
-
return "English (United Kingdom)"
|
|
6044
|
-
case this.ENGLISH_US:
|
|
6045
|
-
return "English (United States)"
|
|
6046
|
-
case this.ENGLISH_ZIMBABWE:
|
|
6047
|
-
return "English (Zimbabwe)"
|
|
6048
|
-
case this.ESTONIAN:
|
|
6049
|
-
return "Estonian"
|
|
6050
|
-
case this.FAEROESE:
|
|
6051
|
-
return "Faeroese"
|
|
6052
|
-
case this.FARSI:
|
|
6053
|
-
return "Farsi"
|
|
6054
|
-
case this.FINNISH:
|
|
6055
|
-
return "Finnish"
|
|
6056
|
-
case this.FRENCH_BELGIUM:
|
|
6057
|
-
return "French (Belgium)"
|
|
6058
|
-
case this.FRENCH_CANADA:
|
|
6059
|
-
return "French (Canada)"
|
|
6060
|
-
case this.FRENCH_FRANCE:
|
|
6061
|
-
return "French (France)"
|
|
6062
|
-
case this.FRENCH_LUXEMBOURG:
|
|
6063
|
-
return "French (Luxembourg)"
|
|
6064
|
-
case this.FRENCH_MONACO:
|
|
6065
|
-
return "French (Monaco)"
|
|
6066
|
-
case this.FRENCH_SWITZERLAND:
|
|
6067
|
-
return "French (Switzerland)"
|
|
6068
|
-
case this.GALICIAN:
|
|
6069
|
-
return "Galician"
|
|
6070
|
-
case this.GEORGIAN:
|
|
6071
|
-
return "Georgian"
|
|
6072
|
-
case this.GERMAN_AUSTRIA:
|
|
6073
|
-
return "German (Austria)"
|
|
6074
|
-
case this.GERMAN_GERMANY:
|
|
6075
|
-
return "German (Germany)"
|
|
6076
|
-
case this.GERMAN_LIECHTENSTEIN:
|
|
6077
|
-
return "German (Liechtenstein)"
|
|
6078
|
-
case this.GERMAN_LUXEMBOURG:
|
|
6079
|
-
return "German (Luxembourg)"
|
|
6080
|
-
case this.GERMAN_SWITZERLAND:
|
|
6081
|
-
return "German (Switzerland)"
|
|
6082
|
-
case this.GREEK:
|
|
6083
|
-
return "Greek"
|
|
6084
|
-
case this.GUJARATI:
|
|
6085
|
-
return "Gujarati"
|
|
6086
|
-
case this.HEBREW:
|
|
6087
|
-
return "Hebrew"
|
|
6088
|
-
case this.HINDI_INDIA:
|
|
6089
|
-
return "Hindi (India)"
|
|
6090
|
-
case this.HUNGARIAN:
|
|
6091
|
-
return "Hungarian"
|
|
6092
|
-
case this.ICELANDIC:
|
|
6093
|
-
return "Icelandic"
|
|
6094
|
-
case this.INDONESIAN:
|
|
6095
|
-
return "Indonesian"
|
|
6096
|
-
case this.ITALIAN_ITALY:
|
|
6097
|
-
return "Italian (Italy)"
|
|
6098
|
-
case this.ITALIAN_SWITZERLAND:
|
|
6099
|
-
return "Italian (Switzerland)"
|
|
6100
|
-
case this.JAPANESE:
|
|
6101
|
-
return "Japanese"
|
|
6102
|
-
case this.KANNADA:
|
|
6103
|
-
return "Kannada"
|
|
6104
|
-
case this.KASHMIRI:
|
|
6105
|
-
return "Kashmiri"
|
|
6106
|
-
case this.KAZAKH:
|
|
6107
|
-
return "Kazakh"
|
|
6108
|
-
case this.KONKANI:
|
|
6109
|
-
return "Konkani"
|
|
6110
|
-
case this.KOREAN:
|
|
6111
|
-
return "Korean"
|
|
6112
|
-
case this.KYRGYZ_CYRILICK:
|
|
6113
|
-
return "Kyrgyz (Cyrillic)"
|
|
6114
|
-
case this.LAO:
|
|
6115
|
-
return "Lao"
|
|
6116
|
-
case this.LATVIAN:
|
|
6117
|
-
return "Latvian"
|
|
6118
|
-
case this.LITHUANIAN:
|
|
6119
|
-
return "Lithuanian"
|
|
6120
|
-
case this.FYRO_MACEDONIAN:
|
|
6121
|
-
return "FYRO Macedonian"
|
|
6122
|
-
case this.MALAY_MALAYSIA:
|
|
6123
|
-
return "Malay (Malaysia)"
|
|
6124
|
-
case this.MALAY_BRUNEI_DARUSSALAM:
|
|
6125
|
-
return "Malay (Brunei Darussalam)"
|
|
6126
|
-
case this.MARATHI:
|
|
6127
|
-
return "Marathi"
|
|
6128
|
-
case this.MONGOLIAN_CYRILIC:
|
|
6129
|
-
return "Mongolian (Cyrillic)"
|
|
6130
|
-
case this.NORWEGIAN_BOKMAL:
|
|
6131
|
-
return "Norwegian (Bokmal)"
|
|
6132
|
-
case this.NORWEGIAN_NYORSK:
|
|
6133
|
-
return "Norwegian (Nynorsk)"
|
|
6134
|
-
case this.PASHTO:
|
|
6135
|
-
return "Pashto"
|
|
6136
|
-
case this.POLISH:
|
|
6137
|
-
return "Polish"
|
|
6138
|
-
case this.PORTUGUESE_BRAZIL:
|
|
6139
|
-
return "Portuguese (Brazil)"
|
|
6140
|
-
case this.PORTUGUESE_PORTUGAL:
|
|
6141
|
-
return "Portuguese (Portugal)"
|
|
6142
|
-
case this.PUNJABI:
|
|
6143
|
-
return "Punjabi"
|
|
6144
|
-
case this.RHAETO_ROMANIC:
|
|
6145
|
-
return "Rhaeto-Romanic"
|
|
6146
|
-
case this.ROMANIAN:
|
|
6147
|
-
return "Romanian"
|
|
6148
|
-
case this.RUSSIAN:
|
|
6149
|
-
return "Russian"
|
|
6150
|
-
case this.SANSKRIT:
|
|
6151
|
-
return "Sanskrit"
|
|
6152
|
-
case this.SINDHI:
|
|
6153
|
-
return "Sindhi"
|
|
6154
|
-
case this.SINDHI_INDIA:
|
|
6155
|
-
return "Sindhi (India)"
|
|
6156
|
-
case this.SINHALA:
|
|
6157
|
-
return "Sinhala"
|
|
6158
|
-
case this.SERBIAN_CYRILIC:
|
|
6159
|
-
return "Serbian (Cyrillic)"
|
|
6160
|
-
case this.SERBIAN_LATIN:
|
|
6161
|
-
return "Serbian (Latin)"
|
|
6162
|
-
case this.SLOVAK:
|
|
6163
|
-
return "Slovak"
|
|
6164
|
-
case this.SLOVENIAN:
|
|
6165
|
-
return "Slovenian"
|
|
6166
|
-
case this.SPANISH_ARGENTINA:
|
|
6167
|
-
return "Spanish (Argentina)"
|
|
6168
|
-
case this.SPANISH_BOLIVIA:
|
|
6169
|
-
return "Spanish (Bolivia)"
|
|
6170
|
-
case this.SPANISH_CHILE:
|
|
6171
|
-
return "Spanish (Chile)"
|
|
6172
|
-
case this.SPANICH_COLOMBIA:
|
|
6173
|
-
return "Spanish (Colombia)"
|
|
6174
|
-
case this.SPANISH_COSTA_RICA:
|
|
6175
|
-
return "Spanish (Costa Rica)"
|
|
6176
|
-
case this.SPANISH_DOMINICAN_REPUBLIC:
|
|
6177
|
-
return "Spanish (Dominican Republic)"
|
|
6178
|
-
case this.SPANISH_ECUADOR:
|
|
6179
|
-
return "Spanish (Ecuador)"
|
|
6180
|
-
case this.SPANISH_EL_SALVADOR:
|
|
6181
|
-
return "Spanish (El Salvador)"
|
|
6182
|
-
case this.SPANISH_GUATEMALA:
|
|
6183
|
-
return "Spanish (Guatemala)"
|
|
6184
|
-
case this.SPANISH_HONDURAS:
|
|
6185
|
-
return "Spanish (Honduras)"
|
|
6186
|
-
case this.SPANISH_MEXICO:
|
|
6187
|
-
return "Spanish (Mexico)"
|
|
6188
|
-
case this.SPANISH_NICARAGUA:
|
|
6189
|
-
return "Spanish (Nicaragua)"
|
|
6190
|
-
case this.SPANISH_PANAMA:
|
|
6191
|
-
return "Spanish (Panama)"
|
|
6192
|
-
case this.SPANISH_PARAGUAY:
|
|
6193
|
-
return "Spanish (Paraguay)"
|
|
6194
|
-
case this.SPANISH_PERU:
|
|
6195
|
-
return "Spanish (Peru)"
|
|
6196
|
-
case this.SPANISH_PUERTO_RICO:
|
|
6197
|
-
return "Spanish (Puerto Rico)"
|
|
6198
|
-
case this.SPANISH_TRADITIONAL_SORT:
|
|
6199
|
-
return "Spanish (Traditional Sort)"
|
|
6200
|
-
case this.SPANISH_INTERNATIONAL_SORT:
|
|
6201
|
-
return "Spanish (International Sort)"
|
|
6202
|
-
case this.SPANISH_URUGUAY:
|
|
6203
|
-
return "Spanish (Uruguay)"
|
|
6204
|
-
case this.SPANISH_VENEZUELA:
|
|
6205
|
-
return "Spanish (Venezuela)"
|
|
6206
|
-
case this.SWAHILI:
|
|
6207
|
-
return "Swahili"
|
|
6208
|
-
case this.SWEDISH:
|
|
6209
|
-
return "Swedish"
|
|
6210
|
-
case this.SWEDISH_FINLAND:
|
|
6211
|
-
return "Swedish (Finland)"
|
|
6212
|
-
case this.SYRIAC:
|
|
6213
|
-
return "Syriac"
|
|
6214
|
-
case this.TAMIL:
|
|
6215
|
-
return "Tamil"
|
|
6216
|
-
case this.TATAR:
|
|
6217
|
-
return "Tatar"
|
|
6218
|
-
case this.TELUGU:
|
|
6219
|
-
return "Telugu"
|
|
6220
|
-
case this.THAI_THAILAND:
|
|
6221
|
-
return "Thai (Thailand)"
|
|
6222
|
-
case this.TURKISH:
|
|
6223
|
-
return "Turkish"
|
|
6224
|
-
case this.TAJIK_CYRILLIC:
|
|
6225
|
-
return "Tajik (Cyrillic)"
|
|
6226
|
-
case this.TURKMEN:
|
|
6227
|
-
return "Turkmen"
|
|
6228
|
-
case this.UKRAINIAN:
|
|
6229
|
-
return "Ukrainian"
|
|
6230
|
-
case this.URDU:
|
|
6231
|
-
return "Urdu"
|
|
6232
|
-
case this.UZBEK_CYRILIC:
|
|
6233
|
-
return "Uzbek (Cyrillic)"
|
|
6234
|
-
case this.UZBEK_LATIN:
|
|
6235
|
-
return "Uzbek (Latin)"
|
|
6236
|
-
case this.VIETNAMESE:
|
|
6237
|
-
return "Vietnamese"
|
|
6238
|
-
case this.CTC_SIMPLIFIED:
|
|
6239
|
-
return "CTC Simplified"
|
|
6240
|
-
case this.CTC_TRADITIONAL:
|
|
6241
|
-
return "CTC Traditional"
|
|
6242
|
-
default:
|
|
6243
|
-
return value
|
|
6244
|
-
}
|
|
6245
|
-
}
|
|
6246
3533
|
}
|
|
6247
3534
|
|
|
6248
3535
|
export const DocReaderFrame = {
|
|
@@ -6262,19 +3549,6 @@ export const eRPRM_Lights = {
|
|
|
6262
3549
|
RPRM_Light_IR_Full: (8 | 16),
|
|
6263
3550
|
RPRM_LIGHT_OVD: 67108864,
|
|
6264
3551
|
RPRM_LIGHT_WHITE_FULL_OVD: (6 | 67108864),
|
|
6265
|
-
|
|
6266
|
-
getTranslation: function (value) {
|
|
6267
|
-
switch (value) {
|
|
6268
|
-
case this.RPRM_LIGHT_UV:
|
|
6269
|
-
return "UV"
|
|
6270
|
-
case this.RPRM_Light_IR_Full:
|
|
6271
|
-
return "IR"
|
|
6272
|
-
case this.RPRM_LIGHT_WHITE_FULL:
|
|
6273
|
-
return "Visible light"
|
|
6274
|
-
default:
|
|
6275
|
-
return value
|
|
6276
|
-
}
|
|
6277
|
-
}
|
|
6278
3552
|
}
|
|
6279
3553
|
|
|
6280
3554
|
export const LineCap = {
|
|
@@ -6348,6 +3622,7 @@ export const Enum = {
|
|
|
6348
3622
|
eProcessGLCommands,
|
|
6349
3623
|
PKDResourceType,
|
|
6350
3624
|
eRFID_AuthenticationProcedureType,
|
|
3625
|
+
DocumentReaderErrorCodes,
|
|
6351
3626
|
ScenarioIdentifier,
|
|
6352
3627
|
eRFID_AccessControl_ProcedureType,
|
|
6353
3628
|
eRFID_NotificationCodes,
|
|
@@ -6411,6 +3686,9 @@ DocumentReader.getDatabaseDocumentsNumber = (successCallback, errorCallback) =>
|
|
|
6411
3686
|
DocumentReader.selectedScenario = (successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "selectedScenario", [], successCallback, errorCallback)
|
|
6412
3687
|
DocumentReader.getSessionLogFolder = (successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "getSessionLogFolder", [], successCallback, errorCallback)
|
|
6413
3688
|
DocumentReader.getDatabaseDescription = (successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "getDatabaseDescription", [], successCallback, errorCallback)
|
|
3689
|
+
/**
|
|
3690
|
+
* @deprecated
|
|
3691
|
+
*/
|
|
6414
3692
|
DocumentReader.showScanner = (successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "showScanner", [], successCallback, errorCallback)
|
|
6415
3693
|
DocumentReader.startNewPage = (successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "startNewPage", [], successCallback, errorCallback)
|
|
6416
3694
|
DocumentReader.startNewSession = (successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "startNewSession", [], successCallback, errorCallback)
|
|
@@ -6438,15 +3716,28 @@ DocumentReader.addPKDCertificates = (certificates, successCallback, errorCallbac
|
|
|
6438
3716
|
DocumentReader.setCameraSessionIsPaused = (paused, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "setCameraSessionIsPaused", [paused], successCallback, errorCallback)
|
|
6439
3717
|
DocumentReader.setTag = (tag, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "setTag", [tag], successCallback, errorCallback)
|
|
6440
3718
|
DocumentReader.checkDatabaseUpdate = (databaseId, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "checkDatabaseUpdate", [databaseId], successCallback, errorCallback)
|
|
6441
|
-
DocumentReader.
|
|
3719
|
+
DocumentReader.scan = (config, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "scan", [config], successCallback, errorCallback)
|
|
3720
|
+
DocumentReader.recognize = (config, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "recognize", [config], successCallback, errorCallback)
|
|
3721
|
+
/**
|
|
3722
|
+
* @deprecated
|
|
3723
|
+
*/
|
|
6442
3724
|
DocumentReader.recognizeImages = (images, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "recognizeImages", [images], successCallback, errorCallback)
|
|
3725
|
+
/**
|
|
3726
|
+
* @deprecated
|
|
3727
|
+
*/
|
|
6443
3728
|
DocumentReader.showScannerWithCameraID = (cameraID, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "showScannerWithCameraID", [cameraID], successCallback, errorCallback)
|
|
6444
3729
|
DocumentReader.runAutoUpdate = (databaseType, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "runAutoUpdate", [databaseType], successCallback, errorCallback)
|
|
6445
3730
|
DocumentReader.setConfig = (config, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "setConfig", [config], successCallback, errorCallback)
|
|
6446
3731
|
DocumentReader.setRfidScenario = (scenario, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "setRfidScenario", [scenario], successCallback, errorCallback)
|
|
6447
3732
|
DocumentReader.initializeReader = (config, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "initializeReader", [config], successCallback, errorCallback)
|
|
6448
3733
|
DocumentReader.prepareDatabase = (databaseType, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "prepareDatabase", [databaseType], successCallback, errorCallback)
|
|
3734
|
+
/**
|
|
3735
|
+
* @deprecated
|
|
3736
|
+
*/
|
|
6449
3737
|
DocumentReader.recognizeImage = (image, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "recognizeImage", [image], successCallback, errorCallback)
|
|
3738
|
+
/**
|
|
3739
|
+
* @deprecated
|
|
3740
|
+
*/
|
|
6450
3741
|
DocumentReader.recognizeData = (data, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "recognizeData", [data], successCallback, errorCallback)
|
|
6451
3742
|
DocumentReader.setRfidSessionStatus = (status, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "setRfidSessionStatus", [status], successCallback, errorCallback)
|
|
6452
3743
|
DocumentReader.providePACertificates = (certificates, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "providePACertificates", [certificates], successCallback, errorCallback)
|
|
@@ -6454,12 +3745,20 @@ DocumentReader.provideTACertificates = (certificates, successCallback, errorCall
|
|
|
6454
3745
|
DocumentReader.provideTASignature = (signature, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "provideTASignature", [signature], successCallback, errorCallback)
|
|
6455
3746
|
DocumentReader.parseCoreResults = (json, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "parseCoreResults", [json], successCallback, errorCallback)
|
|
6456
3747
|
DocumentReader.setTCCParams = (params, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "setTCCParams", [params], successCallback, errorCallback)
|
|
3748
|
+
/**
|
|
3749
|
+
* @deprecated
|
|
3750
|
+
*/
|
|
6457
3751
|
DocumentReader.recognizeImageWithOpts = (image, options, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "recognizeImageWithOpts", [image, options], successCallback, errorCallback)
|
|
6458
3752
|
DocumentReader.recognizeVideoFrame = (byteString, params, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "recognizeVideoFrame", [byteString, params], successCallback, errorCallback)
|
|
3753
|
+
/**
|
|
3754
|
+
* @deprecated
|
|
3755
|
+
*/
|
|
6459
3756
|
DocumentReader.showScannerWithCameraIDAndOpts = (cameraID, options, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "showScannerWithCameraIDAndOpts", [cameraID, options], successCallback, errorCallback)
|
|
6460
3757
|
DocumentReader.recognizeImageWithCameraMode = (image, mode, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "recognizeImageWithCameraMode", [image, mode], successCallback, errorCallback)
|
|
3758
|
+
/**
|
|
3759
|
+
* @deprecated
|
|
3760
|
+
*/
|
|
6461
3761
|
DocumentReader.recognizeImagesWithImageInputs = (images, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "recognizeImagesWithImageInputs", [images], successCallback, errorCallback)
|
|
6462
|
-
DocumentReader.setOnCustomButtonTappedListener = (successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "setOnCustomButtonTappedListener", [], successCallback, errorCallback)
|
|
6463
3762
|
DocumentReader.setLanguage = (language, successCallback, errorCallback) => RNRegulaDocumentReader.exec("DocumentReader", "setLanguage", [language], successCallback, errorCallback)
|
|
6464
3763
|
|
|
6465
3764
|
export default DocumentReader
|