@@ -2663,6 +2663,7 @@ export class CustomizationMatrices {
26632663}
26642664
26652665export class Customization {
2666+ theme ?: number
26662667 showStatusMessages ?: boolean
26672668 showResultStatusMessages ?: boolean
26682669 showHelpAnimation ?: boolean
@@ -2743,6 +2744,7 @@ export class Customization {
27432744 if ( jsonObject == null || jsonObject == undefined ) return undefined
27442745 const result = new Customization
27452746
2747+ result . theme = jsonObject [ "theme" ]
27462748 result . showStatusMessages = jsonObject [ "showStatusMessages" ]
27472749 result . showResultStatusMessages = jsonObject [ "showResultStatusMessages" ]
27482750 result . showHelpAnimation = jsonObject [ "showHelpAnimation" ]
@@ -3571,7 +3573,7 @@ export const eRFID_ErrorCodes = {
35713573 RFID_ERROR_LAYER6_GENERAL_AUTH_FAILURE : 0x86000309 ,
35723574 RFID_ERROR_LAYER6_FILE_NOT_FOUND : 0x80006A82 ,
35733575 RFID_ERROR_LAYER6_FILE_EOF1 : 0x80006282 ,
3574- RFID_ERROR_LAYER6_FILE_EOF2 : 0x80006B00 ,
3576+ RFID_LAYER6_WRONG_PARAMS : 0x80006B00 ,
35753577 RFID_ERROR_LAYER6_INCORRECT_PARAMS : 0x80006A80 ,
35763578 RFID_ERROR_LAYER6_NO_REFERENCE_DATA : 0x80006A88 ,
35773579 RFID_ERROR_LAYER6_PWD_SUSPEND : 0x800063C1 ,
@@ -3856,6 +3858,11 @@ export const eMDLDeviceRetrieval = {
38563858 BLE : 2 ,
38573859}
38583860
3861+ export const CustomizationTheme = {
3862+ CLEAR : 0 ,
3863+ LIQUID_GLASS : 1 ,
3864+ }
3865+
38593866export const eRFID_BaudRate = {
38603867 rfbr_106 : 1 ,
38613868 rfbr_212 : 2 ,
@@ -5847,6 +5854,7 @@ export const eVisualFieldType = {
58475854 FT_JURISDICTION_SPECIFIC_DATA : 703 ,
58485855 FT_DATA_DATE_OF_EXPIRY : 704 ,
58495856 FT_CONSUL : 705 ,
5857+ FT_CANTON_REFERENCE : 706 ,
58505858}
58515859
58525860export const DocReaderOrientation = {
@@ -6104,6 +6112,7 @@ export const Enum = {
61046112 eRPRM_ResultType,
61056113 FrameShapeType,
61066114 eMDLDeviceRetrieval,
6115+ CustomizationTheme,
61076116 eRFID_BaudRate,
61086117 LineCap,
61096118 eRPRM_FieldVerificationResult,
0 commit comments