diff --git a/riven/src/consts/route.rs b/riven/src/consts/route.rs
index 55d2597..ca14e1b 100644
--- a/riven/src/consts/route.rs
+++ b/riven/src/consts/route.rs
@@ -126,9 +126,10 @@ pub enum PlatformRoute {
#[strum(to_string="OC1", serialize="OCE")]
OC1 = 24,
- /// Philippines
+ /// Philippines, moved into `sg2` on 2025-01-08.
///
/// `32` (riotapi-schema ID/repr)
+ #[deprecated]
#[strum(to_string="PH2", serialize="PH")]
PH2 = 32,
@@ -137,15 +138,16 @@ pub enum PlatformRoute {
/// `25` (riotapi-schema ID/repr)
RU = 25,
- /// Singapore
+ /// Singapore, Thailand, Philippines
///
/// `33` (riotapi-schema ID/repr)
#[strum(to_string="SG2", serialize="SG")]
SG2 = 33,
- /// Thailand
+ /// Thailand, moved into `sg2` on 2025-01-08.
///
/// `34` (riotapi-schema ID/repr)
+ #[deprecated]
#[strum(to_string="TH2", serialize="TH")]
TH2 = 34,
diff --git a/riven/src/endpoints.rs b/riven/src/endpoints.rs
index 552929d..25da1c9 100644
--- a/riven/src/endpoints.rs
+++ b/riven/src/endpoints.rs
@@ -8,7 +8,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version dfff73340b38e0d7df45f9c60a9b9a4792ad489e
+// Version 3db3221cc1b657c2acddf6ce02428680f38ad9aa
//! Automatically generated endpoint handles.
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
@@ -525,6 +525,27 @@ pub struct ClashV1<'a> {
base: &'a RiotApi,
}
impl<'a> ClashV1<'a> {
+ /// Get players by puuid
+ /// ## Implementation Notes
+ /// This endpoint returns a list of active Clash players for a given PUUID. If a summoner registers for multiple tournaments at the same time (e.g., Saturday and Sunday) then both registrations would appear in this list.
+ /// # Parameters
+ /// * `route` - Route to query.
+ /// * `puuid` (required, in path)
+ /// # Riot Developer API Reference
+ /// `clash-v1.getPlayersByPUUID`
+ ///
+ /// Note: this method is automatically generated.
+ pub fn get_players_by_puuid(&self, route: PlatformRoute, puuid: &str)
+ -> impl Future