amazonka-route53-domains 0.0.6 → 0.0.7
raw patch · 5 files changed
+8/−8 lines, 5 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-route53-domains.cabal +2/−2
- gen/Network/AWS/Route53Domains/GetDomainDetail.hs +2/−2
- gen/Network/AWS/Route53Domains/ListDomains.hs +1/−1
- gen/Network/AWS/Route53Domains/ListOperations.hs +1/−1
- gen/Network/AWS/Route53Domains/Types.hs +2/−2
amazonka-route53-domains.cabal view
@@ -1,5 +1,5 @@ name: amazonka-route53-domains-version: 0.0.6+version: 0.0.7 synopsis: Amazon Route 53 Domains SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -53,5 +53,5 @@ other-modules: build-depends:- amazonka-core == 0.0.6.*+ amazonka-core == 0.0.7.* , base >= 4.7 && < 5
gen/Network/AWS/Route53Domains/GetDomainDetail.hs view
@@ -389,14 +389,14 @@ <*> o .:? "DnsSec" <*> o .: "DomainName" <*> o .:? "ExpirationDate"- <*> o .: "Nameservers"+ <*> o .:? "Nameservers" .!= mempty <*> o .: "RegistrantContact" <*> o .:? "RegistrantPrivacy" <*> o .:? "RegistrarName" <*> o .:? "RegistrarUrl" <*> o .:? "RegistryDomainId" <*> o .:? "Reseller"- <*> o .: "StatusList"+ <*> o .:? "StatusList" .!= mempty <*> o .: "TechContact" <*> o .:? "TechPrivacy" <*> o .:? "UpdatedDate"
gen/Network/AWS/Route53Domains/ListDomains.hs view
@@ -160,5 +160,5 @@ instance FromJSON ListDomainsResponse where parseJSON = withObject "ListDomainsResponse" $ \o -> ListDomainsResponse- <$> o .: "Domains"+ <$> o .:? "Domains" .!= mempty <*> o .:? "NextPageMarker"
gen/Network/AWS/Route53Domains/ListOperations.hs view
@@ -158,4 +158,4 @@ instance FromJSON ListOperationsResponse where parseJSON = withObject "ListOperationsResponse" $ \o -> ListOperationsResponse <$> o .:? "NextPageMarker"- <*> o .: "Operations"+ <*> o .:? "Operations" .!= mempty
gen/Network/AWS/Route53Domains/Types.hs view
@@ -308,7 +308,7 @@ instance FromJSON Nameserver where parseJSON = withObject "Nameserver" $ \o -> Nameserver- <$> o .: "GlueIps"+ <$> o .:? "GlueIps" .!= mempty <*> o .: "Name" instance ToJSON Nameserver where@@ -1534,7 +1534,7 @@ <*> o .:? "ContactType" <*> o .:? "CountryCode" <*> o .:? "Email"- <*> o .: "ExtraParams"+ <*> o .:? "ExtraParams" .!= mempty <*> o .:? "Fax" <*> o .:? "FirstName" <*> o .:? "LastName"