diff --git a/riven/src/endpoints.rs b/riven/src/endpoints.rs index 4419360..21dac80 100644 --- a/riven/src/endpoints.rs +++ b/riven/src/endpoints.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version 7c0e8b01772177b979c83feae5c71806c1c73205 +// Version 82c5b64c16bd63688a0d19f471a19301bae8be4a //! 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 c41812e..afe8728 100644 --- a/riven/src/meta.rs +++ b/riven/src/meta.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version 7c0e8b01772177b979c83feae5c71806c1c73205 +// Version 82c5b64c16bd63688a0d19f471a19301bae8be4a //! Metadata about the Riot API and Riven. //! diff --git a/riven/src/models.rs b/riven/src/models.rs index a32e655..787e331 100644 --- a/riven/src/models.rs +++ b/riven/src/models.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version 7c0e8b01772177b979c83feae5c71806c1c73205 +// Version 82c5b64c16bd63688a0d19f471a19301bae8be4a #![allow(missing_docs)] @@ -2351,6 +2351,10 @@ pub mod spectator_v4 { /// The encrypted summoner ID of this participant #[serde(rename = "summonerId")] pub summoner_id: String, + /// The encrypted puuid of this participant + #[serde(rename = "puuid")] + #[serde(skip_serializing_if = "Option::is_none")] + pub puuid: Option, /// The ID of the first summoner spell used by this participant #[serde(rename = "spell1Id")] pub spell1_id: i64, @@ -2360,9 +2364,6 @@ pub mod spectator_v4 { /// List of Game Customizations #[serde(rename = "gameCustomizationObjects")] pub game_customization_objects: std::vec::Vec, - #[serde(rename = "puuid")] - #[serde(skip_serializing_if = "Option::is_none")] - pub puuid: Option, } /// Perks data object. #[derive(Clone, Debug)] @@ -2434,10 +2435,6 @@ pub mod spectator_v4 { /// The queue type (queue types are documented on the Game Constants page) #[serde(rename = "gameQueueConfigId")] pub game_queue_config_id: crate::consts::Queue, - /// The game start time represented in epoch milliseconds - #[serde(rename = "gameStartTime")] - #[serde(skip_serializing_if = "Option::is_none")] - pub game_start_time: Option, /// The participant information #[serde(rename = "participants")] pub participants: std::vec::Vec, @@ -2462,6 +2459,14 @@ pub mod spectator_v4 { /// The summoner name of this participant #[serde(rename = "summonerName")] pub summoner_name: String, + /// Encrypted summoner ID of this participant + #[serde(rename = "summonerId")] + #[serde(skip_serializing_if = "Option::is_none")] + pub summoner_id: Option, + /// Encrypted puuid of this participant + #[serde(rename = "puuid")] + #[serde(skip_serializing_if = "Option::is_none")] + pub puuid: Option, /// The ID of the champion played by this participant #[serde(rename = "championId")] pub champion_id: crate::consts::Champion, @@ -2471,12 +2476,6 @@ pub mod spectator_v4 { /// The ID of the first summoner spell used by this participant #[serde(rename = "spell1Id")] pub spell1_id: i64, - #[serde(rename = "puuid")] - #[serde(skip_serializing_if = "Option::is_none")] - pub puuid: Option, - #[serde(rename = "summonerId")] - #[serde(skip_serializing_if = "Option::is_none")] - pub summoner_id: Option, } }