@@ -1838,6 +1838,7 @@ export class Functionality {
18381838 btDeviceName ?: string
18391839 zoomFactor ?: number
18401840 exposure ?: number
1841+ videoRecordingSizeDownscaleFactor ?: number
18411842 excludedCamera2Models ?: string [ ]
18421843 cameraSize ?: CameraSize
18431844 videoSessionPreset ?: number
@@ -1875,6 +1876,7 @@ export class Functionality {
18751876 result . btDeviceName = jsonObject [ "btDeviceName" ]
18761877 result . zoomFactor = jsonObject [ "zoomFactor" ]
18771878 result . exposure = jsonObject [ "exposure" ]
1879+ result . videoRecordingSizeDownscaleFactor = jsonObject [ "videoRecordingSizeDownscaleFactor" ]
18781880 result . excludedCamera2Models = [ ]
18791881 if ( jsonObject [ "excludedCamera2Models" ] != null ) {
18801882 for ( const i in jsonObject [ "excludedCamera2Models" ] ) {
@@ -1962,7 +1964,7 @@ export class RFIDParams {
19621964export class FaceApiSearchParams {
19631965 limit ?: number
19641966 threshold ?: number
1965- groupIds ?: number [ ]
1967+ groupIds ?: string [ ]
19661968
19671969 static fromJson ( jsonObject ?: any ) : FaceApiSearchParams | undefined {
19681970 if ( jsonObject == null || jsonObject == undefined ) return undefined
@@ -2134,6 +2136,7 @@ export class ProcessParams {
21342136 strictDLCategoryExpiry ?: boolean
21352137 generateAlpha2Codes ?: boolean
21362138 disableAuthResolutionFilter ?: boolean
2139+ strictSecurityChecks ?: boolean
21372140 barcodeParserType ?: number
21382141 perspectiveAngle ?: number
21392142 minDPI ?: number
@@ -2215,6 +2218,7 @@ export class ProcessParams {
22152218 result . strictDLCategoryExpiry = jsonObject [ "strictDLCategoryExpiry" ]
22162219 result . generateAlpha2Codes = jsonObject [ "generateAlpha2Codes" ]
22172220 result . disableAuthResolutionFilter = jsonObject [ "disableAuthResolutionFilter" ]
2221+ result . strictSecurityChecks = jsonObject [ "strictSecurityChecks" ]
22182222 result . barcodeParserType = jsonObject [ "barcodeParserType" ]
22192223 result . perspectiveAngle = jsonObject [ "perspectiveAngle" ]
22202224 result . minDPI = jsonObject [ "minDPI" ]
@@ -3601,6 +3605,7 @@ export const eCheckDiagnose = {
36013605 TEXT_COLOR_SHOULD_BE_GREEN : 131 ,
36023606 TEXT_COLOR_SHOULD_BE_RED : 132 ,
36033607 TEXT_SHOULD_BE_BLACK : 133 ,
3608+ SECURITY_TEXT_IS_ABSENT : 134 ,
36043609 BARCODE_WAS_READ_WITH_ERRORS : 140 ,
36053610 BARCODE_DATA_FORMAT_ERROR : 141 ,
36063611 BARCODE_SIZE_PARAMS_ERROR : 142 ,
0 commit comments