forked from mirror/Riven
1
0
Fork 0

Regen for enums

users/mingwei/unknown-variant-messy
Mingwei Samuel 2021-10-07 10:12:51 -07:00
parent 9f759369f8
commit 324016f33d
3 changed files with 13 additions and 13 deletions

View File

@ -7,7 +7,7 @@
/////////////////////////////////////////////// ///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/ // http://www.mingweisamuel.com/riotapi-schema/tool/
// Version e2256839626b09f465df7f5a1def1f74c5d073a5 // Version 1f61128ea79f3d07bd47c2f585e9f22905bed753
//! Automatically generated endpoint handles. //! Automatically generated endpoint handles.
@ -1006,7 +1006,7 @@ impl<'a> MatchV5<'a> {
/// <a href="https://developer.riotgames.com/api-methods/#match-v5/GET_getMatchIdsByPUUID" target="_blank">`match-v5.getMatchIdsByPUUID`</a> /// <a href="https://developer.riotgames.com/api-methods/#match-v5/GET_getMatchIdsByPUUID" target="_blank">`match-v5.getMatchIdsByPUUID`</a>
/// ///
/// Note: this method is automatically generated. /// Note: this method is automatically generated.
pub fn get_match_ids_by_puuid(&self, route: RegionalRoute, puuid: &str, count: Option<i32>, end_time: Option<i64>, queue: Option<i32>, start_time: Option<i64>, start: Option<i32>, r#type: Option<&str>) pub fn get_match_ids_by_puuid(&self, route: RegionalRoute, puuid: &str, count: Option<i32>, end_time: Option<i64>, queue: Option<crate::consts::Queue>, start_time: Option<i64>, start: Option<i32>, r#type: Option<&str>)
-> impl Future<Output = Result<Vec<String>>> + 'a -> impl Future<Output = Result<Vec<String>>> + 'a
{ {
let route_str = route.into(); let route_str = route.into();
@ -1277,7 +1277,7 @@ impl<'a> TftLeagueV1<'a> {
/// <a href="https://developer.riotgames.com/api-methods/#tft-league-v1/GET_getLeagueEntries" target="_blank">`tft-league-v1.getLeagueEntries`</a> /// <a href="https://developer.riotgames.com/api-methods/#tft-league-v1/GET_getLeagueEntries" target="_blank">`tft-league-v1.getLeagueEntries`</a>
/// ///
/// Note: this method is automatically generated. /// Note: this method is automatically generated.
pub fn get_league_entries(&self, route: PlatformRoute, tier: &str, division: &str, page: Option<i32>) pub fn get_league_entries(&self, route: PlatformRoute, tier: crate::consts::Tier, division: &str, page: Option<i32>)
-> impl Future<Output = Result<Vec<tft_league_v1::LeagueEntry>>> + 'a -> impl Future<Output = Result<Vec<tft_league_v1::LeagueEntry>>> + 'a
{ {
let route_str = route.into(); let route_str = route.into();

View File

@ -7,7 +7,7 @@
/////////////////////////////////////////////// ///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/ // http://www.mingweisamuel.com/riotapi-schema/tool/
// Version e2256839626b09f465df7f5a1def1f74c5d073a5 // Version 1f61128ea79f3d07bd47c2f585e9f22905bed753
//! Metadata about the Riot API and Riven. //! Metadata about the Riot API and Riven.
//! //!

View File

@ -7,7 +7,7 @@
/////////////////////////////////////////////// ///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/ // http://www.mingweisamuel.com/riotapi-schema/tool/
// Version e2256839626b09f465df7f5a1def1f74c5d073a5 // Version 1f61128ea79f3d07bd47c2f585e9f22905bed753
//! Data transfer structs. //! Data transfer structs.
//! //!
@ -772,20 +772,20 @@ pub mod match_v5 {
pub game_id: i64, pub game_id: i64,
/// Refer to the Game Constants documentation. /// Refer to the Game Constants documentation.
#[serde(rename = "gameMode")] #[serde(rename = "gameMode")]
pub game_mode: String, pub game_mode: crate::consts::GameMode,
#[serde(rename = "gameName")] #[serde(rename = "gameName")]
pub game_name: String, pub game_name: String,
/// Unix timestamp for when match starts on the game server. /// Unix timestamp for when match starts on the game server.
#[serde(rename = "gameStartTimestamp")] #[serde(rename = "gameStartTimestamp")]
pub game_start_timestamp: i64, pub game_start_timestamp: i64,
#[serde(rename = "gameType")] #[serde(rename = "gameType")]
pub game_type: String, pub game_type: crate::consts::GameType,
/// The first two parts can be used to determine the patch a game was played on. /// The first two parts can be used to determine the patch a game was played on.
#[serde(rename = "gameVersion")] #[serde(rename = "gameVersion")]
pub game_version: String, pub game_version: String,
/// Refer to the Game Constants documentation. /// Refer to the Game Constants documentation.
#[serde(rename = "mapId")] #[serde(rename = "mapId")]
pub map_id: i32, pub map_id: crate::consts::Map,
#[serde(rename = "participants")] #[serde(rename = "participants")]
pub participants: std::vec::Vec<Participant>, pub participants: std::vec::Vec<Participant>,
/// Platform where the match was played. /// Platform where the match was played.
@ -793,7 +793,7 @@ pub mod match_v5 {
pub platform_id: String, pub platform_id: String,
/// Refer to the Game Constants documentation. /// Refer to the Game Constants documentation.
#[serde(rename = "queueId")] #[serde(rename = "queueId")]
pub queue_id: i32, pub queue_id: crate::consts::Queue,
#[serde(rename = "teams")] #[serde(rename = "teams")]
pub teams: std::vec::Vec<Team>, pub teams: std::vec::Vec<Team>,
/// Tournament code used to generate the match. /// Tournament code used to generate the match.
@ -817,7 +817,7 @@ pub mod match_v5 {
pub champ_level: i32, pub champ_level: i32,
/// Prior to patch 11.4, on Feb 9th, 2021, this field returned invalid championIds. We recommend determining the champion based on the championName field. /// Prior to patch 11.4, on Feb 9th, 2021, this field returned invalid championIds. We recommend determining the champion based on the championName field.
#[serde(rename = "championId")] #[serde(rename = "championId")]
pub champion_id: i32, pub champion_id: crate::consts::Champion,
#[serde(rename = "championName")] #[serde(rename = "championName")]
pub champion_name: String, pub champion_name: String,
/// This field is currently only utilized for Kayn's transformations. (Legal values: 0 - None, 1 - Slayer, 2 - Assassin) /// This field is currently only utilized for Kayn's transformations. (Legal values: 0 - None, 1 - Slayer, 2 - Assassin)
@ -967,7 +967,7 @@ pub mod match_v5 {
#[serde(rename = "teamEarlySurrendered")] #[serde(rename = "teamEarlySurrendered")]
pub team_early_surrendered: bool, pub team_early_surrendered: bool,
#[serde(rename = "teamId")] #[serde(rename = "teamId")]
pub team_id: i32, pub team_id: crate::consts::Team,
/// Both individualPosition and teamPosition are computed by the game server and are different versions of the most likely position played by a player. The individualPosition is the best guess for which position the player actually played in isolation of anything else. The teamPosition is the best guess for which position the player actually played if we add the constraint that each team must have one top player, one jungle, one middle, etc. Generally the recommendation is to use the teamPosition field over the individualPosition field. /// Both individualPosition and teamPosition are computed by the game server and are different versions of the most likely position played by a player. The individualPosition is the best guess for which position the player actually played in isolation of anything else. The teamPosition is the best guess for which position the player actually played if we add the constraint that each team must have one top player, one jungle, one middle, etc. Generally the recommendation is to use the teamPosition field over the individualPosition field.
#[serde(rename = "teamPosition")] #[serde(rename = "teamPosition")]
pub team_position: String, pub team_position: String,
@ -1076,7 +1076,7 @@ pub mod match_v5 {
#[serde(rename = "objectives")] #[serde(rename = "objectives")]
pub objectives: Objectives, pub objectives: Objectives,
#[serde(rename = "teamId")] #[serde(rename = "teamId")]
pub team_id: i32, pub team_id: crate::consts::Team,
#[serde(rename = "win")] #[serde(rename = "win")]
pub win: bool, pub win: bool,
} }
@ -1085,7 +1085,7 @@ pub mod match_v5 {
#[derive(serde::Serialize, serde::Deserialize)] #[derive(serde::Serialize, serde::Deserialize)]
pub struct Ban { pub struct Ban {
#[serde(rename = "championId")] #[serde(rename = "championId")]
pub champion_id: i32, pub champion_id: crate::consts::Champion,
#[serde(rename = "pickTurn")] #[serde(rename = "pickTurn")]
pub pick_turn: i32, pub pick_turn: i32,
} }