From bb62f05910b29503ba631eaecf9e66d0a65586aa Mon Sep 17 00:00:00 2001 From: Cameron Childress Date: Thu, 20 Jun 2024 11:27:37 -0400 Subject: [PATCH] Correct type for SafeToRemoveRevokedKeyFromDNS (from string to boolean) (#158) --- src/client/models/domains/Domain.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/models/domains/Domain.ts b/src/client/models/domains/Domain.ts index f8e65f7d..3b3bc939 100644 --- a/src/client/models/domains/Domain.ts +++ b/src/client/models/domains/Domain.ts @@ -33,7 +33,7 @@ export interface DomainDetails extends Domain { DKIMPendingTextValue: string; DKIMRevokedHost: string; DKIMRevokedTextValue: string; - SafeToRemoveRevokedKeyFromDNS: string; + SafeToRemoveRevokedKeyFromDNS: boolean; DKIMUpdateStatus: string; ReturnPathDomain: string; ReturnPathDomainCNAMEValue: string;