amazonka-ses 0.0.6 → 0.0.7
raw patch · 9 files changed
+13/−13 lines, 9 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-ses.cabal +2/−2
- gen/Network/AWS/SES/GetIdentityDkimAttributes.hs +1/−1
- gen/Network/AWS/SES/GetIdentityNotificationAttributes.hs +1/−1
- gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs +1/−1
- gen/Network/AWS/SES/GetSendStatistics.hs +1/−1
- gen/Network/AWS/SES/ListIdentities.hs +1/−1
- gen/Network/AWS/SES/ListVerifiedEmailAddresses.hs +1/−1
- gen/Network/AWS/SES/Types.hs +4/−4
- gen/Network/AWS/SES/VerifyDomainDkim.hs +1/−1
amazonka-ses.cabal view
@@ -1,5 +1,5 @@ name: amazonka-ses-version: 0.0.6+version: 0.0.7 synopsis: Amazon Simple Email Service SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -63,5 +63,5 @@ other-modules: build-depends:- amazonka-core == 0.0.6.*+ amazonka-core == 0.0.7.* , base >= 4.7 && < 5
gen/Network/AWS/SES/GetIdentityDkimAttributes.hs view
@@ -127,4 +127,4 @@ instance FromXML GetIdentityDkimAttributesResponse where parseXML = withElement "GetIdentityDkimAttributesResult" $ \x -> GetIdentityDkimAttributesResponse- <$> x .@ "DkimAttributes"+ <$> x .@? "DkimAttributes" .!@ mempty
gen/Network/AWS/SES/GetIdentityNotificationAttributes.hs view
@@ -118,4 +118,4 @@ instance FromXML GetIdentityNotificationAttributesResponse where parseXML = withElement "GetIdentityNotificationAttributesResult" $ \x -> GetIdentityNotificationAttributesResponse- <$> x .@ "NotificationAttributes"+ <$> x .@? "NotificationAttributes" .!@ mempty
gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs view
@@ -117,4 +117,4 @@ instance FromXML GetIdentityVerificationAttributesResponse where parseXML = withElement "GetIdentityVerificationAttributesResult" $ \x -> GetIdentityVerificationAttributesResponse- <$> x .@ "VerificationAttributes"+ <$> x .@? "VerificationAttributes" .!@ mempty
gen/Network/AWS/SES/GetSendStatistics.hs view
@@ -101,4 +101,4 @@ instance FromXML GetSendStatisticsResponse where parseXML = withElement "GetSendStatisticsResult" $ \x -> GetSendStatisticsResponse- <$> x .@ "SendDataPoints"+ <$> x .@? "SendDataPoints" .!@ mempty
gen/Network/AWS/SES/ListIdentities.hs view
@@ -138,7 +138,7 @@ instance FromXML ListIdentitiesResponse where parseXML = withElement "ListIdentitiesResult" $ \x -> ListIdentitiesResponse- <$> x .@ "Identities"+ <$> x .@? "Identities" .!@ mempty <*> x .@? "NextToken" instance AWSPager ListIdentities where
gen/Network/AWS/SES/ListVerifiedEmailAddresses.hs view
@@ -100,4 +100,4 @@ instance FromXML ListVerifiedEmailAddressesResponse where parseXML = withElement "ListVerifiedEmailAddressesResult" $ \x -> ListVerifiedEmailAddressesResponse- <$> x .@ "VerifiedEmailAddresses"+ <$> x .@? "VerifiedEmailAddresses" .!@ mempty
gen/Network/AWS/SES/Types.hs view
@@ -163,9 +163,9 @@ instance FromXML Destination where parseXML x = Destination- <$> x .@ "BccAddresses"- <*> x .@ "CcAddresses"- <*> x .@ "ToAddresses"+ <$> x .@? "BccAddresses" .!@ mempty+ <*> x .@? "CcAddresses" .!@ mempty+ <*> x .@? "ToAddresses" .!@ mempty instance ToQuery Destination where toQuery Destination{..} = mconcat@@ -227,7 +227,7 @@ instance FromXML IdentityDkimAttributes where parseXML x = IdentityDkimAttributes <$> x .@ "DkimEnabled"- <*> x .@ "DkimTokens"+ <*> x .@? "DkimTokens" .!@ mempty <*> x .@ "DkimVerificationStatus" instance ToQuery IdentityDkimAttributes where
gen/Network/AWS/SES/VerifyDomainDkim.hs view
@@ -132,4 +132,4 @@ instance FromXML VerifyDomainDkimResponse where parseXML = withElement "VerifyDomainDkimResult" $ \x -> VerifyDomainDkimResponse- <$> x .@ "DkimTokens"+ <$> x .@? "DkimTokens" .!@ mempty