Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ class ParsingNotificationCodes(int, Enum):
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Roll = 2417491968
ntfLDS_Biometrics_BDB_Data_FaceImageType = 2417557504
ntfLDS_Biometrics_BDB_Data_ImageDataType = 2417623040
ntfLDS_SI_Storage_CS_NonConsistant = 2432696593
ntfLDS_SI_Storage_CS_PACE_CAM_Key_Missing = 2432696594
ntfLDS_Biometrics_RB_Data_Incorrect = 2449539072
ntfLDS_Biometrics_RB_Item_Incorrect = 2449604608
ntfLDS_Biometrics_RB_Item_Missing = 2449670144
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class RfidDataFileType(int, Enum):
ID_DG19 = 119
ID_DG20 = 120
ID_DG21 = 121
ID_DG22 = 122
DL_COM = 150
DL_DG1 = 151
DL_DG2 = 152
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,7 @@ class TextFieldType(int, Enum):
FT_NON_DOMICILED_INDICATOR = 702
FT_JURISDICTION_SPECIFIC_DATA = 703
FT_DATA_DATE_OF_EXPIRY = 704
FT_CONSUL = 705

@classmethod
def from_json(cls, json_str: str) -> Self:
Expand Down
Loading