diff --git a/steamguard/src/confirmation.rs b/steamguard/src/confirmation.rs index 18ca6a9..de0b4cf 100644 --- a/steamguard/src/confirmation.rs +++ b/steamguard/src/confirmation.rs @@ -371,6 +371,7 @@ impl Confirmation { #[repr(u32)] #[serde(from = "u32")] /// Source: +/// There are also some additional undocumented types. pub enum ConfirmationType { Test = 1, Trade = 2, @@ -378,6 +379,8 @@ pub enum ConfirmationType { FeatureOptOut = 4, PhoneNumberChange = 5, AccountRecovery = 6, + /// Occurs when a new web API key is created via https://steamcommunity.com/dev/apikey + ApiKeyCreation = 9, Unknown(u32), }