From 150566983e88b8164d204eb6dbd64e12f32042f5 Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Wed, 10 May 2023 11:51:30 -0700 Subject: [PATCH] Regen, `val-match-v1.MatchlistEntryDto.queueId` --- riven/src/consts/route.rs | 2 +- riven/src/endpoints.rs | 2 +- riven/src/meta.rs | 2 +- riven/src/models.rs | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/riven/src/consts/route.rs b/riven/src/consts/route.rs index ce121c7..bd01dac 100644 --- a/riven/src/consts/route.rs +++ b/riven/src/consts/route.rs @@ -9,7 +9,7 @@ use num_enum::{ IntoPrimitive, TryFromPrimitive }; use strum_macros::{ EnumString, EnumIter, Display, IntoStaticStr }; -/// Regional routes, used in tournament services, Legends of Runterra, and other endpoints. +/// Regional routes, used in tournament services, Legends of Runeterra (LoR), and other some endpoints. #[derive(Debug)] #[derive(PartialEq, Eq, Hash, PartialOrd, Ord)] #[derive(IntoPrimitive, TryFromPrimitive)] diff --git a/riven/src/endpoints.rs b/riven/src/endpoints.rs index 9981cad..c48d424 100644 --- a/riven/src/endpoints.rs +++ b/riven/src/endpoints.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version d97f2bb9615cefe58ef8c1e9eca459cc51305d07 +// Version f6d4267816b00afc365920f4f5926fd725eb8674 //! Automatically generated endpoint handles. #![allow(clippy::let_and_return, clippy::too_many_arguments)] diff --git a/riven/src/meta.rs b/riven/src/meta.rs index 4cc589c..3685ce8 100644 --- a/riven/src/meta.rs +++ b/riven/src/meta.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version d97f2bb9615cefe58ef8c1e9eca459cc51305d07 +// Version f6d4267816b00afc365920f4f5926fd725eb8674 //! Metadata about the Riot API and Riven. //! diff --git a/riven/src/models.rs b/riven/src/models.rs index 1b63aff..65faf97 100644 --- a/riven/src/models.rs +++ b/riven/src/models.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version d97f2bb9615cefe58ef8c1e9eca459cc51305d07 +// Version f6d4267816b00afc365920f4f5926fd725eb8674 #![allow(missing_docs)] @@ -3534,8 +3534,8 @@ pub mod val_match_v1 { pub match_id: String, #[serde(rename = "gameStartTimeMillis")] pub game_start_time_millis: i64, - #[serde(rename = "teamId")] - pub team_id: String, + #[serde(rename = "queueId")] + pub queue_id: String, } /// RecentMatches data object. #[derive(Clone, Debug)]