diff --git a/riven/src/consts/champion.rs b/riven/src/consts/champion.rs
index 232b232..862dfff 100644
--- a/riven/src/consts/champion.rs
+++ b/riven/src/consts/champion.rs
@@ -59,6 +59,7 @@ newtype_enum! {
/// `GWEN` | "Gwen" | "Gwen" | 887
/// `HECARIM` | "Hecarim" | "Hecarim" | 120
/// `HEIMERDINGER` | "Heimerdinger" | "Heimerdinger" | 74
+ /// `HWEI` | "Hwei" | "Hwei" | 910
/// `ILLAOI` | "Illaoi" | "Illaoi" | 420
/// `IRELIA` | "Irelia" | "Irelia" | 39
/// `IVERN` | "Ivern" | "Ivern" | 427
@@ -271,6 +272,8 @@ newtype_enum! {
HECARIM = 120,
/// `74`.
HEIMERDINGER = 74,
+ /// `910`.
+ HWEI = 910,
/// `420`.
ILLAOI = 420,
/// `39`.
@@ -565,6 +568,7 @@ impl Champion {
Self::GWEN => Some("Gwen"),
Self::HECARIM => Some("Hecarim"),
Self::HEIMERDINGER => Some("Heimerdinger"),
+ Self::HWEI => Some("Hwei"),
Self::ILLAOI => Some("Illaoi"),
Self::IRELIA => Some("Irelia"),
Self::IVERN => Some("Ivern"),
@@ -754,6 +758,7 @@ impl Champion {
Self::GWEN => Some("Gwen"),
Self::HECARIM => Some("Hecarim"),
Self::HEIMERDINGER => Some("Heimerdinger"),
+ Self::HWEI => Some("Hwei"),
Self::ILLAOI => Some("Illaoi"),
Self::IRELIA => Some("Irelia"),
Self::IVERN => Some("Ivern"),
@@ -976,6 +981,7 @@ impl std::str::FromStr for Champion {
/* GWEN */ [ 'G', 'W', 'E', 'N'] => Ok(Champion::GWEN),
/* HECA */ [ 'H', 'E', 'C', 'A'] => Ok(Champion::HECARIM),
/* HEIM */ [ 'H', 'E', 'I', 'M'] => Ok(Champion::HEIMERDINGER),
+ /* HWEI */ [ 'H', 'W', 'E', 'I'] => Ok(Champion::HWEI),
/* ILLA */ [ 'I', 'L', 'L', 'A'] => Ok(Champion::ILLAOI),
/* IREL */ [ 'I', 'R', 'E', 'L'] => Ok(Champion::IRELIA),
/* IVER */ [ 'I', 'V', 'E', 'R'] => Ok(Champion::IVERN),
diff --git a/riven/src/endpoints.rs b/riven/src/endpoints.rs
index f3bfb0b..fe0b5e9 100644
--- a/riven/src/endpoints.rs
+++ b/riven/src/endpoints.rs
@@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version b554b42a14de337810d5a510d533453eaf6de207
+// Version a5a3a5f5d5f2a617a56302a0afac77c745e4fd56
//! Automatically generated endpoint handles.
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
@@ -572,27 +572,6 @@ pub struct ClashV1<'a> {
base: &'a RiotApi,
}
impl<'a> ClashV1<'a> {
- /// Get players by puuid
- /// ## Implementation Notes
- /// This endpoint returns a list of active Clash players for a given PUUID. If a summoner registers for multiple tournaments at the same time (e.g., Saturday and Sunday) then both registrations would appear in this list.
- /// # Parameters
- /// * `route` - Route to query.
- /// * `puuid` (required, in path)
- /// # Riot Developer API Reference
- /// `clash-v1.getPlayersByPUUID`
- ///
- /// Note: this method is automatically generated.
- pub fn get_players_by_puuid(&self, route: PlatformRoute, puuid: &str)
- -> impl Future