From 81696739b35ab0acb45300906feae5b0f3e661e7 Mon Sep 17 00:00:00 2001 From: Obed Vazquez Date: Mon, 28 Oct 2024 05:14:53 -0600 Subject: [PATCH 1/3] RIOT's API support added. Added support for new RIOT account information provided in the summoner data @ endpoint `/lol-summoner/v1/current-summoner` reflected in the DTO `LolSummonerSummoner.java` file and class. --- src/main/java/generated/LolSummonerSummoner.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/generated/LolSummonerSummoner.java b/src/main/java/generated/LolSummonerSummoner.java index 7c53a1b..b38d894 100644 --- a/src/main/java/generated/LolSummonerSummoner.java +++ b/src/main/java/generated/LolSummonerSummoner.java @@ -1,9 +1,14 @@ package generated; +/** + * League Client endpoint `/lol-summoner/v1/current-summoner` response. + */ +@SuppressWarnings("unused") public class LolSummonerSummoner { public Long accountId; public String displayName; + public String gameName; public String internalName; public Boolean nameChangeFlag; public Integer percentCompleteForNextLevel; @@ -13,6 +18,7 @@ public class LolSummonerSummoner { public LolSummonerSummonerRerollPoints rerollPoints; public Long summonerId; public Integer summonerLevel; + public String tagLine; public Boolean unnamed; public Long xpSinceLastLevel; public Long xpUntilNextLevel; From ce8a485b5397ecc30e4192f8f48ce51becef9a79 Mon Sep 17 00:00:00 2001 From: Obed Vazquez Date: Mon, 28 Oct 2024 05:17:32 -0600 Subject: [PATCH 2/3] Bumped project version. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 186d7aa..283791b 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.stirante lol-client-java-api - 1.2.11-SNAPSHOT + 1.2.12-SNAPSHOT lol-client-java-api Simple library which provides access to internal League of Legends Client API. https://github.com/stirante/lol-client-java-api From 19c409bfec0e253bb25e8ca1dad4fbb32bb35713 Mon Sep 17 00:00:00 2001 From: Obed Vazquez Date: Mon, 28 Oct 2024 05:18:54 -0600 Subject: [PATCH 3/3] Bumped README.md version. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e7fd6df..8b662b6 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ Snapshots of all the latest changes are available in my personal nexus repositor com.stirante lol-client-java-api - 1.2.11-SNAPSHOT + 1.2.12-SNAPSHOT ```