mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2024-12-26 10:56:34 +00:00
Regen for various changes
This commit is contained in:
parent
c014099931
commit
755d227532
4 changed files with 17 additions and 7 deletions
|
@ -367,6 +367,9 @@ newtype_enum! {
|
||||||
/// Deprecated in patch 9.2 in favor of queueId 1300
|
/// Deprecated in patch 9.2 in favor of queueId 1300
|
||||||
#[deprecated(note="Deprecated in patch 9.2 in favor of queueId 1300")]
|
#[deprecated(note="Deprecated in patch 9.2 in favor of queueId 1300")]
|
||||||
NEXUS_BLITZ_DEPRECATED_1200 = 1200,
|
NEXUS_BLITZ_DEPRECATED_1200 = 1200,
|
||||||
|
/// `1210`.
|
||||||
|
/// Teamfight Tactics (Choncc's Treasure) games on Convergence
|
||||||
|
CONVERGENCE_TEAMFIGHT_TACTICS_CHONCCS_TREASURE = 1210,
|
||||||
/// `1300`.
|
/// `1300`.
|
||||||
/// Nexus Blitz games on Nexus Blitz
|
/// Nexus Blitz games on Nexus Blitz
|
||||||
NEXUS_BLITZ = 1300,
|
NEXUS_BLITZ = 1300,
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version 26952273dd9de767dc805b41d363fe8ff8cd0510
|
// Version 65bb2e6914e0be5f326abee5b7eb014c3e1b96f6
|
||||||
|
|
||||||
//! Automatically generated endpoint handles.
|
//! Automatically generated endpoint handles.
|
||||||
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
|
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version 26952273dd9de767dc805b41d363fe8ff8cd0510
|
// Version 65bb2e6914e0be5f326abee5b7eb014c3e1b96f6
|
||||||
|
|
||||||
//! Metadata about the Riot API and Riven.
|
//! Metadata about the Riot API and Riven.
|
||||||
//!
|
//!
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version 26952273dd9de767dc805b41d363fe8ff8cd0510
|
// Version 65bb2e6914e0be5f326abee5b7eb014c3e1b96f6
|
||||||
|
|
||||||
#![allow(missing_docs)]
|
#![allow(missing_docs)]
|
||||||
|
|
||||||
|
@ -86,9 +86,6 @@ pub mod champion_mastery_v4 {
|
||||||
/// Champion level for specified player and champion combination.
|
/// Champion level for specified player and champion combination.
|
||||||
#[serde(rename = "championLevel")]
|
#[serde(rename = "championLevel")]
|
||||||
pub champion_level: i32,
|
pub champion_level: i32,
|
||||||
/// Summoner ID for this entry. (Encrypted)
|
|
||||||
#[serde(rename = "summonerId")]
|
|
||||||
pub summoner_id: String,
|
|
||||||
/// Total number of champion points for this player and champion combination - they are used to determine championLevel.
|
/// Total number of champion points for this player and champion combination - they are used to determine championLevel.
|
||||||
#[serde(rename = "championPoints")]
|
#[serde(rename = "championPoints")]
|
||||||
pub champion_points: i32,
|
pub champion_points: i32,
|
||||||
|
@ -120,7 +117,8 @@ pub mod champion_mastery_v4 {
|
||||||
#[serde(rename = "bonus")]
|
#[serde(rename = "bonus")]
|
||||||
pub bonus: bool,
|
pub bonus: bool,
|
||||||
#[serde(rename = "rewardConfig")]
|
#[serde(rename = "rewardConfig")]
|
||||||
pub reward_config: RewardConfig,
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub reward_config: Option<RewardConfig>,
|
||||||
}
|
}
|
||||||
/// RewardConfig data object.
|
/// RewardConfig data object.
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
|
@ -1729,6 +1727,15 @@ pub mod match_v5 {
|
||||||
#[serde(rename = "visionScoreAdvantageLaneOpponent")]
|
#[serde(rename = "visionScoreAdvantageLaneOpponent")]
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub vision_score_advantage_lane_opponent: Option<f64>,
|
pub vision_score_advantage_lane_opponent: Option<f64>,
|
||||||
|
#[serde(rename = "InfernalScalePickup")]
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub infernal_scale_pickup: Option<f64>,
|
||||||
|
#[serde(rename = "fistBumpParticipation")]
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub fist_bump_participation: Option<f64>,
|
||||||
|
#[serde(rename = "voidMonsterKill")]
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub void_monster_kill: Option<f64>,
|
||||||
}
|
}
|
||||||
/// Missions data object.
|
/// Missions data object.
|
||||||
/// # Description
|
/// # Description
|
||||||
|
|
Loading…
Reference in a new issue