From 25280abc627cfcbe418ff19986086b6290df7ca2 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Thu, 4 Jan 2024 21:59:18 -0500 Subject: [PATCH] add new confirmation type: api key creation (#357) --- steamguard/src/confirmation.rs | 3 +++ 1 file changed, 3 insertions(+) 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), }