@@ -2133,6 +2133,7 @@ export class ProcessParams {
21332133 generateDTCVC ?: boolean
21342134 strictDLCategoryExpiry ?: boolean
21352135 generateAlpha2Codes ?: boolean
2136+ disableAuthResolutionFilter ?: boolean
21362137 barcodeParserType ?: number
21372138 perspectiveAngle ?: number
21382139 minDPI ?: number
@@ -2213,6 +2214,7 @@ export class ProcessParams {
22132214 result . generateDTCVC = jsonObject [ "generateDTCVC" ]
22142215 result . strictDLCategoryExpiry = jsonObject [ "strictDLCategoryExpiry" ]
22152216 result . generateAlpha2Codes = jsonObject [ "generateAlpha2Codes" ]
2217+ result . disableAuthResolutionFilter = jsonObject [ "disableAuthResolutionFilter" ]
22162218 result . barcodeParserType = jsonObject [ "barcodeParserType" ]
22172219 result . perspectiveAngle = jsonObject [ "perspectiveAngle" ]
22182220 result . minDPI = jsonObject [ "minDPI" ]
@@ -2422,6 +2424,7 @@ export class Customization {
24222424 changeFrameButtonExpandImage ?: string
24232425 changeFrameButtonCollapseImage ?: string
24242426 livenessAnimationImage ?: string
2427+ multipageButtonImage ?: string
24252428 statusTextFont ?: Font
24262429 resultStatusTextFont ?: Font
24272430 multipageButtonTextFont ?: Font
@@ -2497,6 +2500,7 @@ export class Customization {
24972500 result . changeFrameButtonExpandImage = jsonObject [ "changeFrameButtonExpandImage" ]
24982501 result . changeFrameButtonCollapseImage = jsonObject [ "changeFrameButtonCollapseImage" ]
24992502 result . livenessAnimationImage = jsonObject [ "livenessAnimationImage" ]
2503+ result . multipageButtonImage = jsonObject [ "multipageButtonImage" ]
25002504 result . statusTextFont = Font . fromJson ( jsonObject [ "statusTextFont" ] )
25012505 result . resultStatusTextFont = Font . fromJson ( jsonObject [ "resultStatusTextFont" ] )
25022506 result . multipageButtonTextFont = Font . fromJson ( jsonObject [ "multipageButtonTextFont" ] )
@@ -5134,6 +5138,8 @@ export const eVisualFieldType = {
51345138 FT_MVC_AGENCY : 695 ,
51355139 FT_ISSUING_STATE_CODE_ALPHA2 : 696 ,
51365140 FT_NATIONALITY_CODE_ALPHA2 : 697 ,
5141+ FT_FIRST_ISSUE_DATE_CHECKDIGIT : 698 ,
5142+ FT_FIRST_ISSUE_DATE_CHECKSUM : 699 ,
51375143}
51385144
51395145export const DocReaderOrientation = {
@@ -5418,6 +5424,8 @@ export default class DocumentReader {
54185424 static setTenant ( tenant : string | null , successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54195425 static getEnv ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54205426 static setEnv ( env : string | null , successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
5427+ static getLocale ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
5428+ static setLocale ( locale : string | null , successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54215429 static getFunctionality ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54225430 static setFunctionality ( functionality : Functionality , successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54235431 static getProcessParams ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
@@ -5451,6 +5459,9 @@ export default class DocumentReader {
54515459 static clearPKDCertificates ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54525460 static startNewSession ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54535461 static connectBluetoothDevice ( btDeviceName : string , successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
5462+ static btDeviceRequestFlashing ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
5463+ static btDeviceRequestFlashingFullIR ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
5464+ static btDeviceRequestTurnOffAll ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54545465 static setLocalizationDictionary ( dictionary : Record < string , string > , successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54555466 static getLicense ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
54565467 static getAvailableScenarios ( successCallback : ( response : string ) => void , errorCallback ?: ( error : string ) => void ) : void
0 commit comments