@@ -1652,6 +1652,7 @@ export class RecognizeConfig {
16521652 image ?: string
16531653 data ?: string
16541654 images ?: string [ ]
1655+ dataList ?: string [ ]
16551656 imageInputData ?: ImageInputData [ ]
16561657
16571658 static fromJson ( jsonObject ?: any ) : RecognizeConfig | undefined {
@@ -1672,6 +1673,12 @@ export class RecognizeConfig {
16721673 result . images . push ( jsonObject [ "images" ] [ i ] )
16731674 }
16741675 }
1676+ result . dataList = [ ]
1677+ if ( jsonObject [ "dataList" ] != null ) {
1678+ for ( const i in jsonObject [ "dataList" ] ) {
1679+ result . dataList . push ( jsonObject [ "dataList" ] [ i ] )
1680+ }
1681+ }
16751682 result . imageInputData = [ ]
16761683 if ( jsonObject [ "imageInputData" ] != null ) {
16771684 for ( const i in jsonObject [ "imageInputData" ] ) {
@@ -1936,6 +1943,7 @@ export class Functionality {
19361943 torchTurnedOn ?: boolean
19371944 preventScreenRecording ?: boolean
19381945 homeIndicatorAutoHide ?: boolean
1946+ hideStatusBar ?: boolean
19391947 showCaptureButtonDelayFromDetect ?: number
19401948 showCaptureButtonDelayFromStart ?: number
19411949 rfidTimeout ?: number
@@ -1977,6 +1985,7 @@ export class Functionality {
19771985 result . torchTurnedOn = jsonObject [ "torchTurnedOn" ]
19781986 result . preventScreenRecording = jsonObject [ "preventScreenRecording" ]
19791987 result . homeIndicatorAutoHide = jsonObject [ "homeIndicatorAutoHide" ]
1988+ result . hideStatusBar = jsonObject [ "hideStatusBar" ]
19801989 result . showCaptureButtonDelayFromDetect = jsonObject [ "showCaptureButtonDelayFromDetect" ]
19811990 result . showCaptureButtonDelayFromStart = jsonObject [ "showCaptureButtonDelayFromStart" ]
19821991 result . rfidTimeout = jsonObject [ "rfidTimeout" ]
@@ -2166,6 +2175,7 @@ export class LivenessParams {
21662175 checkBlackAndWhiteCopy ?: boolean
21672176 checkDynaprint ?: boolean
21682177 checkGeometry ?: boolean
2178+ checkBarcodeBackground ?: boolean
21692179
21702180 static fromJson ( jsonObject ?: any ) : LivenessParams | undefined {
21712181 if ( jsonObject == null || jsonObject == undefined ) return undefined
@@ -2178,6 +2188,7 @@ export class LivenessParams {
21782188 result . checkBlackAndWhiteCopy = jsonObject [ "checkBlackAndWhiteCopy" ]
21792189 result . checkDynaprint = jsonObject [ "checkDynaprint" ]
21802190 result . checkGeometry = jsonObject [ "checkGeometry" ]
2191+ result . checkBarcodeBackground = jsonObject [ "checkBarcodeBackground" ]
21812192
21822193 return result
21832194 }
@@ -2248,7 +2259,6 @@ export class ProcessParams {
22482259 updateOCRValidityByGlare ?: boolean
22492260 noGraphics ?: boolean
22502261 multiDocOnImage ?: boolean
2251- forceReadMrzBeforeLocate ?: boolean
22522262 parseBarcodes ?: boolean
22532263 shouldReturnPackageForReprocess ?: boolean
22542264 disablePerforationOCR ?: boolean
@@ -2271,6 +2281,7 @@ export class ProcessParams {
22712281 strictExpiryDate ?: boolean
22722282 debugSaveBinarySession ?: boolean
22732283 checkVDS ?: boolean
2284+ strictAgeCheck ?: boolean
22742285 barcodeParserType ?: number
22752286 perspectiveAngle ?: number
22762287 minDPI ?: number
@@ -2337,7 +2348,6 @@ export class ProcessParams {
23372348 result . updateOCRValidityByGlare = jsonObject [ "updateOCRValidityByGlare" ]
23382349 result . noGraphics = jsonObject [ "noGraphics" ]
23392350 result . multiDocOnImage = jsonObject [ "multiDocOnImage" ]
2340- result . forceReadMrzBeforeLocate = jsonObject [ "forceReadMrzBeforeLocate" ]
23412351 result . parseBarcodes = jsonObject [ "parseBarcodes" ]
23422352 result . shouldReturnPackageForReprocess = jsonObject [ "shouldReturnPackageForReprocess" ]
23432353 result . disablePerforationOCR = jsonObject [ "disablePerforationOCR" ]
@@ -2360,6 +2370,7 @@ export class ProcessParams {
23602370 result . strictExpiryDate = jsonObject [ "strictExpiryDate" ]
23612371 result . debugSaveBinarySession = jsonObject [ "debugSaveBinarySession" ]
23622372 result . checkVDS = jsonObject [ "checkVDS" ]
2373+ result . strictAgeCheck = jsonObject [ "strictAgeCheck" ]
23632374 result . barcodeParserType = jsonObject [ "barcodeParserType" ]
23642375 result . perspectiveAngle = jsonObject [ "perspectiveAngle" ]
23652376 result . minDPI = jsonObject [ "minDPI" ]
@@ -3759,6 +3770,8 @@ export const eLDS_ParsingErrorCodes = {
37593770 ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_ALGORITHM : 0x81000308 ,
37603771 ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_CERTIFICATE : 0x81000309 ,
37613772 ERR_LDS_VDS_NC_MISSING_OR_INCORRECT_SIG_VALUE : 0x8100030A ,
3773+ ERR_LDS_PACE_CAM_DATA_USAGE_INCORRECT : 0x8100012B ,
3774+ ERR_LDS_PACE_IM_MAPPING_DATA_INCORRECT : 0x8100012F ,
37623775}
37633776
37643777export const eRFID_CertificateType = {
@@ -3773,6 +3786,7 @@ export const eRFID_CertificateType = {
37733786 CT_LDS2 : 8 ,
37743787 CT_BCS : 9 ,
37753788 CT_BCSNC : 10 ,
3789+ CT_MDLS : 13 ,
37763790}
37773791
37783792export const RGLMeasureSystem = {
@@ -4594,6 +4608,11 @@ export const eLDS_ParsingNotificationCodes = {
45944608 NTF_LDS_ICAO_CERTIFICATE_SUBJECT_COUNTRY_NON_UPPER_CASE : 0x90000254 ,
45954609 NTFLDS_SI_STORAGE_CS_NONCONSISTANT : 0x91000111 ,
45964610 NTFLDS_SI_STORAGE_CS_PACE_CAM_KEY_MISSING : 0x91000112 ,
4611+ NTFLDS_ASN_CERTIFICATE_NONMATCHINGDSROLE : 0x90000011 ,
4612+ NTFLDS_MDL_CERTIFICATE_CHAIN_SOP_NONMATCHING : 0x90000400 ,
4613+ NTFLDS_MDL_CERTIFICATE_UNSUPPORTEDPUBLICKEYALGORITHM : 0x90000401 ,
4614+ NTFLDS_MDL_CERTIFICATE_UNSUPPORTEDSIGNATUREALGORITHM : 0x90000402 ,
4615+ NTFLDS_MDL_CERTIFICATE_UNSUPPORTEDPUBLICKEYPARAMS : 0x90000403 ,
45974616}
45984617
45994618export const eImageQualityCheckType = {
0 commit comments