diff --git a/riven/src/consts/game_mode.rs b/riven/src/consts/game_mode.rs
index 8981ca9..8f1317f 100644
--- a/riven/src/consts/game_mode.rs
+++ b/riven/src/consts/game_mode.rs
@@ -29,7 +29,7 @@ pub enum GameMode {
ASCENSION,
/// Blood Hunt Assassin games
ASSASSINATE,
- /// 2v2v2v2
+ /// 2v2v2v2 Arena
CHERRY,
/// Classic Summoner's Rift and Twisted Treeline games
CLASSIC,
@@ -59,6 +59,8 @@ pub enum GameMode {
SIEGE,
/// Star Guardian Invasion games
STARGUARDIAN,
+ /// Swarm
+ STRAWBERRY,
/// Teamfight Tactics.
TFT,
/// Tutorial games
diff --git a/riven/src/consts/map.rs b/riven/src/consts/map.rs
index 56982a8..a8289d3 100644
--- a/riven/src/consts/map.rs
+++ b/riven/src/consts/map.rs
@@ -74,5 +74,9 @@ newtype_enum! {
/// Arena
/// Map for 2v2v2v2 (`CHERRY`). Team up with a friend or venture solo in this new game mode. Face against multiple teams in chaotic battles across diverse arenas
ARENA = 30,
+ /// `33`.
+ /// Swarm
+ /// Map for Swarm (`STRAWBERRY`). Team up with a friend or venture solo in this horde survival mode.
+ SWARM = 33,
}
}
diff --git a/riven/src/consts/queue.rs b/riven/src/consts/queue.rs
index ac8b31c..312dd79 100644
--- a/riven/src/consts/queue.rs
+++ b/riven/src/consts/queue.rs
@@ -382,6 +382,18 @@ newtype_enum! {
/// `1710`.
/// Arena (`CHERRY` games) games on Rings of Wrath
RINGS_OF_WRATH_ARENA_CHERRY_GAMES = 1710,
+ /// `1810`.
+ /// Swarm solo (`STRAWBERRY` games) games on Swarm
+ SWARM_SOLO_STRAWBERRY_GAMES = 1810,
+ /// `1820`.
+ /// Swarm duo (`STRAWBERRY` games) games on Swarm
+ SWARM_DUO_STRAWBERRY_GAMES = 1820,
+ /// `1830`.
+ /// Swarm trio (`STRAWBERRY` games) games on Swarm
+ SWARM_TRIO_STRAWBERRY_GAMES = 1830,
+ /// `1840`.
+ /// Swarm quad (`STRAWBERRY` games) games on Swarm
+ SWARM_QUAD_STRAWBERRY_GAMES = 1840,
/// `1900`.
/// Pick URF games on Summoner's Rift
SUMMONERS_RIFT_PICK_URF = 1900,
diff --git a/riven/src/endpoints.rs b/riven/src/endpoints.rs
index 521e83d..8fd2f5b 100644
--- a/riven/src/endpoints.rs
+++ b/riven/src/endpoints.rs
@@ -8,7 +8,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version 54ad38717276da9ce06bc6da8b27008d59d109f2
+// Version db87f38b04ca43dab4aa172bf66ad33bce803528
//! Automatically generated endpoint handles.
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
@@ -90,6 +90,15 @@ impl RiotApi {
pub fn lol_challenges_v1(&self) -> LolChallengesV1 {
LolChallengesV1 { base: self }
}
+ /// Returns a handle for accessing [LolRsoMatchV1](crate::endpoints::LolRsoMatchV1) endpoints.
+ /// # Riot Developer API Reference
+ /// `lol-rso-match-v1`
+ ///
+ /// Note: this method is automatically generated.
+ #[inline]
+ pub fn lol_rso_match_v1(&self) -> LolRsoMatchV1 {
+ LolRsoMatchV1 { base: self }
+ }
/// Returns a handle for accessing [LolStatusV4](crate::endpoints::LolStatusV4) endpoints.
/// # Riot Developer API Reference
/// `lol-status-v4`
@@ -897,6 +906,104 @@ impl<'a> LolChallengesV1<'a> {
}
+/// LolRsoMatchV1 endpoints handle, accessed by calling [`lol_rso_match_v1()`](crate::RiotApi::lol_rso_match_v1) on a [`RiotApi`](crate::RiotApi) instance.
+/// # Riot Developer API Reference
+/// `lol-rso-match-v1`
+///
+/// Note: this struct is automatically generated.
+#[repr(transparent)]
+pub struct LolRsoMatchV1<'a> {
+ base: &'a RiotApi,
+}
+impl<'a> LolRsoMatchV1<'a> {
+ /// Get a list of match ids by player access token - Includes custom matches
+ /// # Parameters
+ /// * `route` - Route to query.
+ /// * `access_token` - RSO access token.
+ /// * `count` (optional, in query) - Defaults to 20. Valid values: 0 to 100. Number of match ids to return.
+ /// * `start` (optional, in query) - Defaults to 0. Start index.
+ /// * `type` (optional, in query) - Filter the list of match ids by the type of match. This filter is mutually inclusive of the queue filter meaning any match ids returned must match both the queue and type filters.
+ /// * `queue` (optional, in query) - Filter the list of match ids by a specific queue id. This filter is mutually inclusive of the type filter meaning any match ids returned must match both the queue and type filters.
+ /// * `end_time` (optional, in query) - Epoch timestamp in seconds.
+ /// * `start_time` (optional, in query) - Epoch timestamp in seconds. The matchlist started storing timestamps on June 16th, 2021. Any matches played before June 16th, 2021 won't be included in the results if the startTime filter is set.
+ /// # RSO
+ /// This endpoint uses [Riot Sign On](https://developer.riotgames.com/docs/lol#rso-integration)
+ /// via the `access_token` parameter, instead of the Riot API key.
+ /// # Riot Developer API Reference
+ /// `lol-rso-match-v1.getMatchIds`
+ ///
+ /// Note: this method is automatically generated.
+ pub fn get_match_ids(&self, route: RegionalRoute, access_token: impl std::fmt::Display, count: Option, end_time: Option, queue: Option, start: Option, start_time: Option, r#type: Option<&str>)
+ -> impl Future