diff --git a/riven/src/endpoints.rs b/riven/src/endpoints.rs
index fa3fcc6..6fba9a5 100644
--- a/riven/src/endpoints.rs
+++ b/riven/src/endpoints.rs
@@ -8,7 +8,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version 879affafe206ccc5b48127e68c0bd466fcc73c84
+// Version b7bbeb7db6b83260e4a4252fa4f53b8ca5d57ab0
//! Automatically generated endpoint handles.
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
@@ -162,6 +162,15 @@ impl RiotApi {
pub fn match_v5(&self) -> MatchV5 {
MatchV5 { base: self }
}
+ /// Returns a handle for accessing [SpectatorTftV5](crate::endpoints::SpectatorTftV5) endpoints.
+ /// # Riot Developer API Reference
+ /// `spectator-tft-v5`
+ ///
+ /// Note: this method is automatically generated.
+ #[inline]
+ pub fn spectator_tft_v5(&self) -> SpectatorTftV5 {
+ SpectatorTftV5 { base: self }
+ }
/// Returns a handle for accessing [SpectatorV4](crate::endpoints::SpectatorV4) endpoints.
/// # Riot Developer API Reference
/// `spectator-v4`
@@ -1231,6 +1240,55 @@ impl<'a> MatchV5<'a> {
}
+/// SpectatorTftV5 endpoints handle, accessed by calling [`spectator_tft_v5()`](crate::RiotApi::spectator_tft_v5) on a [`RiotApi`](crate::RiotApi) instance.
+/// # Riot Developer API Reference
+/// `spectator-tft-v5`
+///
+/// Note: this struct is automatically generated.
+#[repr(transparent)]
+pub struct SpectatorTftV5<'a> {
+ base: &'a RiotApi,
+}
+impl<'a> SpectatorTftV5<'a> {
+ /// Get current game information for the given puuid.
+ /// # Parameters
+ /// * `route` - Route to query.
+ /// * `encrypted_puuid` (required, in path) - The puuid of the summoner.
+ /// # Riot Developer API Reference
+ /// `spectator-tft-v5.getCurrentGameInfoByPuuid`
+ ///
+ /// Note: this method is automatically generated.
+ pub fn get_current_game_info_by_puuid(&self, route: PlatformRoute, encrypted_puuid: &str)
+ -> impl Future