@regulaforensics/document-reader-webclient 8.1.379-nightly → 8.1.381-nightly
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/dist/main/index.cjs +1 -1
- package/dist/module/index.js +1 -1
- package/lib/index.d.ts +11 -3
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4076,7 +4076,15 @@ export enum ParsingNotificationCodes {
|
|
|
4076
4076
|
/**
|
|
4077
4077
|
* Country Codes from certificate and DG1 MRZ don't match
|
|
4078
4078
|
*/
|
|
4079
|
-
ntfLDS_ICAO_Certificate_MRZ_Country_NonMatching = 2415919698
|
|
4079
|
+
ntfLDS_ICAO_Certificate_MRZ_Country_NonMatching = 2415919698,
|
|
4080
|
+
/**
|
|
4081
|
+
* ICAO certificate: Issuer country non upper case
|
|
4082
|
+
*/
|
|
4083
|
+
ntfLDS_ICAO_Certificate_Issuer_CountryNonUpperCase = 2415919699,
|
|
4084
|
+
/**
|
|
4085
|
+
* ICAO certificate: Subject country non upper case
|
|
4086
|
+
*/
|
|
4087
|
+
ntfLDS_ICAO_Certificate_Subject_CountryNonUpperCase = 2415919700
|
|
4080
4088
|
}
|
|
4081
4089
|
/**
|
|
4082
4090
|
* Regula Document Reader Web API
|
|
@@ -7091,11 +7099,11 @@ export enum TextFieldType {
|
|
|
7091
7099
|
*/
|
|
7092
7100
|
FT_MVC_AGENCY = 695,
|
|
7093
7101
|
/**
|
|
7094
|
-
* Issuing state code
|
|
7102
|
+
* Issuing state code (Alpha-2)
|
|
7095
7103
|
*/
|
|
7096
7104
|
FT_ISSUING_STATE_CODE_ALPHA2 = 696,
|
|
7097
7105
|
/**
|
|
7098
|
-
* Nationality code
|
|
7106
|
+
* Nationality code (Alpha-2)
|
|
7099
7107
|
*/
|
|
7100
7108
|
FT_NATIONALITY_CODE_ALPHA2 = 697
|
|
7101
7109
|
}
|
package/package.json
CHANGED