diff --git a/src/consts/champion.rs b/src/consts/champion.rs
index 84a83f9..31da2ba 100644
--- a/src/consts/champion.rs
+++ b/src/consts/champion.rs
@@ -156,6 +156,8 @@ pub enum Champion {
#[strum(to_string="Lee Sin", serialize="LeeSin")] LeeSin = 64,
/// Leona (`Leona`, 89).
#[strum(to_string="Leona", serialize="Leona")] Leona = 89,
+ /// Lillia (`Lillia`, 876).
+ #[strum(to_string="Lillia", serialize="Lillia")] Lillia = 876,
/// Lissandra (`Lissandra`, 127).
#[strum(to_string="Lissandra", serialize="Lissandra")] Lissandra = 127,
/// Lucian (`Lucian`, 236).
@@ -416,6 +418,7 @@ impl Champion {
Self::LeBlanc => "Leblanc",
Self::LeeSin => "LeeSin",
Self::Leona => "Leona",
+ Self::Lillia => "Lillia",
Self::Lissandra => "Lissandra",
Self::Lucian => "Lucian",
Self::Lulu => "Lulu",
diff --git a/src/endpoints.rs b/src/endpoints.rs
index f006e9a..f891aed 100644
--- a/src/endpoints.rs
+++ b/src/endpoints.rs
@@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version ef6be1735b0bc180c8f32dd2ba538793fdbe8ce6
+// Version af29e140a03aabbd77664b926746eecaae877d2b
//! Automatically generated endpoint handles.
@@ -167,6 +167,24 @@ impl RiotApi {
pub fn tournament_v4(&self) -> TournamentV4 {
TournamentV4 { base: self }
}
+ /// Returns a handle for accessing [ValContentV1](crate::endpoints::ValContentV1) endpoints.
+ /// # Riot Developer API Reference
+ /// `val-content-v1`
+ ///
+ /// Note: this method is automatically generated.
+ #[inline]
+ pub fn val_content_v1(&self) -> ValContentV1 {
+ ValContentV1 { base: self }
+ }
+ /// Returns a handle for accessing [ValMatchV1](crate::endpoints::ValMatchV1) endpoints.
+ /// # Riot Developer API Reference
+ /// `val-match-v1`
+ ///
+ /// Note: this method is automatically generated.
+ #[inline]
+ pub fn val_match_v1(&self) -> ValMatchV1 {
+ ValMatchV1 { base: self }
+ }
}
/// ChampionMasteryV4 endpoints handle, accessed by calling [`champion_mastery_v4()`](crate::RiotApi::champion_mastery_v4) on a [`RiotApi`](crate::RiotApi) instance.
@@ -605,7 +623,7 @@ impl<'a> MatchV4<'a> {
/// `match-v4.getMatchlist`
///
/// Note: this method is automatically generated.
- pub fn get_matchlist(&self, region: Region, encrypted_account_id: &str, begin_time: Option, begin_index: Option, champion: Option>, end_time: Option, end_index: Option, queue: Option>, season: Option>)
+ pub fn get_matchlist(&self, region: Region, encrypted_account_id: &str, begin_time: Option, begin_index: Option, champion: Option<&[crate::consts::Champion]>, end_time: Option, end_index: Option, queue: Option<&[crate::consts::Queue]>, season: Option<&[crate::consts::Season]>)
-> impl Future