From eac4f43020a7918bd99e4f222c1c1b41c619508a Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 5 Feb 2024 13:50:45 +0100 Subject: [PATCH] Proactively add other new fields --- src/types.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types.rs b/src/types.rs index dac2e73..523ff41 100644 --- a/src/types.rs +++ b/src/types.rs @@ -356,7 +356,9 @@ pub(crate) struct DirectoryUrls { // The fields below were added later and old `AccountCredentials` may not have it. // Newer deserialized account credentials grab a fresh set of `DirectoryUrls` on // deserialization, so they should be fine. Newer fields should be optional, too. + pub(crate) new_authz: Option, pub(crate) revoke_cert: Option, + pub(crate) key_change: Option, } #[derive(Serialize)]