diff --git a/riven/src/consts/champion.rs b/riven/src/consts/champion.rs
index 80a0038..05efb27 100644
--- a/riven/src/consts/champion.rs
+++ b/riven/src/consts/champion.rs
@@ -28,6 +28,7 @@ newtype_enum! {
/// `AURELION_SOL` | "Aurelion Sol" | "AurelionSol" | 136
/// `AZIR` | "Azir" | "Azir" | 268
/// `BARD` | "Bard" | "Bard" | 432
+ /// `BEL_VETH` | "Bel'Veth" | "Belveth" | 200
/// `BLITZCRANK` | "Blitzcrank" | "Blitzcrank" | 53
/// `BRAND` | "Brand" | "Brand" | 63
/// `BRAUM` | "Braum" | "Braum" | 201
@@ -203,6 +204,8 @@ newtype_enum! {
AZIR = 268,
/// `432`.
BARD = 432,
+ /// `200`.
+ BEL_VETH = 200,
/// `53`.
BLITZCRANK = 53,
/// `63`.
@@ -515,6 +518,7 @@ impl Champion {
Self::AURELION_SOL => Some("Aurelion Sol"),
Self::AZIR => Some("Azir"),
Self::BARD => Some("Bard"),
+ Self::BEL_VETH => Some("Bel'Veth"),
Self::BLITZCRANK => Some("Blitzcrank"),
Self::BRAND => Some("Brand"),
Self::BRAUM => Some("Braum"),
@@ -673,6 +677,7 @@ impl Champion {
///
/// Field | Name | Identifier | Id
/// ---|---|---|---
+ /// `BEL_VETH` | "Bel'Veth" | "Belveth" | 200
/// `CHO_GATH` | "Cho'Gath" | "Chogath" | 31
/// `FIDDLESTICKS` | "Fiddlesticks" | "FiddleSticks" | 9
/// `KAI_SA` | "Kai'Sa" | "Kaisa" | 145
@@ -697,6 +702,7 @@ impl Champion {
Self::AURELION_SOL => Some("AurelionSol"),
Self::AZIR => Some("Azir"),
Self::BARD => Some("Bard"),
+ Self::BEL_VETH => Some("Belveth"),
Self::BLITZCRANK => Some("Blitzcrank"),
Self::BRAND => Some("Brand"),
Self::BRAUM => Some("Braum"),
@@ -910,6 +916,8 @@ impl std::str::FromStr for Champion {
/* AURE */ [ 'A', 'U', 'R', 'E'] => Ok(Champion::AURELION_SOL),
/* AZIR */ [ 'A', 'Z', 'I', 'R'] => Ok(Champion::AZIR),
/* BARD */ [ 'B', 'A', 'R', 'D'] => Ok(Champion::BARD),
+ /* BELV */ [ 'B', 'E', 'L', 'V'] => Ok(Champion::BEL_VETH),
+ /* BEL */ [ 'B', 'E', 'L', '\0'] => Ok(Champion::BEL_VETH),
/* BLIT */ [ 'B', 'L', 'I', 'T'] => Ok(Champion::BLITZCRANK),
/* BRAN */ [ 'B', 'R', 'A', 'N'] => Ok(Champion::BRAND),
/* BRAU */ [ 'B', 'R', 'A', 'U'] => Ok(Champion::BRAUM),
diff --git a/riven/src/endpoints.rs b/riven/src/endpoints.rs
index 49a7969..af2b9b9 100644
--- a/riven/src/endpoints.rs
+++ b/riven/src/endpoints.rs
@@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version 4969d1e8bcccde31f0dfc173cfb49652bea2b35c
+// Version 8afe7b8e927da46a6f41108e6dc7e1a8c71d89b9
//! Automatically generated endpoint handles.
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
@@ -801,7 +801,7 @@ impl<'a> LolChallengesV1<'a> {
/// `lol-challenges-v1.getChallengeLeaderboards`
///
/// Note: this method is automatically generated.
- pub fn get_challenge_leaderboards(&self, route: PlatformRoute, challenge_id: i64, level: &str, limit: Option)
+ pub fn get_challenge_leaderboards(&self, route: PlatformRoute, challenge_id: i64, level: crate::consts::Tier, limit: Option)
-> impl Future