diff --git a/riven/src/endpoints.rs b/riven/src/endpoints.rs
index b40bf84..695e2d8 100644
--- a/riven/src/endpoints.rs
+++ b/riven/src/endpoints.rs
@@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version 595cfab83bc31def1d3d161df5ca26f99033f539
+// Version 0715d17267a9bec35845651ad3fb702c5bcbdaa1
//! Automatically generated endpoint handles.
@@ -142,15 +142,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`
@@ -991,136 +982,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.
-#[repr(transparent)]
-pub struct MatchV4<'a> {
- base: &'a RiotApi,
-}
-impl<'a> MatchV4<'a> {
- /// Get match IDs by tournament code.
- /// # Parameters
- /// * `route` - Route to query.
- /// * `tournament_code` (required, in path) - 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, route: PlatformRoute, tournament_code: &str)
- -> impl Future