From 7a48c273d240f43c1de6cf4c111f22287ef0eb32 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 10 Sep 2025 10:39:55 +0000 Subject: [PATCH] Commit: 87e31c72 --- client/.openapi-generator/FILES | 1 - .../webclient/model/RfidApplicationType.java | 9 +++------ .../regula/documentreader/webclient/model/RfidDG1.java | 10 ++++------ 3 files changed, 7 insertions(+), 13 deletions(-) diff --git a/client/.openapi-generator/FILES b/client/.openapi-generator/FILES index 241a200e..9b176246 100755 --- a/client/.openapi-generator/FILES +++ b/client/.openapi-generator/FILES @@ -191,7 +191,6 @@ src/main/generated/com/regula/documentreader/webclient/model/RfidCertificateType src/main/generated/com/regula/documentreader/webclient/model/RfidDG1.java src/main/generated/com/regula/documentreader/webclient/model/RfidDataFile.java src/main/generated/com/regula/documentreader/webclient/model/RfidDataFileType.java -src/main/generated/com/regula/documentreader/webclient/model/RfidDataGroupTypeTag.java src/main/generated/com/regula/documentreader/webclient/model/RfidDistinguishedName.java src/main/generated/com/regula/documentreader/webclient/model/RfidLocation.java src/main/generated/com/regula/documentreader/webclient/model/RfidOrigin.java diff --git a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidApplicationType.java b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidApplicationType.java index 750ec61e..8c4bc48f 100644 --- a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidApplicationType.java +++ b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidApplicationType.java @@ -26,8 +26,8 @@ @JsonAdapter(RfidApplicationType.Adapter.class) public enum RfidApplicationType { - /** Not defined */ - UNSPECIFIED(0), + /** Root files */ + ROOT_FILES(0), /** ePassport application */ E_PASSPORT(1), @@ -51,10 +51,7 @@ public enum RfidApplicationType { LDS2_AddBiometrics(7), /** Digital Travel Credentials */ - eDTC_PC(8), - - /** Master File */ - ROOT_FILES(0); + eDTC_PC(8); private Integer value; diff --git a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidDG1.java b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidDG1.java index d5f8adc0..f9c28f8b 100644 --- a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidDG1.java +++ b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidDG1.java @@ -39,7 +39,7 @@ public class RfidDG1 { @SerializedName(SERIALIZED_NAME_TYPE) @javax.annotation.Nonnull - private RfidDataGroupTypeTag type; + private Integer type; public static final String SERIALIZED_NAME_DOCUMENT_I_D = "DocumentID"; @@ -134,7 +134,7 @@ public class RfidDG1 { public RfidDG1() {} - public RfidDG1 type(@javax.annotation.Nonnull RfidDataGroupTypeTag type) { + public RfidDG1 type(@javax.annotation.Nonnull Integer type) { this.type = type; return this; } @@ -145,11 +145,11 @@ public RfidDG1 type(@javax.annotation.Nonnull RfidDataGroupTypeTag type) { * @return type */ @javax.annotation.Nonnull - public RfidDataGroupTypeTag getType() { + public Integer getType() { return type; } - public void setType(@javax.annotation.Nonnull RfidDataGroupTypeTag type) { + public void setType(@javax.annotation.Nonnull Integer type) { this.type = type; } @@ -602,8 +602,6 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti } } JsonObject jsonObj = jsonElement.getAsJsonObject(); - // validate the required field `Type` - RfidDataGroupTypeTag.validateJsonElement(jsonObj.get("Type")); // validate the required field `DocumentID` DocumentFormat.validateJsonElement(jsonObj.get("DocumentID")); if (!jsonObj.get("DocumentType").isJsonPrimitive()) {