Skip to content

Commit 98acfc5

Browse files
author
regula-bot
committed
Merge remote-tracking branch 'origin/stable'
2 parents 7b3ea11 + 4cee841 commit 98acfc5

8 files changed

Lines changed: 34 additions & 14 deletions

File tree

src/Regula.DocumentReader.WebClient/Model/DatabaseDocument.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ protected DatabaseDocument() { }
4848
/// </summary>
4949
/// <param name="barcodeFields">Whether the document has a barcode. (required).</param>
5050
/// <param name="country">Country name. (required).</param>
51-
/// <param name="createad">Date when the document description was created in the database. (required).</param>
51+
/// <param name="created">Date when the document description was created in the database. (required).</param>
5252
/// <param name="docType">docType (required).</param>
5353
/// <param name="document">Document name. (required).</param>
5454
/// <param name="graphicFields">The presence of graphic fields in the document. (required).</param>
@@ -63,7 +63,7 @@ protected DatabaseDocument() { }
6363
/// <param name="deprecated">Whether the document is no longer in circulation..</param>
6464
/// <param name="icaoCode">ICAO country code..</param>
6565
/// <param name="docCodes">Document codes..</param>
66-
public DatabaseDocument(bool barcodeFields = default, string country = default, string createad = default, DocumentType docType = default, string document = default, bool graphicFields = default, int id = default, bool mrz = default, string? region = default, bool rfidChip = default, bool textFields = default, string updated = default, string? year = default, string? sovereignty = default, bool? deprecated = default, string? icaoCode = default, string? docCodes = default)
66+
public DatabaseDocument(bool barcodeFields = default, string country = default, string created = default, DocumentType docType = default, string document = default, bool graphicFields = default, int id = default, bool mrz = default, string? region = default, bool rfidChip = default, bool textFields = default, string updated = default, string? year = default, string? sovereignty = default, bool? deprecated = default, string? icaoCode = default, string? docCodes = default)
6767
{
6868
this.BarcodeFields = barcodeFields;
6969
// to ensure "country" is required (not null)
@@ -72,12 +72,12 @@ public DatabaseDocument(bool barcodeFields = default, string country = default,
7272
throw new ArgumentNullException("country is a required property for DatabaseDocument and cannot be null");
7373
}
7474
this.Country = country;
75-
// to ensure "createad" is required (not null)
76-
if (createad == null)
75+
// to ensure "created" is required (not null)
76+
if (created == null)
7777
{
78-
throw new ArgumentNullException("createad is a required property for DatabaseDocument and cannot be null");
78+
throw new ArgumentNullException("created is a required property for DatabaseDocument and cannot be null");
7979
}
80-
this.Createad = createad;
80+
this.Created = created;
8181
this.DocType = docType;
8282
// to ensure "document" is required (not null)
8383
if (document == null)
@@ -122,8 +122,8 @@ public DatabaseDocument(bool barcodeFields = default, string country = default,
122122
/// Date when the document description was created in the database.
123123
/// </summary>
124124
/// <value>Date when the document description was created in the database.</value>
125-
[DataMember(Name = "createad", IsRequired = true, EmitDefaultValue = true)]
126-
public string Createad { get; set; }
125+
[DataMember(Name = "created", IsRequired = true, EmitDefaultValue = true)]
126+
public string Created { get; set; }
127127

128128
/// <summary>
129129
/// Document name.
@@ -226,7 +226,7 @@ public override string ToString()
226226
sb.Append("class DatabaseDocument {\n");
227227
sb.Append(" BarcodeFields: ").Append(BarcodeFields).Append("\n");
228228
sb.Append(" Country: ").Append(Country).Append("\n");
229-
sb.Append(" Createad: ").Append(Createad).Append("\n");
229+
sb.Append(" Created: ").Append(Created).Append("\n");
230230
sb.Append(" DocType: ").Append(DocType).Append("\n");
231231
sb.Append(" Document: ").Append(Document).Append("\n");
232232
sb.Append(" GraphicFields: ").Append(GraphicFields).Append("\n");

src/Regula.DocumentReader.WebClient/Model/EncryptedRCLItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public EncryptedRCLItem(byte[] encryptedRCL = default)
5656
/// </summary>
5757
/// <value>Base64 encoded data</value>
5858
/*
59-
<example>[B@2e99d5e7</example>
59+
<example>[B@233a3f8d</example>
6060
*/
6161
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
6262
public byte[] EncryptedRCL { get; set; }

src/Regula.DocumentReader.WebClient/Model/EncryptedRCLResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public EncryptedRCLResult(byte[] encryptedRCL = default, int? bufLength = defaul
6262
/// </summary>
6363
/// <value>Base64 encoded data</value>
6464
/*
65-
<example>[B@2e99d5e7</example>
65+
<example>[B@233a3f8d</example>
6666
*/
6767
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
6868
public byte[] EncryptedRCL { get; set; }

src/Regula.DocumentReader.WebClient/Model/LicenseItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public LicenseItem(byte[] license = default)
5656
/// </summary>
5757
/// <value>Base64 encoded data</value>
5858
/*
59-
<example>[B@7696d06c</example>
59+
<example>[B@167722e7</example>
6060
*/
6161
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
6262
public byte[] License { get; set; }

src/Regula.DocumentReader.WebClient/Model/LicenseResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public LicenseResult(byte[] license = default, int? bufLength = default, int? li
6262
/// </summary>
6363
/// <value>Base64 encoded data</value>
6464
/*
65-
<example>[B@7696d06c</example>
65+
<example>[B@167722e7</example>
6666
*/
6767
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
6868
public byte[] License { get; set; }

src/Regula.DocumentReader.WebClient/Model/ParsingNotificationCodes.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -947,6 +947,16 @@ public enum ParsingNotificationCodes: long
947947
/// </summary>
948948
ntfLDS_Biometrics_BDB_Data_ImageDataType = 2417623040,
949949

950+
/// <summary>
951+
/// Enum ntfLDS_SI_Storage_CS_NonConsistant for value: 2432696593
952+
/// </summary>
953+
ntfLDS_SI_Storage_CS_NonConsistant = 2432696593,
954+
955+
/// <summary>
956+
/// Enum ntfLDS_SI_Storage_CS_PACE_CAM_Key_Missing for value: 2432696594
957+
/// </summary>
958+
ntfLDS_SI_Storage_CS_PACE_CAM_Key_Missing = 2432696594,
959+
950960
/// <summary>
951961
/// Enum ntfLDS_Biometrics_RB_Data_Incorrect for value: 2449539072
952962
/// </summary>

src/Regula.DocumentReader.WebClient/Model/RfidDataFileType.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,11 @@ public enum RfidDataFileType
282282
/// </summary>
283283
ID_DG21 = 121,
284284

285+
/// <summary>
286+
/// Enum ID_DG22 for value: 122
287+
/// </summary>
288+
ID_DG22 = 122,
289+
285290
/// <summary>
286291
/// Enum DL_COM for value: 150
287292
/// </summary>

src/Regula.DocumentReader.WebClient/Model/TextFieldType.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3299,7 +3299,12 @@ public enum TextFieldType
32993299
/// <summary>
33003300
/// Enum FT_DATA_DATE_OF_EXPIRY for value: 704
33013301
/// </summary>
3302-
FT_DATA_DATE_OF_EXPIRY = 704
3302+
FT_DATA_DATE_OF_EXPIRY = 704,
3303+
3304+
/// <summary>
3305+
/// Enum FT_CONSUL for value: 705
3306+
/// </summary>
3307+
FT_CONSUL = 705
33033308
}
33043309

33053310
}

0 commit comments

Comments
 (0)