diff --git a/src/consts/champion.rs b/src/consts/champion.rs
index a9682f3..6911480 100644
--- a/src/consts/champion.rs
+++ b/src/consts/champion.rs
@@ -232,6 +232,8 @@ pub enum Champion {
#[strum(to_string="Sejuani", serialize="Sejuani")] Sejuani = 113,
/// Senna (`Senna`, 235).
#[strum(to_string="Senna", serialize="Senna")] Senna = 235,
+ /// Seraphine (`Seraphine`, 147).
+ #[strum(to_string="Seraphine", serialize="Seraphine")] Seraphine = 147,
/// Sett (`Sett`, 875).
#[strum(to_string="Sett", serialize="Sett")] Sett = 875,
/// Shaco (`Shaco`, 35).
@@ -460,6 +462,7 @@ impl Champion {
Self::Samira => "Samira",
Self::Sejuani => "Sejuani",
Self::Senna => "Senna",
+ Self::Seraphine => "Seraphine",
Self::Sett => "Sett",
Self::Shaco => "Shaco",
Self::Shen => "Shen",
diff --git a/src/endpoints.rs b/src/endpoints.rs
index c5becbf..7e7dea2 100644
--- a/src/endpoints.rs
+++ b/src/endpoints.rs
@@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version c3b3f5733c36c6f30546aa9ed598c05d39c670be
+// Version 5aeaf3fd13c4a91f0fc65318334dd1247b8376cd
//! Automatically generated endpoint handles.
@@ -86,6 +86,15 @@ impl RiotApi {
pub fn lol_status_v3(&self) -> LolStatusV3 {
LolStatusV3 { base: self }
}
+ /// Returns a handle for accessing [LorMatchV1](crate::endpoints::LorMatchV1) endpoints.
+ /// # Riot Developer API Reference
+ /// `lor-match-v1`
+ ///
+ /// Note: this method is automatically generated.
+ #[inline]
+ pub fn lor_match_v1(&self) -> LorMatchV1 {
+ LorMatchV1 { base: self }
+ }
/// Returns a handle for accessing [LorRankedV1](crate::endpoints::LorRankedV1) endpoints.
/// # Riot Developer API Reference
/// `lor-ranked-v1`
@@ -589,6 +598,47 @@ impl<'a> LolStatusV3<'a> {
}
+/// LorMatchV1 endpoints handle, accessed by calling [`lor_match_v1()`](crate::RiotApi::lor_match_v1) on a [`RiotApi`](crate::RiotApi) instance.
+/// # Riot Developer API Reference
+/// `lor-match-v1`
+///
+/// Note: this struct is automatically generated.
+pub struct LorMatchV1<'a> {
+ base: &'a RiotApi,
+}
+impl<'a> LorMatchV1<'a> {
+ /// Get a list of match ids by PUUID
+ /// # Parameters
+ /// * `region` - Region to query.
+ /// * `puuid`
+ /// # Riot Developer API Reference
+ /// `lor-match-v1.getMatchIdsByPUUID`
+ ///
+ /// Note: this method is automatically generated.
+ pub fn get_match_ids_by_puuid(&self, region: Region, puuid: &str)
+ -> impl Future