diff --git a/src/models/parsing-notification-codes.ts b/src/models/parsing-notification-codes.ts index bb56cf7..323dcf5 100644 --- a/src/models/parsing-notification-codes.ts +++ b/src/models/parsing-notification-codes.ts @@ -747,6 +747,14 @@ export enum ParsingNotificationCodes { */ ntfLDS_Biometrics_BDB_Data_ImageDataType = 2417623040, /** + * Notification - SI: Storage CS Non Consistant + */ + ntfLDS_SI_Storage_CS_NonConsistant = 2432696593, + /** + * Notification - SI: Storage CS PACE CAM key missing + */ + ntfLDS_SI_Storage_CS_PACE_CAM_Key_Missing = 2432696594, + /** * Biometrics: RB data incorrect */ ntfLDS_Biometrics_RB_Data_Incorrect = 2449539072, diff --git a/src/models/rfid-data-file-type.ts b/src/models/rfid-data-file-type.ts index 25c23a3..3bf7baa 100644 --- a/src/models/rfid-data-file-type.ts +++ b/src/models/rfid-data-file-type.ts @@ -64,6 +64,7 @@ export enum RfidDataFileType { ID_DG19 = 119, ID_DG20 = 120, ID_DG21 = 121, + ID_DG22 = 122, DL_COM = 150, DL_DG1 = 151, DL_DG2 = 152, diff --git a/src/models/text-field-type.ts b/src/models/text-field-type.ts index 507bf8b..b28b870 100644 --- a/src/models/text-field-type.ts +++ b/src/models/text-field-type.ts @@ -2629,7 +2629,11 @@ export enum TextFieldType { /** * Date of data expiry */ - FT_DATA_DATE_OF_EXPIRY = 704 + FT_DATA_DATE_OF_EXPIRY = 704, + /** + * Consul + */ + FT_CONSUL = 705 }