diff --git a/src/consts/champion.rs b/src/consts/champion.rs
index 8a774e0..d60e980 100644
--- a/src/consts/champion.rs
+++ b/src/consts/champion.rs
@@ -300,6 +300,8 @@ pub enum Champion {
#[strum(to_string="Veigar")] Veigar = 45,
/// Vel'Koz (`Velkoz`, 161).
#[strum(to_string="Vel'Koz", serialize="Velkoz")] VelKoz = 161,
+ /// Vex (`Vex`, 711).
+ #[strum(to_string="Vex")] Vex = 711,
/// Vi (`Vi`, 254).
#[strum(to_string="Vi")] Vi = 254,
/// Viego (`Viego`, 234).
@@ -504,6 +506,7 @@ impl Champion {
Self::Vayne => "Vayne",
Self::Veigar => "Veigar",
Self::VelKoz => "Velkoz",
+ Self::Vex => "Vex",
Self::Vi => "Vi",
Self::Viego => "Viego",
Self::Viktor => "Viktor",
diff --git a/src/endpoints.rs b/src/endpoints.rs
index 8e26ae9..25a8e4a 100644
--- a/src/endpoints.rs
+++ b/src/endpoints.rs
@@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version 12e3bc69894adde9001edb3c64126cd90d4531bd
+// Version 0715d17267a9bec35845651ad3fb702c5bcbdaa1
//! Automatically generated endpoint handles.
@@ -140,15 +140,6 @@ impl RiotApi {
pub fn lor_status_v1(&self) -> LorStatusV1 {
LorStatusV1 { base: self }
}
- /// Returns a handle for accessing [MatchV4](crate::endpoints::MatchV4) endpoints.
- /// # Riot Developer API Reference
- /// `match-v4`
- ///
- /// Note: this method is automatically generated.
- #[inline]
- pub fn match_v4(&self) -> MatchV4 {
- MatchV4 { base: self }
- }
/// Returns a handle for accessing [MatchV5](crate::endpoints::MatchV5) endpoints.
/// # Riot Developer API Reference
/// `match-v5`
@@ -799,117 +790,6 @@ impl<'a> LorStatusV1<'a> {
}
-/// MatchV4 endpoints handle, accessed by calling [`match_v4()`](crate::RiotApi::match_v4) on a [`RiotApi`](crate::RiotApi) instance.
-/// # Riot Developer API Reference
-/// `match-v4`
-///
-/// Note: this struct is automatically generated.
-pub struct MatchV4<'a> {
- base: &'a RiotApi,
-}
-impl<'a> MatchV4<'a> {
- /// Get match IDs by tournament code.
- /// # Parameters
- /// * `region` - Region to query.
- /// * `tournamentCode` - The tournament code.
- /// # Riot Developer API Reference
- /// `match-v4.getMatchIdsByTournamentCode`
- ///
- /// Note: this method is automatically generated.
- pub fn get_match_ids_by_tournament_code(&self, region: Region, tournament_code: &str)
- -> impl Future