-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to client version 9.18 and fix unnecessary slash
- Loading branch information
Showing
59 changed files
with
506 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/main/java/generated/ClientConfigAuthenticatedConnection.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package generated; | ||
|
||
public class ClientConfigAuthenticatedConnection { | ||
|
||
public String authToken; | ||
public Integer connectionId; | ||
public Boolean subscribed; | ||
|
||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/generated/ClientConfigConfigNamespaceUpdate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class ClientConfigConfigNamespaceUpdate { | ||
|
||
public List<String> player; | ||
@SerializedName("public") | ||
public List<String> publicField; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package generated; | ||
|
||
public class LolCatalogGameDataItemReference { | ||
|
||
public String contentId; | ||
public String inventoryType; | ||
public Integer itemId; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolCatalogGameDataStatstone { | ||
|
||
public LolCatalogGameDataItemReference boundChampion; | ||
public String category; | ||
public String contentId; | ||
public String description; | ||
public String iconFull; | ||
public Boolean isDuration; | ||
public Boolean isEpic; | ||
public Boolean isRetired; | ||
public Integer itemId; | ||
public List<Integer> milestones; | ||
public String name; | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/generated/LolCatalogGameDataStatstoneSet.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolCatalogGameDataStatstoneSet { | ||
|
||
public String name; | ||
public List<LolCatalogGameDataStatstone> statstones; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolChatTranslateRequest { | ||
|
||
public List<String> keys; | ||
public String product_id; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolChatTranslateResponse { | ||
|
||
public List<LolChatTranslateResult> results; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package generated; | ||
|
||
public class LolChatTranslateResult { | ||
|
||
public Boolean found; | ||
public String key; | ||
public String product_id; | ||
public String value; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/main/java/generated/LolRiotclientUpgraderConfigReadinessEnum.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
src/main/java/generated/LolRiotclientUpgraderConfigStatus.java
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/main/java/generated/LolRiotclientUpgraderConfigType.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package generated; | ||
|
||
public class LolStatstonesCatalogBundle { | ||
|
||
public LolStatstonesCatalogItemDetails item; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package generated; | ||
|
||
public class LolStatstonesCatalogBundlePrice { | ||
|
||
public Integer cost; | ||
public String currency; | ||
|
||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/generated/LolStatstonesCatalogItemDetails.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolStatstonesCatalogItemDetails { | ||
|
||
public String inventoryType; | ||
public Integer itemId; | ||
public String itemInstanceId; | ||
public List<LolStatstonesCatalogBundlePrice> prices; | ||
public String releaseDate; | ||
public String subInventoryType; | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/generated/LolStatstonesChampionStatstoneSetSummary.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package generated; | ||
|
||
public class LolStatstonesChampionStatstoneSetSummary { | ||
|
||
public String name; | ||
public Integer stonesAvailable; | ||
public Integer stonesIlluminated; | ||
public Integer stonesOwned; | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/generated/LolStatstonesChampionStatstoneSummary.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolStatstonesChampionStatstoneSummary { | ||
|
||
public Integer championId; | ||
public List<LolStatstonesChampionStatstoneSetSummary> sets; | ||
public Integer stonesAvailable; | ||
public Integer stonesIlluminated; | ||
public Integer stonesOwned; | ||
|
||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/generated/LolStatstonesCollectionsChampion.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package generated; | ||
|
||
public class LolStatstonesCollectionsChampion { | ||
|
||
public Integer id; | ||
public String name; | ||
public String squarePortraitPath; | ||
|
||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/generated/LolStatstonesEogNotificationEnvelope.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package generated; | ||
|
||
import java.util.List; | ||
|
||
public class LolStatstonesEogNotificationEnvelope { | ||
|
||
public List<LolStatstonesPersonalBestNotification> othersPersonalBests; | ||
public List<LolStatstonesMilestoneProgressNotification> selfMilestoneProgress; | ||
public List<LolStatstonesPersonalBestNotification> selfPersonalBests; | ||
public List<LolStatstonesStatstoneProgress> selfStatstoneProgress; | ||
|
||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/generated/LolStatstonesGameDataItemReference.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package generated; | ||
|
||
public class LolStatstonesGameDataItemReference { | ||
|
||
public String contentId; | ||
public String inventoryType; | ||
public Integer itemId; | ||
|
||
} |
Oops, something went wrong.