Skip to content

Commit 989a51f

Browse files
committed
Regen for various new undocumented fields, queue HOWLING_ABYSS_ARAM_MAYHEM = 2400
1 parent e762a58 commit 989a51f

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

riven/src/consts/queue.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,9 @@ newtype_enum! {
433433
/// `2300`.
434434
/// Games on The Bandlewood
435435
THE_BANDLEWOOD = 2300,
436+
/// `2400`.
437+
/// ARAM: Mayhem games on Howling Abyss
438+
HOWLING_ABYSS_ARAM_MAYHEM = 2400,
436439
/// `6000`.
437440
/// Teamfight Tactics Set 3.5 Revival games on Convergence
438441
CONVERGENCE_TEAMFIGHT_TACTICS_SET_3_5_REVIVAL = 6000,

riven/src/endpoints.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
///////////////////////////////////////////////
99

1010
// http://www.mingweisamuel.com/riotapi-schema/tool/
11-
// Version eab2eb8a2511a4d0acfafed305cf02fddd843c59
11+
// Version 34dd37e1c020a12b2e8071c6a49cd0c84ba451cb
1212

1313
//! Automatically generated endpoint handles.
1414
#![allow(clippy::let_and_return, clippy::too_many_arguments)]

riven/src/meta.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
///////////////////////////////////////////////
99

1010
// http://www.mingweisamuel.com/riotapi-schema/tool/
11-
// Version eab2eb8a2511a4d0acfafed305cf02fddd843c59
11+
// Version 34dd37e1c020a12b2e8071c6a49cd0c84ba451cb
1212

1313
//! Metadata about the Riot API and Riven.
1414
//!

riven/src/models.rs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
///////////////////////////////////////////////
99

1010
// http://www.mingweisamuel.com/riotapi-schema/tool/
11-
// Version eab2eb8a2511a4d0acfafed305cf02fddd843c59
11+
// Version 34dd37e1c020a12b2e8071c6a49cd0c84ba451cb
1212

1313
#![allow(missing_docs)]
1414

@@ -609,6 +609,9 @@ pub mod lol_challenges_v1 {
609609
#[serde(rename = "percentile")]
610610
#[serde(default, skip_serializing_if = "Option::is_none")]
611611
pub percentile: Option<f64>,
612+
#[serde(rename = "position")]
613+
#[serde(default, skip_serializing_if = "Option::is_none")]
614+
pub position: Option<i64>,
612615
}
613616
}
614617

@@ -1444,6 +1447,9 @@ pub mod match_v5 {
14441447
#[serde(rename = "damageDealtToEpicMonsters")]
14451448
#[serde(default, skip_serializing_if = "Option::is_none")]
14461449
pub damage_dealt_to_epic_monsters: Option<i32>,
1450+
#[serde(rename = "roleBoundItem")]
1451+
#[serde(default, skip_serializing_if = "Option::is_none")]
1452+
pub role_bound_item: Option<i32>,
14471453
}
14481454
/// `match-v5.ChallengesDto` data object.
14491455
/// # Description
@@ -4766,6 +4772,8 @@ pub mod val_ranked_v1 {
47664772
#[serde(rename = "prefix")]
47674773
#[serde(default, skip_serializing_if = "Option::is_none")]
47684774
pub prefix: Option<String>,
4775+
#[serde(rename = "premierRosterType")]
4776+
pub premier_roster_type: String,
47694777
}
47704778
/// `val-ranked-v1.TierDetailDto` data object.
47714779
#[derive(Clone, Debug)]

0 commit comments

Comments
 (0)